
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*
 * Provides a drop-in pointer for the default Trix stylesheet that will format the toolbar and
 * the trix-editor content (whether displayed or under editing). Feel free to incorporate this
 * inclusion directly in any other asset bundle and remove this file.
 *
 *= require trix
*/
/*
 * We need to override trix.css’s image gallery styles to accommodate the
 * <action-text-attachment> element we wrap around attachments. Otherwise,
 * images in galleries will be squished by the max-width: 33%; rule.
*/
dialog {
  position: absolute;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 1em;
  background: white;
  color: black;
  display: block;
}

dialog:not([open]) {
  display: none;
}

dialog + .backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

._dialog_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

dialog.fixed {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
}

.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  max-width: 33%;
  padding: 0 0.5em;
}

.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.trix-content action-text-attachment .attachment {
  max-width: 100% !important;
  padding: 0 !important;
}

.trix-button-row {
  border: 0.0625rem solid #e5efff;
  border-radius: 0.25rem;
}

.trix-button-row .trix-button--icon-link,
.trix-button-row .trix-button--icon-strike,
.trix-button-row .trix-button--icon-quote,
.trix-button-row .trix-button-group-spacer,
.trix-button-row .trix-button-group--file-tools,
.trix-button-row .trix-button-group--history-tools {
  display: none;
}

.trix-button-row .trix-button-group {
  margin: 0 !important;
  border: none !important;
}

.trix-button-row .trix-button-group .trix-button {
  border: none !important;
  background-color: #fff;
}

.trix-button-row .trix-button-group .trix-button:hover, .trix-button-row .trix-button-group .trix-button.trix-active {
  background-color: #e5efff;
}

.trix-admin .trix-button-row .trix-button--icon-link {
  display: inline;
}

trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

trix-toolbar * {
  box-sizing: border-box;
}

trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}

trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}

@media (max-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}

@media (max-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}

trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: rgb(0, 0, 0);
}

trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}

trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}

@media (max-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}

@media (max-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}

trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%;
}

trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-dialogs {
  position: relative;
}

trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}

trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}

trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1 1;
}

trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

trix-editor [data-trix-mutable] ::-moz-selection, trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection {
  background: none;
}

trix-editor [data-trix-mutable] ::-moz-selection, trix-editor [data-trix-mutable]::-moz-selection, trix-editor [data-trix-cursor-target]::-moz-selection {
  background: none;
}

trix-editor [data-trix-mutable] ::selection, trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection {
  background: none;
}

trix-editor [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
  background: highlight;
}

trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
  background: highlight;
}

trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}

trix-editor .attachment {
  position: relative;
}

trix-editor .attachment:hover {
  cursor: default;
}

trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}

trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

trix-editor .trix-button-group {
  display: inline-flex;
}

trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

trix-editor .trix-button.trix-active {
  background: #cbeefa;
}

trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

trix-editor .trix-button--remove:hover {
  border-color: #333;
}

trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

trix-editor .attachment__metadata-container {
  position: relative;
}

trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.trix-content h1, .trix-content .h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

.trix-content li {
  margin-left: 1em;
}

.trix-content [dir=rtl] li {
  margin-right: 1em;
}

.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

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

.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

.trix-content .attachment__caption {
  text-align: center;
}

.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " •";
}

.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* First load functions, variables and mixins */
@font-face {
  font-family: Archia;
  font-style: normal;
  font-weight: 700;
  src: url(/assets/ArchiaBold/Archia-Bold-11dacabc2d782b807ee6af0ab5ba9a5d2614019dc82b31b24f377d5da24d1f0d.eot);
  src: url(/assets/ArchiaBold/Archia-Bold-11dacabc2d782b807ee6af0ab5ba9a5d2614019dc82b31b24f377d5da24d1f0d.eot?#iefix) format("embedded-opentype"), url(/assets/ArchiaBold/Archia-Bold-b763f916c3ac990337c9daa185e7248017f16eb853065dc85b7326bb70c594d4.woff) format("woff"), url(/assets/ArchiaBold/Archia-Bold-c9adb124bd831082e75ae0a6dbefa3e8b13a25fe0a63827a4c0f46ab52ae263e.ttf) format("truetype"), url(/assets/ArchiaBold/Archia-Bold-37e19a720b4e43257da44b9f9326467b657a001f4bfed71a945fcc342a90ad93.svg) format("svg");
}
@font-face {
  font-family: Archia;
  font-style: normal;
  font-weight: 600;
  src: url(/assets/ArchiaSemiBold/Archia-SemiBold-1fa440425c0133d0aedfe31fbb9cef0d12bd04a5bd577d3d641bea6093fc1be2.eot);
  src: url(/assets/ArchiaSemiBold/Archia-SemiBold-1fa440425c0133d0aedfe31fbb9cef0d12bd04a5bd577d3d641bea6093fc1be2.eot?#iefix) format("embedded-opentype"), url(/assets/ArchiaSemiBold/Archia-SemiBold-e6b74ea77217c1a1166e384684d424b1521ef2fd999af6dfa7e2ce21b4633b41.woff) format("woff"), url(/assets/ArchiaSemiBold/Archia-SemiBold-7f6dd1bbac2e92354baeb525b7f62f40af683fa49d839a91ef38faeeb4c1b624.ttf) format("truetype"), url(/assets/ArchiaSemiBold/Archia-SemiBold-7f0dee83eaa4cbd1f4a788f108772f459a9e56a94fe86b172a43002c08fbf14f.svg) format("svg");
}
@font-face {
  font-family: Archia;
  font-style: normal;
  font-weight: 500;
  src: url(/assets/ArchiaMedium/Archia-Medium-d89cd9cba54a8a933d8d215bdbf98cc5d1cbc81b141736c659fb7d37e5d8032f.eot);
  src: url(/assets/ArchiaMedium/Archia-Medium-d89cd9cba54a8a933d8d215bdbf98cc5d1cbc81b141736c659fb7d37e5d8032f.eot?#iefix) format("embedded-opentype"), url(/assets/ArchiaMedium/Archia-Medium-8a188a5575eed016ec912af84a01fc4a6421efea211f68b5f761f5061f6fb7cd.woff) format("woff"), url(/assets/ArchiaMedium/Archia-Medium-5122572336cb1b74fca0aa54d1d1cf365e4c0eaba77aa4b9418dbb0c894192dc.ttf) format("truetype"), url(/assets/ArchiaMedium/Archia-Medium-3927a1d818a0c33eb649779e963de6066f55cb8d26e49533489f77aee4019c5c.svg) format("svg");
}
@font-face {
  font-family: Archia;
  font-style: normal;
  font-weight: 400;
  src: url(/assets/ArchiaRegular/Archia-Regular-f31c6a1e4043d28075bd6f9c11a1b768c0c029b587e5dc888355d8abd6184e30.eot);
  src: url(/assets/ArchiaRegular/Archia-Regular-f31c6a1e4043d28075bd6f9c11a1b768c0c029b587e5dc888355d8abd6184e30.eot?#iefix) format("embedded-opentype"), url(/assets/ArchiaRegular/Archia-Regular-806e9552538392f0e7f3438de3cfbbdf4f2a321b624062531c9b28c38d1fc7b5.woff) format("woff"), url(/assets/ArchiaRegular/Archia-Regular-f0c51b64396b10b16dc21622a858671670b6791bc54592fb8078ff0197108846.ttf) format("truetype"), url(/assets/ArchiaRegular/Archia-Regular-724f79eade805f1fcb5861ecd73937d276ae4fd986ecba30fcecd606e79bd0e3.svg) format("svg");
}
/* prettier-ignore */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #000;
  --bs-secondary: #fff;
  --bs-danger: #d13b42;
  --bs-success: #0e8906;
  --bs-muted: #767676;
  --bs-grey-1: #f5f5f5;
  --bs-grey-2: #ebebeb;
  --bs-grey-3: #aaa;
  --bs-grey-4: #555;
  --bs-blue: #0064ff;
  --bs-transparent-blue: #f7faff;
  --bs-blue-10: #e5efff;
  --bs-mint: #00fad7;
  --bs-dark-green: #14373c;
  --bs-red: #d13b42;
  --bs-green: #0e8906;
  --bs-black: #000;
  --bs-info: #0064ff;
  --bs-warning: #ff9b40;
  --bs-app-background: #f7faff;
  --bs-primary-rgb: 0, 0, 0;
  --bs-secondary-rgb: 255, 255, 255;
  --bs-danger-rgb: 209, 59, 66;
  --bs-success-rgb: 14, 137, 6;
  --bs-muted-rgb: 118, 118, 118;
  --bs-grey-1-rgb: 245, 245, 245;
  --bs-grey-2-rgb: 235, 235, 235;
  --bs-grey-3-rgb: 170, 170, 170;
  --bs-grey-4-rgb: 85, 85, 85;
  --bs-blue-rgb: 0, 100, 255;
  --bs-transparent-blue-rgb: 247, 250, 255;
  --bs-blue-10-rgb: 229, 239, 255;
  --bs-mint-rgb: 0, 250, 215;
  --bs-dark-green-rgb: 20, 55, 60;
  --bs-red-rgb: 209, 59, 66;
  --bs-green-rgb: 14, 137, 6;
  --bs-info-rgb: 0, 100, 255;
  --bs-warning-rgb: 255, 155, 64;
  --bs-app-background-rgb: 247, 250, 255;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Poppins, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
  font-size: var(--bs-body-font-size);
  font-weight: 400;
  font-weight: var(--bs-body-font-weight);
  line-height: 1.5;
  line-height: var(--bs-body-line-height);
  color: #212529;
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: #fff;
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 1;
}

hr:not([size]) {
  height: 0.125rem;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Archia", sans-serif;
  font-weight: 600;
  line-height: 1.5;
}

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

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

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

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

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

h6, .h6 {
  font-size: 0.875rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(.focus-visible).js-focus-visible, .js-focus-visible button:focus:not(.focus-visible) {
  outline: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: inherit;
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-2 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-3 {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-6 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * 2rem);
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * 2rem);
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 30rem) {
  .col-xs {
    flex: 1 0;
  }
  .row-cols-xs-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
  .g-xs-0,
  .gx-xs-0 {
    --bs-gutter-x: 0;
  }
  .g-xs-0,
  .gy-xs-0 {
    --bs-gutter-y: 0;
  }
  .g-xs-1,
  .gx-xs-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xs-1,
  .gy-xs-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xs-2,
  .gx-xs-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xs-2,
  .gy-xs-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xs-3,
  .gx-xs-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xs-3,
  .gy-xs-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xs-4,
  .gx-xs-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xs-4,
  .gy-xs-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xs-5,
  .gx-xs-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xs-5,
  .gy-xs-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 36rem) {
  .col-sm {
    flex: 1 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 48rem) {
  .col-md {
    flex: 1 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 62rem) {
  .col-lg {
    flex: 1 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 75rem) {
  .col-xl {
    flex: 1 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 87.5rem) {
  .col-xxl {
    flex: 1 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 112.5rem) {
  .col-xxxl {
    flex: 1 0;
  }
  .row-cols-xxxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 29.98rem) {
  .table-responsive-xs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 35.98rem) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.98rem) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.98rem) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.98rem) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 87.48rem) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 112.48rem) {
  .table-responsive-xxxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: 0.6875rem;
  padding-bottom: 0.6875rem;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  font-size: 1.125rem;
}

.col-form-label-sm {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.0625rem solid #aaa;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #c2dbfe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #fff;
  border-color: #949494;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.625rem 0.75rem;
  margin: -0.625rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0.0625rem;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
  padding: 0.625rem 0.75rem;
  margin: -0.625rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0.0625rem;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.625rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 0.0625rem 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.625rem);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1.125rem);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 1.375rem);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.625rem);
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1.125rem);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.625rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0;
}

.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.625rem 2.25rem 0.625rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 0.0625rem solid #aaa;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #c2dbfe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: #fff;
  border-color: #949494;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.625em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.625em;
}

.form-check-input {
  width: 1.125em;
  height: 1.125em;
  margin-top: 0.1875em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0.0625rem solid #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #c2dbfe;
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #fff;
  border-color: #fff;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #00fad7;
  border-color: #000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-check-label {
  cursor: pointer;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23c2dbfe'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: 3.625rem;
  line-height: 1.25;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 0.0625rem solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder {
  color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 0.0625rem solid #aaa;
  border-radius: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -0.0625rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #0e8906;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: rgba(14, 137, 6, 0.9);
  border-radius: 0;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #0e8906;
  padding-right: calc(1.5em + 1.25rem);
  background-image: none;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.3125rem) center;
  background-size: calc(0.75em + 0.625rem) calc(0.75em + 0.625rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #0e8906;
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1.25rem);
  background-position: top calc(0.375em + 0.3125rem) right calc(0.375em + 0.3125rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #0e8906;
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: none, none;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.625rem) calc(0.75em + 0.625rem);
}

.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #0e8906;
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #0e8906;
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #0e8906;
}

.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #0e8906;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}

.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #d13b42;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: rgba(209, 59, 66, 0.9);
  border-radius: 0;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #d13b42;
  padding-right: calc(1.5em + 1.25rem);
  background-image: none;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.3125rem) center;
  background-size: calc(0.75em + 0.625rem) calc(0.75em + 0.625rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #d13b42;
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1.25rem);
  background-position: top calc(0.375em + 0.3125rem) right calc(0.375em + 0.3125rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #d13b42;
}

.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: none, none;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.625rem) calc(0.75em + 0.625rem);
}

.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #d13b42;
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #d13b42;
}

.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #d13b42;
}

.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #d13b42;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}

.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 0.125rem solid transparent;
  padding: 0.75rem 1.625rem;
  font-size: 0.875rem;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-primary:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}

.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}

.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-secondary {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}

.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}

.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-danger:hover {
  color: #fff;
  background-color: #b23238;
  border-color: #a72f35;
}

.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #b23238;
  border-color: #a72f35;
  box-shadow: 0 0 0 0.25rem rgba(216, 88, 94, 0.5);
}

.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #a72f35;
  border-color: #9d2c32;
}

.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(216, 88, 94, 0.5);
}

.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-success {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-success:hover {
  color: #fff;
  background-color: #0c7405;
  border-color: #0b6e05;
}

.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #0c7405;
  border-color: #0b6e05;
  box-shadow: 0 0 0 0.25rem rgba(50, 155, 43, 0.5);
}

.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #0b6e05;
  border-color: #0b6705;
}

.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(50, 155, 43, 0.5);
}

.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-muted {
  color: #fff;
  background-color: #767676;
  border-color: #767676;
}

.btn-muted:hover {
  color: #fff;
  background-color: #646464;
  border-color: #5e5e5e;
}

.btn-check:focus + .btn-muted, .btn-muted:focus {
  color: #fff;
  background-color: #646464;
  border-color: #5e5e5e;
  box-shadow: 0 0 0 0.25rem rgba(139, 139, 139, 0.5);
}

.btn-check:checked + .btn-muted, .btn-check:active + .btn-muted, .btn-muted:active, .btn-muted.active, .show > .btn-muted.dropdown-toggle {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #595959;
}

.btn-check:checked + .btn-muted:focus, .btn-check:active + .btn-muted:focus, .btn-muted:active:focus, .btn-muted.active:focus, .show > .btn-muted.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 139, 139, 0.5);
}

.btn-muted:disabled, .btn-muted.disabled {
  color: #fff;
  background-color: #767676;
  border-color: #767676;
}

.btn-grey-1 {
  color: #000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-grey-1:hover {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f6f6f6;
}

.btn-check:focus + .btn-grey-1, .btn-grey-1:focus {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f6f6f6;
  box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}

.btn-check:checked + .btn-grey-1, .btn-check:active + .btn-grey-1, .btn-grey-1:active, .btn-grey-1.active, .show > .btn-grey-1.dropdown-toggle {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f6f6f6;
}

.btn-check:checked + .btn-grey-1:focus, .btn-check:active + .btn-grey-1:focus, .btn-grey-1:active:focus, .btn-grey-1.active:focus, .show > .btn-grey-1.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}

.btn-grey-1:disabled, .btn-grey-1.disabled {
  color: #000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-grey-2 {
  color: #000;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.btn-grey-2:hover {
  color: #000;
  background-color: #eeeeee;
  border-color: #ededed;
}

.btn-check:focus + .btn-grey-2, .btn-grey-2:focus {
  color: #000;
  background-color: #eeeeee;
  border-color: #ededed;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, 0.5);
}

.btn-check:checked + .btn-grey-2, .btn-check:active + .btn-grey-2, .btn-grey-2:active, .btn-grey-2.active, .show > .btn-grey-2.dropdown-toggle {
  color: #000;
  background-color: #efefef;
  border-color: #ededed;
}

.btn-check:checked + .btn-grey-2:focus, .btn-check:active + .btn-grey-2:focus, .btn-grey-2:active:focus, .btn-grey-2.active:focus, .show > .btn-grey-2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, 0.5);
}

.btn-grey-2:disabled, .btn-grey-2.disabled {
  color: #000;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.btn-grey-3 {
  color: #000;
  background-color: #aaa;
  border-color: #aaa;
}

.btn-grey-3:hover {
  color: #000;
  background-color: #b7b7b7;
  border-color: #b3b3b3;
}

.btn-check:focus + .btn-grey-3, .btn-grey-3:focus {
  color: #000;
  background-color: #b7b7b7;
  border-color: #b3b3b3;
  box-shadow: 0 0 0 0.25rem rgba(145, 145, 145, 0.5);
}

.btn-check:checked + .btn-grey-3, .btn-check:active + .btn-grey-3, .btn-grey-3:active, .btn-grey-3.active, .show > .btn-grey-3.dropdown-toggle {
  color: #000;
  background-color: #bbbbbb;
  border-color: #b3b3b3;
}

.btn-check:checked + .btn-grey-3:focus, .btn-check:active + .btn-grey-3:focus, .btn-grey-3:active:focus, .btn-grey-3.active:focus, .show > .btn-grey-3.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(145, 145, 145, 0.5);
}

.btn-grey-3:disabled, .btn-grey-3.disabled {
  color: #000;
  background-color: #aaa;
  border-color: #aaa;
}

.btn-grey-4 {
  color: #fff;
  background-color: #555;
  border-color: #555;
}

.btn-grey-4:hover {
  color: #fff;
  background-color: #484848;
  border-color: #444444;
}

.btn-check:focus + .btn-grey-4, .btn-grey-4:focus {
  color: #fff;
  background-color: #484848;
  border-color: #444444;
  box-shadow: 0 0 0 0.25rem rgba(111, 111, 111, 0.5);
}

.btn-check:checked + .btn-grey-4, .btn-check:active + .btn-grey-4, .btn-grey-4:active, .btn-grey-4.active, .show > .btn-grey-4.dropdown-toggle {
  color: #fff;
  background-color: #444444;
  border-color: #404040;
}

.btn-check:checked + .btn-grey-4:focus, .btn-check:active + .btn-grey-4:focus, .btn-grey-4:active:focus, .btn-grey-4.active:focus, .show > .btn-grey-4.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(111, 111, 111, 0.5);
}

.btn-grey-4:disabled, .btn-grey-4.disabled {
  color: #fff;
  background-color: #555;
  border-color: #555;
}

.btn-blue {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-blue:hover {
  color: #fff;
  background-color: #0055d9;
  border-color: #0050cc;
}

.btn-check:focus + .btn-blue, .btn-blue:focus {
  color: #fff;
  background-color: #0055d9;
  border-color: #0050cc;
  box-shadow: 0 0 0 0.25rem rgba(38, 123, 255, 0.5);
}

.btn-check:checked + .btn-blue, .btn-check:active + .btn-blue, .btn-blue:active, .btn-blue.active, .show > .btn-blue.dropdown-toggle {
  color: #fff;
  background-color: #0050cc;
  border-color: #004bbf;
}

.btn-check:checked + .btn-blue:focus, .btn-check:active + .btn-blue:focus, .btn-blue:active:focus, .btn-blue.active:focus, .show > .btn-blue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 123, 255, 0.5);
}

.btn-blue:disabled, .btn-blue.disabled {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-transparent-blue {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-transparent-blue:hover {
  color: #000;
  background-color: #f8fbff;
  border-color: #f8fbff;
}

.btn-check:focus + .btn-transparent-blue, .btn-transparent-blue:focus {
  color: #000;
  background-color: #f8fbff;
  border-color: #f8fbff;
  box-shadow: 0 0 0 0.25rem rgba(210, 213, 217, 0.5);
}

.btn-check:checked + .btn-transparent-blue, .btn-check:active + .btn-transparent-blue, .btn-transparent-blue:active, .btn-transparent-blue.active, .show > .btn-transparent-blue.dropdown-toggle {
  color: #000;
  background-color: #f9fbff;
  border-color: #f8fbff;
}

.btn-check:checked + .btn-transparent-blue:focus, .btn-check:active + .btn-transparent-blue:focus, .btn-transparent-blue:active:focus, .btn-transparent-blue.active:focus, .show > .btn-transparent-blue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(210, 213, 217, 0.5);
}

.btn-transparent-blue:disabled, .btn-transparent-blue.disabled {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-blue-10 {
  color: #000;
  background-color: #e5efff;
  border-color: #e5efff;
}

.btn-blue-10:hover {
  color: #000;
  background-color: #e9f1ff;
  border-color: #e8f1ff;
}

.btn-check:focus + .btn-blue-10, .btn-blue-10:focus {
  color: #000;
  background-color: #e9f1ff;
  border-color: #e8f1ff;
  box-shadow: 0 0 0 0.25rem rgba(195, 203, 217, 0.5);
}

.btn-check:checked + .btn-blue-10, .btn-check:active + .btn-blue-10, .btn-blue-10:active, .btn-blue-10.active, .show > .btn-blue-10.dropdown-toggle {
  color: #000;
  background-color: #eaf2ff;
  border-color: #e8f1ff;
}

.btn-check:checked + .btn-blue-10:focus, .btn-check:active + .btn-blue-10:focus, .btn-blue-10:active:focus, .btn-blue-10.active:focus, .show > .btn-blue-10.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(195, 203, 217, 0.5);
}

.btn-blue-10:disabled, .btn-blue-10.disabled {
  color: #000;
  background-color: #e5efff;
  border-color: #e5efff;
}

.btn-mint {
  color: #000;
  background-color: #00fad7;
  border-color: #00fad7;
}

.btn-mint:hover {
  color: #000;
  background-color: #26fbdd;
  border-color: #1afbdb;
}

.btn-check:focus + .btn-mint, .btn-mint:focus {
  color: #000;
  background-color: #26fbdd;
  border-color: #1afbdb;
  box-shadow: 0 0 0 0.25rem rgba(0, 213, 183, 0.5);
}

.btn-check:checked + .btn-mint, .btn-check:active + .btn-mint, .btn-mint:active, .btn-mint.active, .show > .btn-mint.dropdown-toggle {
  color: #000;
  background-color: #33fbdf;
  border-color: #1afbdb;
}

.btn-check:checked + .btn-mint:focus, .btn-check:active + .btn-mint:focus, .btn-mint:active:focus, .btn-mint.active:focus, .show > .btn-mint.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 213, 183, 0.5);
}

.btn-mint:disabled, .btn-mint.disabled {
  color: #000;
  background-color: #00fad7;
  border-color: #00fad7;
}

.btn-dark-green {
  color: #fff;
  background-color: #14373c;
  border-color: #14373c;
}

.btn-dark-green:hover {
  color: #fff;
  background-color: #112f33;
  border-color: #102c30;
}

.btn-check:focus + .btn-dark-green, .btn-dark-green:focus {
  color: #fff;
  background-color: #112f33;
  border-color: #102c30;
  box-shadow: 0 0 0 0.25rem rgba(55, 85, 89, 0.5);
}

.btn-check:checked + .btn-dark-green, .btn-check:active + .btn-dark-green, .btn-dark-green:active, .btn-dark-green.active, .show > .btn-dark-green.dropdown-toggle {
  color: #fff;
  background-color: #102c30;
  border-color: #0f292d;
}

.btn-check:checked + .btn-dark-green:focus, .btn-check:active + .btn-dark-green:focus, .btn-dark-green:active:focus, .btn-dark-green.active:focus, .show > .btn-dark-green.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(55, 85, 89, 0.5);
}

.btn-dark-green:disabled, .btn-dark-green.disabled {
  color: #fff;
  background-color: #14373c;
  border-color: #14373c;
}

.btn-red {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-red:hover {
  color: #fff;
  background-color: #b23238;
  border-color: #a72f35;
}

.btn-check:focus + .btn-red, .btn-red:focus {
  color: #fff;
  background-color: #b23238;
  border-color: #a72f35;
  box-shadow: 0 0 0 0.25rem rgba(216, 88, 94, 0.5);
}

.btn-check:checked + .btn-red, .btn-check:active + .btn-red, .btn-red:active, .btn-red.active, .show > .btn-red.dropdown-toggle {
  color: #fff;
  background-color: #a72f35;
  border-color: #9d2c32;
}

.btn-check:checked + .btn-red:focus, .btn-check:active + .btn-red:focus, .btn-red:active:focus, .btn-red.active:focus, .show > .btn-red.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(216, 88, 94, 0.5);
}

.btn-red:disabled, .btn-red.disabled {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-green {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-green:hover {
  color: #fff;
  background-color: #0c7405;
  border-color: #0b6e05;
}

.btn-check:focus + .btn-green, .btn-green:focus {
  color: #fff;
  background-color: #0c7405;
  border-color: #0b6e05;
  box-shadow: 0 0 0 0.25rem rgba(50, 155, 43, 0.5);
}

.btn-check:checked + .btn-green, .btn-check:active + .btn-green, .btn-green:active, .btn-green.active, .show > .btn-green.dropdown-toggle {
  color: #fff;
  background-color: #0b6e05;
  border-color: #0b6705;
}

.btn-check:checked + .btn-green:focus, .btn-check:active + .btn-green:focus, .btn-green:active:focus, .btn-green.active:focus, .show > .btn-green.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(50, 155, 43, 0.5);
}

.btn-green:disabled, .btn-green.disabled {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-black {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-black:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}

.btn-check:focus + .btn-black, .btn-black:focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}

.btn-check:checked + .btn-black, .btn-check:active + .btn-black, .btn-black:active, .btn-black.active, .show > .btn-black.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}

.btn-check:checked + .btn-black:focus, .btn-check:active + .btn-black:focus, .btn-black:active:focus, .btn-black.active:focus, .show > .btn-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}

.btn-black:disabled, .btn-black.disabled {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-info {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-info:hover {
  color: #fff;
  background-color: #0055d9;
  border-color: #0050cc;
}

.btn-check:focus + .btn-info, .btn-info:focus {
  color: #fff;
  background-color: #0055d9;
  border-color: #0050cc;
  box-shadow: 0 0 0 0.25rem rgba(38, 123, 255, 0.5);
}

.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #0050cc;
  border-color: #004bbf;
}

.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 123, 255, 0.5);
}

.btn-info:disabled, .btn-info.disabled {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-warning {
  color: #000;
  background-color: #ff9b40;
  border-color: #ff9b40;
}

.btn-warning:hover {
  color: #000;
  background-color: #ffaa5d;
  border-color: #ffa553;
}

.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffaa5d;
  border-color: #ffa553;
  box-shadow: 0 0 0 0.25rem rgba(217, 132, 54, 0.5);
}

.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffaf66;
  border-color: #ffa553;
}

.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 132, 54, 0.5);
}

.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ff9b40;
  border-color: #ff9b40;
}

.btn-app-background {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-app-background:hover {
  color: #000;
  background-color: #f8fbff;
  border-color: #f8fbff;
}

.btn-check:focus + .btn-app-background, .btn-app-background:focus {
  color: #000;
  background-color: #f8fbff;
  border-color: #f8fbff;
  box-shadow: 0 0 0 0.25rem rgba(210, 213, 217, 0.5);
}

.btn-check:checked + .btn-app-background, .btn-check:active + .btn-app-background, .btn-app-background:active, .btn-app-background.active, .show > .btn-app-background.dropdown-toggle {
  color: #000;
  background-color: #f9fbff;
  border-color: #f8fbff;
}

.btn-check:checked + .btn-app-background:focus, .btn-check:active + .btn-app-background:focus, .btn-app-background:active:focus, .btn-app-background.active:focus, .show > .btn-app-background.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(210, 213, 217, 0.5);
}

.btn-app-background:disabled, .btn-app-background.disabled {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-outline-primary {
  color: #000;
  border-color: #000;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #000;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #fff;
  border-color: #fff;
}

.btn-outline-secondary:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #fff;
  background-color: transparent;
}

.btn-outline-danger {
  color: #d13b42;
  border-color: #d13b42;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.5);
}

.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.5);
}

.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #d13b42;
  background-color: transparent;
}

.btn-outline-success {
  color: #0e8906;
  border-color: #0e8906;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.5);
}

.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.5);
}

.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #0e8906;
  background-color: transparent;
}

.btn-outline-muted {
  color: #767676;
  border-color: #767676;
}

.btn-outline-muted:hover {
  color: #fff;
  background-color: #767676;
  border-color: #767676;
}

.btn-check:focus + .btn-outline-muted, .btn-outline-muted:focus {
  box-shadow: 0 0 0 0.25rem rgba(118, 118, 118, 0.5);
}

.btn-check:checked + .btn-outline-muted, .btn-check:active + .btn-outline-muted, .btn-outline-muted:active, .btn-outline-muted.active, .btn-outline-muted.dropdown-toggle.show {
  color: #fff;
  background-color: #767676;
  border-color: #767676;
}

.btn-check:checked + .btn-outline-muted:focus, .btn-check:active + .btn-outline-muted:focus, .btn-outline-muted:active:focus, .btn-outline-muted.active:focus, .btn-outline-muted.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(118, 118, 118, 0.5);
}

.btn-outline-muted:disabled, .btn-outline-muted.disabled {
  color: #767676;
  background-color: transparent;
}

.btn-outline-grey-1 {
  color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-outline-grey-1:hover {
  color: #000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-check:focus + .btn-outline-grey-1, .btn-outline-grey-1:focus {
  box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}

.btn-check:checked + .btn-outline-grey-1, .btn-check:active + .btn-outline-grey-1, .btn-outline-grey-1:active, .btn-outline-grey-1.active, .btn-outline-grey-1.dropdown-toggle.show {
  color: #000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-check:checked + .btn-outline-grey-1:focus, .btn-check:active + .btn-outline-grey-1:focus, .btn-outline-grey-1:active:focus, .btn-outline-grey-1.active:focus, .btn-outline-grey-1.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}

.btn-outline-grey-1:disabled, .btn-outline-grey-1.disabled {
  color: #f5f5f5;
  background-color: transparent;
}

.btn-outline-grey-2 {
  color: #ebebeb;
  border-color: #ebebeb;
}

.btn-outline-grey-2:hover {
  color: #000;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.btn-check:focus + .btn-outline-grey-2, .btn-outline-grey-2:focus {
  box-shadow: 0 0 0 0.25rem rgba(235, 235, 235, 0.5);
}

.btn-check:checked + .btn-outline-grey-2, .btn-check:active + .btn-outline-grey-2, .btn-outline-grey-2:active, .btn-outline-grey-2.active, .btn-outline-grey-2.dropdown-toggle.show {
  color: #000;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.btn-check:checked + .btn-outline-grey-2:focus, .btn-check:active + .btn-outline-grey-2:focus, .btn-outline-grey-2:active:focus, .btn-outline-grey-2.active:focus, .btn-outline-grey-2.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(235, 235, 235, 0.5);
}

.btn-outline-grey-2:disabled, .btn-outline-grey-2.disabled {
  color: #ebebeb;
  background-color: transparent;
}

.btn-outline-grey-3 {
  color: #aaa;
  border-color: #aaa;
}

.btn-outline-grey-3:hover {
  color: #000;
  background-color: #aaa;
  border-color: #aaa;
}

.btn-check:focus + .btn-outline-grey-3, .btn-outline-grey-3:focus {
  box-shadow: 0 0 0 0.25rem rgba(170, 170, 170, 0.5);
}

.btn-check:checked + .btn-outline-grey-3, .btn-check:active + .btn-outline-grey-3, .btn-outline-grey-3:active, .btn-outline-grey-3.active, .btn-outline-grey-3.dropdown-toggle.show {
  color: #000;
  background-color: #aaa;
  border-color: #aaa;
}

.btn-check:checked + .btn-outline-grey-3:focus, .btn-check:active + .btn-outline-grey-3:focus, .btn-outline-grey-3:active:focus, .btn-outline-grey-3.active:focus, .btn-outline-grey-3.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(170, 170, 170, 0.5);
}

.btn-outline-grey-3:disabled, .btn-outline-grey-3.disabled {
  color: #aaa;
  background-color: transparent;
}

.btn-outline-grey-4 {
  color: #555;
  border-color: #555;
}

.btn-outline-grey-4:hover {
  color: #fff;
  background-color: #555;
  border-color: #555;
}

.btn-check:focus + .btn-outline-grey-4, .btn-outline-grey-4:focus {
  box-shadow: 0 0 0 0.25rem rgba(85, 85, 85, 0.5);
}

.btn-check:checked + .btn-outline-grey-4, .btn-check:active + .btn-outline-grey-4, .btn-outline-grey-4:active, .btn-outline-grey-4.active, .btn-outline-grey-4.dropdown-toggle.show {
  color: #fff;
  background-color: #555;
  border-color: #555;
}

.btn-check:checked + .btn-outline-grey-4:focus, .btn-check:active + .btn-outline-grey-4:focus, .btn-outline-grey-4:active:focus, .btn-outline-grey-4.active:focus, .btn-outline-grey-4.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(85, 85, 85, 0.5);
}

.btn-outline-grey-4:disabled, .btn-outline-grey-4.disabled {
  color: #555;
  background-color: transparent;
}

.btn-outline-blue {
  color: #0064ff;
  border-color: #0064ff;
}

.btn-outline-blue:hover {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-check:focus + .btn-outline-blue, .btn-outline-blue:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 100, 255, 0.5);
}

.btn-check:checked + .btn-outline-blue, .btn-check:active + .btn-outline-blue, .btn-outline-blue:active, .btn-outline-blue.active, .btn-outline-blue.dropdown-toggle.show {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-check:checked + .btn-outline-blue:focus, .btn-check:active + .btn-outline-blue:focus, .btn-outline-blue:active:focus, .btn-outline-blue.active:focus, .btn-outline-blue.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 100, 255, 0.5);
}

.btn-outline-blue:disabled, .btn-outline-blue.disabled {
  color: #0064ff;
  background-color: transparent;
}

.btn-outline-transparent-blue {
  color: #f7faff;
  border-color: #f7faff;
}

.btn-outline-transparent-blue:hover {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-check:focus + .btn-outline-transparent-blue, .btn-outline-transparent-blue:focus {
  box-shadow: 0 0 0 0.25rem rgba(247, 250, 255, 0.5);
}

.btn-check:checked + .btn-outline-transparent-blue, .btn-check:active + .btn-outline-transparent-blue, .btn-outline-transparent-blue:active, .btn-outline-transparent-blue.active, .btn-outline-transparent-blue.dropdown-toggle.show {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-check:checked + .btn-outline-transparent-blue:focus, .btn-check:active + .btn-outline-transparent-blue:focus, .btn-outline-transparent-blue:active:focus, .btn-outline-transparent-blue.active:focus, .btn-outline-transparent-blue.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(247, 250, 255, 0.5);
}

.btn-outline-transparent-blue:disabled, .btn-outline-transparent-blue.disabled {
  color: #f7faff;
  background-color: transparent;
}

.btn-outline-blue-10 {
  color: #e5efff;
  border-color: #e5efff;
}

.btn-outline-blue-10:hover {
  color: #000;
  background-color: #e5efff;
  border-color: #e5efff;
}

.btn-check:focus + .btn-outline-blue-10, .btn-outline-blue-10:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 239, 255, 0.5);
}

.btn-check:checked + .btn-outline-blue-10, .btn-check:active + .btn-outline-blue-10, .btn-outline-blue-10:active, .btn-outline-blue-10.active, .btn-outline-blue-10.dropdown-toggle.show {
  color: #000;
  background-color: #e5efff;
  border-color: #e5efff;
}

.btn-check:checked + .btn-outline-blue-10:focus, .btn-check:active + .btn-outline-blue-10:focus, .btn-outline-blue-10:active:focus, .btn-outline-blue-10.active:focus, .btn-outline-blue-10.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 239, 255, 0.5);
}

.btn-outline-blue-10:disabled, .btn-outline-blue-10.disabled {
  color: #e5efff;
  background-color: transparent;
}

.btn-outline-mint {
  color: #00fad7;
  border-color: #00fad7;
}

.btn-outline-mint:hover {
  color: #000;
  background-color: #00fad7;
  border-color: #00fad7;
}

.btn-check:focus + .btn-outline-mint, .btn-outline-mint:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 250, 215, 0.5);
}

.btn-check:checked + .btn-outline-mint, .btn-check:active + .btn-outline-mint, .btn-outline-mint:active, .btn-outline-mint.active, .btn-outline-mint.dropdown-toggle.show {
  color: #000;
  background-color: #00fad7;
  border-color: #00fad7;
}

.btn-check:checked + .btn-outline-mint:focus, .btn-check:active + .btn-outline-mint:focus, .btn-outline-mint:active:focus, .btn-outline-mint.active:focus, .btn-outline-mint.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 250, 215, 0.5);
}

.btn-outline-mint:disabled, .btn-outline-mint.disabled {
  color: #00fad7;
  background-color: transparent;
}

.btn-outline-dark-green {
  color: #14373c;
  border-color: #14373c;
}

.btn-outline-dark-green:hover {
  color: #fff;
  background-color: #14373c;
  border-color: #14373c;
}

.btn-check:focus + .btn-outline-dark-green, .btn-outline-dark-green:focus {
  box-shadow: 0 0 0 0.25rem rgba(20, 55, 60, 0.5);
}

.btn-check:checked + .btn-outline-dark-green, .btn-check:active + .btn-outline-dark-green, .btn-outline-dark-green:active, .btn-outline-dark-green.active, .btn-outline-dark-green.dropdown-toggle.show {
  color: #fff;
  background-color: #14373c;
  border-color: #14373c;
}

.btn-check:checked + .btn-outline-dark-green:focus, .btn-check:active + .btn-outline-dark-green:focus, .btn-outline-dark-green:active:focus, .btn-outline-dark-green.active:focus, .btn-outline-dark-green.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(20, 55, 60, 0.5);
}

.btn-outline-dark-green:disabled, .btn-outline-dark-green.disabled {
  color: #14373c;
  background-color: transparent;
}

.btn-outline-red {
  color: #d13b42;
  border-color: #d13b42;
}

.btn-outline-red:hover {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-check:focus + .btn-outline-red, .btn-outline-red:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.5);
}

.btn-check:checked + .btn-outline-red, .btn-check:active + .btn-outline-red, .btn-outline-red:active, .btn-outline-red.active, .btn-outline-red.dropdown-toggle.show {
  color: #fff;
  background-color: #d13b42;
  border-color: #d13b42;
}

.btn-check:checked + .btn-outline-red:focus, .btn-check:active + .btn-outline-red:focus, .btn-outline-red:active:focus, .btn-outline-red.active:focus, .btn-outline-red.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 59, 66, 0.5);
}

.btn-outline-red:disabled, .btn-outline-red.disabled {
  color: #d13b42;
  background-color: transparent;
}

.btn-outline-green {
  color: #0e8906;
  border-color: #0e8906;
}

.btn-outline-green:hover {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-check:focus + .btn-outline-green, .btn-outline-green:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.5);
}

.btn-check:checked + .btn-outline-green, .btn-check:active + .btn-outline-green, .btn-outline-green:active, .btn-outline-green.active, .btn-outline-green.dropdown-toggle.show {
  color: #fff;
  background-color: #0e8906;
  border-color: #0e8906;
}

.btn-check:checked + .btn-outline-green:focus, .btn-check:active + .btn-outline-green:focus, .btn-outline-green:active:focus, .btn-outline-green.active:focus, .btn-outline-green.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 137, 6, 0.5);
}

.btn-outline-green:disabled, .btn-outline-green.disabled {
  color: #0e8906;
  background-color: transparent;
}

.btn-outline-black {
  color: #000;
  border-color: #000;
}

.btn-outline-black:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-check:focus + .btn-outline-black, .btn-outline-black:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-check:checked + .btn-outline-black, .btn-check:active + .btn-outline-black, .btn-outline-black:active, .btn-outline-black.active, .btn-outline-black.dropdown-toggle.show {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-check:checked + .btn-outline-black:focus, .btn-check:active + .btn-outline-black:focus, .btn-outline-black:active:focus, .btn-outline-black.active:focus, .btn-outline-black.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-outline-black:disabled, .btn-outline-black.disabled {
  color: #000;
  background-color: transparent;
}

.btn-outline-info {
  color: #0064ff;
  border-color: #0064ff;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 100, 255, 0.5);
}

.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #fff;
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 100, 255, 0.5);
}

.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0064ff;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ff9b40;
  border-color: #ff9b40;
}

.btn-outline-warning:hover {
  color: #000;
  background-color: #ff9b40;
  border-color: #ff9b40;
}

.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 155, 64, 0.5);
}

.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ff9b40;
  border-color: #ff9b40;
}

.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 155, 64, 0.5);
}

.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ff9b40;
  background-color: transparent;
}

.btn-outline-app-background {
  color: #f7faff;
  border-color: #f7faff;
}

.btn-outline-app-background:hover {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-check:focus + .btn-outline-app-background, .btn-outline-app-background:focus {
  box-shadow: 0 0 0 0.25rem rgba(247, 250, 255, 0.5);
}

.btn-check:checked + .btn-outline-app-background, .btn-check:active + .btn-outline-app-background, .btn-outline-app-background:active, .btn-outline-app-background.active, .btn-outline-app-background.dropdown-toggle.show {
  color: #000;
  background-color: #f7faff;
  border-color: #f7faff;
}

.btn-check:checked + .btn-outline-app-background:focus, .btn-check:active + .btn-outline-app-background:focus, .btn-outline-app-background:active:focus, .btn-outline-app-background.active:focus, .btn-outline-app-background.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(247, 250, 255, 0.5);
}

.btn-outline-app-background:disabled, .btn-outline-app-background.disabled {
  color: #f7faff;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}

.btn-link:hover {
  color: #0a58ca;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 30rem) {
  .list-group-horizontal-xs {
    flex-direction: row;
  }
  .list-group-horizontal-xs > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xs > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xs > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xs > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xs > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 36rem) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 48rem) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 62rem) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 75rem) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 87.5rem) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 112.5rem) {
  .list-group-horizontal-xxxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxxl > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: black;
  background-color: #cccccc;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: black;
  background-color: #b8b8b8;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: black;
  border-color: black;
}

.list-group-item-secondary {
  color: #666666;
  background-color: white;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #666666;
  background-color: #e6e6e6;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #666666;
  border-color: #666666;
}

.list-group-item-danger {
  color: #7d2328;
  background-color: #f6d8d9;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #7d2328;
  background-color: #ddc2c3;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7d2328;
  border-color: #7d2328;
}

.list-group-item-success {
  color: #085204;
  background-color: #cfe7cd;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #085204;
  background-color: #bad0b9;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #085204;
  border-color: #085204;
}

.list-group-item-muted {
  color: #474747;
  background-color: #e4e4e4;
}

.list-group-item-muted.list-group-item-action:hover, .list-group-item-muted.list-group-item-action:focus {
  color: #474747;
  background-color: #cdcdcd;
}

.list-group-item-muted.list-group-item-action.active {
  color: #fff;
  background-color: #474747;
  border-color: #474747;
}

.list-group-item-grey-1 {
  color: #626262;
  background-color: #fdfdfd;
}

.list-group-item-grey-1.list-group-item-action:hover, .list-group-item-grey-1.list-group-item-action:focus {
  color: #626262;
  background-color: #e4e4e4;
}

.list-group-item-grey-1.list-group-item-action.active {
  color: #fff;
  background-color: #626262;
  border-color: #626262;
}

.list-group-item-grey-2 {
  color: #5e5e5e;
  background-color: #fbfbfb;
}

.list-group-item-grey-2.list-group-item-action:hover, .list-group-item-grey-2.list-group-item-action:focus {
  color: #5e5e5e;
  background-color: #e2e2e2;
}

.list-group-item-grey-2.list-group-item-action.active {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.list-group-item-grey-3 {
  color: #666666;
  background-color: #eeeeee;
}

.list-group-item-grey-3.list-group-item-action:hover, .list-group-item-grey-3.list-group-item-action:focus {
  color: #666666;
  background-color: #d6d6d6;
}

.list-group-item-grey-3.list-group-item-action.active {
  color: #fff;
  background-color: #666666;
  border-color: #666666;
}

.list-group-item-grey-4 {
  color: #333333;
  background-color: #dddddd;
}

.list-group-item-grey-4.list-group-item-action:hover, .list-group-item-grey-4.list-group-item-action:focus {
  color: #333333;
  background-color: #c7c7c7;
}

.list-group-item-grey-4.list-group-item-action.active {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}

.list-group-item-blue {
  color: #003c99;
  background-color: #cce0ff;
}

.list-group-item-blue.list-group-item-action:hover, .list-group-item-blue.list-group-item-action:focus {
  color: #003c99;
  background-color: #b8cae6;
}

.list-group-item-blue.list-group-item-action.active {
  color: #fff;
  background-color: #003c99;
  border-color: #003c99;
}

.list-group-item-transparent-blue {
  color: #636466;
  background-color: #fdfeff;
}

.list-group-item-transparent-blue.list-group-item-action:hover, .list-group-item-transparent-blue.list-group-item-action:focus {
  color: #636466;
  background-color: #e4e5e6;
}

.list-group-item-transparent-blue.list-group-item-action.active {
  color: #fff;
  background-color: #636466;
  border-color: #636466;
}

.list-group-item-blue-10 {
  color: #5c6066;
  background-color: #fafcff;
}

.list-group-item-blue-10.list-group-item-action:hover, .list-group-item-blue-10.list-group-item-action:focus {
  color: #5c6066;
  background-color: #e1e3e6;
}

.list-group-item-blue-10.list-group-item-action.active {
  color: #fff;
  background-color: #5c6066;
  border-color: #5c6066;
}

.list-group-item-mint {
  color: #006456;
  background-color: #ccfef7;
}

.list-group-item-mint.list-group-item-action:hover, .list-group-item-mint.list-group-item-action:focus {
  color: #006456;
  background-color: #b8e5de;
}

.list-group-item-mint.list-group-item-action.active {
  color: #fff;
  background-color: #006456;
  border-color: #006456;
}

.list-group-item-dark-green {
  color: #0c2124;
  background-color: #d0d7d8;
}

.list-group-item-dark-green.list-group-item-action:hover, .list-group-item-dark-green.list-group-item-action:focus {
  color: #0c2124;
  background-color: #bbc2c2;
}

.list-group-item-dark-green.list-group-item-action.active {
  color: #fff;
  background-color: #0c2124;
  border-color: #0c2124;
}

.list-group-item-red {
  color: #7d2328;
  background-color: #f6d8d9;
}

.list-group-item-red.list-group-item-action:hover, .list-group-item-red.list-group-item-action:focus {
  color: #7d2328;
  background-color: #ddc2c3;
}

.list-group-item-red.list-group-item-action.active {
  color: #fff;
  background-color: #7d2328;
  border-color: #7d2328;
}

.list-group-item-green {
  color: #085204;
  background-color: #cfe7cd;
}

.list-group-item-green.list-group-item-action:hover, .list-group-item-green.list-group-item-action:focus {
  color: #085204;
  background-color: #bad0b9;
}

.list-group-item-green.list-group-item-action.active {
  color: #fff;
  background-color: #085204;
  border-color: #085204;
}

.list-group-item-black {
  color: black;
  background-color: #cccccc;
}

.list-group-item-black.list-group-item-action:hover, .list-group-item-black.list-group-item-action:focus {
  color: black;
  background-color: #b8b8b8;
}

.list-group-item-black.list-group-item-action.active {
  color: #fff;
  background-color: black;
  border-color: black;
}

.list-group-item-info {
  color: #003c99;
  background-color: #cce0ff;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #003c99;
  background-color: #b8cae6;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #003c99;
  border-color: #003c99;
}

.list-group-item-warning {
  color: #995d26;
  background-color: #ffebd9;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #995d26;
  background-color: #e6d4c3;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #995d26;
  border-color: #995d26;
}

.list-group-item-app-background {
  color: #636466;
  background-color: #fdfeff;
}

.list-group-item-app-background.list-group-item-action:hover, .list-group-item-app-background.list-group-item-action:focus {
  color: #636466;
  background-color: #e4e5e6;
}

.list-group-item-app-background.list-group-item-action.active {
  color: #fff;
  background-color: #636466;
  border-color: #636466;
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 30rem) {
  .dropdown-menu-xs-start {
    --bs-position: start;
  }
  .dropdown-menu-xs-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xs-end {
    --bs-position: end;
  }
  .dropdown-menu-xs-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 36rem) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 48rem) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 62rem) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 75rem) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 87.5rem) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 112.5rem) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}

.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 1rem;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: 1rem;
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 36rem) {
  .container-sm, .container-xs, .container {
    max-width: 540px;
  }
}
@media (min-width: 48rem) {
  .container-md, .container-sm, .container-xs, .container {
    max-width: 720px;
  }
}
@media (min-width: 62rem) {
  .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 960px;
  }
}
@media (min-width: 75rem) {
  .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 1140px;
  }
}
@media (min-width: 87.5rem) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 1320px;
  }
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.40625rem;
  padding-bottom: 0.40625rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: 75vh;
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 30rem) {
  .navbar-expand-xs {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xs .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xs .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xs .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xs .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xs .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xs .navbar-toggler {
    display: none;
  }
  .navbar-expand-xs .offcanvas-header {
    display: none;
  }
  .navbar-expand-xs .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xs .offcanvas-top,
  .navbar-expand-xs .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xs .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 36rem) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
  .navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 48rem) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
  .navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 62rem) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
  .navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 75rem) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
  .navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 87.5rem) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
  .navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 112.5rem) {
  .navbar-expand-xxxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxxl .offcanvas-top,
  .navbar-expand-xxxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}

.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}

.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 0;
  border: 0 solid transparent;
  border-radius: 0;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: black;
  background-color: #cccccc;
  border-color: #b3b3b3;
}

.alert-primary .alert-link {
  color: black;
}

.alert-secondary {
  color: #666666;
  background-color: white;
  border-color: white;
}

.alert-secondary .alert-link {
  color: #525252;
}

.alert-danger {
  color: #7d2328;
  background-color: #f6d8d9;
  border-color: #f1c4c6;
}

.alert-danger .alert-link {
  color: #641c20;
}

.alert-success {
  color: #085204;
  background-color: #cfe7cd;
  border-color: #b7dcb4;
}

.alert-success .alert-link {
  color: #064203;
}

.alert-muted {
  color: #474747;
  background-color: #e4e4e4;
  border-color: #d6d6d6;
}

.alert-muted .alert-link {
  color: #393939;
}

.alert-grey-1 {
  color: #626262;
  background-color: #fdfdfd;
  border-color: #fcfcfc;
}

.alert-grey-1 .alert-link {
  color: #4e4e4e;
}

.alert-grey-2 {
  color: #5e5e5e;
  background-color: #fbfbfb;
  border-color: #f9f9f9;
}

.alert-grey-2 .alert-link {
  color: #4b4b4b;
}

.alert-grey-3 {
  color: #666666;
  background-color: #eeeeee;
  border-color: #e6e6e6;
}

.alert-grey-3 .alert-link {
  color: #525252;
}

.alert-grey-4 {
  color: #333333;
  background-color: #dddddd;
  border-color: #cccccc;
}

.alert-grey-4 .alert-link {
  color: #292929;
}

.alert-blue {
  color: #003c99;
  background-color: #cce0ff;
  border-color: #b3d1ff;
}

.alert-blue .alert-link {
  color: #00307a;
}

.alert-transparent-blue {
  color: #636466;
  background-color: #fdfeff;
  border-color: #fdfeff;
}

.alert-transparent-blue .alert-link {
  color: #4f5052;
}

.alert-blue-10 {
  color: #5c6066;
  background-color: #fafcff;
  border-color: #f7faff;
}

.alert-blue-10 .alert-link {
  color: #4a4d52;
}

.alert-mint {
  color: #006456;
  background-color: #ccfef7;
  border-color: #b3fef3;
}

.alert-mint .alert-link {
  color: #005045;
}

.alert-dark-green {
  color: #0c2124;
  background-color: #d0d7d8;
  border-color: #b9c3c5;
}

.alert-dark-green .alert-link {
  color: #0a1a1d;
}

.alert-red {
  color: #7d2328;
  background-color: #f6d8d9;
  border-color: #f1c4c6;
}

.alert-red .alert-link {
  color: #641c20;
}

.alert-green {
  color: #085204;
  background-color: #cfe7cd;
  border-color: #b7dcb4;
}

.alert-green .alert-link {
  color: #064203;
}

.alert-black {
  color: black;
  background-color: #cccccc;
  border-color: #b3b3b3;
}

.alert-black .alert-link {
  color: black;
}

.alert-info {
  color: #003c99;
  background-color: #cce0ff;
  border-color: #b3d1ff;
}

.alert-info .alert-link {
  color: #00307a;
}

.alert-warning {
  color: #995d26;
  background-color: #ffebd9;
  border-color: #ffe1c6;
}

.alert-warning .alert-link {
  color: #7a4a1e;
}

.alert-app-background {
  color: #636466;
  background-color: #fdfeff;
  border-color: #fdfeff;
}

.alert-app-background .alert-link {
  color: #4f5052;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.1rem 0.5rem 0.03125rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #000 !important;
}

.border-secondary {
  border-color: #fff !important;
}

.border-danger {
  border-color: #d13b42 !important;
}

.border-success {
  border-color: #0e8906 !important;
}

.border-muted {
  border-color: #767676 !important;
}

.border-grey-1 {
  border-color: #f5f5f5 !important;
}

.border-grey-2 {
  border-color: #ebebeb !important;
}

.border-grey-3 {
  border-color: #aaa !important;
}

.border-grey-4 {
  border-color: #555 !important;
}

.border-blue {
  border-color: #0064ff !important;
}

.border-transparent-blue {
  border-color: #f7faff !important;
}

.border-blue-10 {
  border-color: #e5efff !important;
}

.border-mint {
  border-color: #00fad7 !important;
}

.border-dark-green {
  border-color: #14373c !important;
}

.border-red {
  border-color: #d13b42 !important;
}

.border-green {
  border-color: #0e8906 !important;
}

.border-black {
  border-color: #000 !important;
}

.border-info {
  border-color: #0064ff !important;
}

.border-warning {
  border-color: #ff9b40 !important;
}

.border-app-background {
  border-color: #f7faff !important;
}

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-6 {
  gap: 4.5rem !important;
}

.gap-7 {
  gap: 2rem !important;
}

.gap-8 {
  gap: 1.25rem !important;
}

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 0.75rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

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

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 4.5rem !important;
}

.m-7 {
  margin: 2rem !important;
}

.m-8 {
  margin: 1.25rem !important;
}

.m-9 {
  margin: 2.25rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-11 {
  margin: 0.75rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-6 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.mx-7 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-8 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-9 {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.mx-10 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-11 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-6 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-7 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-8 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-11 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 4.5rem !important;
}

.mt-7 {
  margin-top: 2rem !important;
}

.mt-8 {
  margin-top: 1.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-11 {
  margin-top: 0.75rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-6 {
  margin-right: 4.5rem !important;
}

.me-7 {
  margin-right: 2rem !important;
}

.me-8 {
  margin-right: 1.25rem !important;
}

.me-9 {
  margin-right: 2.25rem !important;
}

.me-10 {
  margin-right: 2.5rem !important;
}

.me-11 {
  margin-right: 0.75rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 4.5rem !important;
}

.mb-7 {
  margin-bottom: 2rem !important;
}

.mb-8 {
  margin-bottom: 1.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-11 {
  margin-bottom: 0.75rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-6 {
  margin-left: 4.5rem !important;
}

.ms-7 {
  margin-left: 2rem !important;
}

.ms-8 {
  margin-left: 1.25rem !important;
}

.ms-9 {
  margin-left: 2.25rem !important;
}

.ms-10 {
  margin-left: 2.5rem !important;
}

.ms-11 {
  margin-left: 0.75rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 4.5rem !important;
}

.p-7 {
  padding: 2rem !important;
}

.p-8 {
  padding: 1.25rem !important;
}

.p-9 {
  padding: 2.25rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-11 {
  padding: 0.75rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-6 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

.px-7 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-8 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-9 {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-11 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-7 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-8 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-11 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pt-7 {
  padding-top: 2rem !important;
}

.pt-8 {
  padding-top: 1.25rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-11 {
  padding-top: 0.75rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pe-6 {
  padding-right: 4.5rem !important;
}

.pe-7 {
  padding-right: 2rem !important;
}

.pe-8 {
  padding-right: 1.25rem !important;
}

.pe-9 {
  padding-right: 2.25rem !important;
}

.pe-10 {
  padding-right: 2.5rem !important;
}

.pe-11 {
  padding-right: 0.75rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

.pb-7 {
  padding-bottom: 2rem !important;
}

.pb-8 {
  padding-bottom: 1.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pb-11 {
  padding-bottom: 0.75rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-6 {
  padding-left: 4.5rem !important;
}

.ps-7 {
  padding-left: 2rem !important;
}

.ps-8 {
  padding-left: 1.25rem !important;
}

.ps-9 {
  padding-left: 2.25rem !important;
}

.ps-10 {
  padding-left: 2.5rem !important;
}

.ps-11 {
  padding-left: 0.75rem !important;
}

.font-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: 2rem !important;
}

.fs-2 {
  font-size: 1.75rem !important;
}

.fs-3 {
  font-size: 1.5rem !important;
}

.fs-4 {
  font-size: 1.25rem !important;
}

.fs-5 {
  font-size: 1rem !important;
}

.fs-6 {
  font-size: 0.875rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 1) !important;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 1) !important;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(209, 59, 66, 1) !important;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(14, 137, 6, 1) !important;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-grey-1 {
  --bs-text-opacity: 1;
  color: rgba(245, 245, 245, 1) !important;
  color: rgba(var(--bs-grey-1-rgb), var(--bs-text-opacity)) !important;
}

.text-grey-2 {
  --bs-text-opacity: 1;
  color: rgba(235, 235, 235, 1) !important;
  color: rgba(var(--bs-grey-2-rgb), var(--bs-text-opacity)) !important;
}

.text-grey-3 {
  --bs-text-opacity: 1;
  color: rgba(170, 170, 170, 1) !important;
  color: rgba(var(--bs-grey-3-rgb), var(--bs-text-opacity)) !important;
}

.text-grey-4 {
  --bs-text-opacity: 1;
  color: rgba(85, 85, 85, 1) !important;
  color: rgba(var(--bs-grey-4-rgb), var(--bs-text-opacity)) !important;
}

.text-blue {
  --bs-text-opacity: 1;
  color: rgba(0, 100, 255, 1) !important;
  color: rgba(var(--bs-blue-rgb), var(--bs-text-opacity)) !important;
}

.text-transparent-blue {
  --bs-text-opacity: 1;
  color: rgba(247, 250, 255, 1) !important;
  color: rgba(var(--bs-transparent-blue-rgb), var(--bs-text-opacity)) !important;
}

.text-blue-10 {
  --bs-text-opacity: 1;
  color: rgba(229, 239, 255, 1) !important;
  color: rgba(var(--bs-blue-10-rgb), var(--bs-text-opacity)) !important;
}

.text-mint {
  --bs-text-opacity: 1;
  color: rgba(0, 250, 215, 1) !important;
  color: rgba(var(--bs-mint-rgb), var(--bs-text-opacity)) !important;
}

.text-dark-green {
  --bs-text-opacity: 1;
  color: rgba(20, 55, 60, 1) !important;
  color: rgba(var(--bs-dark-green-rgb), var(--bs-text-opacity)) !important;
}

.text-red {
  --bs-text-opacity: 1;
  color: rgba(209, 59, 66, 1) !important;
  color: rgba(var(--bs-red-rgb), var(--bs-text-opacity)) !important;
}

.text-green {
  --bs-text-opacity: 1;
  color: rgba(14, 137, 6, 1) !important;
  color: rgba(var(--bs-green-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 1) !important;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(0, 100, 255, 1) !important;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(255, 155, 64, 1) !important;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-app-background {
  --bs-text-opacity: 1;
  color: rgba(247, 250, 255, 1) !important;
  color: rgba(var(--bs-app-background-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 1) !important;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 1) !important;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(33, 37, 41, 1) !important;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1) !important;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(209, 59, 66, 1) !important;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(14, 137, 6, 1) !important;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-muted {
  --bs-bg-opacity: 1;
  background-color: rgba(118, 118, 118, 1) !important;
  background-color: rgba(var(--bs-muted-rgb), var(--bs-bg-opacity)) !important;
}

.bg-grey-1 {
  --bs-bg-opacity: 1;
  background-color: rgba(245, 245, 245, 1) !important;
  background-color: rgba(var(--bs-grey-1-rgb), var(--bs-bg-opacity)) !important;
}

.bg-grey-2 {
  --bs-bg-opacity: 1;
  background-color: rgba(235, 235, 235, 1) !important;
  background-color: rgba(var(--bs-grey-2-rgb), var(--bs-bg-opacity)) !important;
}

.bg-grey-3 {
  --bs-bg-opacity: 1;
  background-color: rgba(170, 170, 170, 1) !important;
  background-color: rgba(var(--bs-grey-3-rgb), var(--bs-bg-opacity)) !important;
}

.bg-grey-4 {
  --bs-bg-opacity: 1;
  background-color: rgba(85, 85, 85, 1) !important;
  background-color: rgba(var(--bs-grey-4-rgb), var(--bs-bg-opacity)) !important;
}

.bg-blue {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 100, 255, 1) !important;
  background-color: rgba(var(--bs-blue-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent-blue {
  --bs-bg-opacity: 1;
  background-color: rgba(247, 250, 255, 1) !important;
  background-color: rgba(var(--bs-transparent-blue-rgb), var(--bs-bg-opacity)) !important;
}

.bg-blue-10 {
  --bs-bg-opacity: 1;
  background-color: rgba(229, 239, 255, 1) !important;
  background-color: rgba(var(--bs-blue-10-rgb), var(--bs-bg-opacity)) !important;
}

.bg-mint {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 250, 215, 1) !important;
  background-color: rgba(var(--bs-mint-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark-green {
  --bs-bg-opacity: 1;
  background-color: rgba(20, 55, 60, 1) !important;
  background-color: rgba(var(--bs-dark-green-rgb), var(--bs-bg-opacity)) !important;
}

.bg-red {
  --bs-bg-opacity: 1;
  background-color: rgba(209, 59, 66, 1) !important;
  background-color: rgba(var(--bs-red-rgb), var(--bs-bg-opacity)) !important;
}

.bg-green {
  --bs-bg-opacity: 1;
  background-color: rgba(14, 137, 6, 1) !important;
  background-color: rgba(var(--bs-green-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1) !important;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 100, 255, 1) !important;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(255, 155, 64, 1) !important;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-app-background {
  --bs-bg-opacity: 1;
  background-color: rgba(247, 250, 255, 1) !important;
  background-color: rgba(var(--bs-app-background-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1) !important;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) !important;
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0 !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0 !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-end {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-start {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

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

.bg-grey-1 {
  background-color: #f5f5f5 !important;
}

.text-grey-4 {
  color: #555 !important;
}

.text-dark-green {
  color: #14373c !important;
}

.text-red {
  color: #d13b42 !important;
}

.text-success {
  color: #0e8906 !important;
}

.zg-border-grey-3 {
  border: 0.0625rem solid #aaa !important;
}

.zg-border-transparent {
  border: 0.0625rem solid transparent !important;
}

.zg-border-blue {
  border: 0.0625rem solid #0064ff !important;
}

.zg-border-blue-10 {
  border: 0.0625rem solid #e5efff !important;
}

.zg-mw-none {
  max-width: none !important;
}

.zg-mw-160 {
  max-width: 10rem !important;
}

.zg-mw-200 {
  max-width: 12.5rem !important;
}

.zg-mw-256 {
  max-width: 16rem !important;
}

.zg-mw-400 {
  max-width: 25rem !important;
}

.zg-mw-420 {
  max-width: 26.25rem !important;
}

.zg-mw-500 {
  max-width: 31.25rem !important;
}

.zg-mw-600 {
  max-width: 37.5rem !important;
}

.zg-border-top-none {
  border-top: none !important;
}

.zg-border-top-2 {
  border-top: 0.125rem solid #000 !important;
}

.zg-w-unset {
  width: auto !important;
  width: initial !important;
}

.zg-w-160 {
  width: 10rem !important;
}

.zg-w-350 {
  width: 21.875rem !important;
}

.zg-w-400 {
  width: 25rem !important;
}

.zg-w-500 {
  width: 31.25rem !important;
}

.zg-h-unset {
  height: auto !important;
  height: initial !important;
}

.zg-h-min-content {
  height: -moz-min-content !important;
  height: min-content !important;
}

.zg-h-dashboard-fill {
  height: calc(1vh * 100 - 4.25rem) !important;
  height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
}

.zg-box-shadow-none {
  box-shadow: none !important;
}

.zg-box-shadow-1 {
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
}

.zg-box-shadow-2 {
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
}

.zg-box-shadow-solid-mint {
  box-shadow: 0 0 0 0.125rem #00fad7 !important;
}

.zg-box-shadow-grey-3 {
  box-shadow: 0 0 0 0.0625rem #aaa !important;
}

.zg-box-shadow-blue-10 {
  box-shadow: 0 0 0 0.0625rem #e5efff !important;
}

.zg-lh-0 {
  line-height: 0 !important;
}

.zg-lh-1 {
  line-height: 1 !important;
}

.zg-lh-1-5 {
  line-height: 1.5 !important;
}

.zg-lh-2 {
  line-height: 2 !important;
}

.zg-minh-unset {
  min-height: 0 !important;
  min-height: initial !important;
}

.zg-minh-42 {
  min-height: 2.625rem !important;
}

.zg-minw-unset {
  min-width: 0 !important;
  min-width: initial !important;
}

.zg-minw-0 {
  min-width: 0 !important;
}

.zg-minw-33vw {
  min-width: 33vw !important;
}

.zg-minw-42 {
  min-width: 2.625rem !important;
}

.zg-border-radius-0 {
  border-radius: 0 !important;
}

.zg-border-radius-1 {
  border-radius: 0.25rem !important;
}

.zg-border-radius-2 {
  border-radius: 0.5rem !important;
}

.zg-grid-columns-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.zg-grid-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.zg-grid-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.zg-grid-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.zg-grid-columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.zg-grid-columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.zg-grid-rows-1 {
  grid-template-rows: repeat(1, 1fr) !important;
}

.zg-grid-rows-2 {
  grid-template-rows: repeat(2, 1fr) !important;
}

.zg-grid-rows-3 {
  grid-template-rows: repeat(3, 1fr) !important;
}

.zg-grid-rows-4 {
  grid-template-rows: repeat(4, 1fr) !important;
}

.zg-grid-rows-5 {
  grid-template-rows: repeat(5, 1fr) !important;
}

.zg-grid-rows-6 {
  grid-template-rows: repeat(6, 1fr) !important;
}

.zg-white-space-pre-wrap {
  white-space: pre-wrap !important;
}

.zg-text-overflow-ellipsis {
  text-overflow: ellipsis !important;
}

@media (min-width: 30rem) {
  .float-xs-start {
    float: left !important;
  }
  .float-xs-end {
    float: right !important;
  }
  .float-xs-none {
    float: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  .d-xs-none {
    display: none !important;
  }
  .flex-xs-fill {
    flex: 1 1 auto !important;
  }
  .flex-xs-row {
    flex-direction: row !important;
  }
  .flex-xs-column {
    flex-direction: column !important;
  }
  .flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xs-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xs-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xs-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xs-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xs-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xs-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xs-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xs-0 {
    gap: 0 !important;
  }
  .gap-xs-1 {
    gap: 0.25rem !important;
  }
  .gap-xs-2 {
    gap: 0.5rem !important;
  }
  .gap-xs-3 {
    gap: 1rem !important;
  }
  .gap-xs-4 {
    gap: 1.5rem !important;
  }
  .gap-xs-5 {
    gap: 3rem !important;
  }
  .gap-xs-6 {
    gap: 4.5rem !important;
  }
  .gap-xs-7 {
    gap: 2rem !important;
  }
  .gap-xs-8 {
    gap: 1.25rem !important;
  }
  .gap-xs-9 {
    gap: 2.25rem !important;
  }
  .gap-xs-10 {
    gap: 2.5rem !important;
  }
  .gap-xs-11 {
    gap: 0.75rem !important;
  }
  .justify-content-xs-start {
    justify-content: flex-start !important;
  }
  .justify-content-xs-end {
    justify-content: flex-end !important;
  }
  .justify-content-xs-center {
    justify-content: center !important;
  }
  .justify-content-xs-between {
    justify-content: space-between !important;
  }
  .justify-content-xs-around {
    justify-content: space-around !important;
  }
  .justify-content-xs-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xs-start {
    align-items: flex-start !important;
  }
  .align-items-xs-end {
    align-items: flex-end !important;
  }
  .align-items-xs-center {
    align-items: center !important;
  }
  .align-items-xs-baseline {
    align-items: baseline !important;
  }
  .align-items-xs-stretch {
    align-items: stretch !important;
  }
  .align-content-xs-start {
    align-content: flex-start !important;
  }
  .align-content-xs-end {
    align-content: flex-end !important;
  }
  .align-content-xs-center {
    align-content: center !important;
  }
  .align-content-xs-between {
    align-content: space-between !important;
  }
  .align-content-xs-around {
    align-content: space-around !important;
  }
  .align-content-xs-stretch {
    align-content: stretch !important;
  }
  .align-self-xs-auto {
    align-self: auto !important;
  }
  .align-self-xs-start {
    align-self: flex-start !important;
  }
  .align-self-xs-end {
    align-self: flex-end !important;
  }
  .align-self-xs-center {
    align-self: center !important;
  }
  .align-self-xs-baseline {
    align-self: baseline !important;
  }
  .align-self-xs-stretch {
    align-self: stretch !important;
  }
  .order-xs-first {
    order: -1 !important;
  }
  .order-xs-0 {
    order: 0 !important;
  }
  .order-xs-1 {
    order: 1 !important;
  }
  .order-xs-2 {
    order: 2 !important;
  }
  .order-xs-3 {
    order: 3 !important;
  }
  .order-xs-4 {
    order: 4 !important;
  }
  .order-xs-5 {
    order: 5 !important;
  }
  .order-xs-last {
    order: 6 !important;
  }
  .m-xs-0 {
    margin: 0 !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 3rem !important;
  }
  .m-xs-6 {
    margin: 4.5rem !important;
  }
  .m-xs-7 {
    margin: 2rem !important;
  }
  .m-xs-8 {
    margin: 1.25rem !important;
  }
  .m-xs-9 {
    margin: 2.25rem !important;
  }
  .m-xs-10 {
    margin: 2.5rem !important;
  }
  .m-xs-11 {
    margin: 0.75rem !important;
  }
  .m-xs-auto {
    margin: auto !important;
  }
  .mx-xs-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xs-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xs-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xs-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xs-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xs-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xs-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xs-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xs-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xs-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xs-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xs-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xs-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xs-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xs-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xs-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xs-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xs-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xs-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xs-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xs-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xs-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xs-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xs-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xs-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mt-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xs-3 {
    margin-top: 1rem !important;
  }
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xs-5 {
    margin-top: 3rem !important;
  }
  .mt-xs-6 {
    margin-top: 4.5rem !important;
  }
  .mt-xs-7 {
    margin-top: 2rem !important;
  }
  .mt-xs-8 {
    margin-top: 1.25rem !important;
  }
  .mt-xs-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xs-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xs-11 {
    margin-top: 0.75rem !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .me-xs-0 {
    margin-right: 0 !important;
  }
  .me-xs-1 {
    margin-right: 0.25rem !important;
  }
  .me-xs-2 {
    margin-right: 0.5rem !important;
  }
  .me-xs-3 {
    margin-right: 1rem !important;
  }
  .me-xs-4 {
    margin-right: 1.5rem !important;
  }
  .me-xs-5 {
    margin-right: 3rem !important;
  }
  .me-xs-6 {
    margin-right: 4.5rem !important;
  }
  .me-xs-7 {
    margin-right: 2rem !important;
  }
  .me-xs-8 {
    margin-right: 1.25rem !important;
  }
  .me-xs-9 {
    margin-right: 2.25rem !important;
  }
  .me-xs-10 {
    margin-right: 2.5rem !important;
  }
  .me-xs-11 {
    margin-right: 0.75rem !important;
  }
  .me-xs-auto {
    margin-right: auto !important;
  }
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  .mb-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xs-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xs-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xs-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xs-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xs-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xs-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .ms-xs-0 {
    margin-left: 0 !important;
  }
  .ms-xs-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xs-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xs-3 {
    margin-left: 1rem !important;
  }
  .ms-xs-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xs-5 {
    margin-left: 3rem !important;
  }
  .ms-xs-6 {
    margin-left: 4.5rem !important;
  }
  .ms-xs-7 {
    margin-left: 2rem !important;
  }
  .ms-xs-8 {
    margin-left: 1.25rem !important;
  }
  .ms-xs-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xs-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xs-11 {
    margin-left: 0.75rem !important;
  }
  .ms-xs-auto {
    margin-left: auto !important;
  }
  .m-xs-n1 {
    margin: -0.25rem !important;
  }
  .m-xs-n2 {
    margin: -0.5rem !important;
  }
  .m-xs-n3 {
    margin: -1rem !important;
  }
  .m-xs-n4 {
    margin: -1.5rem !important;
  }
  .m-xs-n5 {
    margin: -3rem !important;
  }
  .mx-xs-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xs-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xs-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xs-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xs-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xs-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xs-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xs-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xs-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xs-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xs-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xs-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xs-n3 {
    margin-top: -1rem !important;
  }
  .mt-xs-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xs-n5 {
    margin-top: -3rem !important;
  }
  .me-xs-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xs-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xs-n3 {
    margin-right: -1rem !important;
  }
  .me-xs-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xs-n5 {
    margin-right: -3rem !important;
  }
  .mb-xs-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xs-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xs-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xs-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xs-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xs-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xs-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xs-n3 {
    margin-left: -1rem !important;
  }
  .ms-xs-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xs-n5 {
    margin-left: -3rem !important;
  }
  .p-xs-0 {
    padding: 0 !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 3rem !important;
  }
  .p-xs-6 {
    padding: 4.5rem !important;
  }
  .p-xs-7 {
    padding: 2rem !important;
  }
  .p-xs-8 {
    padding: 1.25rem !important;
  }
  .p-xs-9 {
    padding: 2.25rem !important;
  }
  .p-xs-10 {
    padding: 2.5rem !important;
  }
  .p-xs-11 {
    padding: 0.75rem !important;
  }
  .px-xs-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xs-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xs-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xs-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xs-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xs-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xs-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xs-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xs-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xs-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xs-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xs-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-xs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xs-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xs-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xs-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xs-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xs-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xs-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xs-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xs-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xs-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xs-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-xs-0 {
    padding-top: 0 !important;
  }
  .pt-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xs-3 {
    padding-top: 1rem !important;
  }
  .pt-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xs-5 {
    padding-top: 3rem !important;
  }
  .pt-xs-6 {
    padding-top: 4.5rem !important;
  }
  .pt-xs-7 {
    padding-top: 2rem !important;
  }
  .pt-xs-8 {
    padding-top: 1.25rem !important;
  }
  .pt-xs-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xs-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xs-11 {
    padding-top: 0.75rem !important;
  }
  .pe-xs-0 {
    padding-right: 0 !important;
  }
  .pe-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xs-3 {
    padding-right: 1rem !important;
  }
  .pe-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xs-5 {
    padding-right: 3rem !important;
  }
  .pe-xs-6 {
    padding-right: 4.5rem !important;
  }
  .pe-xs-7 {
    padding-right: 2rem !important;
  }
  .pe-xs-8 {
    padding-right: 1.25rem !important;
  }
  .pe-xs-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xs-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xs-11 {
    padding-right: 0.75rem !important;
  }
  .pb-xs-0 {
    padding-bottom: 0 !important;
  }
  .pb-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xs-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xs-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xs-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xs-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xs-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xs-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xs-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-xs-0 {
    padding-left: 0 !important;
  }
  .ps-xs-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xs-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xs-3 {
    padding-left: 1rem !important;
  }
  .ps-xs-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xs-5 {
    padding-left: 3rem !important;
  }
  .ps-xs-6 {
    padding-left: 4.5rem !important;
  }
  .ps-xs-7 {
    padding-left: 2rem !important;
  }
  .ps-xs-8 {
    padding-left: 1.25rem !important;
  }
  .ps-xs-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xs-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xs-11 {
    padding-left: 0.75rem !important;
  }
  .text-xs-start {
    text-align: left !important;
  }
  .text-xs-end {
    text-align: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
  .bg-xs-white {
    background-color: #fff !important;
  }
  .bg-xs-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-xs-grey-4 {
    color: #555 !important;
  }
  .text-xs-dark-green {
    color: #14373c !important;
  }
  .text-xs-red {
    color: #d13b42 !important;
  }
  .text-xs-success {
    color: #0e8906 !important;
  }
  .zg-border-xs-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-xs-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-xs-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-xs-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-xs-none {
    max-width: none !important;
  }
  .zg-mw-xs-160 {
    max-width: 10rem !important;
  }
  .zg-mw-xs-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-xs-256 {
    max-width: 16rem !important;
  }
  .zg-mw-xs-400 {
    max-width: 25rem !important;
  }
  .zg-mw-xs-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-xs-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-xs-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-xs-none {
    border-top: none !important;
  }
  .zg-border-top-xs-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-xs-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-xs-160 {
    width: 10rem !important;
  }
  .zg-w-xs-350 {
    width: 21.875rem !important;
  }
  .zg-w-xs-400 {
    width: 25rem !important;
  }
  .zg-w-xs-500 {
    width: 31.25rem !important;
  }
  .zg-h-xs-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-xs-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-xs-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-xs-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-xs-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-xs-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-xs-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-xs-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-xs-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-xs-0 {
    line-height: 0 !important;
  }
  .zg-lh-xs-1 {
    line-height: 1 !important;
  }
  .zg-lh-xs-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-xs-2 {
    line-height: 2 !important;
  }
  .zg-minh-xs-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-xs-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-xs-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-xs-0 {
    min-width: 0 !important;
  }
  .zg-minw-xs-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-xs-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-xs-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-xs-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-xs-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-xs-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xs-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xs-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xs-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xs-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xs-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-xs-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-xs-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-xs-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-xs-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-xs-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-xs-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media (min-width: 36rem) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .gap-sm-6 {
    gap: 4.5rem !important;
  }
  .gap-sm-7 {
    gap: 2rem !important;
  }
  .gap-sm-8 {
    gap: 1.25rem !important;
  }
  .gap-sm-9 {
    gap: 2.25rem !important;
  }
  .gap-sm-10 {
    gap: 2.5rem !important;
  }
  .gap-sm-11 {
    gap: 0.75rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-6 {
    margin: 4.5rem !important;
  }
  .m-sm-7 {
    margin: 2rem !important;
  }
  .m-sm-8 {
    margin: 1.25rem !important;
  }
  .m-sm-9 {
    margin: 2.25rem !important;
  }
  .m-sm-10 {
    margin: 2.5rem !important;
  }
  .m-sm-11 {
    margin: 0.75rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sm-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-sm-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-sm-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sm-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-sm-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-6 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 2rem !important;
  }
  .mt-sm-8 {
    margin-top: 1.25rem !important;
  }
  .mt-sm-9 {
    margin-top: 2.25rem !important;
  }
  .mt-sm-10 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-11 {
    margin-top: 0.75rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-6 {
    margin-right: 4.5rem !important;
  }
  .me-sm-7 {
    margin-right: 2rem !important;
  }
  .me-sm-8 {
    margin-right: 1.25rem !important;
  }
  .me-sm-9 {
    margin-right: 2.25rem !important;
  }
  .me-sm-10 {
    margin-right: 2.5rem !important;
  }
  .me-sm-11 {
    margin-right: 0.75rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-6 {
    margin-left: 4.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 2rem !important;
  }
  .ms-sm-8 {
    margin-left: 1.25rem !important;
  }
  .ms-sm-9 {
    margin-left: 2.25rem !important;
  }
  .ms-sm-10 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-11 {
    margin-left: 0.75rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .p-sm-6 {
    padding: 4.5rem !important;
  }
  .p-sm-7 {
    padding: 2rem !important;
  }
  .p-sm-8 {
    padding: 1.25rem !important;
  }
  .p-sm-9 {
    padding: 2.25rem !important;
  }
  .p-sm-10 {
    padding: 2.5rem !important;
  }
  .p-sm-11 {
    padding: 0.75rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-sm-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-sm-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-sm-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sm-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-sm-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pt-sm-6 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 2rem !important;
  }
  .pt-sm-8 {
    padding-top: 1.25rem !important;
  }
  .pt-sm-9 {
    padding-top: 2.25rem !important;
  }
  .pt-sm-10 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-11 {
    padding-top: 0.75rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pe-sm-6 {
    padding-right: 4.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 2rem !important;
  }
  .pe-sm-8 {
    padding-right: 1.25rem !important;
  }
  .pe-sm-9 {
    padding-right: 2.25rem !important;
  }
  .pe-sm-10 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-11 {
    padding-right: 0.75rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .ps-sm-6 {
    padding-left: 4.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 2rem !important;
  }
  .ps-sm-8 {
    padding-left: 1.25rem !important;
  }
  .ps-sm-9 {
    padding-left: 2.25rem !important;
  }
  .ps-sm-10 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-11 {
    padding-left: 0.75rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .bg-sm-white {
    background-color: #fff !important;
  }
  .bg-sm-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-sm-grey-4 {
    color: #555 !important;
  }
  .text-sm-dark-green {
    color: #14373c !important;
  }
  .text-sm-red {
    color: #d13b42 !important;
  }
  .text-sm-success {
    color: #0e8906 !important;
  }
  .zg-border-sm-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-sm-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-sm-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-sm-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-sm-none {
    max-width: none !important;
  }
  .zg-mw-sm-160 {
    max-width: 10rem !important;
  }
  .zg-mw-sm-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-sm-256 {
    max-width: 16rem !important;
  }
  .zg-mw-sm-400 {
    max-width: 25rem !important;
  }
  .zg-mw-sm-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-sm-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-sm-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-sm-none {
    border-top: none !important;
  }
  .zg-border-top-sm-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-sm-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-sm-160 {
    width: 10rem !important;
  }
  .zg-w-sm-350 {
    width: 21.875rem !important;
  }
  .zg-w-sm-400 {
    width: 25rem !important;
  }
  .zg-w-sm-500 {
    width: 31.25rem !important;
  }
  .zg-h-sm-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-sm-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-sm-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-sm-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-sm-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-sm-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-sm-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-sm-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-sm-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-sm-0 {
    line-height: 0 !important;
  }
  .zg-lh-sm-1 {
    line-height: 1 !important;
  }
  .zg-lh-sm-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-sm-2 {
    line-height: 2 !important;
  }
  .zg-minh-sm-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-sm-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-sm-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-sm-0 {
    min-width: 0 !important;
  }
  .zg-minw-sm-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-sm-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-sm-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-sm-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-sm-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-sm-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-sm-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-sm-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-sm-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-sm-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-sm-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media (min-width: 48rem) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .gap-md-6 {
    gap: 4.5rem !important;
  }
  .gap-md-7 {
    gap: 2rem !important;
  }
  .gap-md-8 {
    gap: 1.25rem !important;
  }
  .gap-md-9 {
    gap: 2.25rem !important;
  }
  .gap-md-10 {
    gap: 2.5rem !important;
  }
  .gap-md-11 {
    gap: 0.75rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-6 {
    margin: 4.5rem !important;
  }
  .m-md-7 {
    margin: 2rem !important;
  }
  .m-md-8 {
    margin: 1.25rem !important;
  }
  .m-md-9 {
    margin: 2.25rem !important;
  }
  .m-md-10 {
    margin: 2.5rem !important;
  }
  .m-md-11 {
    margin: 0.75rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-md-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-md-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-md-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-md-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-md-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-md-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-6 {
    margin-top: 4.5rem !important;
  }
  .mt-md-7 {
    margin-top: 2rem !important;
  }
  .mt-md-8 {
    margin-top: 1.25rem !important;
  }
  .mt-md-9 {
    margin-top: 2.25rem !important;
  }
  .mt-md-10 {
    margin-top: 2.5rem !important;
  }
  .mt-md-11 {
    margin-top: 0.75rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-6 {
    margin-right: 4.5rem !important;
  }
  .me-md-7 {
    margin-right: 2rem !important;
  }
  .me-md-8 {
    margin-right: 1.25rem !important;
  }
  .me-md-9 {
    margin-right: 2.25rem !important;
  }
  .me-md-10 {
    margin-right: 2.5rem !important;
  }
  .me-md-11 {
    margin-right: 0.75rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 2rem !important;
  }
  .mb-md-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-md-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-6 {
    margin-left: 4.5rem !important;
  }
  .ms-md-7 {
    margin-left: 2rem !important;
  }
  .ms-md-8 {
    margin-left: 1.25rem !important;
  }
  .ms-md-9 {
    margin-left: 2.25rem !important;
  }
  .ms-md-10 {
    margin-left: 2.5rem !important;
  }
  .ms-md-11 {
    margin-left: 0.75rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .p-md-6 {
    padding: 4.5rem !important;
  }
  .p-md-7 {
    padding: 2rem !important;
  }
  .p-md-8 {
    padding: 1.25rem !important;
  }
  .p-md-9 {
    padding: 2.25rem !important;
  }
  .p-md-10 {
    padding: 2.5rem !important;
  }
  .p-md-11 {
    padding: 0.75rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-md-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-md-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-md-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-md-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-md-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-md-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pt-md-6 {
    padding-top: 4.5rem !important;
  }
  .pt-md-7 {
    padding-top: 2rem !important;
  }
  .pt-md-8 {
    padding-top: 1.25rem !important;
  }
  .pt-md-9 {
    padding-top: 2.25rem !important;
  }
  .pt-md-10 {
    padding-top: 2.5rem !important;
  }
  .pt-md-11 {
    padding-top: 0.75rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pe-md-6 {
    padding-right: 4.5rem !important;
  }
  .pe-md-7 {
    padding-right: 2rem !important;
  }
  .pe-md-8 {
    padding-right: 1.25rem !important;
  }
  .pe-md-9 {
    padding-right: 2.25rem !important;
  }
  .pe-md-10 {
    padding-right: 2.5rem !important;
  }
  .pe-md-11 {
    padding-right: 0.75rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pb-md-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 2rem !important;
  }
  .pb-md-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-md-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .ps-md-6 {
    padding-left: 4.5rem !important;
  }
  .ps-md-7 {
    padding-left: 2rem !important;
  }
  .ps-md-8 {
    padding-left: 1.25rem !important;
  }
  .ps-md-9 {
    padding-left: 2.25rem !important;
  }
  .ps-md-10 {
    padding-left: 2.5rem !important;
  }
  .ps-md-11 {
    padding-left: 0.75rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .bg-md-white {
    background-color: #fff !important;
  }
  .bg-md-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-md-grey-4 {
    color: #555 !important;
  }
  .text-md-dark-green {
    color: #14373c !important;
  }
  .text-md-red {
    color: #d13b42 !important;
  }
  .text-md-success {
    color: #0e8906 !important;
  }
  .zg-border-md-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-md-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-md-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-md-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-md-none {
    max-width: none !important;
  }
  .zg-mw-md-160 {
    max-width: 10rem !important;
  }
  .zg-mw-md-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-md-256 {
    max-width: 16rem !important;
  }
  .zg-mw-md-400 {
    max-width: 25rem !important;
  }
  .zg-mw-md-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-md-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-md-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-md-none {
    border-top: none !important;
  }
  .zg-border-top-md-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-md-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-md-160 {
    width: 10rem !important;
  }
  .zg-w-md-350 {
    width: 21.875rem !important;
  }
  .zg-w-md-400 {
    width: 25rem !important;
  }
  .zg-w-md-500 {
    width: 31.25rem !important;
  }
  .zg-h-md-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-md-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-md-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-md-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-md-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-md-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-md-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-md-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-md-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-md-0 {
    line-height: 0 !important;
  }
  .zg-lh-md-1 {
    line-height: 1 !important;
  }
  .zg-lh-md-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-md-2 {
    line-height: 2 !important;
  }
  .zg-minh-md-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-md-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-md-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-md-0 {
    min-width: 0 !important;
  }
  .zg-minw-md-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-md-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-md-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-md-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-md-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-md-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-md-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-md-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-md-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-md-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-md-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media (min-width: 62rem) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .gap-lg-6 {
    gap: 4.5rem !important;
  }
  .gap-lg-7 {
    gap: 2rem !important;
  }
  .gap-lg-8 {
    gap: 1.25rem !important;
  }
  .gap-lg-9 {
    gap: 2.25rem !important;
  }
  .gap-lg-10 {
    gap: 2.5rem !important;
  }
  .gap-lg-11 {
    gap: 0.75rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-6 {
    margin: 4.5rem !important;
  }
  .m-lg-7 {
    margin: 2rem !important;
  }
  .m-lg-8 {
    margin: 1.25rem !important;
  }
  .m-lg-9 {
    margin: 2.25rem !important;
  }
  .m-lg-10 {
    margin: 2.5rem !important;
  }
  .m-lg-11 {
    margin: 0.75rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-lg-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-lg-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-lg-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-lg-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-lg-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-6 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 2rem !important;
  }
  .mt-lg-8 {
    margin-top: 1.25rem !important;
  }
  .mt-lg-9 {
    margin-top: 2.25rem !important;
  }
  .mt-lg-10 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-11 {
    margin-top: 0.75rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-6 {
    margin-right: 4.5rem !important;
  }
  .me-lg-7 {
    margin-right: 2rem !important;
  }
  .me-lg-8 {
    margin-right: 1.25rem !important;
  }
  .me-lg-9 {
    margin-right: 2.25rem !important;
  }
  .me-lg-10 {
    margin-right: 2.5rem !important;
  }
  .me-lg-11 {
    margin-right: 0.75rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-6 {
    margin-left: 4.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 2rem !important;
  }
  .ms-lg-8 {
    margin-left: 1.25rem !important;
  }
  .ms-lg-9 {
    margin-left: 2.25rem !important;
  }
  .ms-lg-10 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-11 {
    margin-left: 0.75rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .p-lg-6 {
    padding: 4.5rem !important;
  }
  .p-lg-7 {
    padding: 2rem !important;
  }
  .p-lg-8 {
    padding: 1.25rem !important;
  }
  .p-lg-9 {
    padding: 2.25rem !important;
  }
  .p-lg-10 {
    padding: 2.5rem !important;
  }
  .p-lg-11 {
    padding: 0.75rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-lg-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-lg-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-lg-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-lg-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-lg-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pt-lg-6 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 2rem !important;
  }
  .pt-lg-8 {
    padding-top: 1.25rem !important;
  }
  .pt-lg-9 {
    padding-top: 2.25rem !important;
  }
  .pt-lg-10 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-11 {
    padding-top: 0.75rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pe-lg-6 {
    padding-right: 4.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 2rem !important;
  }
  .pe-lg-8 {
    padding-right: 1.25rem !important;
  }
  .pe-lg-9 {
    padding-right: 2.25rem !important;
  }
  .pe-lg-10 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-11 {
    padding-right: 0.75rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .ps-lg-6 {
    padding-left: 4.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 2rem !important;
  }
  .ps-lg-8 {
    padding-left: 1.25rem !important;
  }
  .ps-lg-9 {
    padding-left: 2.25rem !important;
  }
  .ps-lg-10 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-11 {
    padding-left: 0.75rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .bg-lg-white {
    background-color: #fff !important;
  }
  .bg-lg-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-lg-grey-4 {
    color: #555 !important;
  }
  .text-lg-dark-green {
    color: #14373c !important;
  }
  .text-lg-red {
    color: #d13b42 !important;
  }
  .text-lg-success {
    color: #0e8906 !important;
  }
  .zg-border-lg-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-lg-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-lg-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-lg-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-lg-none {
    max-width: none !important;
  }
  .zg-mw-lg-160 {
    max-width: 10rem !important;
  }
  .zg-mw-lg-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-lg-256 {
    max-width: 16rem !important;
  }
  .zg-mw-lg-400 {
    max-width: 25rem !important;
  }
  .zg-mw-lg-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-lg-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-lg-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-lg-none {
    border-top: none !important;
  }
  .zg-border-top-lg-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-lg-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-lg-160 {
    width: 10rem !important;
  }
  .zg-w-lg-350 {
    width: 21.875rem !important;
  }
  .zg-w-lg-400 {
    width: 25rem !important;
  }
  .zg-w-lg-500 {
    width: 31.25rem !important;
  }
  .zg-h-lg-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-lg-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-lg-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-lg-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-lg-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-lg-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-lg-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-lg-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-lg-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-lg-0 {
    line-height: 0 !important;
  }
  .zg-lh-lg-1 {
    line-height: 1 !important;
  }
  .zg-lh-lg-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-lg-2 {
    line-height: 2 !important;
  }
  .zg-minh-lg-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-lg-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-lg-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-lg-0 {
    min-width: 0 !important;
  }
  .zg-minw-lg-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-lg-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-lg-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-lg-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-lg-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-lg-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-lg-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-lg-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-lg-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-lg-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-lg-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media (min-width: 75rem) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .gap-xl-6 {
    gap: 4.5rem !important;
  }
  .gap-xl-7 {
    gap: 2rem !important;
  }
  .gap-xl-8 {
    gap: 1.25rem !important;
  }
  .gap-xl-9 {
    gap: 2.25rem !important;
  }
  .gap-xl-10 {
    gap: 2.5rem !important;
  }
  .gap-xl-11 {
    gap: 0.75rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-6 {
    margin: 4.5rem !important;
  }
  .m-xl-7 {
    margin: 2rem !important;
  }
  .m-xl-8 {
    margin: 1.25rem !important;
  }
  .m-xl-9 {
    margin: 2.25rem !important;
  }
  .m-xl-10 {
    margin: 2.5rem !important;
  }
  .m-xl-11 {
    margin: 0.75rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xl-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-6 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 2rem !important;
  }
  .mt-xl-8 {
    margin-top: 1.25rem !important;
  }
  .mt-xl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-11 {
    margin-top: 0.75rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-6 {
    margin-right: 4.5rem !important;
  }
  .me-xl-7 {
    margin-right: 2rem !important;
  }
  .me-xl-8 {
    margin-right: 1.25rem !important;
  }
  .me-xl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xl-11 {
    margin-right: 0.75rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-6 {
    margin-left: 4.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 2rem !important;
  }
  .ms-xl-8 {
    margin-left: 1.25rem !important;
  }
  .ms-xl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-11 {
    margin-left: 0.75rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .p-xl-6 {
    padding: 4.5rem !important;
  }
  .p-xl-7 {
    padding: 2rem !important;
  }
  .p-xl-8 {
    padding: 1.25rem !important;
  }
  .p-xl-9 {
    padding: 2.25rem !important;
  }
  .p-xl-10 {
    padding: 2.5rem !important;
  }
  .p-xl-11 {
    padding: 0.75rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xl-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xl-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pt-xl-6 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 2rem !important;
  }
  .pt-xl-8 {
    padding-top: 1.25rem !important;
  }
  .pt-xl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-11 {
    padding-top: 0.75rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pe-xl-6 {
    padding-right: 4.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 2rem !important;
  }
  .pe-xl-8 {
    padding-right: 1.25rem !important;
  }
  .pe-xl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-11 {
    padding-right: 0.75rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .ps-xl-6 {
    padding-left: 4.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 2rem !important;
  }
  .ps-xl-8 {
    padding-left: 1.25rem !important;
  }
  .ps-xl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-11 {
    padding-left: 0.75rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .bg-xl-white {
    background-color: #fff !important;
  }
  .bg-xl-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-xl-grey-4 {
    color: #555 !important;
  }
  .text-xl-dark-green {
    color: #14373c !important;
  }
  .text-xl-red {
    color: #d13b42 !important;
  }
  .text-xl-success {
    color: #0e8906 !important;
  }
  .zg-border-xl-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-xl-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-xl-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-xl-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-xl-none {
    max-width: none !important;
  }
  .zg-mw-xl-160 {
    max-width: 10rem !important;
  }
  .zg-mw-xl-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-xl-256 {
    max-width: 16rem !important;
  }
  .zg-mw-xl-400 {
    max-width: 25rem !important;
  }
  .zg-mw-xl-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-xl-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-xl-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-xl-none {
    border-top: none !important;
  }
  .zg-border-top-xl-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-xl-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-xl-160 {
    width: 10rem !important;
  }
  .zg-w-xl-350 {
    width: 21.875rem !important;
  }
  .zg-w-xl-400 {
    width: 25rem !important;
  }
  .zg-w-xl-500 {
    width: 31.25rem !important;
  }
  .zg-h-xl-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-xl-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-xl-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-xl-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-xl-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-xl-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-xl-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-xl-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-xl-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-xl-0 {
    line-height: 0 !important;
  }
  .zg-lh-xl-1 {
    line-height: 1 !important;
  }
  .zg-lh-xl-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-xl-2 {
    line-height: 2 !important;
  }
  .zg-minh-xl-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-xl-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-xl-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-xl-0 {
    min-width: 0 !important;
  }
  .zg-minw-xl-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-xl-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-xl-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-xl-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-xl-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-xl-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-xl-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-xl-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-xl-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-xl-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-xl-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media (min-width: 87.5rem) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .gap-xxl-6 {
    gap: 4.5rem !important;
  }
  .gap-xxl-7 {
    gap: 2rem !important;
  }
  .gap-xxl-8 {
    gap: 1.25rem !important;
  }
  .gap-xxl-9 {
    gap: 2.25rem !important;
  }
  .gap-xxl-10 {
    gap: 2.5rem !important;
  }
  .gap-xxl-11 {
    gap: 0.75rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-6 {
    margin: 4.5rem !important;
  }
  .m-xxl-7 {
    margin: 2rem !important;
  }
  .m-xxl-8 {
    margin: 1.25rem !important;
  }
  .m-xxl-9 {
    margin: 2.25rem !important;
  }
  .m-xxl-10 {
    margin: 2.5rem !important;
  }
  .m-xxl-11 {
    margin: 0.75rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xxl-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xxl-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-6 {
    margin-top: 4.5rem !important;
  }
  .mt-xxl-7 {
    margin-top: 2rem !important;
  }
  .mt-xxl-8 {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xxl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-11 {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-6 {
    margin-right: 4.5rem !important;
  }
  .me-xxl-7 {
    margin-right: 2rem !important;
  }
  .me-xxl-8 {
    margin-right: 1.25rem !important;
  }
  .me-xxl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xxl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-11 {
    margin-right: 0.75rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-6 {
    margin-left: 4.5rem !important;
  }
  .ms-xxl-7 {
    margin-left: 2rem !important;
  }
  .ms-xxl-8 {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xxl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-11 {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .p-xxl-6 {
    padding: 4.5rem !important;
  }
  .p-xxl-7 {
    padding: 2rem !important;
  }
  .p-xxl-8 {
    padding: 1.25rem !important;
  }
  .p-xxl-9 {
    padding: 2.25rem !important;
  }
  .p-xxl-10 {
    padding: 2.5rem !important;
  }
  .p-xxl-11 {
    padding: 0.75rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xxl-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxl-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pt-xxl-6 {
    padding-top: 4.5rem !important;
  }
  .pt-xxl-7 {
    padding-top: 2rem !important;
  }
  .pt-xxl-8 {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xxl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-11 {
    padding-top: 0.75rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pe-xxl-6 {
    padding-right: 4.5rem !important;
  }
  .pe-xxl-7 {
    padding-right: 2rem !important;
  }
  .pe-xxl-8 {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xxl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-11 {
    padding-right: 0.75rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .ps-xxl-6 {
    padding-left: 4.5rem !important;
  }
  .ps-xxl-7 {
    padding-left: 2rem !important;
  }
  .ps-xxl-8 {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xxl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-11 {
    padding-left: 0.75rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .bg-xxl-white {
    background-color: #fff !important;
  }
  .bg-xxl-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-xxl-grey-4 {
    color: #555 !important;
  }
  .text-xxl-dark-green {
    color: #14373c !important;
  }
  .text-xxl-red {
    color: #d13b42 !important;
  }
  .text-xxl-success {
    color: #0e8906 !important;
  }
  .zg-border-xxl-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-xxl-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-xxl-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-xxl-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-xxl-none {
    max-width: none !important;
  }
  .zg-mw-xxl-160 {
    max-width: 10rem !important;
  }
  .zg-mw-xxl-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-xxl-256 {
    max-width: 16rem !important;
  }
  .zg-mw-xxl-400 {
    max-width: 25rem !important;
  }
  .zg-mw-xxl-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-xxl-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-xxl-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-xxl-none {
    border-top: none !important;
  }
  .zg-border-top-xxl-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-xxl-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-xxl-160 {
    width: 10rem !important;
  }
  .zg-w-xxl-350 {
    width: 21.875rem !important;
  }
  .zg-w-xxl-400 {
    width: 25rem !important;
  }
  .zg-w-xxl-500 {
    width: 31.25rem !important;
  }
  .zg-h-xxl-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-xxl-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-xxl-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-xxl-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-xxl-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-xxl-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-xxl-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-xxl-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-xxl-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-xxl-0 {
    line-height: 0 !important;
  }
  .zg-lh-xxl-1 {
    line-height: 1 !important;
  }
  .zg-lh-xxl-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-xxl-2 {
    line-height: 2 !important;
  }
  .zg-minh-xxl-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-xxl-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-xxl-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-xxl-0 {
    min-width: 0 !important;
  }
  .zg-minw-xxl-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-xxl-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-xxl-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-xxl-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-xxl-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-xxl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-xxl-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-xxl-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-xxl-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-xxl-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-xxl-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-xxl-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media (min-width: 112.5rem) {
  .float-xxxl-start {
    float: left !important;
  }
  .float-xxxl-end {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxxl-0 {
    gap: 0 !important;
  }
  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxxl-3 {
    gap: 1rem !important;
  }
  .gap-xxxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxxl-5 {
    gap: 3rem !important;
  }
  .gap-xxxl-6 {
    gap: 4.5rem !important;
  }
  .gap-xxxl-7 {
    gap: 2rem !important;
  }
  .gap-xxxl-8 {
    gap: 1.25rem !important;
  }
  .gap-xxxl-9 {
    gap: 2.25rem !important;
  }
  .gap-xxxl-10 {
    gap: 2.5rem !important;
  }
  .gap-xxxl-11 {
    gap: 0.75rem !important;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    align-content: center !important;
  }
  .align-content-xxxl-between {
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }
  .order-xxxl-first {
    order: -1 !important;
  }
  .order-xxxl-0 {
    order: 0 !important;
  }
  .order-xxxl-1 {
    order: 1 !important;
  }
  .order-xxxl-2 {
    order: 2 !important;
  }
  .order-xxxl-3 {
    order: 3 !important;
  }
  .order-xxxl-4 {
    order: 4 !important;
  }
  .order-xxxl-5 {
    order: 5 !important;
  }
  .order-xxxl-last {
    order: 6 !important;
  }
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxxl-3 {
    margin: 1rem !important;
  }
  .m-xxxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxxl-5 {
    margin: 3rem !important;
  }
  .m-xxxl-6 {
    margin: 4.5rem !important;
  }
  .m-xxxl-7 {
    margin: 2rem !important;
  }
  .m-xxxl-8 {
    margin: 1.25rem !important;
  }
  .m-xxxl-9 {
    margin: 2.25rem !important;
  }
  .m-xxxl-10 {
    margin: 2.5rem !important;
  }
  .m-xxxl-11 {
    margin: 0.75rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxxl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xxxl-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxxl-8 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxxl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxxl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxxl-11 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxxl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xxxl-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxxl-8 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxxl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxxl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxxl-11 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxxl-6 {
    margin-top: 4.5rem !important;
  }
  .mt-xxxl-7 {
    margin-top: 2rem !important;
  }
  .mt-xxxl-8 {
    margin-top: 1.25rem !important;
  }
  .mt-xxxl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xxxl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xxxl-11 {
    margin-top: 0.75rem !important;
  }
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .me-xxxl-0 {
    margin-right: 0 !important;
  }
  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxxl-6 {
    margin-right: 4.5rem !important;
  }
  .me-xxxl-7 {
    margin-right: 2rem !important;
  }
  .me-xxxl-8 {
    margin-right: 1.25rem !important;
  }
  .me-xxxl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xxxl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xxxl-11 {
    margin-right: 0.75rem !important;
  }
  .me-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxxl-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxxl-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xxxl-8 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxxl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxxl-11 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxxl-6 {
    margin-left: 4.5rem !important;
  }
  .ms-xxxl-7 {
    margin-left: 2rem !important;
  }
  .ms-xxxl-8 {
    margin-left: 1.25rem !important;
  }
  .ms-xxxl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xxxl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xxxl-11 {
    margin-left: 0.75rem !important;
  }
  .ms-xxxl-auto {
    margin-left: auto !important;
  }
  .m-xxxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxxl-n3 {
    margin: -1rem !important;
  }
  .m-xxxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxxl-n5 {
    margin: -3rem !important;
  }
  .mx-xxxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xxxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxxl-n5 {
    margin-top: -3rem !important;
  }
  .me-xxxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xxxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxxl-n5 {
    margin-left: -3rem !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxxl-3 {
    padding: 1rem !important;
  }
  .p-xxxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxxl-5 {
    padding: 3rem !important;
  }
  .p-xxxl-6 {
    padding: 4.5rem !important;
  }
  .p-xxxl-7 {
    padding: 2rem !important;
  }
  .p-xxxl-8 {
    padding: 1.25rem !important;
  }
  .p-xxxl-9 {
    padding: 2.25rem !important;
  }
  .p-xxxl-10 {
    padding: 2.5rem !important;
  }
  .p-xxxl-11 {
    padding: 0.75rem !important;
  }
  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxxl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xxxl-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxxl-8 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxxl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxxl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxxl-11 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxxl-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxxl-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxxl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxxl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxxl-11 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .pt-xxxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }
  .pt-xxxl-6 {
    padding-top: 4.5rem !important;
  }
  .pt-xxxl-7 {
    padding-top: 2rem !important;
  }
  .pt-xxxl-8 {
    padding-top: 1.25rem !important;
  }
  .pt-xxxl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xxxl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xxxl-11 {
    padding-top: 0.75rem !important;
  }
  .pe-xxxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }
  .pe-xxxl-6 {
    padding-right: 4.5rem !important;
  }
  .pe-xxxl-7 {
    padding-right: 2rem !important;
  }
  .pe-xxxl-8 {
    padding-right: 1.25rem !important;
  }
  .pe-xxxl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xxxl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xxxl-11 {
    padding-right: 0.75rem !important;
  }
  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xxxl-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxxl-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xxxl-8 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxxl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxxl-11 {
    padding-bottom: 0.75rem !important;
  }
  .ps-xxxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }
  .ps-xxxl-6 {
    padding-left: 4.5rem !important;
  }
  .ps-xxxl-7 {
    padding-left: 2rem !important;
  }
  .ps-xxxl-8 {
    padding-left: 1.25rem !important;
  }
  .ps-xxxl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xxxl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xxxl-11 {
    padding-left: 0.75rem !important;
  }
  .text-xxxl-start {
    text-align: left !important;
  }
  .text-xxxl-end {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
  .bg-xxxl-white {
    background-color: #fff !important;
  }
  .bg-xxxl-grey-1 {
    background-color: #f5f5f5 !important;
  }
  .text-xxxl-grey-4 {
    color: #555 !important;
  }
  .text-xxxl-dark-green {
    color: #14373c !important;
  }
  .text-xxxl-red {
    color: #d13b42 !important;
  }
  .text-xxxl-success {
    color: #0e8906 !important;
  }
  .zg-border-xxxl-grey-3 {
    border: 0.0625rem solid #aaa !important;
  }
  .zg-border-xxxl-transparent {
    border: 0.0625rem solid transparent !important;
  }
  .zg-border-xxxl-blue {
    border: 0.0625rem solid #0064ff !important;
  }
  .zg-border-xxxl-blue-10 {
    border: 0.0625rem solid #e5efff !important;
  }
  .zg-mw-xxxl-none {
    max-width: none !important;
  }
  .zg-mw-xxxl-160 {
    max-width: 10rem !important;
  }
  .zg-mw-xxxl-200 {
    max-width: 12.5rem !important;
  }
  .zg-mw-xxxl-256 {
    max-width: 16rem !important;
  }
  .zg-mw-xxxl-400 {
    max-width: 25rem !important;
  }
  .zg-mw-xxxl-420 {
    max-width: 26.25rem !important;
  }
  .zg-mw-xxxl-500 {
    max-width: 31.25rem !important;
  }
  .zg-mw-xxxl-600 {
    max-width: 37.5rem !important;
  }
  .zg-border-top-xxxl-none {
    border-top: none !important;
  }
  .zg-border-top-xxxl-2 {
    border-top: 0.125rem solid #000 !important;
  }
  .zg-w-xxxl-unset {
    width: auto !important;
    width: initial !important;
  }
  .zg-w-xxxl-160 {
    width: 10rem !important;
  }
  .zg-w-xxxl-350 {
    width: 21.875rem !important;
  }
  .zg-w-xxxl-400 {
    width: 25rem !important;
  }
  .zg-w-xxxl-500 {
    width: 31.25rem !important;
  }
  .zg-h-xxxl-unset {
    height: auto !important;
    height: initial !important;
  }
  .zg-h-xxxl-min-content {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .zg-h-xxxl-dashboard-fill {
    height: calc(1vh * 100 - 4.25rem) !important;
    height: calc(var(--vh, 1vh) * 100 - 4.25rem) !important;
  }
  .zg-box-shadow-xxxl-none {
    box-shadow: none !important;
  }
  .zg-box-shadow-xxxl-1 {
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05) !important;
  }
  .zg-box-shadow-xxxl-2 {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1) !important;
  }
  .zg-box-shadow-xxxl-solid-mint {
    box-shadow: 0 0 0 0.125rem #00fad7 !important;
  }
  .zg-box-shadow-xxxl-grey-3 {
    box-shadow: 0 0 0 0.0625rem #aaa !important;
  }
  .zg-box-shadow-xxxl-blue-10 {
    box-shadow: 0 0 0 0.0625rem #e5efff !important;
  }
  .zg-lh-xxxl-0 {
    line-height: 0 !important;
  }
  .zg-lh-xxxl-1 {
    line-height: 1 !important;
  }
  .zg-lh-xxxl-1-5 {
    line-height: 1.5 !important;
  }
  .zg-lh-xxxl-2 {
    line-height: 2 !important;
  }
  .zg-minh-xxxl-unset {
    min-height: 0 !important;
    min-height: initial !important;
  }
  .zg-minh-xxxl-42 {
    min-height: 2.625rem !important;
  }
  .zg-minw-xxxl-unset {
    min-width: 0 !important;
    min-width: initial !important;
  }
  .zg-minw-xxxl-0 {
    min-width: 0 !important;
  }
  .zg-minw-xxxl-33vw {
    min-width: 33vw !important;
  }
  .zg-minw-xxxl-42 {
    min-width: 2.625rem !important;
  }
  .zg-border-radius-xxxl-0 {
    border-radius: 0 !important;
  }
  .zg-border-radius-xxxl-1 {
    border-radius: 0.25rem !important;
  }
  .zg-border-radius-xxxl-2 {
    border-radius: 0.5rem !important;
  }
  .zg-grid-columns-xxxl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxxl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxxl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxxl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxxl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .zg-grid-columns-xxxl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .zg-grid-rows-xxxl-1 {
    grid-template-rows: repeat(1, 1fr) !important;
  }
  .zg-grid-rows-xxxl-2 {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .zg-grid-rows-xxxl-3 {
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .zg-grid-rows-xxxl-4 {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .zg-grid-rows-xxxl-5 {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .zg-grid-rows-xxxl-6 {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #000;
}

.link-primary:hover, .link-primary:focus {
  color: black;
}

.link-secondary {
  color: #fff;
}

.link-secondary:hover, .link-secondary:focus {
  color: white;
}

.link-danger {
  color: #d13b42;
}

.link-danger:hover, .link-danger:focus {
  color: #a72f35;
}

.link-success {
  color: #0e8906;
}

.link-success:hover, .link-success:focus {
  color: #0b6e05;
}

.link-muted {
  color: #767676;
}

.link-muted:hover, .link-muted:focus {
  color: #5e5e5e;
}

.link-grey-1 {
  color: #f5f5f5;
}

.link-grey-1:hover, .link-grey-1:focus {
  color: #f7f7f7;
}

.link-grey-2 {
  color: #ebebeb;
}

.link-grey-2:hover, .link-grey-2:focus {
  color: #efefef;
}

.link-grey-3 {
  color: #aaa;
}

.link-grey-3:hover, .link-grey-3:focus {
  color: #bbbbbb;
}

.link-grey-4 {
  color: #555;
}

.link-grey-4:hover, .link-grey-4:focus {
  color: #444444;
}

.link-blue {
  color: #0064ff;
}

.link-blue:hover, .link-blue:focus {
  color: #0050cc;
}

.link-transparent-blue {
  color: #f7faff;
}

.link-transparent-blue:hover, .link-transparent-blue:focus {
  color: #f9fbff;
}

.link-blue-10 {
  color: #e5efff;
}

.link-blue-10:hover, .link-blue-10:focus {
  color: #eaf2ff;
}

.link-mint {
  color: #00fad7;
}

.link-mint:hover, .link-mint:focus {
  color: #33fbdf;
}

.link-dark-green {
  color: #14373c;
}

.link-dark-green:hover, .link-dark-green:focus {
  color: #102c30;
}

.link-red {
  color: #d13b42;
}

.link-red:hover, .link-red:focus {
  color: #a72f35;
}

.link-green {
  color: #0e8906;
}

.link-green:hover, .link-green:focus {
  color: #0b6e05;
}

.link-black {
  color: #000;
}

.link-black:hover, .link-black:focus {
  color: black;
}

.link-info {
  color: #0064ff;
}

.link-info:hover, .link-info:focus {
  color: #0050cc;
}

.link-warning {
  color: #ff9b40;
}

.link-warning:hover, .link-warning:focus {
  color: #ffaf66;
}

.link-app-background {
  color: #f7faff;
}

.link-app-background:hover, .link-app-background:focus {
  color: #f9fbff;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 30rem) {
  .sticky-xs-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 36rem) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 48rem) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 62rem) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 75rem) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 87.5rem) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 112.5rem) {
  .sticky-xxxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 1;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 0.625rem;
  }
}
.progress {
  display: flex;
  height: 0.625rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #ebebeb;
  border-radius: 0;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #00fad7;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 0.625rem 0.625rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: 0 0 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 0 0;
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 0;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-group > .card {
  margin-bottom: 1rem;
}

@media (min-width: 36rem) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 36rem) {
  .modal-dialog {
    max-width: 40rem;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 62rem) {
  .modal-lg,
  .modal-xl {
    max-width: 40rem;
  }
}
@media (min-width: 75rem) {
  .modal-xl {
    max-width: 60rem;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 29.98rem) {
  .modal-fullscreen-xs-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xs-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xs-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xs-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xs-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 35.98rem) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 47.98rem) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 61.98rem) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 74.98rem) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 87.48rem) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 112.48rem) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxxl-down .modal-footer {
    border-radius: 0;
  }
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.75rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}

.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0'?%3E %3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='24' height='24' x='0' y='0' viewBox='0 0 329.26933 329' xml:space='preserve'%3E%3Cg%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='m194.800781 164.769531 128.210938-128.214843c8.34375-8.339844 8.34375-21.824219 0-30.164063-8.339844-8.339844-21.824219-8.339844-30.164063 0l-128.214844 128.214844-128.210937-128.214844c-8.34375-8.339844-21.824219-8.339844-30.164063 0-8.34375 8.339844-8.34375 21.824219 0 30.164063l128.210938 128.214843-128.210938 128.214844c-8.34375 8.339844-8.34375 21.824219 0 30.164063 4.15625 4.160156 9.621094 6.25 15.082032 6.25 5.460937 0 10.921875-2.089844 15.082031-6.25l128.210937-128.214844 128.214844 128.214844c4.160156 4.160156 9.621094 6.25 15.082032 6.25 5.460937 0 10.921874-2.089844 15.082031-6.25 8.34375-8.339844 8.34375-21.824219 0-30.164063zm0 0' fill='currentColor' data-original='%23000000'/%3E%3C/g%3E%3C/svg%3E") center/1em auto no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 0.5;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}

.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.form-group-invalid .invalid-feedback {
  display: block;
}

.form-control.is-invalid {
  padding-right: inherit;
}

.no-js .collapse {
  display: block;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.dropdown-item:hover, .dropdown-item:active {
  background-color: #aaa;
}

.dropdown-item:active {
  color: inherit;
  filter: brightness(90%);
}

.tooltip > .tooltip-inner {
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.modal-content {
  border-color: #e5efff;
}

.modal-header .btn-close {
  color: #14373c;
  opacity: 1;
}

.modal-header .btn-close:hover {
  opacity: 0.5;
}

.modal-backdrop + .modal-backdrop {
  opacity: 0;
}

.zg-pagy-nav.zg-pagy-nav--divider {
  padding-right: 1rem;
  border-right: 0.0625rem solid #aaa;
}

.zg-pagy-nav .pagy-bootstrap .pagination {
  margin: 0;
  gap: 0.5rem;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item .page-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555;
  background-color: #fff;
  border: none;
  border-radius: 0.25rem;
  margin: 0;
  padding: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.active .page-link {
  color: #fff;
  background-color: #0064ff;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev::before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='1rem' height='1rem' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' color='%23000'%3E %3Cpath d='M15 18L9 12L15 6' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E");
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev.disabled::before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='1rem' height='1rem' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' color='%23ebebeb'%3E %3Cpath d='M15 18L9 12L15 6' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E");
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.next::before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='1rem' height='1rem' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' color='%23000'%3E %3Cpath d='M9 18L15 12L9 6' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E");
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.next.disabled::before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='1rem' height='1rem' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' color='%23ebebeb'%3E %3Cpath d='M9 18L15 12L9 6' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E");
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev, .zg-pagy-nav .pagy-bootstrap .pagination .page-item.next {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  position: relative;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev::before, .zg-pagy-nav .pagy-bootstrap .pagination .page-item.next::before {
  position: absolute;
  width: 1rem;
  height: 1rem;
  transform: translate(25%, 25%);
  color: #555;
  fill: #555;
  stroke: #555;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev .page-link, .zg-pagy-nav .pagy-bootstrap .pagination .page-item.next .page-link {
  opacity: 0;
  border: none;
  width: 1.5625rem;
  height: 1.5625rem;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev.disabled, .zg-pagy-nav .pagy-bootstrap .pagination .page-item.next.disabled {
  border-color: #ebebeb;
}

.zg-pagy-nav .pagy-bootstrap .pagination .page-item.prev.disabled::before, .zg-pagy-nav .pagy-bootstrap .pagination .page-item.next.disabled::before {
  color: #ebebeb;
  fill: #ebebeb;
  stroke: #ebebeb;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: baseline;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: baseline;
  vertical-align: initial;
  box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rhythm-y-0 > * {
  margin-bottom: 0;
}

.rhythm-y-0 > * + * {
  margin-top: 0;
}

.rhythm-y-0 > * + turbo-frame > * {
  margin-top: 0;
}

.rhythm-y-0 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-0 > * + * {
    margin-top: 0;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-0 > * + * {
    margin-top: 0 !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-0 > * + * {
    margin-top: 0 !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-0 > * + * {
    margin-top: 0 !important;
  }
}
.rhythm-x-0 > * {
  margin-right: 0;
}

.rhythm-x-0 > * + * {
  margin-left: 0;
}

.rhythm-y-1 > * {
  margin-bottom: 0;
}

.rhythm-y-1 > * + * {
  margin-top: 0.25rem;
}

.rhythm-y-1 > * + turbo-frame > * {
  margin-top: 0.25rem;
}

.rhythm-y-1 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-1 > * + * {
    margin-top: 0.25rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-1 > * + * {
    margin-top: 0.25rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-1 > * + * {
    margin-top: 0.25rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-1 > * + * {
    margin-top: 0.25rem !important;
  }
}
.rhythm-x-1 > * {
  margin-right: 0;
}

.rhythm-x-1 > * + * {
  margin-left: 0.25rem;
}

.rhythm-y-2 > * {
  margin-bottom: 0;
}

.rhythm-y-2 > * + * {
  margin-top: 0.5rem;
}

.rhythm-y-2 > * + turbo-frame > * {
  margin-top: 0.5rem;
}

.rhythm-y-2 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-2 > * + * {
    margin-top: 0.5rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-2 > * + * {
    margin-top: 0.5rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-2 > * + * {
    margin-top: 0.5rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-2 > * + * {
    margin-top: 0.5rem !important;
  }
}
.rhythm-x-2 > * {
  margin-right: 0;
}

.rhythm-x-2 > * + * {
  margin-left: 0.5rem;
}

.rhythm-y-3 > * {
  margin-bottom: 0;
}

.rhythm-y-3 > * + * {
  margin-top: 1rem;
}

.rhythm-y-3 > * + turbo-frame > * {
  margin-top: 1rem;
}

.rhythm-y-3 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-3 > * + * {
    margin-top: 1rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-3 > * + * {
    margin-top: 1rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-3 > * + * {
    margin-top: 1rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-3 > * + * {
    margin-top: 1rem !important;
  }
}
.rhythm-x-3 > * {
  margin-right: 0;
}

.rhythm-x-3 > * + * {
  margin-left: 1rem;
}

.rhythm-y-4 > * {
  margin-bottom: 0;
}

.rhythm-y-4 > * + * {
  margin-top: 1.5rem;
}

.rhythm-y-4 > * + turbo-frame > * {
  margin-top: 1.5rem;
}

.rhythm-y-4 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-4 > * + * {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-4 > * + * {
    margin-top: 1.5rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-4 > * + * {
    margin-top: 1.5rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-4 > * + * {
    margin-top: 1.5rem !important;
  }
}
.rhythm-x-4 > * {
  margin-right: 0;
}

.rhythm-x-4 > * + * {
  margin-left: 1.5rem;
}

.rhythm-y-5 > * {
  margin-bottom: 0;
}

.rhythm-y-5 > * + * {
  margin-top: 3rem;
}

.rhythm-y-5 > * + turbo-frame > * {
  margin-top: 3rem;
}

.rhythm-y-5 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-5 > * + * {
    margin-top: 3rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-5 > * + * {
    margin-top: 3rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-5 > * + * {
    margin-top: 3rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-5 > * + * {
    margin-top: 3rem !important;
  }
}
.rhythm-x-5 > * {
  margin-right: 0;
}

.rhythm-x-5 > * + * {
  margin-left: 3rem;
}

.rhythm-y-6 > * {
  margin-bottom: 0;
}

.rhythm-y-6 > * + * {
  margin-top: 4.5rem;
}

.rhythm-y-6 > * + turbo-frame > * {
  margin-top: 4.5rem;
}

.rhythm-y-6 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-6 > * + * {
    margin-top: 4.5rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-6 > * + * {
    margin-top: 4.5rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-6 > * + * {
    margin-top: 4.5rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-6 > * + * {
    margin-top: 4.5rem !important;
  }
}
.rhythm-x-6 > * {
  margin-right: 0;
}

.rhythm-x-6 > * + * {
  margin-left: 4.5rem;
}

.rhythm-y-7 > * {
  margin-bottom: 0;
}

.rhythm-y-7 > * + * {
  margin-top: 2rem;
}

.rhythm-y-7 > * + turbo-frame > * {
  margin-top: 2rem;
}

.rhythm-y-7 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-7 > * + * {
    margin-top: 2rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-7 > * + * {
    margin-top: 2rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-7 > * + * {
    margin-top: 2rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-7 > * + * {
    margin-top: 2rem !important;
  }
}
.rhythm-x-7 > * {
  margin-right: 0;
}

.rhythm-x-7 > * + * {
  margin-left: 2rem;
}

.rhythm-y-8 > * {
  margin-bottom: 0;
}

.rhythm-y-8 > * + * {
  margin-top: 1.25rem;
}

.rhythm-y-8 > * + turbo-frame > * {
  margin-top: 1.25rem;
}

.rhythm-y-8 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-8 > * + * {
    margin-top: 1.25rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-8 > * + * {
    margin-top: 1.25rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-8 > * + * {
    margin-top: 1.25rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-8 > * + * {
    margin-top: 1.25rem !important;
  }
}
.rhythm-x-8 > * {
  margin-right: 0;
}

.rhythm-x-8 > * + * {
  margin-left: 1.25rem;
}

.rhythm-y-9 > * {
  margin-bottom: 0;
}

.rhythm-y-9 > * + * {
  margin-top: 2.25rem;
}

.rhythm-y-9 > * + turbo-frame > * {
  margin-top: 2.25rem;
}

.rhythm-y-9 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-9 > * + * {
    margin-top: 2.25rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-9 > * + * {
    margin-top: 2.25rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-9 > * + * {
    margin-top: 2.25rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-9 > * + * {
    margin-top: 2.25rem !important;
  }
}
.rhythm-x-9 > * {
  margin-right: 0;
}

.rhythm-x-9 > * + * {
  margin-left: 2.25rem;
}

.rhythm-y-10 > * {
  margin-bottom: 0;
}

.rhythm-y-10 > * + * {
  margin-top: 2.5rem;
}

.rhythm-y-10 > * + turbo-frame > * {
  margin-top: 2.5rem;
}

.rhythm-y-10 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-10 > * + * {
    margin-top: 2.5rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-10 > * + * {
    margin-top: 2.5rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-10 > * + * {
    margin-top: 2.5rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-10 > * + * {
    margin-top: 2.5rem !important;
  }
}
.rhythm-x-10 > * {
  margin-right: 0;
}

.rhythm-x-10 > * + * {
  margin-left: 2.5rem;
}

.rhythm-y-11 > * {
  margin-bottom: 0;
}

.rhythm-y-11 > * + * {
  margin-top: 0.75rem;
}

.rhythm-y-11 > * + turbo-frame > * {
  margin-top: 0.75rem;
}

.rhythm-y-11 > [type=hidden]:first-child + * {
  margin-top: 0;
}

@media (min-width: 30rem) {
  .rhythm-y-xs-11 > * + * {
    margin-top: 0.75rem;
  }
}
@media (min-width: 48rem) {
  .rhythm-y-md-11 > * + * {
    margin-top: 0.75rem !important;
  }
}
@media (min-width: 62rem) {
  .rhythm-y-lg-11 > * + * {
    margin-top: 0.75rem !important;
  }
}
@media (min-width: 87.5rem) {
  .rhythm-y-xxl-11 > * + * {
    margin-top: 0.75rem !important;
  }
}
.rhythm-x-11 > * {
  margin-right: 0;
}

.rhythm-x-11 > * + * {
  margin-left: 0.75rem;
}

.zg-caption {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
}

.zg-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3125rem;
}

.zg-hint {
  font-size: 0.875rem;
  color: #555;
}

.zg-tag-label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.125rem;
}

.font-size-x-sm {
  font-size: 0.75rem;
}

.font-size-sm {
  font-size: 0.875rem;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1,
p,
span {
  margin: 0;
}

.font-archia {
  font-family: "Archia", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-size-graphic {
  font-size: 5rem;
}

.font-size-md {
  font-size: 1rem;
}

.font-size-lg {
  font-size: 1.125rem;
}

.font-size-x-lg {
  font-size: 1.25rem;
}

.font-size-xx-lg {
  font-size: 1.5rem;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-600 {
  font-weight: 600;
}

.zg-text-ellipses {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.zg-body-hide-intercom .intercom-lightweight-app {
  display: none !important;
}

body.zg-body-hide-intercom #intercom-container {
  display: none !important;
}

.no-js .no-js-hidden {
  display: none;
}

.no-js .no-js-show {
  display: inherit;
}

html:not(.no-js) .js-hidden {
  display: none;
}

.icon-position-adjust {
  position: relative;
  top: -0.125rem;
}

.zg-full-viewport-height,
.zg-full-viewport-height body {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(1vh * 100);
  height: calc(var(--vh, 1vh) * 100);
  min-height: 0;
}

.zg-scrollable {
  overflow-y: auto;
}

/* Automatically stays scrolled to the bottom unless the user scrolls up.
   Requires children to be wrapped in a div to keep the correct order (.zg-auto-scroll-wrapper).
   From https://stackoverflow.com/questions/18614301/keep-overflow-div-scrolled-to-bottom-unless-user-scrolls-up/60546366#comment81551385_44051405 */
.zg-auto-scroll {
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column-reverse !important;
}

.zg-dashboard-container:not(.zg-auto-scroll) > .zg-auto-scroll-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-pointer-events-none {
  pointer-events: none;
}

.pulsate {
  animation: pulsate infinite 1s ease-out;
  opacity: 0.5;
}

@keyframes pulsate {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
button.button-reset {
  all: unset;
  box-sizing: border-box;
}

/* Then component styles */
.zg-container-with-background {
  min-height: 0;
}

.zg-container-background {
  height: 11.25rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='UTF-8' standalone='no'?%3E %3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E %3Csvg width='100%25' height='100%25' viewBox='0 0 420 180' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:10;'%3E %3Cg transform='matrix(1,0,0,1,42.5935,0)'%3E %3Cg transform='matrix(1,0,0,1,-92.0263,0)'%3E %3Cpath d='M329.637,120.924L324.039,164.694L341.485,161.216L345.335,130.829L329.637,120.924Z' style='fill:rgb(0,250,215);fill-rule:nonzero;'/%3E %3Cpath d='M308.387,154.895L324.039,164.694L329.637,120.924L381.012,153.356L405.244,148.527L316.363,92.69L308.387,154.895Z' style='fill:white;fill-rule:nonzero;'/%3E %3Cpath d='M392.211,120.522L397.828,76.467L380.44,79.929L376.444,110.616L392.211,120.522Z' style='fill:white;fill-rule:nonzero;'/%3E %3Cpath d='M413.61,86.432L397.828,76.467L392.211,120.522L340.349,87.975L316.363,92.69L405.244,148.527L413.61,86.432Z' style='fill:rgb(0,250,215);fill-rule:nonzero;'/%3E %3Cpath d='M376.444,110.616L380.44,79.929L397.828,76.467L413.61,86.432L405.244,148.527L381.012,153.356L329.637,120.924L324.039,164.694' style='fill:none;fill-rule:nonzero;stroke:rgb(29,29,27);stroke-width:4px;'/%3E %3Cpath d='M345.335,130.829L341.485,161.216L324.039,164.694L308.387,154.895L316.363,92.69L340.349,87.975L392.211,120.522L397.828,76.467' style='fill:none;fill-rule:nonzero;stroke:rgb(29,29,27);stroke-width:4px;'/%3E %3Cpath d='M316.363,92.69L405.244,148.527' style='fill:none;fill-rule:nonzero;stroke:rgb(29,29,27);stroke-width:4px;'/%3E %3C/g%3E %3Cg transform='matrix(1,0,0,1,-120.132,0)'%3E %3Cpath d='M211.622,62.022L192.088,22.455L179.473,34.998L193.065,62.447L211.622,62.022Z' style='fill:rgb(0,250,215);fill-rule:nonzero;'/%3E %3Cpath d='M210.548,21.967L192.088,22.455L211.622,62.022L150.882,63.401L133.361,80.821L238.293,78.21L210.548,21.967Z' style='fill:white;fill-rule:nonzero;'/%3E %3Cpath d='M159.703,96.951L179.379,136.766L191.954,124.269L178.318,96.489L159.703,96.951Z' style='fill:white;fill-rule:nonzero;'/%3E %3Cpath d='M160.719,137.189L179.379,136.767L159.703,96.951L220.912,95.4L238.293,78.21L133.361,80.821L160.719,137.189Z' style='fill:rgb(0,250,215);fill-rule:nonzero;'/%3E %3Cpath d='M178.318,96.489L191.954,124.269L179.379,136.767L160.719,137.189L133.361,80.821L150.882,63.401L211.622,62.022L192.088,22.455' style='fill:none;fill-rule:nonzero;stroke:rgb(29,29,27);stroke-width:4px;'/%3E %3Cpath d='M193.065,62.447L179.473,34.998L192.088,22.455L210.548,21.967L238.293,78.21L220.912,95.4L159.703,96.951L179.379,136.767' style='fill:none;fill-rule:nonzero;stroke:rgb(29,29,27);stroke-width:4px;'/%3E %3Cpath d='M238.293,78.21L133.361,80.821' style='fill:none;fill-rule:nonzero;stroke:rgb(29,29,27);stroke-width:4px;'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

.zg-container-background--position-adjust {
  background-position-x: right;
}

.zg-icon-ribbon-grid {
  display: grid;
  align-items: center;
  width: 100%;
  min-width: 62.5rem;
  height: 11.25rem;
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 2rem;
  justify-items: center;
}

.zg-icon-ribbon-grid .zg-ribbon-background-animation-translate-container {
  animation: zg-translate 5s infinite ease-in-out;
}

.zg-icon-ribbon-grid .zg-ribbon-background-animation-translate-container .zg-ribbon-background-animation-rotate-container {
  animation: zg-rotate 5s infinite ease-in-out;
}

.zg-icon-ribbon-grid .zg-ribbon-background-animation-translate-container .zg-ribbon-background-animation-rotate-container svg {
  transform: scale(3.5);
}

.zg-icon-ribbon-grid .zg-ribbon-background-animation-translate-container:nth-child(2n) svg {
  transform: scale(3.5) rotate(-135deg);
}

.zg-onboarding-background-animation {
  --zg-onboarding-background-animation-icon-scale: 4;
}

.zg-onboarding-background-animation .zg-onboarding-background-animation-graphic {
  position: absolute;
  right: -1px;
  bottom: 0;
  display: none;
  width: 3.75rem;
  height: 100%;
  transform: scale(1, 1.2);
}

@media (min-width: 48rem) {
  .zg-onboarding-background-animation .zg-onboarding-background-animation-graphic {
    display: block;
  }
}
@keyframes zg-translate {
  0% {
    transform: translate(0, -0.25rem);
  }
  50% {
    transform: translate(0, 0.25rem);
  }
  100% {
    transform: translate(0, -0.25rem);
  }
}
@keyframes zg-rotate {
  0% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
  100% {
    transform: rotate(-2.5deg);
  }
}
.zg-onboarding-background-animation .zg-onboarding-background-animation-translate-container {
  display: none;
  animation: zg-translate 5s infinite ease-in-out;
}

@media (min-width: 48rem) {
  .zg-onboarding-background-animation .zg-onboarding-background-animation-translate-container {
    display: block;
  }
}
.zg-onboarding-background-animation .zg-onboarding-background-animation-translate-container .zg-onboarding-background-animation-rotate-container {
  animation: zg-rotate 5s infinite ease-in-out;
}

.zg-onboarding-background-animation .zg-onboarding-background-animation-graphic-word {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation .zg-onboarding-background-animation-graphic-word {
    font-size: 5.625rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation .zg-onboarding-background-animation-graphic-word {
    font-size: 6.75rem;
  }
}
@media (min-width: 62rem) {
  .zg-onboarding-background-animation {
    --zg-onboarding-background-animation-icon-scale: 5;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation {
    --zg-onboarding-background-animation-icon-scale: 6;
  }
}
.zg-onboarding-background-animation__icon-1 {
  position: fixed;
  top: 10rem;
  right: 2.2rem;
}

.zg-onboarding-background-animation__icon-1 svg {
  transform: rotate(-26deg) scale(var(--zg-onboarding-background-animation-icon-scale));
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__icon-1 {
    top: 12rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__icon-1 {
    top: 15rem;
  }
}
.zg-onboarding-background-animation__icon-2 {
  position: fixed;
  top: 34.7rem;
  right: 2.8rem;
}

.zg-onboarding-background-animation__icon-2 svg {
  transform: scale(var(--zg-onboarding-background-animation-icon-scale));
}

@media (min-width: 75rem) {
  .zg-onboarding-background-animation__icon-2 {
    top: 38rem;
  }
}
.zg-onboarding-background-animation__icon-3 {
  position: absolute;
  top: -1rem;
  left: 50%;
}

.zg-onboarding-background-animation__icon-3 svg {
  transform: rotate(-28deg) scale(var(--zg-onboarding-background-animation-icon-scale));
}

.zg-onboarding-background-animation__icon-4 {
  position: absolute;
  top: 13rem;
  left: 1.8rem;
}

.zg-onboarding-background-animation__icon-4 svg {
  transform: rotate(17deg) scale(var(--zg-onboarding-background-animation-icon-scale));
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__icon-4 {
    top: 16rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__icon-4 {
    top: 20rem;
  }
}
.zg-onboarding-background-animation__icon-5 {
  position: absolute;
  top: 37.7rem;
  left: 5rem;
}

.zg-onboarding-background-animation__icon-5 svg {
  transform: rotate(-19deg) scale(var(--zg-onboarding-background-animation-icon-scale));
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__icon-5 {
    top: 43.7rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__icon-5 {
    top: 46rem;
  }
}
.zg-onboarding-background-animation__word-1 {
  position: absolute;
  top: 3.9rem;
  left: 3.1rem;
}

.zg-onboarding-background-animation__word-1 .zg-graphic-word {
  transform: rotate(-7deg);
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__word-1 {
    top: 5.5rem;
    left: 4.1rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__word-1 {
    top: 6.6rem;
    left: 3.5rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-background-animation__word-1 {
    top: 7.3rem;
  }
}
.zg-onboarding-background-animation__word-2 {
  position: absolute;
  top: 9rem;
  right: 30%;
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__word-2 {
    top: 12rem;
    right: 8rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__word-2 {
    top: 13.4rem;
    right: 11rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-background-animation__word-2 {
    top: 12.7rem;
  }
}
.zg-onboarding-background-animation__word-3 {
  position: absolute;
  top: 14.5rem;
  left: 6rem;
}

.zg-onboarding-background-animation__word-3 .zg-graphic-word {
  transform: rotate(4deg);
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__word-3 {
    top: 17.5rem;
    left: 6.5rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__word-3 {
    top: 20rem;
    left: 8.5rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-background-animation__word-3 {
    left: 9.5rem;
  }
}
.zg-onboarding-background-animation__word-4 {
  position: absolute;
  top: 20rem;
  right: 8rem;
}

.zg-onboarding-background-animation__word-4 .zg-graphic-word {
  transform: rotate(-7deg);
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__word-4 {
    top: 23rem;
    right: 8rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__word-4 {
    top: 25.5rem;
    right: 7rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-background-animation__word-4 {
    top: 24.5rem;
    right: 7.5rem;
  }
}
.zg-onboarding-background-animation__word-5 {
  position: absolute;
  top: 25rem;
  right: 20%;
}

.zg-onboarding-background-animation__word-5 .zg-graphic-word {
  transform: rotate(7.5deg);
}

@media (min-width: 62rem) {
  .zg-onboarding-background-animation__word-5 {
    top: 29rem;
    left: 3rem;
  }
}
@media (min-width: 75rem) {
  .zg-onboarding-background-animation__word-5 {
    top: 31rem;
    left: 4rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-background-animation__word-5 {
    top: 30rem;
    left: 6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .zg-ribbon-background-animation-translate-container,
  .zg-ribbon-background-animation-rotate-container,
  .zg-onboarding-background-animation-translate-container,
  .zg-onboarding-background-animation-rotate-container {
    animation: none;
  }
}
.zg-header-background {
  position: relative;
  min-height: 7.8125rem;
  overflow: hidden;
  text-align: center;
  border-bottom: 0.125rem solid #000;
}

@media (min-width: 48rem) {
  .zg-header-background {
    width: 100%;
    margin-left: 0;
  }
}
.zg-header-background__container {
  width: 100%;
  max-width: 32.5rem;
  margin: 0 auto;
}

.zg-header-background svg {
  position: absolute;
  width: 3.75rem;
  height: 6.25rem;
}

.zg-header-background__text-step {
  min-height: 6.25rem;
}

.zg-header-background__icon-1 {
  bottom: -3rem;
  left: 0.5rem;
}

.zg-header-background__icon-2 {
  top: -3.375rem;
  right: 2rem;
  transform: rotate(120deg);
}

.zg-header-background__icon-3 {
  right: 3rem;
  bottom: -3.75rem;
  transform: rotate(180deg);
}

.zg-header-background__icon-4 {
  bottom: -0.3125rem;
  left: 16rem;
  display: block;
  transform: rotate(160deg);
}

.zg-header-background__icon-5 {
  top: -0.3125rem;
  right: 16rem;
  display: block;
  transform: rotate(180deg);
}

.zg-header-background--image-spacing {
  padding-top: 2.1875rem;
  padding-bottom: 5.1875rem;
}

@media (max-width: 47.98rem) {
  .zg-header-background__icon-4 {
    display: none;
  }
  .zg-header-background__icon-5 {
    display: none;
  }
}
.zg-dashboard-banner-top-container {
  box-sizing: border-box;
  height: 9rem;
  padding: 2rem 1rem 1.5rem;
}

.zg-dashboard-banner {
  display: grid;
  align-items: center;
  padding: 1rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-gap: 0.5rem 1rem;
  gap: 0.5rem 1rem;
  grid-template-areas: "icon title" "icon link";
}

.zg-dashboard-banner.bg-blue {
  color: #fff;
}

.zg-dashboard-banner.bg-blue .zg-dashboard-banner-link {
  color: #fff;
}

@media (max-width: 61.98rem) {
  .zg-dashboard-banner__sidebar {
    display: none;
  }
}
@media (max-width: 74.98rem) {
  .zg-dashboard-banner__sidebar {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "icon" "title" "link";
  }
  .zg-dashboard-banner__sidebar .zg-dashboard-banner-icon {
    margin-bottom: 0.5rem;
  }
}
.zg-dashboard-banner .zg-dashboard-banner-icon {
  width: auto;
  height: 4rem;
  grid-area: icon;
}

.zg-dashboard-banner .zg-dashboard-banner-title {
  margin-top: 0;
  font-family: "Archia", sans-serif;
  font-weight: 600;
  grid-area: title;
}

.zg-dashboard-banner .zg-dashboard-banner-link {
  margin-top: 0;
  font-size: 0.875rem;
  grid-area: link;
}

.zg-banner--promotion, .zg-banner--blue, .zg-banner--masterclass, .zg-banner--featured, .zg-banner--featured-prompt, .zg-banner--opportunities, .zg-banner {
  display: grid;
  align-items: center;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

@media (max-width: 35.98rem) {
  .zg-banner--promotion, .zg-banner--blue, .zg-banner--masterclass, .zg-banner--featured, .zg-banner--featured-prompt, .zg-banner--opportunities, .zg-banner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.zg-banner--opportunities {
  display: grid;
  align-items: center;
  padding: 1rem;
  color: #14373c;
  background-color: #e5efff;
  border: 0.0625rem solid #b3d1ff;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  grid-template-rows: auto auto;
  grid-template-columns: auto;
}

.zg-banner--featured-prompt {
  color: #fff;
  background-color: #3383ff;
  grid-template-rows: auto auto;
  grid-template-columns: auto;
}

.zg-banner--featured-prompt p {
  color: #fff !important;
}

.zg-banner--featured {
  color: #000;
  background-color: #00fad7;
  grid-template-rows: auto auto;
  grid-template-columns: auto;
}

.zg-banner--masterclass {
  color: #14373c;
  background-color: #e5efff;
  border: 0.0625rem solid #b3d1ff;
  grid-template-rows: auto auto;
  grid-template-columns: auto;
}

.zg-banner--blue {
  color: #fff;
  background-color: #3383ff;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .zg-banner--blue {
    grid-template-columns: 2fr 1fr;
  }
}
.zg-banner--promotion {
  position: relative;
  color: #fff;
  background-color: #3383ff;
  grid-template-columns: 1fr;
}

.zg-banner--promotion__image {
  display: none;
}

@media (min-width: 36rem) {
  .zg-banner--promotion__image {
    position: absolute;
    right: 0;
    display: block;
    width: 40%;
    height: 100%;
    border-radius: 0.25rem;
    background-position: bottom;
    background-image: url(/assets/thumbnails/antonia-2a1df4028c65fce890021c16b67142480af6ce28b6ae9c050d62f031575f1d5e.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.zg-banner--promotion__content {
  width: 100%;
  border-radius: none;
}

.zg-banner--promotion__content > .zg-btn {
  margin: 0;
  margin: initial;
}

@media (min-width: 36rem) {
  .zg-banner--promotion__content {
    width: 60%;
    border-radius: 0.25rem;
  }
}
.zg-banner--link-center .zg-btn {
  justify-self: center;
}

.zg-banner--link-right .zg-btn {
  justify-self: end;
}

@media (min-width: 48rem) {
  .zg-banner {
    padding: 2rem;
  }
}
.zg-blade .zg-banner {
  padding: 1rem;
}

a.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.btn,
.btn-check {
  padding: 1rem 2rem;
  border-radius: 0.25rem;
}

.btn:focus,
.btn-check:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

.btn:focus:not(.focus-visible).js-focus-visible,
.js-focus-visible .btn:focus:not(.focus-visible),
.btn-check:focus:not(.focus-visible).js-focus-visible,
.js-focus-visible .btn-check:focus:not(.focus-visible) {
  box-shadow: none;
}

.btn:focus:not(:focus-visible),
.btn-check:focus:not(:focus-visible) {
  box-shadow: none;
}

.zg-btn-admin {
  padding: 0.5rem;
}

.zg-btn-admin-short {
  padding: 0 0.5rem;
}

.zg-btn-admin-search {
  padding: 0.56rem 1.2rem;
  font-size: 1rem;
}

.zg-btn-admin-note-edit,
.zg-btn-admin-accordion {
  background-color: #fff;
  border: none;
}

.btn-slim {
  padding: 0.5rem 1rem;
}

.btn-danger {
  color: #fff;
}

.btn-dark-green {
  background-color: #14373c;
  color: #fff;
}

.btn-primary {
  border: 0.0625rem solid #000;
  border-radius: 0.25rem;
}

.btn-primary:hover {
  background-color: #555;
  border-color: #555;
}

.btn-primary:focus {
  background-color: #555;
  border-color: #555;
}

.btn-primary:active {
  background-color: #0064ff;
  border-color: #0064ff;
}

.btn-primary:disabled, .btn-primary.disabled {
  color: #aaa;
  background-color: #f5f5f5;
  border-color: #aaa;
  opacity: 1;
}

.btn-primary:disabled path,
.btn-primary:disabled polygon, .btn-primary.disabled path,
.btn-primary.disabled polygon {
  fill: #aaa;
}

.btn-primary:disabled rect, .btn-primary.disabled rect {
  color: #aaa;
}

.btn-primary.disabled-black {
  background-color: #000;
  border-color: #000;
  opacity: 0.4;
}

.btn-primary.btn-square {
  border-radius: 0;
}

.btn-primary--slim {
  max-height: 2.375rem;
  padding: 0.5rem 1rem;
}

.btn-primary--submit {
  padding: 1rem 2rem;
}

@media (max-width: 47.98rem) {
  .btn-primary--sm-xl-submit {
    padding: 1rem 2rem;
  }
}
@media (min-width: 75rem) {
  .btn-primary--sm-xl-submit {
    padding: 1rem 2rem;
  }
}
.btn-primary--csv {
  padding: 0.2rem 0.6rem;
}

.btn-outline-primary {
  background-color: #fff;
  border: 0.0625rem solid #000;
}

.btn-outline-primary path {
  fill: #000;
  stroke: #000;
}

.btn-outline-primary:hover {
  color: #555;
  background-color: #fff;
  border-color: #555;
}

.btn-outline-primary:hover path {
  stroke: #555;
}

.btn-outline-primary:hover path,
.btn-outline-primary:hover polygon {
  fill: #555;
}

.btn-outline-primary:focus {
  color: #555;
  border-color: #555;
}

.btn-outline-primary:focus path {
  stroke: #555;
}

.btn-outline-primary:focus path,
.btn-outline-primary:focus polygon {
  fill: #555;
}

.btn-outline-primary:active {
  color: #0064ff;
  border-color: #0064ff;
}

.btn-outline-primary:active path {
  stroke: #0064ff;
}

.btn-outline-primary:active path,
.btn-outline-primary:active polygon {
  fill: #0064ff;
}

.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #ccc;
  border-color: #ccc;
  opacity: 1;
}

.btn-outline-primary:disabled path, .btn-outline-primary.disabled path {
  stroke: #ccc;
}

.btn-outline-primary:disabled path,
.btn-outline-primary:disabled polygon, .btn-outline-primary.disabled path,
.btn-outline-primary.disabled polygon {
  fill: #ccc;
}

.btn-outline-primary--submit {
  padding: 1rem 2rem;
}

@media (max-width: 47.98rem) {
  .btn-outline-primary--sm-xl-submit {
    padding: 1rem 2rem;
  }
}
@media (min-width: 75rem) {
  .btn-outline-primary--sm-xl-submit {
    padding: 1rem 2rem;
  }
}
.btn-outline-primary--slim {
  max-height: 2.375rem;
  padding: 0.5rem 1rem;
}

.btn-outline-pill {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 0 0 0.0625rem #fff;
  transition: box-shadow 0.1s ease;
}

.btn-outline-pill:hover, .btn-outline-pill:active, .btn-outline-pill:focus {
  color: #fff;
  box-shadow: 0 0 0 0.1875rem #fff !important; /* stylelint-disable-line */
}

.btn-outline-pill:disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: transparent;
  opacity: 0.5;
}

.btn-outline-pill:disabled:hover {
  box-shadow: 0 0 0 0.0625rem #fff;
}

.btn-outline-danger {
  background-color: #fff;
  border: 0.0625rem solid #d13b42;
}

.btn-outline-danger path {
  stroke: #d13b42;
}

.btn-outline-danger path,
.btn-outline-danger polygon {
  fill: #d13b42;
}

.btn-outline-danger:hover {
  color: #d13b42;
  background-color: #fff;
  border-color: #d13b42;
}

.btn-outline-danger:focus {
  color: #d13b42;
  border-color: #d13b42;
}

.btn-outline-danger:active {
  color: #d13b42;
  border-color: #d13b42;
}

.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #ccc;
  border-color: #ccc;
  opacity: 1;
}

.btn-outline-success {
  background-color: #fff;
  border: 0.0625rem solid #0e8906;
}

.btn-outline-success path {
  stroke: #0e8906;
}

.btn-outline-success path,
.btn-outline-success polygon {
  fill: #0e8906;
}

.btn-outline-success:hover {
  color: #0e8906;
  background-color: #fff;
  border-color: #0e8906;
}

.btn-outline-success:focus {
  color: #0e8906;
  border-color: #0e8906;
}

.btn-outline-success:active {
  color: #0e8906;
  border-color: #0e8906;
}

.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #ccc;
  border-color: #ccc;
  opacity: 1;
}

.btn-outline-disabled {
  pointer-events: none;
  background: #f5f5f5;
  border: 0.0625rem solid #ebebeb;
}

.btn-outline-disabled path {
  stroke: #ebebeb;
}

.btn-deep {
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 0.125rem solid #000;
  border-radius: 0;
  box-shadow: 0 0, 0 0, 0.0625rem 0.0625rem 0 0, 0.125rem 0.125rem 0 0, 0.1875rem 0.1875rem 0 0;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  transition-property: all;
}

.btn-deep path {
  stroke: #000;
}

.btn-deep:hover {
  text-decoration: none;
  box-shadow: 0 0, 0 0, 0 0;
  transform: translate(0.25rem, 0.25rem);
}

.btn-tags--label {
  padding: 0 0.35rem;
  text-decoration: none;
  background-color: #fff;
  border: 0.08rem solid #000;
  border-radius: 1.5rem;
}

.btn-icon {
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  overflow: hidden;
  text-indent: -999999rem;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background-image 0.15s ease-in-out;
}

.btn-icon:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

.btn-icon:focus:not(.focus-visible).js-focus-visible, .js-focus-visible .btn-icon:focus:not(.focus-visible) {
  box-shadow: none;
}

.btn-icon:focus:not(:focus-visible) {
  box-shadow: none;
}

.btn-icon--send {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M4.74573 2.47754L21.5 12L3.67297 20.6157L7.50003 12L4.74573 2.47754Z' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E %3Cpath d='M8 12H12.5' stroke='currentColor' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E %3C/svg%3E"), url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' color='%23fff'%3E %3Cpath d='M4.74573 2.47754L21.5 12L3.67297 20.6157L7.50003 12L4.74573 2.47754Z' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E %3Cpath d='M8 12H12.5' stroke='currentColor' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E %3C/svg%3E");
}

.btn-icon--send:hover, .btn-icon--send:focus {
  background-color: #000;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' color='%23fff'%3E %3Cpath d='M4.74573 2.47754L21.5 12L3.67297 20.6157L7.50003 12L4.74573 2.47754Z' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E %3Cpath d='M8 12H12.5' stroke='currentColor' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E %3C/svg%3E");
}

.btn-icon--send:active {
  background-color: #ebebeb;
}

.btn-icon-white-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  background-color: #fff;
  border: 0.0625rem solid #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-tab-popup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  text-align: start;
  background-color: #fff;
  border: 0.0625rem dashed #ebebeb;
}

.no-js .btn-tab-popup {
  display: none;
}

.btn-video {
  color: #fff;
  border: none;
}

.btn-video:focus {
  box-shadow: 0 0 0 0.3rem rgba(235, 235, 235, 0.5);
}

.btn-video--red:focus {
  box-shadow: 0 0 0 0.3rem rgba(209, 59, 66, 0.5);
}

.btn-video-toggleable {
  position: relative;
}

.btn-video-toggleable svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-video-toggleable .zg-muted__mute {
  display: none;
}

.btn-video-toggleable.zg-muted svg {
  display: none;
}

.btn-video-toggleable.zg-muted .zg-muted__mute {
  display: block;
}

.btn-video-toggleable.zg-video-btn-disabled {
  opacity: 0.6;
}

.btn-close {
  background-size: 0.75rem;
}

.btn-close__small {
  background-size: 0.5rem;
}

.btn[type=submit] {
  white-space: normal;
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 2rem;
  background: #0064ff;
  border-radius: 0.125rem;
}

.mentee-home-call-btn-container {
  max-height: 2.375rem;
}

.mentee-home-call-btn-container > .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 2.375rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 36rem) {
  .mentee-home-call-btn-container {
    width: 8rem;
  }
}
@media (min-width: 87.5rem) {
  .mentee-home-call-btn-container {
    width: 100%;
  }
  .mentee-home-call-btn-container > .btn {
    width: 100%;
  }
}
.dashboard-call-btn-container {
  max-height: 2.375rem;
}

.dashboard-call-btn-container > .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 2.375rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 36rem) {
  .dashboard-call-btn-container {
    width: 8rem;
  }
}
.dashboard-book-a-call-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .dashboard-book-a-call-btn-container {
    flex-direction: row;
  }
}
.dashboard-book-a-call-btn-container > .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  width: 100%;
  white-space: nowrap;
}

@media (min-width: 48rem) {
  .dashboard-book-a-call-btn-container--mentee {
    max-width: 10rem;
  }
}
.call-time-divider {
  width: 0.0625rem;
  background: #ebebeb;
}

.zg-chat-message-container {
  display: flex;
  flex-direction: column;
}

.zg-chat-message-container .zg-chat-message {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 4.875rem;
  max-width: 21.25rem;
  overflow: hidden;
  font-size: 1rem;
  overflow-wrap: break-word;
  border-radius: 0.5rem;
}

.zg-chat-message-container .zg-chat-message-body {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem 2rem 0.5rem;
  gap: 0.5rem;
}

.zg-chat-message-container .zg-chat-message-time {
  position: absolute;
  right: 0.4375rem;
  bottom: 0.1875rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: "#AAAAAA";
}

.zg-chat-message-container .zg-chat-info {
  display: flex;
  align-items: flex-start;
  max-width: 21.25rem;
  padding: 0.25rem 0;
  grid-area: info;
  gap: 0.25rem;
}

.zg-chat-message-container .zg-chat-info svg {
  transform: translateY(0.1875rem);
}

.zg-dashboard-profile-inner-container, .zg-profile-inner-container, .zg-onboarding-container--with-footer + div, .zg-onboarding-container, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  padding-right: calc(1rem + env(safe-area-inset-right));
  padding-left: calc(1rem + env(safe-area-inset-left));
}

.zg-content-funnel, .zg-community-space-card--fixed-width, .zg-community-space-card, .zg-collapse-section--shadow, .zg-tile-container, .zg-ucas-application-step-container, .zg-ucas-application-start-container, .zg-mentoring-goal-resource, .zg-match-message-container,
.zg-match-user-container,
.zg-match-community-container, .zg-dashboard-default-content-container--centered-md-large, .zg-dashboard-default-content-container, .zg-match-content-container, .zg-mentee-home-content-container, .zg-dashboard-shadow-container {
  padding: 1rem;
  gap: 1rem;
  background: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-grid {
  display: grid;
  grid-gap: 2rem;
  gap: 2rem;
}

.zg-dashboard-main-container {
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  padding-bottom: 6rem;
  overflow-x: hidden;
  background-color: #f7faff;
}

.zg-dashboard-main-container:not(.zg-has-background-animation) .zg-dashboard-background-animation-translate-container {
  display: none;
}

.zg-dashboard-main-container__centered {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 1rem;
}

.zg-dashboard-main-container__centered .zg-dashboard-content-container {
  min-height: 0;
  min-height: initial;
}

@media (min-width: 48rem) {
  .zg-dashboard-main-container__centered {
    padding-top: 2rem;
  }
  .zg-dashboard-main-container__centered .zg-dashboard-content-container {
    margin: auto;
  }
}
.zg-dashboard-main-container.zg-has-background-animation {
  position: relative;
  overflow: hidden;
}

.zg-dashboard-shadow-container {
  width: 100%;
  padding: 2rem;
  margin-top: 1rem;
}

@media (min-width: 48rem) {
  .zg-dashboard-shadow-container {
    margin-top: 2rem;
  }
}
.zg-dashboard-content-container h2, .zg-dashboard-content-container .h2 {
  color: #14373c;
}

.zg-dashboard-content-container p {
  color: #000;
}

.zg-mentee-home-content-container {
  height: 100%;
}

.zg-mentee-home-content-container.to-do {
  border: 0.125rem solid #00fad7;
}

.zg-match-content-container {
  height: auto;
}

.zg-match-content-container.zg-is-new {
  position: relative;
  padding-top: 2rem;
}

.zg-match-content-container.zg-is-new::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.125rem 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  content: "NEW";
  background: #00fad7;
  border-radius: 0.25rem;
}

.zg-dashboard-default-content-container {
  height: auto;
}

.zg-dashboard-default-content-container--centered-md-large {
  max-width: 42rem;
  height: auto;
}

@media (min-width: 48rem) {
  .zg-dashboard-default-content-container--centered-md-large {
    width: 35.5rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-dashboard-default-content-container--centered-md-large {
    width: 100%;
  }
}
.zg-match-message-container,
.zg-match-user-container,
.zg-match-community-container {
  height: 100%;
}

.zg-match-call-container {
  padding: 1rem;
  gap: 1rem;
  background: #fff;
  border: 0.0625rem solid #e5efff;
}

.zg-match-user-profile-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.zg-match-user-profile-container .zg-match-user-profile-info {
  text-align: center;
}

@media (min-width: 48rem) {
  .zg-match-user-profile-container .zg-match-user-profile-info {
    text-align: left;
  }
}
@media (min-width: 62rem) {
  .zg-match-user-profile-container .zg-match-user-profile-info {
    text-align: center;
  }
}
@media (min-width: 48rem) {
  .zg-match-user-profile-container {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (min-width: 62rem) {
  .zg-match-user-profile-container {
    flex-direction: column;
    justify-content: center;
  }
}
.zg-application-form-container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin: 1rem;
  row-gap: 1rem;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-application-form-container .btn-primary {
  width: 100%;
}

.zg-application-form-container .btn-outline-primary {
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 30rem) {
  .zg-application-form-container {
    max-width: 42rem;
    padding: 2rem;
  }
  .zg-application-form-container .btn-primary {
    width: auto;
  }
}
@media (min-width: 48rem) {
  .zg-application-form-container {
    margin: 3rem auto;
  }
}
.zg-onboarding-container {
  min-height: calc(100vh - 3.5rem); /* Fallback for when --vh is not set by viewport_height_controller */
  min-height: calc(1vh * 100 - 3.5rem);
  min-height: calc(var(--vh, 1vh) * 100 - 3.5rem);
  margin: 0 auto;
}

@media (min-width: 48rem) {
  .zg-onboarding-container {
    max-width: 38.5rem;
    min-height: 0;
    padding: 1.5rem 4.5rem;
    margin: 3rem auto;
    border: 0.0625rem solid #e5efff;
    border-radius: 0.5rem;
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  }
  .zg-onboarding-container.no-shadow {
    box-shadow: none;
  }
}
@media (min-width: 62rem) {
  .zg-onboarding-container {
    max-width: 50.125rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-container {
    max-width: 56.875rem;
  }
}
.zg-onboarding-container--with-footer {
  min-height: calc(100vh + 1.5rem); /* Fallback for when --vh is not set by viewport_height_controller */
  min-height: calc(1vh * 100 + 1.5rem);
  min-height: calc(var(--vh, 1vh) * 100 + 1.5rem);
}

@media (min-width: 48rem) {
  .zg-onboarding-container--with-footer {
    min-height: 0;
  }
}
.zg-onboarding-container--with-footer + div {
  min-height: 5rem;
}

@media (min-width: 48rem) {
  .zg-onboarding-container--with-footer + div {
    min-height: 0;
  }
}
.zg-onboarding-container--flat {
  display: flex;
  align-items: center;
  border: none;
  box-shadow: none;
}

@media (min-width: 48rem) {
  .zg-onboarding-container--flat {
    min-height: 70vh;
  }
}
.zg-main-block-background {
  display: flex;
  flex-direction: column;
}

.zg-main-block-background.zg-hide-ribbon .zg-icon-ribbon-grid {
  display: none;
}

.zg-icon-ribbon-container {
  display: flex;
  flex-grow: 1;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 48rem) {
  .zg-main-has-background-animation {
    padding: 0;
    margin-top: 0;
  }
}
.zg-onboarding-outer-container {
  margin: 0 auto;
  background-color: #f7faff;
}

@media (min-width: 48rem) {
  .zg-onboarding-outer-container {
    max-width: 42.25rem;
    margin: 3rem auto;
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  }
}
.zg-onboarding-outer-container.zg-has-background {
  position: relative;
  padding-top: 1rem;
  box-shadow: none;
}

@media (min-width: 48rem) {
  .zg-onboarding-outer-container.zg-has-background {
    display: grid;
    max-width: none;
    min-height: calc(100vh - 0rem); /* Fallback for when --vh is not set by viewport_height_controller */
    min-height: calc(1vh * 100 - 0rem);
    min-height: calc(var(--vh, 1vh) * 100 - 0rem);
    /* stylelint-disable-line */
    padding-top: 0;
    margin: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "background inner";
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-outer-container.zg-has-background {
    grid-template-columns: 43.75rem 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "background inner";
  }
}
.zg-onboarding-outer-container .zg-onboarding-navbar-animation {
  position: absolute;
  top: 0.25rem;
  z-index: 10;
  box-sizing: border-box;
  width: 100vw;
  padding: 0 1rem;
}

@media (min-width: 48rem) {
  .zg-onboarding-outer-container .zg-onboarding-navbar-animation {
    top: 0.5rem;
    left: 50vw;
    width: 50vw;
  }
}
@media (min-width: 87.5rem) {
  .zg-onboarding-outer-container .zg-onboarding-navbar-animation {
    top: 0.5rem;
    left: 43.75rem;
    width: calc(100vw - 43.75rem);
  }
}
.zg-onboarding-background-animation-container-wrapper {
  grid-area: background;
  display: none;
}

@media (min-width: 48rem) {
  .zg-onboarding-background-animation-container-wrapper {
    z-index: 2;
    display: block;
    transform: scale(1);
  }
}
.zg-onboarding-background-animation-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: #0064ff;
}

@media (min-width: 48rem) {
  .zg-onboarding-background-animation-container {
    min-height: 50rem;
  }
}
.zg-onboarding-inner-animation-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2rem);
  max-width: 32.5rem;
  margin: 0 auto;
  grid-area: inner;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .zg-onboarding-inner-animation-container {
    max-width: 28.5rem;
  }
}
.zg-onboarding-inner-animation-container h3, .zg-onboarding-inner-animation-container .h3 {
  color: #14373c;
}

.zg-onboarding-welcome-title-container,
.zg-onboarding-cards-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.zg-onboarding-welcome-title-container .card,
.zg-onboarding-cards-container .card {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-onboarding-welcome-title-container .card svg,
.zg-onboarding-cards-container .card svg {
  width: 3.75rem;
  height: auto;
}

@media (min-width: 36rem) {
  .zg-onboarding-welcome-title-container .card svg,
  .zg-onboarding-cards-container .card svg {
    width: 5rem;
  }
}
.zg-onboarding-welcome-title-container h2, .zg-onboarding-welcome-title-container .h2,
.zg-onboarding-welcome-title-container h3,
.zg-onboarding-welcome-title-container .h3,
.zg-onboarding-cards-container h2,
.zg-onboarding-cards-container .h2,
.zg-onboarding-cards-container h3,
.zg-onboarding-cards-container .h3 {
  color: #14373c;
}

.zg-onboarding-inner-container {
  width: calc(100% - 2rem);
  max-width: 32.5rem;
  padding-top: 1.5rem;
  margin: 0 auto;
}

@media (min-width: 48rem) {
  .zg-onboarding-inner-container {
    max-width: 27.5rem;
    margin-top: 6rem;
  }
}
.zg-profile-outer-container {
  min-height: calc(100vh - 3.5rem); /* Fallback for when --vh is not set by viewport_height_controller */
  min-height: calc(1vh * 100 - 3.5rem);
  min-height: calc(var(--vh, 1vh) * 100 - 3.5rem);
  margin: 0 auto;
}

@media (min-width: 62rem) {
  .zg-profile-outer-container {
    max-width: 62rem;
    min-height: 0;
    margin: 3rem auto;
  }
}
@media (min-width: 48rem) {
  .zg-profile-inner-container {
    padding: 0 3rem 3rem 3rem;
  }
}
@media (min-width: 62rem) {
  .zg-dashboard-profile-inner-container {
    padding: 0 3rem 3rem 3rem;
  }
}
@media (max-width: 47.98rem) {
  .zg-dashboard-profile-inner-column {
    min-width: 100%;
  }
}
.zg-offset-container {
  width: calc(100% + 2rem);
  padding-right: 1rem;
  padding-left: 1rem;
  margin-left: -1rem;
}

@media (min-width: 48rem) {
  .zg-offset-container {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 47.98rem) {
  .zg-offset-container--md-down {
    width: calc(100% + 2rem);
    padding-right: 1rem;
    padding-left: 1rem;
    margin-left: -1rem;
  }
}
.zg-onboarding-collapse-container {
  position: relative;
  flex: 1 0;
}

@media (max-width: 47.98rem) {
  .zg-onboarding-collapse-container {
    display: none;
  }
}
.zg-onboarding-collapse-wrapper {
  position: absolute;
  top: 50%;
  left: 29%;
  width: 42%;
  transform: translateY(-50%);
}

.zg-onboarding-graphic {
  max-width: 14.5rem;
  margin: 0 2rem;
}

.zg-profile-picture-option-container {
  padding: 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
}

.zg-profile-picture-option-container.zg-selected {
  outline: 0.0625rem solid #00fad7;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
}

.zg-profile-picture-option-container label {
  cursor: pointer;
}

.zg-two-button-container {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  gap: 1rem;
}

@media (min-width: 36rem) {
  .zg-two-button-container {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.zg-cta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 62rem) {
  .zg-cta-container {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}
.zg-cta-container .btn {
  width: 100%;
  white-space: nowrap;
}

@media (min-width: 48rem) {
  .zg-cta-container .btn {
    width: auto;
    width: initial;
  }
}
.zg-mentoring-goal-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

@media (min-width: 48rem) {
  .zg-mentoring-goal-container {
    grid-template-columns: 1fr 1fr;
  }
}
.zg-mentoring-calls-goal-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.zg-mentoring-goal-resources-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

@media (min-width: 30rem) {
  .zg-mentoring-goal-resources-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 87.5rem) {
  .zg-mentoring-goal-resources-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.zg-mentoring-goal-resource {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.zg-mentoring-goal-resource > .zg-mentoring-goal-resource-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.125rem;
  overflow: hidden;
  gap: 0.5rem;
  text-align: center;
  background: #0064ff;
  border-radius: 0.5rem;
}

.zg-jobs-container {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.zg-jobs-container .zg-job-tile {
  flex: 1 1;
  min-width: 40%;
}

@media (max-width: 47.98rem) {
  .zg-jobs-container .zg-job-tile {
    min-width: 100%;
  }
}
.zg-ucas-application-start-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 56.875rem;
  text-align: center;
}

.zg-ucas-application-step-container {
  width: 100%;
  max-width: 56.875rem;
  height: auto;
}

.zg-ucas-application-step-container .form-control.form-select,
.zg-ucas-application-step-container .form-control.string,
.zg-ucas-application-step-container .autoComplete_wrapper {
  max-width: 100%;
}

@media (min-width: 48rem) {
  .zg-ucas-application-step-container .form-control.form-select,
  .zg-ucas-application-step-container .form-control.string,
  .zg-ucas-application-step-container .autoComplete_wrapper {
    max-width: 21.4375rem;
  }
}
.zg-school-stats-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
  grid-template-areas: "left-stat" "right-stat" "refer";
  justify-items: center;
  align-items: center;
}

@media (min-width: 48rem) {
  .zg-school-stats-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "left-stat right-stat" "refer refer";
  }
}
@media (min-width: 62rem) {
  .zg-school-stats-container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "left-stat right-stat refer";
  }
}
.zg-school-stats-container .zg-school-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.zg-school-stats-container .zg-school-stat h3, .zg-school-stats-container .zg-school-stat .h3 {
  margin: 0;
}

.zg-school-stats-container .zg-school-stat-left {
  grid-area: left-stat;
}

.zg-school-stats-container .zg-school-stat-right {
  grid-area: right-stat;
}

.zg-school-stats-container .zg-school-referral-dropdown {
  grid-area: refer;
}

.zg-tile-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 400;
}

.zg-unauthenticated-full-layout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}

@media (min-width: 48rem) {
  .zg-unauthenticated-full-layout-container {
    max-width: 38.5rem;
  }
}
@media (min-width: 62rem) {
  .zg-unauthenticated-full-layout-container {
    max-width: 50.125rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-unauthenticated-full-layout-container {
    max-width: 56.875rem;
  }
}
.zg-live-reload-jobs {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 4.25rem); /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 4.25rem);
  height: calc(var(--vh, 1vh) * 100 - 4.25rem);
  padding: 1rem 0.75rem 1rem 1rem;
  overflow: auto;
  gap: 1rem;
}

.zg-notice-container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
  border: 0.0625rem solid #ff9b40;
  border-radius: 0.25rem;
}

.zg-hide-on-empty:empty {
  display: none !important;
}

.zg-hide-on-no-children:not(:has(*)) {
  display: none !important;
}

.zg-dashboard-main-container--opportunities-full-layout {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 1.5rem;
}

@media (min-width: 87.5rem) {
  .zg-dashboard-main-container--opportunities-full-layout {
    margin-top: 5.9375rem;
  }
}
.video-content-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0rem 5rem 0rem 2rem;
}

.video-content-cards-container .title {
  color: #fff;
  z-index: 10;
  margin-bottom: 2rem;
}

.video-content-cards-container .zg-onboarding-cards-container .card {
  color: #fff;
  display: block;
  padding: 1rem;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 250, 215, 0.2);
  background: rgba(20, 55, 60, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  width: 100%;
}

.zg-filter-controls-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 1.75rem;
}

.zg-dashboard-horizontal-scroll-container {
  display: flex;
  gap: 1rem;
  padding: 0 1rem 0 2rem;
  margin: 0 -1rem 0 -2rem;
  overflow-x: scroll;
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.zg-dashboard-horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

.border-dashed-long {
  border: 0.0625rem solid transparent;
  background-image: repeating-linear-gradient(to right, rgb(229, 231, 235) 0, rgb(229, 231, 235) 0.5rem, transparent 0.5rem, transparent 1rem), repeating-linear-gradient(to right, rgb(229, 231, 235) 0, rgb(229, 231, 235) 0.5rem, transparent 0.5rem, transparent 1rem), repeating-linear-gradient(to bottom, rgb(229, 231, 235) 0, rgb(229, 231, 235) 0.5rem, transparent 0.5rem, transparent 1rem), repeating-linear-gradient(to bottom, rgb(229, 231, 235) 0, rgb(229, 231, 235) 0.5rem, transparent 0.5rem, transparent 1rem);
  background-size: 100% 0.0625rem, 100% 0.0625rem, 0.0625rem 100%, 0.0625rem 100%;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: no-repeat;
}

#zg-main-content-container {
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

#zg-main-content-container::-webkit-scrollbar {
  display: none;
}

.zg-dashboard-layout-container {
  --bs-gutter-x: 0;
  height: 100%;
}

.zg-community-embed .zg-dashboard-main-container,
.zg-chat-embed .zg-dashboard-main-container {
  padding: 0;
}

.zg-community-embed .zg-community-container,
.zg-chat-embed .zg-community-container {
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.zg-sidenav-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-sidenav-content > ul {
  list-style-type: none;
}

.zg-sidenav-content > ul .nav-item {
  white-space: nowrap;
  position: relative;
}

.zg-sidenav-content > ul .nav-item > .nav-link {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.25rem 0.5rem;
  gap: 0.5rem;
  width: auto;
  height: 3rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-family: "Archia", sans-serif;
  font-weight: 600;
}

.zg-sidenav-content > ul .nav-item > .nav-link.zg-is-beta {
  display: flex;
}

.zg-sidenav-content > ul .nav-item > .nav-link.zg-is-beta::after {
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000;
  content: "BETA";
  background: #00fad7;
  font-family: "Poppins", sans-serif;
  line-height: 1.125rem;
  margin-right: 0.5rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  border-radius: 0.25rem;
}

.zg-sidenav-content > ul .nav-item > .nav-link > .community-ellipses {
  display: flex;
}

.zg-sidenav-content > ul .nav-item > .nav-link > span {
  opacity: 1;
  transition: opacity 0.2s ease;
}

@media (min-width: 48rem) {
  .zg-sidenav-content > ul .nav-item > .nav-link {
    height: 2.5rem;
    font-size: 0.875rem;
  }
}
.zg-sidenav-content > ul .nav-item > .nav-link:hover {
  background: rgba(0, 0, 0, 0.1);
}

.zg-sidenav-content > ul .nav-item > .nav-link.active {
  background: rgba(0, 0, 0, 0.2);
}

.zg-sidenav-content > ul .nav-item > .nav-link .zg-icon-sidenav {
  margin: 0.5rem;
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease;
}

.zg-sidenav-content > ul .nav-item > .nav-link .zg-icon-sidenav.zg-ai-icon-sidenav {
  width: 1rem;
  height: 1rem;
  transform: scale(1.5);
}

.zg-sidenav-content > ul .nav-item__collapse {
  display: flex;
  justify-content: space-between;
  border-radius: 0.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .zg-sidenav-content > ul .nav-item__collapse {
    transition: none;
  }
}
.zg-sidenav-content > ul .nav-item__collapse > .nav-link {
  border-radius: 0.5rem 0 0 0.5rem;
  width: 100%;
}

.zg-sidenav-content > ul .nav-item__collapse > .nav-link:hover {
  background: transparent;
}

.zg-sidenav-content > ul .nav-item__collapse .zg-sidenav-list-collapse-button {
  border-radius: 0 0.5rem 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  -webkit-appearance: none;
}

.zg-sidenav-content > ul .nav-item__collapse .zg-sidenav-list-collapse-button > svg {
  transition: transform 0.2s ease;
}

.zg-sidenav-content > ul .nav-item__collapse .zg-sidenav-list-collapse-button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.zg-sidenav-content > ul .nav-item__collapse .zg-sidenav-list-collapse-button.expanded > svg {
  transform: rotate(180deg);
}

.zg-sidenav-content > ul .nav-item__collapse:hover {
  background: rgba(0, 0, 0, 0.1);
}

.zg-sidenav-content > ul .nav-item__collapse.active {
  background: rgba(0, 0, 0, 0.2);
}

.zg-sidenav-content .zg-sidenav-list > ul {
  list-style-type: none;
  padding-left: 1rem;
  transition: padding-left 0.2s ease;
}

.zg-sidenav-content .zg-sidenav-list .zg-profile-image {
  filter: drop-shadow(0 0 1.25rem rgba(0, 0, 0, 0.1));
  overflow: hidden;
  border: none;
  box-shadow: 0 0 0 0.0625rem #ebebeb;
  transition: width 0.2s ease, height 0.2s ease;
}

.zg-sidenav-careers-list li {
  list-style-type: none;
}

.zg-sidenav-container {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: #0064FF;
  width: 14.75rem;
  height: 100vh; /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 0vh);
  height: calc(var(--vh, 1vh) * 100 - 0vh);
  transition: width 0.2s ease;
}

.zg-sidenav-container .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.zg-sidenav-container .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .zg-sidenav-container .nav-link {
    transition: none;
  }
}
.zg-sidenav-container .nav-link:hover, .zg-sidenav-container .nav-link:focus {
  color: #0a58ca;
}

.zg-sidenav-container .nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.zg-sidenav-container .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.zg-sidenav-container .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.zg-sidenav-container .nav-tabs .nav-link:hover, .zg-sidenav-container .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.zg-sidenav-container .nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.zg-sidenav-container .nav-tabs .nav-link.active,
.zg-sidenav-container .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.zg-sidenav-container .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.zg-sidenav-container .nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0;
}

.zg-sidenav-container .nav-pills .nav-link.active,
.zg-sidenav-container .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.zg-sidenav-container .nav-fill > .nav-link,
.zg-sidenav-container .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.zg-sidenav-container .nav-justified > .nav-link,
.zg-sidenav-container .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.zg-sidenav-container .nav-fill .nav-item .nav-link,
.zg-sidenav-container .nav-justified .nav-item .nav-link {
  width: 100%;
}

.zg-sidenav-container .tab-content > .tab-pane {
  display: none;
}

.zg-sidenav-container .tab-content > .active {
  display: block;
}

@media (max-width: 47.98rem) {
  .zg-sidenav-container {
    display: none;
  }
}
.zg-sidenav-container .row {
  --bs-gutter-x: 1.5rem;
}

.zg-sidenav-container .zg-sidenav-header-row {
  height: 4.25rem;
  min-height: 4.25rem;
}

.zg-sidenav-container .zg-sidenav-header-row > .zg-sidenav-header {
  display: flex;
  position: fixed;
  align-items: center;
  height: 4.25rem;
  width: 14.75rem;
  background-color: #0064ff;
}

.zg-sidenav-container .zg-sidenav-header-row > .zg-sidenav-header > .logo-full {
  width: auto;
  height: 3rem;
}

.zg-sidenav-container .zg-sidenav-header-row > .zg-sidenav-header > .logo-full > g > path:nth-child(6) {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.zg-sidenav-container .zg-sidenav-header-row > .zg-sidenav-header > .logo-slim {
  display: none;
}

.zg-sidenav-container .zg-sidenav-main-row {
  flex-grow: 1;
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.zg-sidenav-container .zg-sidenav-main-row::-webkit-scrollbar {
  display: none;
}

.zg-sidenav-container .zg-sidenav-main-row > .zg-sidenav-content {
  margin-top: 2rem;
  overflow-x: hidden;
}

.zg-sidenav-container .zg-sidenav-main-row > .zg-sidenav-content .spinner-border {
  width: 1rem;
  height: 1rem;
  align-self: center;
}

.zg-sidenav-container .zg-sidenav-toggle-row {
  height: 4rem;
  align-items: center;
}

.zg-sidenav-container .zg-sidenav-toggle-row > .zg-sidenav-slim-toggle {
  display: flex;
  justify-content: center;
  position: fixed;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: transform 0s 0.2s;
}

.zg-sidenav-container .zg-sidenav-toggle-row > .zg-sidenav-slim-toggle > svg {
  transition: transform 0.2s ease;
}

.zg-sidenav-container.slim {
  width: 4rem;
}

.zg-sidenav-container.slim .zg-sidenav-header {
  width: 4rem;
  align-items: center;
}

.zg-sidenav-container.slim .zg-sidenav-header > .logo-full {
  position: fixed;
}

.zg-sidenav-container.slim .zg-sidenav-header > .logo-full > g > path:nth-child(6) {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item__collapse {
  display: list-item;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item__collapse > .nav-link {
  border-radius: 0.5rem;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item__collapse .zg-sidenav-list-collapse-button {
  display: none;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item .nav-link {
  padding: 0.5rem;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item .nav-link > span {
  position: absolute;
  left: 3rem;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item .nav-link .zg-icon-sidenav {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item .nav-link.zg-is-beta {
  display: flex;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item .nav-link.zg-is-beta::after {
  display: none;
}

.zg-sidenav-container.slim .zg-sidenav-content > ul .nav-item .nav-link > .community-ellipses {
  display: none;
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-list {
  width: 2.5rem;
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-list > ul {
  padding-left: 0;
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-list > ul > .nav-item > .nav-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-list .zg-profile-image {
  width: 1.5rem;
  height: 1.5rem;
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-subheading {
  font-size: 10px;
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-subheading.uni-subheading:before {
  content: "UNI";
}

.zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-subheading.mentees-active-subheading, .zg-sidenav-container.slim .zg-sidenav-content .zg-sidenav-subheading.mentees-pending-subheading {
  font-size: 10px;
}

.zg-sidenav-container.slim .zg-match-user-profile-image > .zg-profile-avatar-wrapper {
  display: none;
}

.zg-sidenav-container.slim .zg-match-user-profile-image > .zg-profile-avatar-wrapper--slim {
  display: block;
}

.zg-sidenav-container.slim .zg-sidenav-slim-toggle {
  transform: scaleY(-1);
}

.zg-sidenav-container.slim .zg-sidenav-slim-toggle > svg {
  transform: rotate(-180deg);
}

.zg-sidenav-container.no-transition {
  transition: none !important;
}

.zg-sidenav-container.no-transition * {
  transition: none !important;
}

.zg-dashboard-nav-modal .row {
  --bs-gutter-x: 1.5rem;
}

.zg-dashboard-nav-modal__content {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh; /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 0vh);
  height: calc(var(--vh, 1vh) * 100 - 0vh);
  overflow: auto;
  border: none;
  border-radius: 0;
  background: #0064ff;
}

.zg-dashboard-nav-modal__header {
  align-items: center;
  width: 100%;
  height: 4.25rem;
  min-height: 4.25rem;
}

.zg-dashboard-nav-modal__header .zg-dropdown-menu-chevron {
  fill: #fff;
}

.zg-dashboard-nav-modal__logo {
  width: auto;
  height: 3rem;
}

.zg-dashboard-nav-modal__menu-items {
  padding: 0;
}

.zg-sidenav-subheading {
  display: flex;
  opacity: 0.8;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f5f5f5;
  transition: font-size 0.2s ease;
  max-width: 100%;
}

.zg-sidenav-subheading.uni-subheading:before {
  content: "UNIVERSITY";
}

.zg-sidenav-subheading.career-subheading:before {
  content: "CAREER";
}

.zg-sidenav-subheading.content-subheading:before {
  content: "CONTENT";
}

.zg-sidenav-subheading.tools-subheading:before {
  content: "TOOLS";
}

.zg-sidenav-subheading.mentees-active-subheading:before {
  content: "ACTIVE";
}

.zg-sidenav-subheading.mentees-pending-subheading:before {
  content: "PENDING";
}

.zg-dashboard-container {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.zg-dashboard-container .zg-dashboard-header-row {
  height: 4.25rem;
  min-height: 4.25rem;
}

.zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header {
  top: 0;
  position: fixed;
  align-items: center;
  z-index: 9;
  box-sizing: border-box;
  width: 100vw;
  height: 4.25rem;
  padding: 0 1rem;
  background-color: #fff;
  border-bottom: 0.0625rem solid #e5efff;
  transition: width 0.2s ease, box-shadow 100ms ease-out;
}

.zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header.zg-header-shadow {
  border-bottom: 0.0625rem solid #e5efff;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  transition: width 0.2s ease, box-shadow 100ms ease-in;
}

.zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header-logo {
  width: 100%;
  height: 3rem;
  background-image: url(/assets/logo-783525e8c9c40072d30e5da550137f7ca03d71148f39c9da0388f39f6b48e2a4.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 48rem) {
  .zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header-logo {
    display: none !important;
  }
}
.zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header-user-menu {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  grid-gap: 0.25rem;
  gap: 0.25rem;
  width: 3.5rem;
  height: 2rem;
}

@media (min-width: 48rem) {
  .zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header {
    align-items: center;
    justify-content: end;
    width: calc(100vw - 14.75rem);
  }
  .zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header.slim {
    width: calc(100vw - 4rem);
  }
  .zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header.no-transition {
    transition: none;
  }
}
.zg-dashboard-container .zg-dashboard-main-row {
  flex-direction: column;
  min-height: 0;
  flex-grow: 1;
}

.zg-dashboard-container::-webkit-scrollbar {
  display: none;
}

.zg-dashboard-call-options-menu .dropdown-menu.show {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 0.5rem;
  gap: 1rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

@media (max-width: 35.98rem) {
  .zg-dashboard-call-options-menu .dropdown-menu.show {
    width: calc(100vw - 4rem);
    left: -2rem !important;
  }
}
.zg-dashboard-call-options-menu .dropdown-menu.show .dropdown-item {
  display: flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.5rem;
}

.zg-dashboard-call-options-menu .dropdown-menu.show .dropdown-item:hover {
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
}

.zg-profile-dropdown-menu a .zg-dropdown-menu-chevron,
.zg-dashboard-call-options-menu a .zg-dropdown-menu-chevron {
  transition: transform 0.2s ease-in-out;
}

.zg-profile-dropdown-menu a.show .zg-dropdown-menu-chevron,
.zg-dashboard-call-options-menu a.show .zg-dropdown-menu-chevron {
  transform: rotate(180deg);
}

.zg-dashboard-back-link,
.zg-profile-edit-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-hover-underline--h3:hover h3, .zg-hover-underline--h3:hover .h3 {
  text-decoration: underline;
}

.zg-tab {
  padding: 0.5rem;
  font-weight: 600;
  font-family: "Archia", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  color: #000;
}

.zg-tab.active {
  border-bottom: 0.125rem solid #00FAD7;
  color: #14373c;
}

.zg-tab.zg-is-new {
  display: flex;
}

.zg-tab.zg-is-new::before {
  padding: 0.125rem 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  content: "NEW";
  background: #00fad7;
  font-family: "Poppins", sans-serif;
  line-height: 1.125rem;
  margin-right: 0.5rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  border-radius: 0.25rem;
}

.mentoring-sessions-single-container {
  display: flex;
  flex-direction: column;
}

.mentoring-sessions-single-container .pagination {
  margin: 0;
}

@media (min-width: 62rem) {
  .mentoring-sessions-single-container {
    display: none;
  }
}
.mentoring-sessions-multiple-container {
  display: none;
  flex-direction: column;
}

.mentoring-sessions-multiple-container .pagination {
  margin: 0;
}

@media (min-width: 62rem) {
  .mentoring-sessions-multiple-container {
    display: flex;
  }
}
.zg-dashboard-main-container.zg-has-background-animation {
  background: none;
  --zg-dashboard-background-animation-icon-scale: 7;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation-translate-container {
  z-index: -100;
  animation: zg-translate 5s infinite ease-in-out;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation-translate-container .zg-dashboard-background-animation-rotate-container {
  animation: zg-rotate 5s infinite ease-in-out;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-1 {
  position: absolute;
  top: 29rem;
  left: 2rem;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-1 svg {
  transform: rotate(17deg) scale(var(--zg-dashboard-background-animation-icon-scale));
}

@media (min-width: 48rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-1 {
    top: 18rem;
    left: calc(50% - 26rem);
  }
}
@media (min-width: 62rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-1 {
    left: calc(50% - 24rem);
  }
}
@media (min-width: 87.5rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-1 {
    left: calc(45% - 24rem);
  }
}
.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-2 {
  position: absolute;
  top: 38rem;
  right: 2rem;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-2 svg {
  transform: rotate(-19deg) scale(var(--zg-dashboard-background-animation-icon-scale));
}

@media (min-width: 48rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-2 {
    top: 43rem;
    right: auto;
    right: initial;
    left: calc(50% - 15rem);
  }
}
.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-3 {
  position: absolute;
  top: 48rem;
  right: calc(50% - 16rem);
  display: none;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-3 svg {
  transform: scale(var(--zg-dashboard-background-animation-icon-scale));
}

@media (min-width: 48rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-3 {
    display: block;
  }
}
.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-4 {
  position: absolute;
  top: 10rem;
  right: calc(50% - 24rem);
  display: none;
}

.zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-4 svg {
  transform: rotate(-26deg) scale(var(--zg-dashboard-background-animation-icon-scale));
}

@media (min-width: 48rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-4 {
    display: block;
  }
}
@media (min-width: 87.5rem) {
  .zg-dashboard-main-container.zg-has-background-animation .zg-dashboard-background-animation__icon-4 {
    right: calc(50% - 31rem);
  }
}
.zg-dashboard-matched-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  --matched-profile-image-offset: 1.6rem;
}

.zg-dashboard-matched-graphic .zg-profile-image:first-child {
  transform: translate(var(--matched-profile-image-offset), 0);
  animation-duration: 1s;
  animation-name: slide-in-from-left;
  animation-timing-function: ease-in-out;
}

.zg-dashboard-matched-graphic .zg-profile-image:last-child {
  transform: translate(calc(-1 * var(--matched-profile-image-offset)), 0);
  animation-duration: 1s;
  animation-name: slide-in-from-right;
  animation-timing-function: ease-in-out;
}

.zg-dashboard-matched-graphic .zg-icon-matched {
  z-index: 1;
  min-width: 2.3125rem;
  animation-delay: 0.9s;
  animation-duration: 0.4s;
  animation-name: pop-in;
  animation-timing-function: cubic-bezier(0.58, 0.91, 0.58, 0.98);
  animation-fill-mode: both;
}

.zg-dashboard-matched-graphic .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
}

@keyframes slide-in-from-left {
  from {
    transform: translate(-80%, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translate(var(--matched-profile-image-offset), 0);
  }
}
@keyframes slide-in-from-right {
  from {
    transform: translate(80%, 0);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  to {
    transform: translate(calc(-1 * var(--matched-profile-image-offset)), 0);
  }
}
@keyframes pop-in {
  from {
    transform: scale(0);
  }
  75% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.zg-dashboard-matched-graphic .image-loading {
  animation-play-state: paused !important;
}

.zg-student-journeys-grid {
  display: none;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  grid-template-areas: ". . . ." "details details details details";
}

@media (min-width: 62rem) {
  .zg-student-journeys-grid {
    display: grid;
  }
}
.zg-student-journey__panel {
  position: relative;
  cursor: pointer;
}

.zg-student-journey__panel:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.125rem;
  bottom: -0.5rem;
  left: 0;
  background-color: #00fad7;
  transform-origin: bottom right;
  transition: transform 0.15s ease-out;
}

.zg-student-journey__panel:hover:after, .zg-student-journey__panel.active:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.zg-student-journey__details {
  grid-area: details;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  grid-gap: 1rem 2rem;
  gap: 1rem 2rem;
}

@media (min-width: 62rem) {
  .zg-student-journey__details {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
.zg-goal-step {
  background: #fff;
  border: 0.125rem solid #00fad7;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  padding: 1rem 1rem 1rem 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.zg-goal-step.completed {
  border-color: #e5efff;
  border: 0.0625rem solid #e5efff;
}

.zg-goal-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zg-goal-step > .btn {
  width: -moz-fit-content;
  width: fit-content;
}

.zg-goal-step-number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: #14373c;
  width: 1.75rem;
  height: 1.75rem;
  background: #fff;
  border: 0.0625rem solid #00fad7;
  border-radius: 0.875rem;
}

.zg-goal-step.completed .zg-goal-step-number {
  color: #0e8906;
  border-color: #0e8906;
}

.zg-to-do-badge {
  display: flex;
  align-items: center;
  margin-left: auto;
  background-color: #00fad7;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}

.zg-event {
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  padding: 1rem;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
}

.zg-event .zg-event-buttons-container {
  max-height: 2.375rem;
}

.zg-event .zg-event-buttons-container > .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  max-height: 2.375rem;
  padding: 0.75rem 1rem;
}

.zg-event .date-holder .date {
  color: #000;
}

.zg-event .date-holder .month {
  color: #555;
}

.zg-event .title {
  margin-bottom: 0;
  margin-right: auto;
  color: #14373c;
}

.zg-event .event-date-divider {
  width: 0.0625rem;
  background: #f5f5f5;
  height: 2rem;
}

.zg-event .flex-column {
  row-gap: 0.25rem;
}

.zg-event-section {
  background: #fff;
  border: 0.0625rem solid #e5efff;
  padding: 1rem;
}

.zg-event-section .zg-event-section-header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.zg-event-section .zg-event-section-header .zg-event-section-collapse-button > svg {
  transition: transform 0.2s ease;
}

.zg-event-section .zg-event-section-header .zg-event-section-collapse-button.expanded > svg {
  transform: rotate(180deg);
}

.zg-event-section .zg-event-section-body {
  border-top: 0.0625rem solid #ebebeb;
}

.zg-event-section .zg-event-section-body.collapsing {
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-feedback-rating-container > input {
  display: none;
}

.zg-feedback-rating-container > input:checked ~ label > svg {
  fill: #0064ff;
  stroke: #0064ff;
}

.form-select {
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve' color='%23000'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D %3C/style%3E %3Cpolygon points='16,22 6,12 7.4,10.6 16,19.2 24.6,10.6 26,12 '/%3E %3Crect id='_x3C_Transparent_Rectangle_x3E_' class='st0' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.form-select.has-prompt:has(option[selected=selected][value=""]) {
  color: #aaa;
}

.form-select.has-prompt:has(option[selected=selected][value=""])[data-touched=true] {
  color: #000;
}

.form-select:hover {
  cursor: pointer;
}

.form-select, .form-select.is-invalid, .form-select.is-valid {
  background-position: right 1rem center;
}

.form-select.is-invalid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve' color='%23d13b42'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D %3C/style%3E %3Cpolygon points='16,22 6,12 7.4,10.6 16,19.2 24.6,10.6 26,12 '/%3E %3Crect id='_x3C_Transparent_Rectangle_x3E_' class='st0' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.form-select.is-valid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve' color='%230e8906'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D %3C/style%3E %3Cpolygon points='16,22 6,12 7.4,10.6 16,19.2 24.6,10.6 26,12 '/%3E %3Crect id='_x3C_Transparent_Rectangle_x3E_' class='st0' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.form-select:disabled {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve' color='%23949494'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D %3C/style%3E %3Cpolygon points='16,22 6,12 7.4,10.6 16,19.2 24.6,10.6 26,12 '/%3E %3Crect id='_x3C_Transparent_Rectangle_x3E_' class='st0' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.zg-label > abbr {
  color: #d13b42;
  text-decoration: none !important;
  border-bottom: 0;
}

label.govuk-label.govuk-date-input__label::after {
  color: #d13b42;
  content: " *";
}

.form-check {
  display: grid;
  grid-template-columns: 1.5rem auto;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.form-check--classic, .form-check--lg {
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
}

.form-check--classic input[type=radio], .form-check--classic .input.as-checkbox, .form-check--lg input[type=radio], .form-check--lg .input.as-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #0064ff;
  border: 0.09375rem solid #0064ff;
  border-radius: 50%;
  cursor: pointer;
  width: 1.3125rem;
  height: 1.3125rem;
  min-width: 1.3125rem;
  min-height: 1.3125rem;
  display: grid;
  place-content: center;
}

.form-check--classic input[type=radio]::before, .form-check--classic .input.as-checkbox::before, .form-check--lg input[type=radio]::before, .form-check--lg .input.as-checkbox::before {
  content: "";
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #0064ff;
}

.form-check--classic input[type=radio]:checked::before, .form-check--classic .input.as-checkbox:checked::before, .form-check--lg input[type=radio]:checked::before, .form-check--lg .input.as-checkbox:checked::before {
  transform: scale(1);
}

.form-check .form-check-input {
  margin: 0;
  float: none;
}

.form-check .form-check-input[type=checkbox], .form-check .form-check-input.as-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  border: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%230064ff'%3E %3Ctitle%3Echeckbox%3C/title%3E %3Cpath d='M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z'/%3E %3Crect style='fill: none' width='32' height='32'/%3E %3C/svg%3E");
  cursor: pointer;
  display: grid;
  place-content: center;
}

.form-check .form-check-input[type=checkbox]::before, .form-check .form-check-input.as-checkbox::before {
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  background-color: transparent;
}

.form-check .form-check-input[type=checkbox]:active, .form-check .form-check-input.as-checkbox:active {
  filter: none;
}

.form-check .form-check-input[type=checkbox]:active:not(:disabled)::before, .form-check .form-check-input.as-checkbox:active:not(:disabled)::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.form-check .form-check-input[type=checkbox]:checked, .form-check .form-check-input.as-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%230064ff'%3E %3Ctitle%3Echeckbox--checked%3C/title%3E %3Cpath d='M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z'/%3E %3Cpolygon points='14 21.5 9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5'/%3E %3Crect style='fill: none' width='32' height='32'/%3E %3C/svg%3E");
}

.form-check .form-check-input[type=checkbox]:focus::before, .form-check .form-check-input.as-checkbox:focus::before {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check .form-check-input[type=checkbox]:disabled, .form-check .form-check-input.as-checkbox:disabled {
  color: #949494;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form-check .form-check-input[type=checkbox]:disabled + .form-check-label, .form-check .form-check-input.as-checkbox:disabled + .form-check-label {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form-check .form-check-label {
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

.form-check-admin {
  margin-top: 0.3em;
}

.form-check-vertical-align {
  display: flex;
  align-items: center;
}

.form-check-vertical-align + .invalid-feedback {
  margin-left: 1.75rem;
}

.form-check-radio-input[type=checkbox] {
  background-position: 45% 52%;
  background-size: 56%;
  border-radius: 50%;
}

.form-check-radio-input[type=checkbox]:checked {
  position: relative;
  outline: 0;
}

.form-check-radio-input[type=checkbox]:checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: transparent;
  border: 0.0625rem solid #aaa;
  border-radius: 50%;
}

.form-check-input.is-invalid ~ .form-check-label {
  color: #000;
}

.form-check-inline {
  padding: 0;
  margin-right: 0.5rem;
}

.form-check-appearance {
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
}

.form-check-appearance--checked {
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpolygon points='13 24 4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24'/%3E %3Crect class='cls-1' width='32' height='32'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5625rem;
  border: 0.0625rem solid #000;
}

.form-check-input--switch {
  min-width: 2.5rem;
  height: 1.375rem;
  position: relative;
  margin: 0;
  padding: 0.125rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #555555;
  opacity: 0.6;
  border-radius: 0.6875rem;
  outline: none;
  cursor: grab;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check-input--switch:checked {
  background-color: #14373C;
  opacity: 1;
}

.form-check-input--switch:checked::before {
  transform: translateX(1.25rem);
  box-shadow: -0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  left: 0;
}

.form-check-input--switch:before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  top: 0.125rem;
  opacity: 1;
  background-color: #ffffff;
  border-radius: 0.5625rem;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease-in-out;
}

.zg-radio-btn-group {
  display: flex;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem;
  border: 0.0625rem solid #aaa;
  border-radius: 0.25rem;
  gap: 0.5rem;
}

.zg-radio-btn-group .form-check-inline {
  margin: 0;
}

.zg-radio-btn-group.zg-radio-btn-group--classic {
  flex-flow: column nowrap;
  border: none;
  padding: 0;
}

.zg-radio-btn-group.zg-radio-btn-group--lg {
  width: 100%;
  border: none;
  padding: 0;
  display: grid;
  flex-wrap: nowrap;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

@media (min-width: 48rem) {
  .zg-radio-btn-group.zg-radio-btn-group--lg {
    grid-template-columns: 1fr 1fr;
  }
}
.zg-radio-label-btn {
  padding: 0.5rem 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-radius: 0.25rem;
  border: none;
}

.zg-radio-label-btn:hover {
  background-color: #b3fef3;
}

.zg-radio-label-btn:focus, .zg-radio-label-btn:active {
  background-color: #b3fef3;
}

.zg-radio-label-btn--classic {
  cursor: pointer;
}

.zg-radio-label-btn--lg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
}

.zg-radio-label-btn--lg.correct-answer, .zg-radio-label-btn--lg.incorrect-answer {
  position: relative;
}

.zg-radio-label-btn--lg.correct-answer::after, .zg-radio-label-btn--lg.incorrect-answer::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
}

.zg-radio-label-btn--lg.correct-answer {
  border: 0.125rem solid #0064ff;
  color: #0064ff;
}

.zg-radio-label-btn--lg.correct-answer::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='54' height='53' viewBox='0 0 54 53' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='solar:check-circle-bold'%3E %3Ccircle id='Ellipse 120' cx='27.0016' cy='26.5016' r='21.0641' fill='white'/%3E %3Cpath id='Vector' fill-rule='evenodd' clip-rule='evenodd' d='M49.0846 26.5013C49.0846 38.6979 39.1979 48.5846 27.0013 48.5846C14.8047 48.5846 4.91797 38.6979 4.91797 26.5013C4.91797 14.3047 14.8047 4.41797 27.0013 4.41797C39.1979 4.41797 49.0846 14.3047 49.0846 26.5013ZM35.9009 19.8101C36.2111 20.1206 36.3853 20.5416 36.3853 20.9805C36.3853 21.4194 36.2111 21.8403 35.9009 22.1509L24.8592 33.1926C24.5487 33.5027 24.1277 33.6769 23.6888 33.6769C23.2499 33.6769 22.8289 33.5027 22.5184 33.1926L18.1017 28.7759C17.939 28.6243 17.8085 28.4414 17.718 28.2382C17.6274 28.0351 17.5788 27.8158 17.5748 27.5934C17.5709 27.371 17.6118 27.1501 17.6951 26.9439C17.7784 26.7376 17.9024 26.5503 18.0597 26.393C18.217 26.2357 18.4043 26.1117 18.6105 26.0285C18.8168 25.9451 19.0377 25.9042 19.26 25.9082C19.4824 25.9121 19.7017 25.9608 19.9049 26.0513C20.1081 26.1418 20.2909 26.2723 20.4426 26.4351L23.6888 29.6813L28.6244 24.7457L33.5601 19.8101C33.8706 19.4999 34.2916 19.3257 34.7305 19.3257C35.1694 19.3257 35.5903 19.4999 35.9009 19.8101Z' fill='%230064FF'/%3E %3C/g%3E %3C/svg%3E");
  width: 1.5rem;
  height: 1.5rem;
}

.zg-radio-label-btn--lg.incorrect-answer {
  color: #d13b42;
}

.zg-radio-label-btn--lg.incorrect-answer > input[type=radio]:checked {
  color: #d13b42;
  border-color: #d13b42;
}

.zg-radio-label-btn--lg.incorrect-answer > input[type=radio]:checked::before {
  box-shadow: inset 1em 1em #d13b42;
}

.zg-radio-label-btn--lg.incorrect-answer::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Crect width='20' height='20' rx='10' fill='%23D13B42'/%3E %3Cpath d='M14 6L6 14M6 6L14 14' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E");
  width: 1.25rem;
  height: 1.25rem;
}

.btn-check.disabled + .zg-radio-label-btn {
  background-color: transparent !important;
}

.btn-check:checked + .zg-radio-label-btn {
  background-color: #00fad7;
}

.btn-check:focus + .zg-radio-label-btn {
  outline: none;
}

.zg-radio-label-card {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  border: 0.0625rem solid #e5efff;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  background-color: #fff;
  align-items: center;
}

.zg-radio-label-card:hover {
  cursor: pointer;
}

.zg-radio-label-card:hover, .zg-radio-label-card:active, .zg-radio-label-card:focus {
  outline: 0.125rem solid #00fad7 !important;
  outline-offset: -0.125rem;
}

.zg-radio-label-card h3, .zg-radio-label-card .h3 {
  font-size: 1.25rem;
}

@media (min-width: 36rem) {
  .zg-radio-label-card h3, .zg-radio-label-card .h3 {
    font-size: 1.5rem;
  }
}
.zg-radio-label-card__svg {
  width: 3.75rem;
  height: auto;
}

@media (min-width: 36rem) {
  .zg-radio-label-card__svg {
    width: 5rem;
  }
}
.btn-check:checked + .zg-radio-label-card {
  background-color: #00fad7;
}

.btn-check:focus + .zg-radio-label-card {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.govuk-date-input__item .govuk-form-group {
  display: flex;
  flex-direction: column;
  max-width: none;
}

.govuk-date-input__item .govuk-form-group .govuk-input--width-2,
.govuk-date-input__item .govuk-form-group .govuk-input--width-4 {
  width: 100%;
  max-width: 100%;
}

.govuk-date-input__item:last-child .govuk-form-group {
  max-width: none;
}

.govuk-fieldset__legend {
  float: none;
  margin-bottom: 0.5rem;
}

.govuk-date-input__label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.govuk-date-input {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

.govuk-date-input > * + * {
  margin-left: 0;
}

.govuk-date-input__input {
  padding: 0.625rem 1rem;
  font-family: "Poppins", sans-serif;
  border: 0.0625rem solid #aaa;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.govuk-form-group--error .govuk-date-input__label {
  color: #d13b42;
}

.govuk-form-group--error .govuk-error-message {
  display: none;
}

.govuk-date-input__input.is-invalid,
.govuk-form-group--error .govuk-date-input__input,
.govuk-form-group--error .govuk-date-input__input.is-invalid {
  border-color: #d13b42;
  outline-color: #d13b42;
}

.govuk-form-group {
  margin-bottom: 0.25rem;
}

.govuk-form-group + .invalid-feedback {
  display: flex;
}

.form-control-autocomplete {
  padding-right: 3rem;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' color='%23000'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpath d='M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z' transform='translate(0 0)'/%3E %3Crect class='cls-1' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.form-control-autocomplete.is-invalid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' color='%23d13b42'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpath d='M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z' transform='translate(0 0)'/%3E %3Crect class='cls-1' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.autoComplete-wrapper,
.autoComplete_wrapper {
  position: relative;
}

.list-group-autocomplete {
  position: absolute;
  width: 100%;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 11rem;
  overflow: scroll;
}

.list-group-autocomplete .list-group-item {
  border: none;
}

.list-group-autocomplete .list-group-item:hover {
  cursor: pointer;
  background-color: #c2dbfe;
}

.list-group-autocomplete .list-group-item mark, .list-group-autocomplete .list-group-item .mark {
  padding: 0;
  font-weight: 600;
  background-color: transparent;
}

.list-group-autocomplete .list-group-item[aria-selected=true] {
  background-color: #c2dbfe;
}

.zg-file-upload {
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  text-indent: -9999999rem;
  cursor: pointer;
  background: center url(/assets/icons/paper-clip-4df7d189359fb07004fd201daeec9a7166ff9102b903c49b04ed71aadbac1bd8.svg) no-repeat;
  background-size: 100%;
}

input:focus + .zg-file-upload {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

input:focus:not(.focus-visible).js-focus-visible + .zg-file-upload, .js-focus-visible input:focus:not(.focus-visible) + .zg-file-upload {
  box-shadow: none;
}

input:focus:not(:focus-visible) + .zg-file-upload {
  box-shadow: none;
}

.select2-container--default {
  width: 100% !important;
  margin-bottom: 1rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #fff;
  background-color: #000;
  border: 0.0625rem solid #000;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
  background-color: #000;
}

.zg-input-containing-button {
  position: relative;
}

.zg-input-containing-button__input {
  width: 100%;
}

.zg-input-containing-button__button {
  position: absolute;
  top: 50%;
  right: 0;
  height: 100%;
  transform: translateY(-50%);
}

.zg-filter-pill-container {
  display: none;
  align-items: center;
  min-height: 1.625rem;
  margin: 0.5rem 0;
  gap: 0.5rem;
}

.zg-filter-pill-container--active {
  display: flex;
}

.zg-filter-pill-container--active ~ .zg-filter-pill-container--active {
  padding-left: 0.5rem;
  border-left: 0.0625rem solid #ebebeb;
}

.zg-filter-pill-container .zg-filter-pill-legend {
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #aaa;
}

.zg-filter-pill-container .zg-filter-pill-list {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  border: none;
}

.zg-filter-pill-container .zg-filter-pill-list .zg-filter-pill {
  display: none;
  gap: 0;
}

.zg-filter-pill-container .zg-filter-pill-list .zg-filter-pill.zg-filter-pill--active {
  display: flex;
}

.zg-filter-pill-container .zg-filter-pill-list .zg-filter-pill .zg-filter-pill-input {
  width: 0;
  min-width: 0;
}

.zg-filter-pill-container .zg-filter-pill-list .zg-filter-pill .zg-filter-pill-label {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5em;
  color: #fff;
  white-space: nowrap;
  background-color: #000;
  border-radius: 1rem;
  gap: 0.5rem;
}

.zg-filter-pill-container .zg-filter-pill-list .zg-filter-pill .zg-filter-pill-label::after {
  display: block;
  width: 1rem;
  height: 1rem;
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cdefs/%3E%3Ctitle%3Eclose%3C/title%3E%3Cpolygon points='24 9.4 22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4'/%3E%3C/svg%3E");
}

.tribute-container {
  z-index: 1056;
  max-height: 10rem;
  overflow-y: auto;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.25rem;
}

.tribute-container ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.tribute-container li {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.tribute-container li .zg-profile-image {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.tribute-container li:hover {
  background-color: #e5efff;
}

.tribute-container li:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.tribute-container li:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.tribute-container .highlight {
  background-color: #e5efff;
}

.tribute-container .highlight span {
  font-weight: 600;
}

trix-editor .zg-community-mention,
.trix-content .zg-community-mention {
  padding: 0 0.25rem;
  font-weight: 600;
  text-wrap: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #e5efff;
  border-radius: 0.25rem;
}

trix-editor .zg-community-mention .zg-profile-image,
.trix-content .zg-community-mention .zg-profile-image {
  width: 1.5rem;
  height: 1.5rem;
}

trix-editor .attachment,
.trix-content .attachment {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

trix-editor .attachment__toolbar,
.trix-content .attachment__toolbar {
  top: 0;
}

.trix-content ul {
  list-style-type: disc !important;
}

.trix-content ol {
  list-style-type: decimal !important;
}

.trix-content a {
  color: #0064ff !important;
  text-decoration: underline !important;
}

.trix-content pre {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  padding: 0.75rem;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
}

.trix-content code {
  font-family: monospace;
  font-size: 0.9em;
  word-break: break-word;
  overflow-wrap: break-word;
  padding: 0.125rem 0.25rem;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
}

.trix-content pre code {
  padding: 0;
  background-color: transparent;
}

.form-group-invalid {
  color: #d13b42;
}

.form-group-valid {
  color: #0e8906;
}

.form-group.readonly label, .form-group.disabled label {
  color: #767676;
}

.form-group--lg {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-control.zg-search-input::-moz-placeholder {
  color: #aaa;
}

.form-control.zg-search-input::placeholder {
  color: #aaa;
}

.form-control.zg-search-input--sm {
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
  background-position: 0.5rem 50%;
  background-size: 0.75rem;
}

.form-control,
.form-select,
.btn-as-input {
  color: #000;
  border: 0.0625rem solid #aaa;
  border-radius: 0.25rem;
}

.form-control:hover,
.form-select:hover,
.btn-as-input:hover {
  box-shadow: inset 0 0 0 0.0625rem #aaa, inset 0 0 0 0.125rem #fff;
}

.form-control.is-invalid,
.form-select.is-invalid,
.btn-as-input.is-invalid {
  outline-color: #d13b42;
}

.form-control.is-valid,
.form-select.is-valid,
.btn-as-input.is-valid {
  outline-color: #0e8906;
}

.form-control:disabled, .form-control[readonly],
.form-select:disabled,
.form-select[readonly],
.btn-as-input:disabled,
.btn-as-input[readonly] {
  color: #767676;
  outline-color: #949494;
}

.form-control ~ .form-text,
.form-control ~ .invalid-feedback,
.form-select ~ .form-text,
.form-select ~ .invalid-feedback,
.btn-as-input ~ .form-text,
.btn-as-input ~ .invalid-feedback {
  display: block;
  margin-top: 0.5rem;
}

.form-control.rounded-pill,
.form-select.rounded-pill,
.btn-as-input.rounded-pill {
  outline: 0;
}

.form-control.rounded-pill:hover,
.form-select.rounded-pill:hover,
.btn-as-input.rounded-pill:hover {
  box-shadow: 0 0 0.0625rem 0 #000;
}

.split-fields__field-1-3 {
  flex-shrink: 0;
  width: 33.3333333333%;
}

.form-control-datetime,
.form-control-datetime[readonly] {
  padding: 0.625rem 0.75rem;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: right 0.75rem top calc(50% - 0.0625rem);
  background-size: 1rem;
  border: 0.0625rem solid #aaa;
  outline-color: #aaa;
}

.form-control-datetime::-moz-placeholder, .form-control-datetime[readonly]::-moz-placeholder {
  color: #212529;
}

.form-control-datetime, .form-control-datetime::placeholder,
.form-control-datetime[readonly],
.form-control-datetime[readonly]::placeholder {
  color: #212529;
}

.form-control-datetime::after,
.form-control-datetime[readonly]::after {
  position: absolute;
  top: 50%;
  content: attr(placeholder);
  transform: translateY(-50%);
}

.form-control-datetime.is-invalid,
.form-control-datetime[readonly].is-invalid {
  padding-right: 0.75rem;
  border-color: #d13b42;
  outline-color: #d13b42;
}

.form-control-datetime[value]:not([value=""]) + input::after,
.form-control-datetime[readonly][value]:not([value=""]) + input::after {
  content: "";
}

.form-control-datetime--date,
.form-control-datetime--date[readonly] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 24.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='32px' height='32px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D %3C/style%3E %3Ctitle%3Ecalendar%3C/title%3E %3Cpath d='M26,4h-4V2h-2v2h-8V2h-2v2H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V6C28,4.9,27.1,4,26,4z M26,26H6V12h20 V26z M26,10H6V6h4v2h2V6h8v2h2V6h4V10z'/%3E %3Crect id='_Transparent_Rectangle_' class='st0' width='32' height='32'/%3E %3C/svg%3E");
}

.form-control-datetime--time,
.form-control-datetime--time[readonly] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Etime%3C/title%3E%3Cpath d='M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z'/%3E%3Cpolygon points='20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22'/%3E%3Crect class='cls-1' width='32' height='32'/%3E%3C/svg%3E");
}

.form-control-message-field {
  padding-top: 0.6875rem;
  padding-left: none;
  color: #aaa;
  resize: none;
  background-color: #fff;
  border: none;
}

.form-control-message-field:hover, .form-control-message-field:focus {
  color: #000;
  background-color: #f5f5f5;
  outline: none;
  box-shadow: 0 0 0 0.125rem #ebebeb;
}

.form-control-message-field:focus {
  box-shadow: 0 0 0 0.125rem #ebebeb, 0 0 0 0.3125rem #c2dbfe;
}

.form-control--gbp {
  padding-left: 2.25rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='%23555'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpath d='M12.4531,25A8.7775,8.7775,0,0,0,14,20a10.6,10.6,0,0,0-.18-2H22V16H13.2175c-.0842-.2109-.17-.4194-.2556-.624A9.8586,9.8586,0,0,1,12,11a4.792,4.792,0,0,1,5-5,6.1234,6.1234,0,0,1,5.2222,2.6279l1.5556-1.2558A8.11,8.11,0,0,0,17,4a6.7781,6.7781,0,0,0-7,7,11.65,11.65,0,0,0,1.0559,5H8v2h3.7729A8.209,8.209,0,0,1,12,20c0,2.5234-1.4858,5-3,5v2H24V25Z' transform='translate(0 0)'/%3E %3Crect class='cls-1' width='32' height='32'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 1rem;
}

.form-group .invalid-feedback {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.form-group .invalid-feedback__svg-holder {
  width: 0.875rem;
  min-width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.5rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 32 32'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Crect id='inner-path' class='cls-1' x='14.9004' y='7.2004' width='2.1996' height='17.5994' transform='translate(-6.6275 16.0001) rotate(-45)'/%3E %3Cpath d='M16,2A13.914,13.914,0,0,0,2,16,13.914,13.914,0,0,0,16,30,13.914,13.914,0,0,0,30,16,13.914,13.914,0,0,0,16,2Zm5.4449,21L9,10.5557,10.5557,9,23,21.4448Z' fill='%23BF1E2E'/%3E %3Crect class='cls-1' width='32' height='32'/%3E %3C/svg%3E");
}

.form-group .invalid-feedback__message {
  margin: 0;
  font-size: 0.875rem;
  color: #555;
}

.form-group .show-valid-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 32 32'%3E %3Cpath d='M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,21.5908l-5-5L10.5906,15,14,18.4092,21.41,11l1.5957,1.5859Z' fill='%230E8906'/%3E %3Cpolygon id='inner-path' fill='none' points='14 21.591 9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591'/%3E %3Crect fill='none' width='32' height='32'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.875rem;
}

main.zg-allow-required-asterisk .has-tip.required::after {
  margin-left: 0;
  background-position: 1rem 0.125rem;
  transform: none;
}

.form-inputs > .form-row {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .form-inputs > .form-row {
    flex-direction: row;
  }
  .form-inputs > .form-row-2 > .form-group {
    width: 50%;
  }
  .form-inputs > .form-row-2 > .form-group .extend-label {
    margin-bottom: 1.4375rem !important;
  }
}
.row > .form-group.w-50:first-child {
  padding-right: 0.5rem;
}

.row > .form-group.w-50:last-child {
  padding-left: 0.5rem;
}

.js-error-message-container > p {
  margin-bottom: 0;
}

.form-control.zg-search-input--partner, .form-control.zg-search-input, .form-control.zg-search-input--sm {
  border-radius: 0.5rem;
  border: 0.0625rem solid #ebebeb;
  border: 0.0625rem solid var(--grey-2, #ebebeb);
  background: #fff;
  box-shadow: 0 0.0625rem 0.125rem 0 rgba(16, 24, 40, 0.05);
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='search'%3E %3Cpath id='Icon' d='M14 14.5L11.1 11.6M12.6667 7.83333C12.6667 10.7789 10.2789 13.1667 7.33333 13.1667C4.38781 13.1667 2 10.7789 2 7.83333C2 4.88781 4.38781 2.5 7.33333 2.5C10.2789 2.5 12.6667 4.88781 12.6667 7.83333Z' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  background-size: 1rem;
}

.form-control.zg-search-input::-moz-placeholder {
  color: #aaa;
}

.form-control.zg-search-input::placeholder {
  color: #aaa;
}

.form-control.zg-search-input--sm {
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
  background-position: 0.5rem 50%;
  background-size: 0.75rem;
}

.form-control.zg-search-input--partner {
  padding: 0.75rem 2.5rem;
  font-size: 0.875rem;
  background-position: 0.5rem 50%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='search'%3E %3Cpath id='Icon' d='M14 14.5L11.1 11.6M12.6667 7.83333C12.6667 10.7789 10.2789 13.1667 7.33333 13.1667C4.38781 13.1667 2 10.7789 2 7.83333C2 4.88781 4.38781 2.5 7.33333 2.5C10.2789 2.5 12.6667 4.88781 12.6667 7.83333Z' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E");
}

.form-control.zg-search-input--partner svg {
  stroke-width: 1.33px;
}

.zg-blade--filter .col-form-label {
  display: none;
}

.zg-blade--filter .form-group--show-label .col-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3125rem;
}

.form-group abbr[title=required] {
  color: #d13b42;
  text-decoration: none !important;
  border-bottom: 0;
}

.scholarship-application-form .zg-label,
.scholarship-application-form .form-group label,
.scholarship-application-form legend.zg-label {
  color: #000 !important;
}

.zg-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.5rem;
  background-color: #fff;
}

.zg-header-logo {
  max-width: 6.5625rem;
  height: auto;
}

@media (min-width: 62rem) {
  .zg-header {
    height: 6.25rem;
  }
  .zg-header-logo {
    max-width: 9.6875rem;
  }
}
.zg-header-logo-login {
  width: 8.75rem;
  height: auto;
}

.zg-header-landing {
  z-index: 1;
  box-sizing: border-box;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  transition: top 0.2s ease-in-out;
}

@media (min-width: 48rem) {
  .zg-header-landing {
    position: fixed !important;
    top: 0 !important;
    overflow-x: visible;
  }
}
.zg-header-landing .zg-header-landing-content {
  height: 4.25rem;
  padding: 0 1rem;
  background-color: #0064ff;
}

@media (min-width: 48rem) {
  .zg-header-landing .zg-header-landing-content {
    height: 5.25rem;
    padding: 0.5rem 1rem;
    background-color: #f7faff;
  }
}
.zg-header-landing::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip: rect(5.25rem, auto, 7.25rem, 0);
  content: "";
  border-radius: 40%;
  transition: box-shadow 100ms ease-in;
}

.zg-header-landing .zg-header-landing-graphic {
  width: 100%;
  height: 2.5rem;
  transform: scale(1.2, 1);
}

@media (min-width: 48rem) {
  .zg-header-landing .zg-header-landing-graphic {
    display: none;
  }
  .zg-header-landing.zg-has-background-animation {
    position: fixed;
    left: 50vw;
    width: 50vw;
  }
}
@media (min-width: 87.5rem) {
  .zg-header-landing.zg-has-background-animation {
    left: 43.75rem;
    width: calc(100vw - 43.75rem);
  }
}
.zg-header-landing-logo {
  width: 8.75rem;
  height: auto;
}

.zg-header-landing-logo.zg-logo-black {
  display: none;
}

@media (min-width: 48rem) {
  .zg-header-landing-logo.zg-logo-black {
    display: inline;
  }
  .zg-header-landing-logo.zg-logo-white {
    display: none;
  }
}
.zg-header-landing + .zg-fixed-header-landing-spacer {
  display: none;
  height: 6.75rem;
}

.zg-header-landing.zg-header-hidden {
  top: -7.75rem;
}

@media (max-width: 47.98rem) {
  .zg-header-landing.zg-header-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .zg-header-landing.zg-header-fixed + .zg-fixed-header-landing-spacer {
    display: block;
  }
}
.zg-header-block-background {
  position: fixed;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 100vw;
  height: 4.25rem;
  padding: 0 1rem;
  background-color: #0064ff;
}

@media (min-width: 48rem) {
  .zg-header-block-background {
    height: 5.25rem;
    padding: 0.5rem 1rem;
    background-color: #fff;
  }
}
.zg-header-block-background-logo {
  width: 8.75rem;
  height: auto;
}

.zg-header-block-background-logo.zg-logo-white {
  display: none;
}

.zg-header-block-background.bg-blue .zg-header-block-background-logo.zg-logo-white, .zg-header-block-background.bg-dark-green .zg-header-block-background-logo.zg-logo-white {
  display: inline;
}

.zg-header-block-background.bg-blue .zg-header-block-background-logo.zg-logo-black, .zg-header-block-background.bg-dark-green .zg-header-block-background-logo.zg-logo-black {
  display: none;
}

.zg-header-block-background.bg-mint .zg-header-block-background-logo.zg-logo-white {
  display: none;
}

.zg-header-block-background.bg-mint .zg-header-block-background-logo.zg-logo-black {
  display: inline;
}

.zg-header-block-background + .zg-fixed-header-block-background-spacer {
  height: 4.25rem;
}

@media (min-width: 48rem) {
  .zg-header-block-background + .zg-fixed-header-block-background-spacer {
    height: 5.25rem;
  }
}
.zg-header-onboarding {
  position: fixed;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100vw;
  height: 4.25rem;
  padding: 0 1rem;
  background-color: #fff;
  border-bottom: 0.0625rem solid #e5efff;
  box-shadow: none;
  transition: box-shadow 100ms ease-in, border-color 100ms ease-in;
}

@media (min-width: 48rem) {
  .zg-header-onboarding {
    height: 5.25rem;
    padding: 0.5rem 1rem;
  }
}
.zg-header-onboarding-logo {
  width: auto;
  height: 3.125rem;
}

@media (min-width: 48rem) {
  .zg-header-onboarding-logo {
    height: 3.75rem;
  }
}
.zg-header-onboarding-logo.zg-logo-white {
  display: none;
}

.zg-header-onboarding .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #14373c;
  text-transform: none;
}

.zg-header-onboarding.bg-blue, .zg-header-onboarding.bg-dark-green {
  border-bottom: none;
}

.zg-header-onboarding.bg-blue .nav-link, .zg-header-onboarding.bg-dark-green .nav-link {
  color: #fff;
}

.zg-header-onboarding.bg-blue .zg-header-onboarding-logo.zg-logo-white, .zg-header-onboarding.bg-dark-green .zg-header-onboarding-logo.zg-logo-white {
  display: inline;
}

.zg-header-onboarding.bg-blue .zg-header-onboarding-logo.zg-logo-black, .zg-header-onboarding.bg-dark-green .zg-header-onboarding-logo.zg-logo-black {
  display: none;
}

.zg-header-onboarding.zg-header-shadow {
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  transition: box-shadow 300ms ease-out, border-color 300ms ease-in;
}

.zg-header-onboarding + .zg-fixed-header-onboarding-spacer {
  height: 4.25rem;
}

@media (min-width: 48rem) {
  .zg-header-onboarding + .zg-fixed-header-onboarding-spacer {
    height: 5.25rem;
  }
}
.zg-fixed-header-spacer {
  height: 3.5rem;
  background-color: #f5f5f5;
}

@media (min-width: 62rem) {
  .zg-fixed-header-spacer {
    height: 6.25rem;
  }
}
.zg-nav-list,
.zg-desktop-menu-links {
  display: flex;
  margin-bottom: 0;
  text-transform: uppercase;
  list-style: none;
}

.zg-nav-list .nav-item,
.zg-desktop-menu-links .nav-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.zg-nav-list .nav-link,
.zg-desktop-menu-links .nav-link {
  position: relative;
  text-decoration: none;
}

.zg-nav-list .nav-link::after,
.zg-desktop-menu-links .nav-link::after {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  display: block;
  width: 100%;
  height: 0.125rem;
  content: "";
}

.zg-nav-list .nav-link:hover::after,
.zg-desktop-menu-links .nav-link:hover::after {
  background-color: #b3fef3;
}

.zg-nav-list .nav-link.active::after,
.zg-desktop-menu-links .nav-link.active::after {
  background-color: #00fad7;
}

@media (max-width: 47.98rem) {
  .zg-desktop-menu-links {
    display: none;
  }
}
.zg-mobile-menu-button {
  fill: #0064ff;
}

@media (min-width: 48rem) {
  .zg-mobile-menu-button {
    display: none;
  }
}
.zg-icon-10 {
  width: 0.625rem;
  min-width: 0.625rem;
  height: auto;
}

.zg-icon-10--square {
  width: 0.625rem;
  min-width: 0.625rem;
  height: 0.625rem;
  min-height: 0.625rem;
}

.zg-icon-12 {
  width: 0.75rem;
  min-width: 0.75rem;
  height: auto;
}

.zg-icon-12--square {
  width: 0.75rem;
  min-width: 0.75rem;
  height: 0.75rem;
  min-height: 0.75rem;
}

.zg-icon-14 {
  width: 0.875rem;
  min-width: 0.875rem;
  height: auto;
}

.zg-icon-14--square {
  width: 0.875rem;
  min-width: 0.875rem;
  height: 0.875rem;
  min-height: 0.875rem;
}

.zg-icon-16 {
  width: 1rem;
  min-width: 1rem;
  height: auto;
}

.zg-icon-16--square {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  min-height: 1rem;
}

.zg-icon-18 {
  width: 1.125rem;
  min-width: 1.125rem;
  height: auto;
}

.zg-icon-18--square {
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
}

.zg-icon-sidenav {
  width: 1.5rem;
  min-width: 1.5rem;
  height: auto;
}

.zg-icon-sidenav--square {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
}

@media (min-width: 48rem) {
  .zg-icon-sidenav {
    width: 1rem;
    min-width: 1rem;
    height: auto;
  }
  .zg-icon-sidenav--square {
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    min-height: 1rem;
  }
}
.zg-icon-20 {
  width: 1.25rem;
  min-width: 1.25rem;
  height: auto;
}

.zg-icon-20--square {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
}

.zg-icon-24 {
  width: 1.5rem;
  min-width: 1.5rem;
  height: auto;
}

.zg-icon-24--square {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
}

.zg-icon-h-24 {
  width: auto;
  height: 1.5rem;
  min-height: 1.5rem;
}

.zg-icon-25 {
  width: 1.5625rem;
  min-width: 1.5625rem;
  height: auto;
}

.zg-icon-25--square {
  width: 1.5625rem;
  min-width: 1.5625rem;
  height: 1.5625rem;
  min-height: 1.5625rem;
}

.zg-icon-30 {
  width: 1.875rem;
  min-width: 1.875rem;
  height: auto;
}

.zg-icon-30--square {
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
  min-height: 1.875rem;
}

.zg-icon-32 {
  width: 2rem;
  height: auto;
}

.zg-icon-h-32 {
  width: auto;
  height: 2rem;
}

.zg-icon-h-48 {
  width: auto;
  height: 3rem;
  min-height: 3rem;
}

.zg-icon-50 {
  width: 3.125rem;
  min-width: 3.125rem;
  height: auto;
}

.zg-icon-50--square {
  width: 3.125rem;
  min-width: 3.125rem;
  height: 3.125rem;
  min-height: 3.125rem;
}

.zg-icon-min-50 {
  min-width: 3.125rem;
  height: auto;
}

.zg-icon-60 {
  width: 3.75rem;
  height: auto;
}

.zg-icon-60-square {
  width: 3.75rem;
  height: 3.75rem;
}

.zg-icon-80-h-60 {
  width: 5rem;
  height: 3.75rem;
}

.zg-icon-h-64 {
  width: auto;
  height: 4rem;
  min-height: 4rem;
}

.zg-icon-70 {
  width: 4.375rem;
  min-width: 4.375rem;
  height: auto;
}

.zg-icon-70--square {
  width: 4.375rem;
  min-width: 4.375rem;
  height: 4.375rem;
  min-height: 4.375rem;
}

.zg-icon-80 {
  width: 5rem;
  min-width: 5rem;
  height: auto;
}

.zg-icon-80--square {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
}

.zg-icon-80-height {
  width: auto;
  height: 5rem;
}

.zg-icon-90 {
  width: 5.625rem;
  min-width: 5.625rem;
  height: auto;
}

.zg-icon-90--square {
  width: 5.625rem;
  min-width: 5.625rem;
  height: 5.625rem;
  min-height: 5.625rem;
}

.zg-icon-120 {
  width: 7.5rem;
  height: auto;
}

.zg-icon-h-120 {
  width: auto;
  height: 7.5rem;
  min-height: 7.5rem;
}

.zg-icon-140 {
  width: 8.75rem;
  min-width: 8.75rem;
  height: auto;
}

.zg-icon-140--square {
  width: 8.75rem;
  min-width: 8.75rem;
  height: 8.75rem;
  min-height: 8.75rem;
}

.zg-icon-170 {
  width: 10.625rem;
  min-width: 10.625rem;
  height: auto;
}

.zg-icon-170--square {
  width: 10.625rem;
  min-width: 10.625rem;
  height: 10.625rem;
  min-height: 10.625rem;
}

.zg-icon-black {
  color: #000;
  fill: #000;
}

.zg-icon-black path {
  fill: #000;
}

.zg-icon-white {
  color: #fff;
  fill: #fff;
}

.zg-icon-white path {
  fill: #fff;
}

.zg-icon-blue {
  color: #0064ff;
  fill: #0064ff;
}

.zg-icon-blue path {
  fill: #0064ff;
}

.zg-icon-blue-60 {
  color: #3383ff;
  fill: #3383ff;
}

.zg-icon-blue-60 path {
  fill: #3383ff;
}

.zg-icon-red {
  color: #d13b42;
  fill: #d13b42;
}

.zg-icon-red path {
  fill: #d13b42;
}

.zg-icon-success {
  color: #0e8906;
  /* stylelint-disable declaration-no-important */
  fill: #0e8906 !important;
  /* stylelint-enable declaration-no-important */
}

.zg-icon-success path {
  fill: #0e8906;
}

.zg-icon-warning {
  color: #ff9b40;
  fill: #ff9b40;
}

.zg-icon-warning path {
  fill: #ff9b40;
}

.zg-icon-grey-4 {
  fill: #555;
}

.zg-icon-grey-4--path path {
  fill: #555;
}

.zg-icon-dark-green {
  color: #14373c;
  fill: #14373c;
}

.zg-icon-dark-green path {
  fill: #14373c;
}

.zg-icon-danger {
  color: #d13b42;
  fill: #d13b42;
}

.zg-icon-danger path {
  fill: #d13b42;
}

.zg-icon-eye {
  display: block;
  width: auto;
  height: 1.875rem;
  background-image: url(/../../images/icons/eye.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.33rem;
}

.zg-icon-message {
  display: block;
  width: auto;
  height: 1.875rem;
  background-image: url(/../../images/icons/chat-left-text.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.33rem;
}

.zg-icon-future-builder {
  max-width: 20.8125rem;
  max-height: 28.5rem;
}

.zg-vertical-line {
  width: 28%;
  border: 0.05rem solid #ddd;
  transform: rotate(90deg);
}

.zg-icon-first-call-modal > path,
.zg-icon-first-call-modal polygon {
  stroke: #fff;
  stroke-width: 1;
}

.zg-title-with-number::before, .zg-icon-in-circle--lg, .zg-icon-in-circle--md, .zg-icon-in-circle--sm, .zg-icon-in-circle--x-sm, .zg-icon-in-circle--border-grey, .zg-icon-in-circle--free {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.zg-icon-in-circle--free {
  padding: 1rem;
}

.zg-icon-in-circle--border-grey {
  border: 0.0625rem solid #e5efff;
  -o-object-fit: contain;
     object-fit: contain;
}

.zg-icon-in-circle--x-sm {
  width: 2.5rem;
  height: 2.5rem;
}

.zg-icon-in-circle--x-sm svg {
  width: 1.125rem;
  height: auto;
  fill: currentcolor;
}

.zg-icon-in-circle--x-sm.zg-icon-background-mint {
  background-color: #00fad7;
}

.zg-icon-in-circle--sm svg,
.zg-icon-in-circle--x-sm svg {
  width: 1.125rem;
  height: auto;
  fill: currentcolor;
}

.zg-icon-in-circle--sm.zg-icon-background-blue,
.zg-icon-in-circle--x-sm.zg-icon-background-blue {
  background-color: #0064ff;
}

.zg-icon-in-circle--sm {
  width: 3rem;
  height: 3rem;
}

.zg-icon-in-circle--xx-sm {
  width: 1.75rem;
  height: 1.75rem;
}

.zg-icon-in-circle--md {
  width: 10rem;
  height: 10rem;
}

.zg-icon-in-circle--md svg {
  width: 5.625rem;
  height: auto;
}

.zg-icon-in-circle--lg {
  width: 15.625rem;
  height: 15.625rem;
}

.zg-icon-in-circle--lg svg {
  width: 6.875rem;
  height: auto;
}

.zg-icon-in-circle--sm.zg-icon-in-circle--size-adjust svg {
  width: 1.3125rem;
}

.settings-nav-icon {
  stroke: black !important;
  color: black !important;
}

.zg-image-upload-preview, .zg-image-upload-label {
  width: 8.75rem;
  height: 8.75rem;
  overflow: hidden;
  border: 0.0625rem solid #ebebeb;
  border-radius: 50%;
}

.zg-image-upload-label {
  position: relative;
  display: block;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
}

.zg-image-upload-label:hover, .zg-image-upload-label:focus {
  cursor: pointer;
  border-style: solid;
}

.zg-image-upload-label:hover .zg-image-upload-label__avatar, .zg-image-upload-label:focus .zg-image-upload-label__avatar {
  fill: #00fad7;
}

.zg-image-upload-label__avatar {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 100%;
  height: 100%;
  transition: fill 0.2s ease-in-out;
  transform: translate(-50%, -50%);
  fill: #ebebeb;
}

.zg-image-upload-preview > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 47.98rem) {
  .zg-image-upload-preview {
    margin-right: auto;
    margin-left: auto;
  }
}
.zg-image-upload-preview-overlay {
  display: none;
}

.zg-profile-picture-option-container.zg-selected .zg-image-upload-preview {
  position: relative;
}

.zg-profile-picture-option-container.zg-selected .zg-image-upload-preview--uploadable::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0.5rem;
  content: "\a";
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.zg-profile-picture-option-container.zg-selected .zg-image-upload-preview--uploadable:hover::after {
  opacity: 1;
}

.zg-profile-picture-option-container.zg-selected .zg-image-upload-preview-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translate(-50%, -50%);
}

.zg-profile-picture-option-container.zg-selected .zg-image-upload-preview-overlay span {
  text-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.5);
}

.zg-img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.zg-img-fit--center {
  -o-object-position: center center;
     object-position: center center;
}

.zg-landing-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.zg-landing-video-container .overlay {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  position: absolute;
  background: rgba(20, 55, 60, 0.6);
}

.zg-landing-video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header.video-navigation {
  z-index: 100;
  box-sizing: border-box;
  width: 100vw;
  overflow-x: hidden;
}

header.video-navigation .zg-header-landing-content {
  height: 4.25rem;
  padding: 0 1rem;
  background-color: #14373c;
}

@media (min-width: 48rem) {
  header.video-navigation .zg-header-landing-content {
    background-color: transparent;
  }
}
header.video-navigation .zg-header-landing-content .zg-logo-black {
  display: none;
}

header.video-navigation .zg-header-landing-content .zg-logo-white {
  display: inline;
}

header.video-navigation .zg-header-landing-graphic {
  width: 100%;
  height: 2.5rem;
  transform: scale(1.2, 1);
}

@media (min-width: 48rem) {
  header.video-navigation .zg-header-landing-graphic {
    display: none;
  }
}
header.video-navigation.transparent .zg-header-landing-content {
  background-color: transparent;
}

header.video-navigation.transparent .zg-header-landing-graphic {
  display: none;
}

.landing-card {
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 250, 215, 0.2);
  background: rgba(20, 55, 60, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  width: 100%;
}

.landing-card svg {
  fill: #00fad7;
}

.landing-card:hover {
  background: rgba(0, 250, 215, 0.1) !important;
}

.landing-card.no-hover {
  pointer-events: none;
}

.zg-landing-flex-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zg-landing-flex-container .content {
  color: #fff;
  display: inherit;
  width: 21.4375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .zg-landing-flex-container .content {
    width: 22.5rem;
  }
}
@media (min-width: 62rem) {
  .zg-landing-flex-container .content {
    width: 29.5rem;
  }
}
@media (min-width: 87.5rem) {
  .zg-landing-flex-container .content {
    width: 27.625rem;
  }
}
.zg-landing-flex-container .content a {
  color: #fff;
}

.zg-landing-flex-container .content .zg-radio-label-card {
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 250, 215, 0.2);
  background: rgba(20, 55, 60, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
}

.zg-btn--text .zg-btn__label, .zg-link-light, a,
.zg-link {
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.zg-btn--text .zg-btn__label:disabled, .zg-link-light:disabled, a:disabled,
.zg-link:disabled {
  pointer-events: auto;
}

.zg-btn--text .zg-btn__label:disabled:hover, .zg-link-light:disabled:hover, a:disabled:hover,
.zg-link:disabled:hover {
  cursor: not-allowed;
}

a,
.zg-link {
  color: #0064ff;
  text-decoration: underline;
}

a:hover,
.zg-link:hover {
  color: rgba(0, 100, 255, 0.7);
}

a:active,
.zg-link:active {
  color: rgba(0, 100, 255, 0.85);
}

a:focus,
.zg-link:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

a:focus:not(.focus-visible).js-focus-visible,
.js-focus-visible a:focus:not(.focus-visible),
.zg-link:focus:not(.focus-visible).js-focus-visible,
.js-focus-visible .zg-link:focus:not(.focus-visible) {
  box-shadow: none;
}

a:focus:not(:focus-visible),
.zg-link:focus:not(:focus-visible) {
  box-shadow: none;
}

a:has(> svg),
.zg-link:has(> svg) {
  text-decoration: none;
}

.zg-link-light {
  color: #fff;
  text-decoration: underline;
}

.zg-link-light:hover {
  color: rgba(255, 255, 255, 0.7);
}

.zg-link-light:active {
  color: rgba(255, 255, 255, 0.85);
}

.zg-link-light:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

.zg-link-light:focus:not(.focus-visible).js-focus-visible, .js-focus-visible .zg-link-light:focus:not(.focus-visible) {
  box-shadow: none;
}

.zg-link-light:focus:not(:focus-visible) {
  box-shadow: none;
}

.zg-link-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 30rem) {
  .zg-link-flex {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.zg-button-as-link {
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.zg-link-card:hover {
  outline: 0.125rem solid #000;
}

.zg-link-card:active {
  background-color: #f5f5f5;
}

.zg-link-underline {
  font-size: 0.875rem;
  color: #0064ff !important;
  text-decoration: underline !important;
}

.zg-loading-bar {
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
}

.zg-loading-bar__loader, .zg-loading-bar__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 0.25rem;
}

.zg-loading-bar__loader {
  width: 0%;
  transition: width 1s linear;
}

.zg-loading-bar__bg {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.zg-masterclasses-content-container {
  position: relative;
}

.zg-masterclasses-content-container .replay_events {
  display: none;
}

@media (max-width: 47.98rem) {
  .zg-masterclasses-content-container .replay_events_group_1 .replay_events:nth-child(-n+2) {
    display: block;
  }
}
@media (min-width: 48rem) {
  .zg-masterclasses-content-container .replay_events_group_1 .replay_events:nth-child(-n+4) {
    display: block;
  }
}
@media (min-width: 87.5rem) {
  .zg-masterclasses-content-container .replay_events_group_1 .replay_events {
    display: block;
  }
}
@media (max-width: 47.98rem) {
  .zg-masterclasses-content-container .replay_events_group_2 .replay_events:nth-child(-n+2) {
    display: none;
  }
  .zg-masterclasses-content-container .replay_events_group_2 .replay_events:nth-child(n+3) {
    display: block;
  }
}
@media (min-width: 48rem) {
  .zg-masterclasses-content-container .replay_events_group_2 .replay_events:nth-child(-n+4) {
    display: none;
  }
  .zg-masterclasses-content-container .replay_events_group_2 .replay_events:nth-child(n+5) {
    display: block;
  }
}
@media (min-width: 87.5rem) {
  .zg-masterclasses-content-container .replay_events_group_2 .replay_events:nth-child(-n+6) {
    display: none;
  }
  .zg-masterclasses-content-container .replay_events_group_2 .replay_events:nth-child(n+7) {
    display: block;
  }
}
.zg-mentoring-goal-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  background-color: #fff;
  border: 0.125rem solid #ebebeb;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-mentoring-goal-header.in-progress {
  border: 0.0625rem solid #ebebeb;
}

.zg-mentoring-goal-header.complete {
  border: 0.0625rem solid #e5efff;
}

.zg-mentoring-goal-body {
  margin-top: 0.5rem;
}

.zg-mentoring-goal-body > .row {
  row-gap: 1rem;
}

.zg-mentoring-goal-icon {
  padding: 0 0.625rem;
}

.zg-mentoring-goal-collapse-button > svg {
  transition: transform 0.2s ease;
}

.zg-mentoring-goal-collapse-button.expanded > svg {
  transform: rotate(180deg);
}

.zg-mentoring-goal-copy {
  display: grid;
}

.zg-mentoring-goal-button {
  display: block;
}

.zg-mentoring-task {
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgb(240 246 255/var(--tw-bg-opacity));
  height: 100%;
}

.zg-mentoring-task-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.zg-mentoring-task-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background-color: #fff;
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-height: 1.625rem;
}

.zg-mentoring-task-link {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  align-items: center;
  color: #14373c;
}

.zg-mentoring-task-button {
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.zg-mentoring-task-mark-done {
  border: 0.0625rem solid #ebebeb;
  border-radius: 1rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  max-height: 1.625rem;
  color: #555;
}

.zg-mentoring-task-mark-done svg {
  fill: #555;
}

.zg-mentoring-task-mark-done span {
  font-size: 0.75rem;
}

.zg-mentoring-task-mark-done:hover {
  border-color: #14373c;
  color: #14373c;
}

.zg-mentoring-task-mark-done:hover svg {
  fill: #14373c;
}

.mentoring-goal-divider {
  border: 0;
  border-top: 0.0625rem solid #ebebeb;
}

.zg-modal__content {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh; /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 0vh);
  height: calc(var(--vh, 1vh) * 100 - 0vh);
  overflow: auto;
}

.zg-modal__header {
  align-items: center;
  width: 100%;
  height: 3.5rem;
}

@media (min-width: 62rem) {
  .zg-modal__header {
    height: 6.25rem;
  }
}
.zg-modal__menu-items {
  padding: 7rem 0.75rem 0;
  list-style-type: none;
}

.zg-modal__menu-item a {
  font-size: 1.75rem;
  color: #fff;
  text-decoration: none;
}

.zg-modal__menu-item a:hover {
  color: #00fad7;
}

.zg-modal-fresh .modal-content {
  border-radius: 0.5rem;
}

.zg-modal-fresh .modal-content .modal-body {
  padding: 0 1rem 1rem;
}

@media (max-width: 35.98rem) {
  .zg-modal-fresh .modal-content {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.zg-modal-fresh .modal-header {
  padding: 0 0 0.5rem;
  margin: 0.5rem 1rem;
  border-color: #f5f5f5;
}

.zg-modal-fresh .modal-header h5, .zg-modal-fresh .modal-header .h5 {
  color: #14373c;
}

@media (max-width: 35.98rem) {
  .zg-modal-sm-bottom.modal.fade > .modal-dialog {
    overflow: hidden;
    transform: translate(0, 0);
  }
  .zg-modal-sm-bottom .modal-dialog {
    height: calc(100vh - 4.25rem); /* Fallback for when --vh is not set by viewport_height_controller */
    height: calc(1vh * 100 - 4.25rem);
    height: calc(var(--vh, 1vh) * 100 - 4.25rem);
    min-height: 0;
    margin: 4.25rem 0 0 0;
    overflow: hidden;
  }
  .zg-modal-sm-bottom .modal-dialog .modal-content {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
    box-sizing: content-box;
  }
  .zg-modal-sm-bottom .modal-dialog .modal-content .button_to,
  .zg-modal-sm-bottom .modal-dialog .modal-content .btn,
  .zg-modal-sm-bottom .modal-dialog .modal-content .zg-btn,
  .zg-modal-sm-bottom .modal-dialog .modal-content .zg-btn__form {
    width: 100%;
  }
}
.zg-modal-blade.modal.fade > .modal-dialog {
  transform: translate(0, 0);
}

@media (min-width: 48rem) {
  .zg-modal-blade.modal.fade > .modal-dialog {
    animation-duration: 0.2s;
    animation-timing-function: ease-in-out;
  }
}
.zg-modal-blade > .modal-dialog {
  position: fixed;
  right: 0;
  width: 30rem;
  max-width: 100%;
  height: 100%;
  margin: 0;
}

@media (max-width: 47.98rem) {
  .zg-modal-blade > .modal-dialog {
    width: 100%;
  }
}
.zg-modal-blade > .modal-dialog > .modal-content {
  height: 100%;
  overflow-y: scroll;
}

@keyframes slide-in-from-left {
  from {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slide-in-from-right {
  from {
    opacity: 0;
    transform: translate(100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (min-width: 48rem) {
  .zg-modal-blade--left.modal.fade > .modal-dialog {
    animation-name: slide-in-from-left;
  }
}
.zg-modal-blade--left > .modal-dialog {
  left: 0;
}

@media (min-width: 48rem) {
  .zg-modal-blade--right.modal.fade > .modal-dialog {
    animation-name: slide-in-from-right;
  }
}
.zg-modal-blade--right > .modal-dialog {
  right: 0;
}

.modal.fade .zg-loading-modal {
  transform: none;
}

.zg-loading-modal {
  height: calc(100vh - 4.25rem); /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 4.25rem);
  height: calc(var(--vh, 1vh) * 100 - 4.25rem);
  margin-top: 4.25rem;
}

@media (min-width: 62rem) {
  .zg-loading-modal {
    height: calc(100vh - 5.25rem); /* Fallback for when --vh is not set by viewport_height_controller */
    height: calc(1vh * 100 - 5.25rem);
    height: calc(var(--vh, 1vh) * 100 - 5.25rem);
    margin-top: 5.25rem;
  }
}
body[data-theme=ai-coach] .zg-global-search-toggle__trigger, .zg-global-search-toggle__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

body[data-theme=ai-coach] .zg-global-search-toggle__icon, .zg-global-search-toggle__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
}

.zg-global-search-toggle__icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='search'%3E %3Cpath id='Icon' d='M14 14.5L11.1 11.6M12.6667 7.83333C12.6667 10.7789 10.2789 13.1667 7.33333 13.1667C4.38781 13.1667 2 10.7789 2 7.83333C2 4.88781 4.38781 2.5 7.33333 2.5C10.2789 2.5 12.6667 4.88781 12.6667 7.83333Z' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E");
}

.zg-global-search-toggle__trigger.active .zg-global-search-toggle__icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='search'%3E %3Cpath id='Icon' d='M14 14.5L11.1 11.6M12.6667 7.83333C12.6667 10.7789 10.2789 13.1667 7.33333 13.1667C4.38781 13.1667 2 10.7789 2 7.83333C2 4.88781 4.38781 2.5 7.33333 2.5C10.2789 2.5 12.6667 4.88781 12.6667 7.83333Z' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E");
}

body[data-theme=ai-coach] .zg-global-search-toggle__icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='search'%3E %3Cpath id='Icon' d='M14 14.5L11.1 11.6M12.6667 7.83333C12.6667 10.7789 10.2789 13.1667 7.33333 13.1667C4.38781 13.1667 2 10.7789 2 7.83333C2 4.88781 4.38781 2.5 7.33333 2.5C10.2789 2.5 12.6667 4.88781 12.6667 7.83333Z' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E");
}

body[data-theme=ai-coach] .zg-global-search-toggle__trigger.active .zg-global-search-toggle__icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cg id='search'%3E %3Cpath id='Icon' d='M14 14.5L11.1 11.6M12.6667 7.83333C12.6667 10.7789 10.2789 13.1667 7.33333 13.1667C4.38781 13.1667 2 10.7789 2 7.83333C2 4.88781 4.38781 2.5 7.33333 2.5C10.2789 2.5 12.6667 4.88781 12.6667 7.83333Z' stroke='currentColor' stroke-width='currentStroke' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E");
}

.zg-messages-toggle__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.zg-messages-toggle__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M13.629 20.472L13.087 21.388C12.604 22.204 11.397 22.204 10.913 21.388L10.371 20.472C9.951 19.762 9.741 19.406 9.403 19.21C9.065 19.013 8.64 19.006 7.79 18.991C6.534 18.97 5.747 18.893 5.087 18.619C4.48037 18.3677 3.92917 17.9994 3.46487 17.5351C3.00057 17.0708 2.63227 16.5196 2.381 15.913C2 14.995 2 13.83 2 11.5V10.5C2 7.227 2 5.59 2.737 4.388C3.14904 3.7152 3.71445 3.14945 4.387 2.737C5.59 2 7.228 2 10.5 2H13.5C16.773 2 18.41 2 19.613 2.737C20.2854 3.14917 20.8508 3.71456 21.263 4.387C22 5.59 22 7.228 22 10.5V11.5C22 13.83 22 14.995 21.62 15.913C21.3686 16.5197 21.0002 17.071 20.5357 17.5353C20.0712 17.9996 19.5198 18.3678 18.913 18.619C18.253 18.893 17.466 18.969 16.21 18.991C15.36 19.006 14.935 19.013 14.597 19.21C14.259 19.406 14.049 19.761 13.629 20.472Z' fill='white'/%3E %3C/svg%3E");
}

.zg-messages-toggle__trigger.active .zg-messages-toggle__icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M13.087 21.388L13.629 20.472C14.049 19.762 14.259 19.406 14.597 19.21C14.935 19.013 15.36 19.006 16.21 18.991C17.466 18.97 18.253 18.893 18.913 18.619C19.5196 18.3677 20.0708 17.9994 20.5351 17.5351C20.9994 17.0708 21.3677 16.5196 21.619 15.913C22 14.995 22 13.83 22 11.5V10.5L21.999 9.452C21.998 9.025 21.475 8.783 21.097 8.982C20.2468 9.43063 19.2753 9.59521 18.3247 9.45163C17.3742 9.30804 16.4947 8.86383 15.8149 8.18409C15.1352 7.50434 14.691 6.62478 14.5474 5.67425C14.4038 4.72373 14.5684 3.7522 15.017 2.902C15.217 2.525 14.976 2.002 14.548 2.002C14.218 2 13.87 2 13.5 2H10.5C7.227 2 5.59 2 4.388 2.737C3.7152 3.14904 3.14945 3.71445 2.737 4.387C2 5.59 2 7.228 2 10.5V11.5C2 13.83 2 14.995 2.38 15.913C2.63139 16.5197 2.99984 17.071 3.46432 17.5353C3.92879 17.9996 4.48018 18.3678 5.087 18.619C5.747 18.893 6.534 18.969 7.79 18.991C8.64 19.006 9.065 19.013 9.403 19.21C9.74 19.406 9.951 19.761 10.371 20.472L10.913 21.388C11.396 22.204 12.603 22.204 13.087 21.388Z' fill='white'/%3E %3Cpath d='M19 8C20.6569 8 22 6.65685 22 5C22 3.34315 20.6569 2 19 2C17.3431 2 16 3.34315 16 5C16 6.65685 17.3431 8 19 8Z' fill='%23D13B42'/%3E %3C/svg%3E");
}

.zg-notifications-toggle__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.zg-notifications-toggle__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1080 1080'%3E %3Cpolyline fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='40px' points='633.13 897.19 633.13 924.3 538.96 978.53 446.87 924.31 446.87 897.2'/%3E %3Cpath fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='40px' d='M633.04,155.69v67.39s62.56,38.82,62.56,38.82c69.98,43.42,118.44,113.93,134.17,194.28,1.81,9.23,2.73,18.61,2.78,28.02l1.58,201.75,91.89,195.65h-386.2s.18,0,.18,0H163.46l82.23-195.65,1.58-201.07c.05-9.86,1-19.71,2.91-29.38,15.86-80.06,64.25-150.3,134.03-193.6l62.56-38.82v-67.39l94.16-54.22,92.09,54.22Z'/%3E %3C/svg%3E");
}

.zg-notifications-toggle__trigger.active .zg-notifications-toggle__icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1080 1080'%3E %3Cpolyline fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='40px' points='633.13 897.19 633.13 924.3 538.96 978.53 446.87 924.31 446.87 897.2'/%3E %3Cpath fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='40px' d='M633.04,155.69v67.39s62.56,38.82,62.56,38.82c69.98,43.42,118.44,113.93,134.17,194.28,1.81,9.23,2.73,18.61,2.78,28.02l1.58,201.75,91.89,195.65h-386.2s.18,0,.18,0H163.46l82.23-195.65,1.58-201.07c.05-9.86,1-19.71,2.91-29.38,15.86-80.06,64.25-150.3,134.03-193.6l62.56-38.82v-67.39l94.16-54.22,92.09,54.22Z'/%3E %3Ccircle cx='765' cy='225' r='180' fill='%23D13B42'/%3E %3C/svg%3E");
}

.collapse.collapsing:has(.zg-onboarding-section-body) { /* stylelint-disable-line */
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-onboarding-step-container {
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  border: 0.125rem solid #00fad7;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  transition: box-shadow 1s ease;
}

.zg-onboarding-step-container section {
  border-radius: 0.5rem;
}

.zg-onboarding-step-copy {
  display: grid;
}

.zg-onboarding-step-button {
  display: block;
  width: 10.3125rem;
}

.zg-title-with-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #14373c;
}

.zg-title-with-number::before {
  width: 1.75rem;
  height: 1.75rem;
  font-weight: 400;
  content: attr(data-number);
  border: 0.0625rem solid #14373c;
  background-color: #fff;
}

.popover {
  max-width: 20rem;
  background-color: #14373c;
  border: none;
  border-radius: 0.5rem;
}

.popover .popover-header {
  display: none;
  color: #fff;
  background-color: #14373c;
  border: none;
  border-radius: 0;
}

.popover .popover-header::before {
  display: none;
}

.popover .popover-body {
  padding: 0.5rem;
  font-size: 0.875rem;
  color: #fff;
}

.popover .popover-body a {
  color: #fff;
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  border-right: none;
}

.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-right-color: #14373c;
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  border-left: none;
}

.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-left-color: #14373c;
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  border-bottom: none;
}

.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-bottom-color: #14373c;
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  border-top: none;
}

.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-top-color: #14373c;
}

.zg-profile-card-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1.5rem;
  background: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-profile-card-container--details {
  width: 18.5rem;
  max-width: 18.5rem;
  margin: auto;
  text-align: center;
}

@media (min-width: 62rem) {
  .zg-profile-card-container--details {
    width: 27.5rem;
    max-width: 27.5rem;
  }
}
.zg-profile-card-container--memberships-current {
  cursor: auto;
  border: 0.125rem solid #b3d1ff;
  border-radius: 0.5rem;
}

.zg-profile-card-container--memberships-not-current {
  cursor: auto;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
}

.zg-profile-card-container .zg-profile-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.zg-profile-card-container .zg-profile-image-section .zg-profile-image-wrapper {
  margin: 0;
}

.zg-profile-card-container .zg-profile-image-section .zg-profile-image-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.zg-profile-card-container .zg-profile-image-section .zg-profile-image-labels--overlay {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -1rem;
}

.zg-profile-card-container .zg-profile-details-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.zg-profile-card-container .zg-profile-details-section .zg-profile-details-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-profile-card-container .zg-profile-details-section hr {
  width: 100%;
  height: 0.0625rem;
  margin: 0;
  color: #ebebeb;
}

.zg-profile {
  position: relative;
  text-align: center;
}

.zg-profile-navbar {
  padding: 0;
  margin: 0 0.5rem;
  list-style-type: none;
}

.zg-profile-navbar > .nav-item > a {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-family: "Archia", sans-serif;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none;
  border: 0.0625rem solid transparent;
  border-radius: 0.5rem;
}

.zg-profile-navbar > .nav-item > a:hover {
  color: #14373c;
  border-color: #b3fef3;
}

.zg-profile-navbar > .nav-item > a .zg-profile-nav-item-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.zg-profile-navbar > .nav-item__active > a {
  color: #14373c;
  border-color: #00fad7;
}

.zg-profile-navbar > .nav-item__active > a:hover {
  border-color: #00fad7;
}

.zg-profile-navbar.dropdown-menu.show {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100vw - 2rem);
  height: auto;
  padding: 1rem;
  margin-top: 1rem !important;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
}

.zg-profile-navbar.dropdown-menu.show > .nav-item {
  width: 100%;
}

.zg-profile-navbar.dropdown-menu.show > .nav-item__active > a {
  border-color: transparent;
}

.zg-profile-navbar.dropdown-menu.show > .nav-item__active > a:hover {
  border-color: #b3fef3;
}

.zg-profile-settings-dropdown-button {
  color: #14373c;
  text-decoration: none;
}

.zg-profile-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin: -4.5rem 0 2.8125rem;
}

.zg-profile-image-wrapper__user-type {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.zg-profile-image-wrapper__check {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-50%, 0);
}

.zg-profile-text-wrapper {
  position: relative;
  display: flex;
  margin: -4.5rem 0 0;
}

@media (max-width: 47.98rem) {
  .zg-profile-text-wrapper {
    margin: -4.5rem 0 3rem;
  }
}
.zg-profile-image__notification-circle {
  position: absolute;
  right: 0.375rem;
  bottom: -0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4375rem;
  height: 1.4375rem;
  font-family: "Archia", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  border-radius: 50%;
}

.zg-profile__edit-details {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(calc(-50% + 1.25rem));
}

.zg-profile-image {
  width: 9rem;
  height: 9rem;
  filter: drop-shadow(0 0 1.25rem rgba(0, 0, 0, 0.1));
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zg-profile-image--24 {
  width: 1.5rem;
  height: 1.5rem;
}

.zg-profile-image--32 {
  width: 2rem;
  height: 2rem;
}

.zg-profile-image--36 {
  width: 2.25rem;
  height: 2.25rem;
}

.zg-profile-image--48 {
  width: 3rem;
  height: 3rem;
}

.zg-profile-image--56 {
  width: 3.5rem;
  height: 3.5rem;
}

.zg-profile-image--64 {
  width: 4rem;
  height: 4rem;
}

.zg-profile-image--120 {
  width: 7.5rem;
  height: 7.5rem;
}

.zg-profile-image--140 {
  width: 8.75rem;
  height: 8.75rem;
}

.zg-dashboard-profile-image--match-index, .zg-dashboard-profile-image--match-show {
  width: 8.75rem;
  height: 8.75rem;
  filter: drop-shadow(0 0 1.25rem rgba(0, 0, 0, 0.1));
  border: 0.0625rem solid #ebebeb;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 48rem) {
  .zg-dashboard-profile-image--match-show {
    width: 6.25rem;
    height: 6.25rem;
  }
}
@media (min-width: 62rem) {
  .zg-dashboard-profile-image--match-show {
    width: 8.75rem;
    height: 8.75rem;
  }
}
@media (min-width: 36rem) {
  .zg-dashboard-profile-image--match-index {
    width: 6.25rem;
    height: 6.25rem;
  }
}
@media (min-width: 48rem) {
  .zg-dashboard-profile-image--match-index {
    width: 5rem;
    height: 5rem;
  }
}
.zg-profile-user-type {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #00fad7;
  border-radius: 0.25rem;
}

.zg-profile-check {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #00fad7;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpolygon points='13 24 4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24'/%3E %3Crect class='cls-1' width='32' height='32'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
  border-radius: 100%;
}

.zg-profile-avatar > circle {
  fill: #14373c;
}

.zg-profile-avatar > text {
  font-family: "Archia", sans-serif !important;
  font-weight: 400;
  fill: #fff;
  fill-opacity: 1;
}

.zg-membership-tag--past, .zg-membership-tag--upcoming, .zg-membership-tag--current {
  display: flex;
}

.zg-membership-tag--past::after, .zg-membership-tag--upcoming::after, .zg-membership-tag--current::after {
  height: 1.375rem;
  padding: 0.125rem 0.375rem;
  margin-top: 0.125rem;
  margin-right: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ebebeb;
  border-radius: 0.75rem;
}

.zg-membership-tag--current::after {
  color: #0064ff;
  content: "Your membership journey";
  border: 0.0625rem solid #0064ff;
}

.zg-membership-tag--upcoming::after {
  color: #555;
  content: "WHAT'S UP NEXT";
  background: #ebebeb;
}

.zg-membership-tag--past::after {
  color: #555;
  content: "COMPLETED";
  background: #ebebeb;
}

.zg-collapse-section-profile {
  padding: 0.75rem;
  border: 0.0625rem solid #f5f5f5;
  border-radius: 0.5rem;
}

.zg-collapse-section-profile--mint {
  padding: 0.5rem;
  border: 0.125rem solid #00fad7;
  border-radius: 0.5rem;
}

.zg-profile-hr {
  height: 0.0625rem !important; /* stylelint-disable-line */
  margin-top: 0;
  margin-bottom: 1rem;
  background-color: #f5f5f5;
}

.zg-quick-start-hr {
  width: 500%;
  height: 0.0625rem !important; /* stylelint-disable-line */
  margin-top: 1rem;
  margin-left: -200%;
  background-color: #e5efff;
}

.zg-electric-blue-hr {
  width: 83.33%;
  height: 0.0625rem !important; /* stylelint-disable-line */
  margin: 0.5rem 0;
  margin-left: auto;
  background-color: #e5efff;
}

.zg-schools-dropdown-container {
  flex-grow: 1;
}

.zg-schools-dropdown-menu {
  min-width: 100%;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  transform: none;
  inset: 0;
  z-index: 1002;
}

.zg-schools-dropdown-menu > .zg-radio-btn-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: none;
}

.zg-schools-dropdown-menu > .zg-radio-btn-group .form-check {
  padding: 0 1rem;
}

.zg-schools-dropdown-menu > .zg-radio-btn-group .form-check > .form-check-label {
  padding: 0.625rem 0;
}

.zg-schools-dropdown-menu--scrollable {
  max-height: 20rem;
  overflow-y: scroll;
}

.zg-schools-dropdown-menu .col-form-label {
  display: none;
}

.zg-schools-dropdown-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 12.5rem;
  height: 3rem;
}

.zg-schools-dropdown-toggle::after {
  display: none;
}

.zg-schools-dropdown-toggle.form-select.show {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve' color='%23000'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D %3C/style%3E %3Cpolygon points='16,10 26,20 24.6,21.4 16,12.8 7.4,21.4 6,20 '/%3E %3Crect id='_x3C_Transparent_Rectangle_x3E_' class='st0' width='32' height='32'/%3E %3C/svg%3E") !important;
  background-size: 1rem auto !important;
}

.zg-skeleton-box, .zg-skeleton-box--plain {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1rem;
  overflow: hidden;
  background-color: #ebebeb;
  border-radius: 0.25rem;
}

.zg-skeleton-box::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.zg-turbo-frame .zg-turbo-frame-loading {
  display: none;
}

.zg-turbo-frame .zg-turbo-frame-loading--overlay {
  position: absolute;
  inset: 0.0625rem 0.0625rem 0.0625rem 0;
  z-index: 1;
  background-color: #fff;
}

.zg-turbo-frame .zg-turbo-frame-loading--overlay td {
  white-space: normal;
  white-space: initial;
}

.zg-turbo-frame .zg-turbo-frame-loading--wrapper {
  position: relative;
}

.zg-turbo-frame[busy] .zg-turbo-frame-loading {
  display: inline;
  display: initial;
}

.zg-turbo-frame[busy] .zg-turbo-frame-loaded {
  display: none;
}

.zg-steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 48rem) {
  .zg-steps {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 0.5rem;
    border-bottom: 0.0625rem solid #f5f5f5;
  }
}
.zg-steps .zg-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 48rem) and (max-width: 61.98rem) {
  .zg-steps .zg-step {
    gap: 0.5rem;
  }
}
.zg-steps .zg-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  min-width: 1.75rem;
  height: 1.75rem;
  min-height: 1.75rem;
  font-size: 0.875rem;
  background: #fff;
  border: 0.0625rem solid;
  border-radius: 0.875rem;
}

.zg-steps .zg-step-number.zg-step-number--past {
  color: #555;
  border-color: #555;
}

.zg-steps .zg-step-number.zg-step-number--past svg {
  color: #555;
  fill: #555;
}

.zg-steps .zg-step-number.zg-step-number--past svg path {
  fill: #555;
}

.zg-steps .zg-step-number.zg-step-number--present {
  color: #14373c;
  border-color: #14373c;
}

.zg-steps .zg-step-number.zg-step-number--present svg {
  color: #14373c;
  fill: #14373c;
}

.zg-steps .zg-step-number.zg-step-number--present svg path {
  fill: #14373c;
}

.zg-steps .zg-step-number.zg-step-number--future {
  color: #aaa;
  border-color: #aaa;
}

.zg-steps .zg-step-number.zg-step-number--future svg {
  color: #aaa;
  fill: #aaa;
}

.zg-steps .zg-step-number.zg-step-number--future svg path {
  fill: #aaa;
}

.zg-steps .zg-step-name {
  font-size: 0.875rem;
}

.zg-steps .zg-step-name.zg-step-name--past {
  color: #555;
}

.zg-steps .zg-step-name.zg-step-name--present {
  color: #14373c;
  font-weight: 600;
}

.zg-steps .zg-step-name.zg-step-name--future {
  color: #aaa;
}

.zg-steps .zg-step-separator {
  transform: translate(0.375rem, 0) rotate(90deg);
  fill: #aaa;
}

@media (min-width: 48rem) {
  .zg-steps .zg-step-separator {
    transform: none;
  }
}
.zg-steps .zg-step-separator.zg-step-separator--past {
  fill: #14373c;
}

.zg-schools-table th {
  font-family: "Archia", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  vertical-align: baseline;
  line-height: 1.5em;
  white-space: nowrap;
}

.zg-schools-table th h5, .zg-schools-table th .h5 {
  margin: 0;
}

.zg-schools-table th.zg-sortable {
  cursor: pointer;
}

.zg-schools-table th.zg-sortable .zg-sortable-inner {
  display: flex;
  gap: 0.25rem;
  width: 100%;
  height: 100%;
}

.zg-schools-table th.zg-sortable .zg-sortable-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zg-schools-table th.zg-sortable .zg-sortable-arrows svg {
  width: 0.5rem;
  height: 0.5rem;
  color: #ebebeb;
}

.zg-schools-table th.zg-sortable .zg-sortable-arrows svg:first-child {
  transform: rotate(180deg);
}

.zg-schools-table th.zg-sortable .zg-sortable-arrows svg.zg-sortable-arrow-active {
  color: #000;
}

.zg-schools-table td {
  line-height: 1.5em;
  white-space: nowrap;
  padding: 0.4375rem 0.5rem;
}

.zg-schools-table.table > :not(:first-child) {
  border-top: 0;
}

.zg-schools-states-table th {
  font-family: "Archia", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.zg-schools-states-table td {
  padding: 0.4375rem 0.5rem;
}

.zg-schools-states-table.table > :not(:first-child) {
  border-top: 0;
}

.check-table {
  border-spacing: 0.5rem;
  border-collapse: separate;
}

.check-table th,
.check-table tr,
.check-table td {
  padding: 0;
  border: none;
}

.check-table td {
  width: 28%;
  height: 2.6875rem;
  vertical-align: middle;
}

.check-table td:first-child {
  width: auto;
}

.table-admin .table > :not(:first-child) {
  border-top: 1px solid #f5f5f5;
}

.table-admin th {
  color: #ebebeb;
}

.table-admin th a {
  color: #ebebeb;
}

.word-break {
  word-break: break-word;
}

.zg-review-information .table-sm th {
  color: #14373c;
  font-family: "Archia", sans-serif;
  font-weight: 600;
}

.zg-review-information .table-sm > :not(:first-child) {
  border-top: 1px solid #f5f5f5;
}

.zg-review-information .table-sm > :not(caption) > * > * {
  padding: 0.5rem 0;
}

.zg-review-information .table-sm td {
  vertical-align: middle;
}

.zg-review-information .table-sm td:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  padding-right: 0.5rem;
}

.zg-review-information .table-sm tr:last-child > td {
  border-bottom: none;
}

.zg-review-information .zg-ri-grid .zg-ri-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.zg-review-information .zg-ri-grid .zg-ri-head .zg-ri-title {
  color: #14373c;
  font-family: "Archia", sans-serif;
  font-weight: 600;
}

.zg-review-information .zg-ri-grid .zg-ri-body {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.zg-review-information .zg-ri-grid .zg-ri-body > * {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.zg-review-information .zg-ri-grid .zg-ri-body .zg-ri-label {
  font-size: 0.875rem;
  font-weight: 600;
  border-top: 1px solid #f5f5f5;
  padding: 0.5rem 0;
}

.zg-review-information .zg-ri-grid .zg-ri-body .zg-ri-value {
  padding-bottom: 0.5rem;
}

@media (min-width: 48rem) {
  .zg-review-information .zg-ri-grid .zg-ri-body {
    grid-template-columns: repeat(2, 1fr);
  }
  .zg-review-information .zg-ri-grid .zg-ri-body > * {
    border-top: 1px solid #f5f5f5;
    box-sizing: content-box;
    padding: 0.5rem 0;
    line-height: 1.4375rem;
  }
  .zg-review-information .zg-ri-grid .zg-ri-body .zg-ri-label {
    padding-right: 1rem;
  }
}
.zg-review-information .zg-ri-grid .zg-ri-body.zg-ri-values-only {
  grid-template-columns: repeat(1, 1fr);
}

.zg-review-information .zg-ri-grid .zg-ri-body.zg-ri-values-only .zg-ri-value {
  border-top: 1px solid #f5f5f5;
  padding: 0.5rem 0;
}

.has-tip::after {
  padding-right: 2rem;
  margin-left: 0.5rem;
  cursor: pointer;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-info-circle' viewBox='0 0 16 16'%3E %3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E %3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0.125rem;
  background-size: 1rem;
}

.has-dashboard-tip::after {
  padding-right: 1rem;
  cursor: pointer;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-info-circle' viewBox='0 0 16 16'%3E %3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E %3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0.2rem;
  background-size: 1rem;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company),
.zg-turbo-frame--load-on-not-complete:not([complete]) {
  position: relative;
  pointer-events: none;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company):has(.zg-skeleton-box)::before, turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company):has(.zg-skeleton-box)::after,
.zg-turbo-frame--load-on-not-complete:not([complete]):has(.zg-skeleton-box)::before,
.zg-turbo-frame--load-on-not-complete:not([complete]):has(.zg-skeleton-box)::after {
  content: none;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company)::before,
.zg-turbo-frame--load-on-not-complete:not([complete])::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: inherit;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company):empty::before,
.zg-turbo-frame--load-on-not-complete:not([complete]):empty::before {
  position: static;
  display: block;
  height: 3rem;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company)::after,
.zg-turbo-frame--load-on-not-complete:not([complete])::after {
  position: absolute;
  top: min(50% - 1rem, 2rem);
  left: 50%;
  z-index: 1001;
  width: 2rem;
  height: 2rem;
  content: "";
  border: 0.125rem solid rgba(0, 100, 255, 0.25);
  border-top-color: #0064ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-transparent::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-transparent::before {
  background-color: transparent;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-white::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-white::before {
  background-color: #fff;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-white:empty::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-white:empty::before {
  background-color: transparent;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-app-background::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-app-background::before {
  background-color: #f7faff;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-app-background:empty::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-app-background:empty::before {
  background-color: transparent;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-blue-10::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-blue-10::before {
  background-color: #e5efff;
}

turbo-frame[busy]:not(.zg-turbo-frame--no-load):not(#turbo-modal):not(#community):not(#community-space):not(#community-space-content):not(#masterclasses):not(#masterclass-content):not(#masterclass-content-showcase):not(#new-match-feedback):not(#new-call-feedback):not(#mentoring-directory):not(#company).zg-turbo-frame--bg-blue-10:empty::before,
.zg-turbo-frame--load-on-not-complete:not([complete]).zg-turbo-frame--bg-blue-10:empty::before {
  background-color: transparent;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.zg-turbo-frame-content-blur {
  position: relative;
}

.zg-turbo-frame-content-blur > * {
  filter: blur(0.0625rem);
  -moz-filter: blur(0.0625rem);
  -ms-filter: blur(0.0625rem);
  -webkit-filter: blur(0.0625rem);
  pointer-events: none;
}

.zg-turbo-frame-content-blur::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.zg-video-layout__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.zg-video-layout__video-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 1rem;
}

.zg-video-full-width-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
  max-width: calc(177.77777778vh - 9.4444444446rem);
}

@media (min-width: 48rem) {
  .zg-video-full-width-container {
    max-width: calc(177.77777778vh - 13.0000000002rem);
  }
}
@media (min-width: 75rem) {
  .zg-video-full-width-container {
    padding: 0;
  }
}
.zg-video-full-height-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #555;
}

.zg-video-full-height-container::before {
  display: block;
  padding-bottom: 56.25%;
  content: "";
}

.zg-video-full-height-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zg-video-participant-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zg-video-feedback__text::after {
  display: none;
}

@media (orientation: landscape) and (max-width: 61.9375rem) {
  .zg-video-layout__container {
    position: relative;
    grid-template-rows: auto;
  }
  .zg-video-layout__container .zg-video-layout__control-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .zg-video-layout__container .zg-video-layout__video-container {
    padding: 0;
  }
  .zg-video-layout__container .zg-video-main-videos-container {
    max-width: 177.7777777778vh;
    padding: 0;
  }
}
.zg-video-feedback {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}

.zg-video-profile-image {
  width: 50%;
  max-width: 3.125rem;
  margin-right: 1rem;
}

.zg-video-profile-image .zg-video-profile-image__image {
  width: 100%;
  height: 100%;
}

.zg-video-participant-remote.zg-video--video-muted .zg-video-feedback__text {
  position: relative;
}

.zg-video-participant-remote.zg-video--video-muted .zg-video-feedback__text::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 6.25rem;
  min-width: 1.625rem;
  max-width: 22%;
  height: auto;
  line-height: 0;
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2'%3E %3Cpath d='M99 40.478C84.215 42.153 75.733 55.267 66 65c-10.094 10.094-25.659 20.031-25.659 36 0 16.428 18.178 28.502 28.659 39 29.706 29.754 58.5 60.932 89.039 89.83 52.404 49.588 101.319 102.751 153.051 153C398.147 467.393 483.38 553.966 568.999 640c43.798 44.01 86.579 89.762 132.001 132.089 24.285 22.631 46.636 47.368 70.089 70.822 24.013 24.012 50.121 46.615 72.625 72.089 8.116 9.187 17.599 17.313 26.286 26 9.581 9.581 18.923 21.23 34 17.984 11.67-2.513 18.058-12.003 26.001-19.984 8.616-8.657 20.904-17.047 26.596-28 12.631-24.304-22.284-49.303-37.636-63.83A4889.386 4889.386 0 01728.83 657.039c-13.216-13.966-27.501-28.841-41.845-41.615-6.446-5.741-19.496-14.762-21.667-23.424-2.109-8.412-.318-19.335-.318-28V312c0-38.268 7.983-86.245-20.59-116.83C612.296 160.794 564.473 168 522 168H270c-8.967 0-20.296 1.865-29-.318-9.619-2.412-21.979-19.661-29-26.682l-72-72c-10.672-10.655-23.787-30.472-41-28.522zM41 181.175c-10.39 1.551-22.469 18.56-27.396 26.825C-5.276 239.671 1 281.613 1 317v407c0 22.831-.266 45.56 11.428 66 30.001 52.442 93.474 42 144.572 42h392c18.536 0 37.91 1.669 56-3.155 14.217-3.791 28.317-12.632 38.572-23.131 2.794-2.861 8.87-8.277 8.395-12.714-.383-3.576-4.616-6.644-6.967-9-6.533-6.547-13.242-12.792-20-19.089-24.568-22.895-46.073-49.187-71-71.741-38.707-35.024-73.851-74.459-111-111.166C356.161 496.198 270.324 409.33 184 323c-24.341-24.342-48.82-48.524-73.004-73-9.796-9.914-22.14-18.991-30.617-30-8.521-11.066-16.837-20.632-27.379-30.17-2.978-2.694-7.412-9.34-12-8.655z' fill='%23fff' fill-rule='nonzero'/%3E %3Cpath d='M937 224.439c-24.605 3.843-44.379 22.418-64 36.42-32.172 22.957-65.487 44.561-98 67.116-12.585 8.731-25.565 16.974-38 25.885-4.049 2.901-11.399 6.555-13.397 11.324-1.728 4.128-.603 10.412-.603 14.816v224c0 8.096-3.163 24.652 1.028 31.675 5.513 9.238 21.18 15.636 29.972 21.34 21.392 13.877 41.762 29.486 63 43.652 25.977 17.326 51.3 35.643 77 53.358 18.594 12.817 36.313 25.166 60 20.714 53.66-10.084 45-69.951 45-110.739V320c0-37.487 3.6-79.571-40-93.641-6.93-2.237-14.789-3.046-22-1.92z' fill='%23fff' fill-rule='nonzero'/%3E %3C/svg%3E");
  transform: translateY(-50%);
}

@media only screen and (min-width: 48rem) and (min-height: 32.5rem) {
  .zg-video-feedback {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0;
  }
  .zg-video-profile-image {
    max-width: 10rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .zg-video-participant-remote.zg-video--video-muted .zg-video-feedback__text::after {
    top: -0.625rem;
    left: 50%;
    display: block;
    transform: translateX(-50%);
  }
}
.zg-video-layout--local-portrait.zg-video-layout__container {
  position: relative;
}

.zg-video-layout--local-portrait .zg-video-layout__video-container,
.zg-video-layout--local-portrait .zg-video-main-videos-container {
  padding: 0;
}

.zg-video-layout--local-portrait .zg-video-main-videos-container .zg-video-full-height-container {
  height: 100%;
}

.zg-video-layout--local-portrait .zg-video-main-videos-container .zg-video-full-height-container::before {
  display: none;
}

.zg-video-layout--local-portrait .zg-video-layout__control-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.zg-video-layout--local-portrait .zg-video-participant-local .zg-video-identity {
  top: 0;
  bottom: auto;
  font-size: 0.75rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.3rem;
}

.zg-video-layout--local-portrait.zg-video-state--in-progress .zg-video-participant-local {
  top: 0;
  bottom: auto;
  bottom: initial;
  width: 100%;
  max-width: 28%;
  border-bottom: 0.0625rem solid #000;
}

.zg-video-layout--local-portrait.zg-video-state--in-progress .zg-video-participant-local::before {
  padding-top: 150%;
}

@media (max-width: 47.98rem) {
  .zg-video-layout--local-portrait.zg-video-layout--remote-landscape .zg-video-full-height-container {
    background-color: #14373c;
  }
  .zg-video-layout--local-portrait.zg-video-layout--remote-landscape .zg-video-participant-remote {
    position: absolute;
    bottom: 15.9375rem;
    left: 0;
  }
  .zg-video-layout--local-portrait.zg-video-layout--remote-landscape .zg-video-participant-remote::before {
    display: block;
    padding-bottom: 56.25%;
    content: "";
  }
}
.zg-video-layout--local-portrait .zg-video-feedback {
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: 0;
}

.zg-video-layout--local-portrait .zg-video-profile-image {
  max-width: 10rem;
  margin-right: 0;
  margin-bottom: 1rem;
}

.zg-video-layout--local-portrait .zg-video-participant-remote.zg-video--video-muted .zg-video-feedback__text::after {
  top: -0.625rem;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.zg-video-layout--local-portrait .zg-video-profile-image {
  max-width: 5.9375rem;
}

.zg-video-layout--remote-portrait .zg-video-main-videos-container {
  max-width: calc(66.66666667vh - 4.8750000002rem);
}

.zg-video-layout--remote-portrait .zg-video-full-height-container {
  height: 100%;
}

.zg-video-layout--remote-portrait .zg-video-full-height-container::before {
  display: none;
}

.zg-video-state--waiting .zg-video-layout__chat {
  display: none;
}

.zg-video-state--waiting .zg-video-participant-local {
  width: 100%;
}

.zg-video-state--waiting .zg-video-participant-remote {
  display: none;
}

.zg-video-state--waiting .zg-video-controls--waiting {
  display: block;
}

.zg-video-state--waiting .zg-video-controls--in-progress {
  display: none;
}

.zg-video-state--in-progress .zg-video-layout__container {
  grid-template-columns: 1fr 21.875rem;
}

.zg-video-state--in-progress .zg-video-layout__video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.zg-video-state--in-progress .zg-video-layout__chat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  display: none;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 5.3125rem);
  overflow: hidden;
}

.zg-video-state--in-progress .zg-video-layout__chat .zg-chat-container--video {
  min-height: 0;
  padding: 0.25rem 0 0 0;
}

.zg-video-state--in-progress .zg-video-layout__chat .zg-chat-inner-container {
  padding: 0 1rem;
}

@media (min-width: 48rem) {
  .zg-video-state--in-progress .zg-video-layout__chat {
    position: static;
    display: block;
    width: 0;
    height: calc(100vh - 5.3125rem); /* Fallback for when --vh is not set by viewport_height_controller */
    height: calc(1vh * 100 - 5.3125rem);
    height: calc(var(--vh, 1vh) * 100 - 5.3125rem);
    max-height: none;
    will-change: width;
    transition: width 0.25s ease-in-out;
  }
}
.zg-video-state--in-progress .zg-video-layout__control-panel {
  grid-column: 1/3;
}

.zg-video-state--in-progress .zg-video-participant-local {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 11.25rem;
  border: 0.0625rem solid #000;
  border-right: none;
  border-bottom: none;
}

.zg-video-state--in-progress .zg-video-participant-local::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.zg-video-state--in-progress .zg-video-participant-remote {
  display: block;
  width: 100%;
}

.zg-video-state--in-progress .zg-video-controls--waiting {
  display: none !important; /* stylelint-disable-line */
}

.zg-video-state--in-progress .zg-video-controls--in-progress {
  display: flex;
  gap: 1rem;
}

.zg-video-state--in-progress.zg-video-chat-expanded .zg-video-layout__chat {
  display: block;
}

@media (min-width: 48rem) {
  .zg-video-state--in-progress.zg-video-chat-expanded .zg-video-layout__chat {
    width: 21.875rem;
  }
}
.zg-video-state--in-progress .zg-video-layout--local-portrait .zg-video-feedback {
  top: 50%;
}

.zg-video-state--in-progress .zg-video-layout--local-portrait .zg-video-feedback .zg-video-profile-image {
  max-width: 6.25rem;
}

.zg-video-state--in-progress.zg-video-layout--local-portrait .zg-video-feedback {
  top: -17%;
}

.zg-video-state--in-progress.zg-video-layout--local-portrait.zg-video-layout--remote-landscape .zg-video-feedback {
  top: 0;
}

@media (orientation: landscape) and (max-width: 61.9375rem) {
  .zg-video-state--in-progress .zg-video-participant-local {
    bottom: 5.3125rem;
  }
}
.zg-participant-track {
  background-color: #555;
}

.zg-participant-track video {
  transform: scaleX(-1);
}

.zg-video-participant {
  display: flex;
  align-items: center;
  height: 100%;
}

.zg-video-identity {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: #555;
  border-top-right-radius: 0.3rem;
}

.zg-video--audio-muted .zg-video-identity::after {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2'%3E %3Cpath d='M313 241c-17.165-12.634-30.828-31.006-46.09-45.83-35.35-34.338-70.138-69.23-104.909-104.17C147.086 76.013 132.367 56.777 115 44.649c-23.026-16.081-42.838 14.77-57 28.312C49.6 80.993 39.598 89.032 40.379 102c.666 11.075 8.272 17.65 15.621 25 10.358 10.358 20.304 21.125 31 31.089 44.042 41.029 85.444 85.355 128 127.911l352 352c55.588 55.609 109.249 114.409 167.039 167.714C770.2 839.069 804.412 875 838.996 910c14.25 14.421 30.151 36.867 48.004 46.583 22.744 12.376 40.177-15.084 54-28.568 7.492-7.309 15.654-13.195 17.984-24.015 3.038-14.11-6.906-22.922-15.984-32-9.688-9.688-18.864-19.995-29-29.17-33.037-29.904-63.493-63.323-95-94.83l-29-29c-4.111-4.111-10.678-8.724-13.252-14-2.692-5.515 7.385-14.686 10.248-19 11.047-16.642 20.337-34.497 27.803-53C838.816 573.487 843 515.486 843 452c0-18.81 5.93-50.887-8.468-65.674-18.302-18.799-75.956-16.749-82.852 12.674-3.66 15.615-1.68 33.066-1.68 49 0 51.267.538 98.53-18.691 147-4.298 10.833-8.946 20.918-14.912 31-1.577 2.664-3.998 8.861-7.501 9.369-4.136.6-9.353-6.777-11.881-9.369-10.204-10.46-23.023-20.29-31.762-32-4.934-6.611 7.454-24.773 10.171-32C685.922 534.072 687 504.472 687 475V271c0-66.734 4.913-133.221-34.988-191-9.696-14.04-23.054-26.805-36.012-37.787C536.576-25.097 406.438-4.637 347.988 80 313.877 129.395 313 183.437 313 241zM454 838v68h-83c-13.102 0-29.056-2.204-41 4.352-25.638 14.071-25.289 74.31 3 85.717 10.741 4.331 23.681 2.931 35 2.931h64c72.766 0 146.312 3.14 219-.039 30.569-1.339 36-23.976 36-49.961 0-14.252-1.265-27.987-14.001-36.779C661.243 904.104 645.54 906 632 906h-86v-67c41-5.209 77.478-20.835 115-37-12.281-17.643-30.606-29.919-44.576-46-5.554-6.394-15.078-19.91-23.424-22.303-5.476-1.57-14.75 3.922-20 5.633-14.071 4.587-29.256 8.003-44 9.501-46.215 4.695-90.391-3.024-133-21.26C318.231 694.287 263.33 609.011 252.282 527c-5.275-39.162 1.291-78.833-2.452-118-2.655-27.792-22.39-33-46.83-33-8.941 0-18.684-.526-27 3.324-19.078 8.834-19 27.325-19 45.676 0 38.999-1.179 78.427 5.247 117C181.879 659.838 257.51 765.362 368 813.424c26.924 11.712 56.478 22.243 86 24.576z' fill='%23fff' fill-rule='nonzero'/%3E %3Cpath d='M313 454c0 39.785-.601 78.47 14.604 116C362.167 655.307 452.646 698.647 541 682c-6.424-12.382-20.755-22.896-31-32.17-14.434-13.065-28.283-27.955-41.985-41.834-37.071-37.55-73.402-76.103-112.015-112.086-14.587-13.593-26.479-30.409-43-41.91z' fill='%23fff' fill-rule='nonzero'/%3E %3C/svg%3E");
}

.zg-video--video-muted video {
  display: none;
}

.zg-video-participant-local.zg-video--video-muted::before, .zg-video-participant-local.zg-video--video-muted::after {
  display: block;
  content: "";
  background-color: #555;
}

.zg-video-participant-local.zg-video--video-muted::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.25rem;
  min-width: 1.625rem;
  max-width: 15%;
  height: auto;
  line-height: 0;
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2'%3E %3Cpath d='M99 40.478C84.215 42.153 75.733 55.267 66 65c-10.094 10.094-25.659 20.031-25.659 36 0 16.428 18.178 28.502 28.659 39 29.706 29.754 58.5 60.932 89.039 89.83 52.404 49.588 101.319 102.751 153.051 153C398.147 467.393 483.38 553.966 568.999 640c43.798 44.01 86.579 89.762 132.001 132.089 24.285 22.631 46.636 47.368 70.089 70.822 24.013 24.012 50.121 46.615 72.625 72.089 8.116 9.187 17.599 17.313 26.286 26 9.581 9.581 18.923 21.23 34 17.984 11.67-2.513 18.058-12.003 26.001-19.984 8.616-8.657 20.904-17.047 26.596-28 12.631-24.304-22.284-49.303-37.636-63.83A4889.386 4889.386 0 01728.83 657.039c-13.216-13.966-27.501-28.841-41.845-41.615-6.446-5.741-19.496-14.762-21.667-23.424-2.109-8.412-.318-19.335-.318-28V312c0-38.268 7.983-86.245-20.59-116.83C612.296 160.794 564.473 168 522 168H270c-8.967 0-20.296 1.865-29-.318-9.619-2.412-21.979-19.661-29-26.682l-72-72c-10.672-10.655-23.787-30.472-41-28.522zM41 181.175c-10.39 1.551-22.469 18.56-27.396 26.825C-5.276 239.671 1 281.613 1 317v407c0 22.831-.266 45.56 11.428 66 30.001 52.442 93.474 42 144.572 42h392c18.536 0 37.91 1.669 56-3.155 14.217-3.791 28.317-12.632 38.572-23.131 2.794-2.861 8.87-8.277 8.395-12.714-.383-3.576-4.616-6.644-6.967-9-6.533-6.547-13.242-12.792-20-19.089-24.568-22.895-46.073-49.187-71-71.741-38.707-35.024-73.851-74.459-111-111.166C356.161 496.198 270.324 409.33 184 323c-24.341-24.342-48.82-48.524-73.004-73-9.796-9.914-22.14-18.991-30.617-30-8.521-11.066-16.837-20.632-27.379-30.17-2.978-2.694-7.412-9.34-12-8.655z' fill='%23fff' fill-rule='nonzero'/%3E %3Cpath d='M937 224.439c-24.605 3.843-44.379 22.418-64 36.42-32.172 22.957-65.487 44.561-98 67.116-12.585 8.731-25.565 16.974-38 25.885-4.049 2.901-11.399 6.555-13.397 11.324-1.728 4.128-.603 10.412-.603 14.816v224c0 8.096-3.163 24.652 1.028 31.675 5.513 9.238 21.18 15.636 29.972 21.34 21.392 13.877 41.762 29.486 63 43.652 25.977 17.326 51.3 35.643 77 53.358 18.594 12.817 36.313 25.166 60 20.714 53.66-10.084 45-69.951 45-110.739V320c0-37.487 3.6-79.571-40-93.641-6.93-2.237-14.789-3.046-22-1.92z' fill='%23fff' fill-rule='nonzero'/%3E %3C/svg%3E");
  transform: translate(-50%, -50%);
}

.zg-video-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  margin: 0 1rem;
  gap: 1rem;
}

@media (min-width: 36rem) {
  .zg-video-controls {
    flex-wrap: nowrap;
    gap: 0;
  }
  .zg-video-controls .left-controls {
    flex: 1 1;
    margin-right: 1.875rem;
  }
}
.zg-video-controls .center-controls {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

@media (min-width: 36rem) {
  .zg-video-controls .center-controls {
    width: auto;
  }
  .zg-video-controls .right-controls {
    display: flex;
    flex: 1 1;
    justify-content: flex-end;
    min-width: -webkit-min-content; /* stylelint-disable-line */
  }
}
.zg-video-settings-preview-video video {
  width: 100%;
  transform: scaleX(-1);
}

.zg-video-errors {
  width: 50%;
  margin: auto;
  color: #fff;
}

.zg-video-errors a {
  color: #fff;
}

.progress-bar--audio {
  transition: width 0.15s ease;
}

.zg-video-layout--landscape.zg-video-layout__container {
  justify-items: center;
}

.zg-video-layout--landscape .zg-video-layout__video-container {
  display: grid;
  align-content: center;
  grid-gap: 1rem;
  max-height: calc(100vh - 5.3125rem); /* Fallback for when --vh is not set by viewport_height_controller */
  max-height: calc(1vh * 100 - 5.3125rem);
  max-height: calc(var(--vh, 1vh) * 100 - 5.3125rem);
  padding: 1rem;
}

.zg-video-layout--landscape .zg-video-full-width-container {
  padding: 0;
}

.zg-video-layout--landscape .zg-video-sharing-container .zg-video-full-height-container {
  background: transparent;
}

.zg-video-layout--landscape .zg-video-sharing-container *::before {
  content: none;
}

.zg-video-layout--landscape .zg-video-feedback {
  top: 50%;
  left: 0;
  flex-direction: column;
  margin: 0;
  font-size: 0.875rem;
  transform: translateY(-50%);
}

.zg-video-layout--landscape .zg-video-profile-image {
  width: 28%;
  max-width: 4.6875rem;
  margin-right: 0;
  margin-bottom: 0.25rem;
}

.zg-video-layout--landscape .zg-video-layout__video-container {
  grid-template-rows: minmax(auto, calc(100vh - 8.4375rem - 5.3125rem - 3rem)) 8.4375rem;
  grid-template-columns: minmax(auto, 53.125rem);
}

.zg-video-layout--landscape .zg-video-main-videos-container {
  max-width: 31.25rem;
}

.zg-video-layout--landscape .zg-video-main-videos-container .zg-video-full-height-container {
  display: flex;
  justify-content: space-between;
  background: transparent;
}

.zg-video-layout--landscape .zg-video-main-videos-container .zg-video-full-height-container::before {
  padding-bottom: 0;
}

.zg-video-layout--landscape .zg-video-main-videos-container .zg-participant-track {
  position: relative;
  width: 48%;
}

.zg-video-layout--landscape .zg-video-main-videos-container .zg-participant-local {
  border: none;
}

.zg-video-layout--landscape .zg-video-main-videos-container .zg-video-participant-remote {
  position: absolute;
  top: 0;
  left: 0;
}

.zg-video-layout--landscape .zg-video-main-videos-container .zg-video-participant-remote::before {
  display: block;
  padding-bottom: 56.25%;
  content: "";
}

.zg-video-layout--landscape .zg-video-sharing-inner-container {
  height: 100%;
}

.zg-video-layout--landscape .zg-video-sharing-inner-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 62rem) {
  .zg-video-layout--landscape .zg-video-layout__video-container {
    max-width: calc(233.33333333vh - 12.3958333332rem);
    grid-template-columns: minmax(auto, 71.875rem) 15rem;
    grid-template-rows: auto;
  }
  .zg-video-layout--landscape .zg-video-sharing-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .zg-video-layout--landscape .zg-video-main-videos-container .zg-video-full-height-container {
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .zg-video-layout--landscape .zg-video-main-videos-container .zg-participant-track {
    position: relative;
    width: 100%;
  }
  .zg-video-layout--landscape .zg-video-main-videos-container .zg-participant-track + * {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 62rem) and (max-height: 26.875rem) {
  .zg-video-layout--landscape .zg-video-layout__video-container {
    align-items: center;
    max-width: 68.75rem;
    grid-template-columns: minmax(auto, 71.875rem) 31rem;
  }
  .zg-video-layout--landscape .zg-video-sharing-container {
    max-width: calc(177.77777778vh - 13.0000000002rem);
    justify-self: end;
  }
  .zg-video-layout--landscape .zg-video-main-videos-container .zg-video-full-height-container {
    flex-direction: row;
  }
  .zg-video-layout--landscape .zg-video-main-videos-container .zg-video-participant-remote {
    margin-top: 0;
    margin-left: 1rem;
  }
}
/* stylelint-disable selector-no-qualifying-type */
body[data-theme=ai-coach] .zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header,
.zg-ai-coach-pill .zg-dashboard-container .zg-dashboard-header-row .zg-dashboard-header {
  border: none;
}

body[data-theme=ai-coach] .zg-sidenav-container,
.zg-ai-coach-pill .zg-sidenav-container {
  z-index: 100 !important;
  background: #14373c !important;
}

body[data-theme=ai-coach] .zg-sidenav-header,
.zg-ai-coach-pill .zg-sidenav-header {
  background: #14373c !important;
}

body[data-theme=ai-coach] .zg-dashboard-header,
.zg-ai-coach-pill .zg-dashboard-header {
  z-index: 100 !important;
  background: #14373c !important;
}

body[data-theme=ai-coach] .zg-dashboard-header-user-menu .zg-dropdown-menu__menu,
.zg-ai-coach-pill .zg-dashboard-header-user-menu .zg-dropdown-menu__menu {
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

body[data-theme=ai-coach] .zg-dashboard-container .zg-dashboard-header,
.zg-ai-coach-pill .zg-dashboard-container .zg-dashboard-header {
  top: 0;
  right: 0;
}

body[data-theme=ai-coach] .zg-dashboard-container .zg-dashboard-main-container,
.zg-ai-coach-pill .zg-dashboard-container .zg-dashboard-main-container {
  display: flex;
  padding-bottom: 0;
  overflow: hidden;
  background-color: transparent;
}

@media (min-width: 62rem) {
  body[data-theme=ai-coach] .zg-dashboard-container .zg-dashboard-main-container,
  .zg-ai-coach-pill .zg-dashboard-container .zg-dashboard-main-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
body[data-theme=ai-coach] .zg-skeleton-box,
.zg-ai-coach-pill .zg-skeleton-box {
  background-color: #14373c;
  border-radius: 0.25rem;
  opacity: 0.5;
}

body[data-theme=ai-coach] .zg-skeleton-box:first-child,
.zg-ai-coach-pill .zg-skeleton-box:first-child {
  margin-top: 0.5rem;
}

body[data-theme=ai-coach] .zg-ellipse,
.zg-ai-coach-pill .zg-ellipse {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(4.0625rem);
  border-radius: 50%;
  opacity: 0.2;
}

body[data-theme=ai-coach] .zg-ellipse-left,
.zg-ai-coach-pill .zg-ellipse-left {
  top: 14.0625rem;
  left: -12.125rem;
  width: 34.875rem;
  height: 12.6875rem;
  background: linear-gradient(91.41deg, #00fad7 24.92%, rgba(0, 250, 215, 0) 100.3%);
  transform: rotate(15deg);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ellipse-left,
  .zg-ai-coach-pill .zg-ellipse-left {
    top: 4.9375rem;
    left: -19.4375rem;
    width: 78.1875rem;
    height: 28.5rem;
  }
}
body[data-theme=ai-coach] .zg-ellipse-right,
.zg-ai-coach-pill .zg-ellipse-right {
  top: 15.9375rem;
  left: 0.0625rem;
  width: 41.125rem;
  height: 15.3125rem;
  background: radial-gradient(50% 50% at 50% 50%, #00fad7 0%, rgba(0, 250, 215, 0) 100%);
  transform: rotate(-15deg);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ellipse-right,
  .zg-ai-coach-pill .zg-ellipse-right {
    top: 11.1875rem;
    left: 32.9375rem;
    width: 92.3125rem;
    height: 34.3125rem;
  }
}
body[data-theme=ai-coach] .zg-ellipse-top,
.zg-ai-coach-pill .zg-ellipse-top {
  top: 5.5625rem;
  left: -8.1875rem;
  width: 42.25rem;
  height: 10.75rem;
  background: linear-gradient(180deg, #00fad7 0%, rgba(0, 250, 215, 0) 100%);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ellipse-top,
  .zg-ai-coach-pill .zg-ellipse-top {
    top: -10.0625rem;
    left: -10.5625rem;
    width: 94.8125rem;
    height: 24rem;
  }
}
body[data-theme=ai-coach] .zg-ellipse-bottom,
.zg-ai-coach-pill .zg-ellipse-bottom {
  top: 34.375rem;
  left: -0.6875rem;
  width: 35.6875rem;
  height: 11.125rem;
  background: linear-gradient(180deg, #00fad7 0%, rgba(0, 250, 215, 0) 100%);
  transform: rotate(-15deg);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ellipse-bottom,
  .zg-ai-coach-pill .zg-ellipse-bottom {
    top: 45.625rem;
    left: 6.25rem;
    width: 80.125rem;
    height: 24.875rem;
  }
}
body[data-theme=ai-coach] .zg-modal-blade--left,
.zg-ai-coach-pill .zg-modal-blade--left {
  z-index: 50;
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-link,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-link {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 0.5rem;
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-link:hover,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-link:hover {
  background: rgba(0, 0, 0, 0.2);
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-link--selected,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-link--selected {
  background: rgba(0, 250, 215, 0.2);
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-link--selected:hover,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-link--selected:hover {
  background: rgba(0, 250, 215, 0.2);
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-link-separator,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-link-separator {
  margin: 0.5rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-link-separator:last-child,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-link-separator:last-child {
  display: none;
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-index-close,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-index-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  border: 0.0625rem solid #ebebeb;
  border-radius: 50%;
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-new-converstation,
.zg-ai-coach-pill .zg-modal-blade--left .zg-new-converstation {
  border: 0.0625rem solid #ebebeb;
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-new-converstation .zg-conversation-icon,
.zg-ai-coach-pill .zg-modal-blade--left .zg-new-converstation .zg-conversation-icon {
  margin-right: 0.5rem;
  border: 0.0625rem solid #ebebeb;
  border-radius: 50%;
}

body[data-theme=ai-coach] .zg-modal-blade--left .zg-ai-chat-response-preview,
.zg-ai-coach-pill .zg-modal-blade--left .zg-ai-chat-response-preview {
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-theme=ai-coach] .zg-modal-blade--left,
body[data-theme=ai-coach] .modal-backdrop,
.zg-ai-coach-pill .zg-modal-blade--left,
.zg-ai-coach-pill .modal-backdrop { /* stylelint-disable-line */
  position: absolute;
  top: 3.5rem;
  top: var(--topnav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - 3.5rem);
  height: calc(100vh - var(--topnav-height)); /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 3.5rem);
  height: calc(var(--vh, 1vh) * 100 - var(--topnav-height));
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-modal-blade--left,
  body[data-theme=ai-coach] .modal-backdrop,
  .zg-ai-coach-pill .zg-modal-blade--left,
  .zg-ai-coach-pill .modal-backdrop {
    left: 7.3125rem;
    left: var(--sidenav-width);
    width: calc(100vw - 7.3125rem);
    width: calc(100vw - var(--sidenav-width));
    transition: opacity 0.15s linear, width 0.2s ease, left 0.2s ease;
  }
  body[data-theme=ai-coach] .zg-modal-blade--left.slim,
  body[data-theme=ai-coach] .modal-backdrop.slim,
  .zg-ai-coach-pill .zg-modal-blade--left.slim,
  .zg-ai-coach-pill .modal-backdrop.slim { /* stylelint-disable-line */
    left: 7.3125rem;
    left: var(--sidenav-width);
    width: calc(100vw - 7.3125rem);
    width: calc(100vw - var(--sidenav-width));
  }
  body[data-theme=ai-coach] .zg-modal-blade--left.no-transition,
  body[data-theme=ai-coach] .modal-backdrop.no-transition,
  .zg-ai-coach-pill .zg-modal-blade--left.no-transition,
  .zg-ai-coach-pill .modal-backdrop.no-transition { /* stylelint-disable-line */
    transition: none;
  }
}
body[data-theme=ai-coach] .zg-modal-blade--left .modal-dialog,
body[data-theme=ai-coach] .modal-backdrop .modal-dialog,
.zg-ai-coach-pill .zg-modal-blade--left .modal-dialog,
.zg-ai-coach-pill .modal-backdrop .modal-dialog { /* stylelint-disable-line */
  position: absolute;
  scrollbar-color: rgba(255, 255, 255, 0.7) transparent;
}

body[data-theme=ai-coach] .zg-modal-blade--left .modal-dialog .modal-content,
body[data-theme=ai-coach] .modal-backdrop .modal-dialog .modal-content,
.zg-ai-coach-pill .zg-modal-blade--left .modal-dialog .modal-content,
.zg-ai-coach-pill .modal-backdrop .modal-dialog .modal-content { /* stylelint-disable-line */
  color: #fff;
  background: rgba(20, 55, 60, 0.9);
  border: none;
  box-shadow: inset 0.625rem 0 3.125rem rgba(0, 0, 0, 0.1);
}

body[data-theme=ai-coach] .zg-modal-blade--left .modal-dialog .modal-content *,
body[data-theme=ai-coach] .modal-backdrop .modal-dialog .modal-content *,
.zg-ai-coach-pill .zg-modal-blade--left .modal-dialog .modal-content *,
.zg-ai-coach-pill .modal-backdrop .modal-dialog .modal-content * {
  color: #fff;
}

body[data-theme=ai-coach] .modal-backdrop,
.zg-ai-coach-pill .modal-backdrop { /* stylelint-disable-line */
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
}

body[data-theme=ai-coach] .zg-ai-coach-header,
.zg-ai-coach-pill .zg-ai-coach-header {
  position: fixed;
  top: 3.5rem;
  top: var(--topnav-height);
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 1rem 1.5rem;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-coach-header,
  .zg-ai-coach-pill .zg-ai-coach-header {
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    left: 7.3125rem;
    left: var(--sidenav-width);
    width: calc(100vw - 7.3125rem);
    width: calc(100vw - var(--sidenav-width));
    transition: width 0.2s ease, left 0.2s ease, -webkit-backdrop-filter 0.6s ease-in-out;
    transition: width 0.2s ease, left 0.2s ease, backdrop-filter 0.6s ease-in-out;
    transition: width 0.2s ease, left 0.2s ease, backdrop-filter 0.6s ease-in-out, -webkit-backdrop-filter 0.6s ease-in-out;
  }
  body[data-theme=ai-coach] .zg-ai-coach-header.slim,
  .zg-ai-coach-pill .zg-ai-coach-header.slim {
    left: 7.3125rem;
    left: var(--sidenav-width);
    width: calc(100vw - 7.3125rem);
    width: calc(100vw - var(--sidenav-width));
  }
  body[data-theme=ai-coach] .zg-ai-coach-header.no-transition,
  .zg-ai-coach-pill .zg-ai-coach-header.no-transition {
    transition: none;
  }
}
body[data-theme=ai-coach] .zg-ai-coach-header .zg-ai-icon-container,
.zg-ai-coach-pill .zg-ai-coach-header .zg-ai-icon-container {
  transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
}

body[data-theme=ai-coach] .zg-ai-coach-header-content,
.zg-ai-coach-pill .zg-ai-coach-header-content {
  display: none;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  gap: 2.875rem;
  transition: gap 0.6s ease-in-out;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-coach-header-content,
  .zg-ai-coach-pill .zg-ai-coach-header-content {
    display: flex;
  }
}
body[data-theme=ai-coach] .zg-ai-coach-header-content--collapse,
.zg-ai-coach-pill .zg-ai-coach-header-content--collapse {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-coach-header-content--collapse,
  .zg-ai-coach-pill .zg-ai-coach-header-content--collapse {
    display: none;
  }
}
body[data-theme=ai-coach] .zg-ai-coach-header-content--collapse .zg-ai-icon .zg-ai-icon-container,
.zg-ai-coach-pill .zg-ai-coach-header-content--collapse .zg-ai-icon .zg-ai-icon-container {
  width: 1.5rem;
  height: 1.5rem;
}

body[data-theme=ai-coach] .zg-ai-coach-header-content--collapse .zg-ai-coach-header-text-container,
.zg-ai-coach-pill .zg-ai-coach-header-content--collapse .zg-ai-coach-header-text-container {
  display: none;
}

body[data-theme=ai-coach] .zg-ai-coach-header-text-container,
.zg-ai-coach-pill .zg-ai-coach-header-text-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  opacity: 1;
  gap: 0.5rem;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-coach-header-text-container,
  .zg-ai-coach-pill .zg-ai-coach-header-text-container {
    width: 20rem;
    height: 5.625rem;
    white-space: nowrap;
  }
}
body[data-theme=ai-coach] .zg-ai-coach-header--compact,
.zg-ai-coach-pill .zg-ai-coach-header--compact {
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}

body[data-theme=ai-coach] .zg-ai-coach-header--compact .zg-ai-coach-header-content,
.zg-ai-coach-pill .zg-ai-coach-header--compact .zg-ai-coach-header-content {
  flex-direction: row;
  justify-content: center;
  gap: 1.9375rem;
  transition-duration: 0.5s;
}

body[data-theme=ai-coach] .zg-ai-coach-header--compact .zg-ai-coach-header-content .zg-ai-coach-header-text-container,
.zg-ai-coach-pill .zg-ai-coach-header--compact .zg-ai-coach-header-content .zg-ai-coach-header-text-container {
  width: 20rem;
  height: 5.625rem;
  text-align: start;
  transition: height 0.6s step-start, width 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

body[data-theme=ai-coach] .zg-ai-coach-header--compact .zg-ai-coach-header-content .zg-ai-icon .zg-ai-icon-container,
.zg-ai-coach-pill .zg-ai-coach-header--compact .zg-ai-coach-header-content .zg-ai-icon .zg-ai-icon-container {
  width: 5.625rem;
  height: 5.625rem;
}

body[data-theme=ai-coach] .zg-ai-coach-header--compacting .zg-ai-coach-header-content,
.zg-ai-coach-pill .zg-ai-coach-header--compacting .zg-ai-coach-header-content {
  flex-direction: column;
  gap: 0;
}

body[data-theme=ai-coach] .zg-ai-coach-header--compacting .zg-ai-coach-header-text-container,
.zg-ai-coach-pill .zg-ai-coach-header--compacting .zg-ai-coach-header-text-container {
  width: 0 !important;
  height: 0 !important;
  text-align: center !important;
  opacity: 0;
  transition: height 0.6s ease-in-out, width 0.6s step-end, opacity 0.6s ease-in-out !important;
}

body[data-theme=ai-coach] .zg-ai-coach-header-back-link,
.zg-ai-coach-pill .zg-ai-coach-header-back-link {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
}

body[data-theme=ai-coach] .zg-ai-coach-content-container,
.zg-ai-coach-pill .zg-ai-coach-content-container {
  background: rgba(20, 55, 60, 0.01);
}

body[data-theme=ai-coach] .zg-ai-messages-container,
.zg-ai-coach-pill .zg-ai-messages-container {
  position: relative;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 11rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #fff;
  gap: 1rem;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-message-container,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-message-container {
  display: flex;
  flex-direction: column;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-message,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-message {
  width: -moz-max-content;
  width: max-content;
  max-width: 90%;
  padding: 1rem;
  border: 0.0625rem solid #fff;
  border-radius: 0.5rem;
  scroll-margin-bottom: 7.375rem;
}

@media (min-width: 62rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-message,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-message {
    max-width: 70%;
  }
}
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-message.zg-ai-coach-message-text,
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-message .zg-ai-coach-message-text,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-message.zg-ai-coach-message-text,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-message .zg-ai-coach-message-text {
  white-space: pre-wrap;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-user-message,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-user-message {
  background-color: rgba(0, 250, 215, 0.05);
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: rgba(20, 55, 60, 0.2);
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-link,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-link {
  display: flex;
  align-items: center;
  align-self: flex-end;
  font-weight: 600;
  gap: 1rem;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--error,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--error {
  white-space: normal !important; /* stylelint-disable-line declaration-no-important */
  background-color: rgba(209, 59, 66, 0.5);
  border: 0.0625rem solid #d13b42;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--error-message,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--error-message {
  font-family: "Archia", sans-serif;
  font-weight: 600;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--warning,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--warning {
  background-color: rgba(255, 155, 64, 0.5);
  border: 0.0625rem solid #ff9b40;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--warning-message,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--warning-message {
  font-family: "Archia", sans-serif;
  font-weight: 600;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  max-width: initial;
  white-space: normal;
  border: 0.0625rem solid #00fad7;
  gap: 0.5rem;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active {
  position: relative;
  margin-bottom: -1rem;
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 0.375rem 0 0 rgba(20, 55, 60, 0.2);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active {
    margin-bottom: -0.625rem;
  }
}
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active::before, body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active::after,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active::before,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active::after {
  position: absolute;
  bottom: -0.4375rem;
  z-index: 1;
  width: 1rem;
  height: 0.5rem;
  background-color: transparent;
  border: 0.0625rem solid #00fad7;
  border-top: none;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active::before, body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active::after,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active::before,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active::after {
    content: "";
  }
}
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active::before,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active::before {
  left: -1rem;
  border-left: none;
  border-bottom-right-radius: 1rem;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active::after,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active::after {
  right: -1rem;
  border-right: none;
  border-bottom-left-radius: 1rem;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active .zg-link > span,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active .zg-link > span {
  display: none;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point--active .zg-link::after,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point--active .zg-link::after {
  content: "Tell me less about this";
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point:nth-child(6n-5)::before,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point:nth-child(6n-5)::before {
  border-bottom: none;
  border-radius: 0;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response--point:nth-child(6n-1)::after,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response--point:nth-child(6n-1)::after {
  border-bottom: none;
  border-radius: 0;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 90%;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 1rem;
  gap: 1rem;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid {
    width: -moz-max-content;
    width: max-content;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, calc(33.3333333333% - 0.75rem));
  }
}
@media (min-width: 62rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid {
    max-width: 70%;
  }
}
@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid--pros-cons,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid--pros-cons {
    grid-template-columns: repeat(2, 1fr);
  }
}
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up {
  grid-column: 1/-1;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point {
  position: relative;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
}
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::before, body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::after,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::before,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::after {
  position: absolute;
  top: 0;
  height: 100%;
  border-top: 0.0625rem solid #00fad7;
  border-radius: 0.5rem;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::before,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::before {
  left: 0;
  border-top-right-radius: 0;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::after,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up .zg-ai-coach-response--point::after {
  right: 0;
  border-top-left-radius: 0;
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-4) .zg-ai-coach-response--point,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-4) .zg-ai-coach-response--point {
    border-top-left-radius: 0;
  }
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-4) .zg-ai-coach-response--point::after,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-4) .zg-ai-coach-response--point::after {
    width: calc(66.6666666667% - 0.1875rem);
    content: "";
  }
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-2) .zg-ai-coach-response--point::before, body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-2) .zg-ai-coach-response--point::after,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-2) .zg-ai-coach-response--point::before,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n-2) .zg-ai-coach-response--point::after {
    width: calc(33.3333333333% - 0.1875rem);
    content: "";
  }
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n) .zg-ai-coach-response--point,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n) .zg-ai-coach-response--point {
    border-top-right-radius: 0;
  }
  body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n) .zg-ai-coach-response--point::before,
  .zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-response-grid .zg-ai-coach-follow-up:nth-child(6n) .zg-ai-coach-response--point::before {
    width: calc(66.6666666667% - 0.1875rem);
    content: "";
  }
}
body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-message-save-button,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-message-save-button {
  position: absolute;
  top: 50%;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: translate(100%, -50%);
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-message-save-button .zg-save-message-button,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-message-save-button .zg-save-message-button {
  background-color: transparent;
  border: none;
}

body[data-theme=ai-coach] .zg-ai-messages-container .zg-ai-coach-prompt,
.zg-ai-coach-pill .zg-ai-messages-container .zg-ai-coach-prompt {
  align-self: center;
  white-space: normal;
  background-color: rgba(20, 55, 60, 0.2);
}

body[data-theme=ai-coach] .zg-ai-coach-message-input-row,
.zg-ai-coach-pill .zg-ai-coach-message-input-row {
  height: 6rem;
  min-height: 6rem;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input,
.zg-ai-coach-pill .zg-ai-coach-message-input {
  position: fixed;
  bottom: 5.5rem;
  bottom: var(--bottomnav-height);
  left: 0;
  z-index: 50;
  width: 100%;
  height: 5rem;
  padding: 1rem;
  transition: width 0.2s ease, left 0.2s ease;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}

@media (min-width: 48rem) {
  body[data-theme=ai-coach] .zg-ai-coach-message-input,
  .zg-ai-coach-pill .zg-ai-coach-message-input {
    left: 7.3125rem;
    left: var(--sidenav-width);
    bottom: 0;
    width: calc(100vw - 7.3125rem);
    width: calc(100vw - var(--sidenav-width));
  }
  body[data-theme=ai-coach] .zg-ai-coach-message-input.slim,
  .zg-ai-coach-pill .zg-ai-coach-message-input.slim { /* stylelint-disable-line */
    left: 7.3125rem;
    left: var(--sidenav-width);
    width: calc(100vw - 7.3125rem);
    width: calc(100vw - var(--sidenav-width));
  }
  body[data-theme=ai-coach] .zg-ai-coach-message-input.no-transition,
  .zg-ai-coach-pill .zg-ai-coach-message-input.no-transition { /* stylelint-disable-line */
    transition: none;
  }
}
@media (min-width: 62rem) {
  body[data-theme=ai-coach] .zg-ai-coach-message-input,
  .zg-ai-coach-pill .zg-ai-coach-message-input {
    padding: 1rem 1.5rem;
  }
}
body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body {
  padding-left: 1rem;
  color: #fff;
  background: transparent;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.5rem;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body::-moz-placeholder, .zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body::-moz-placeholder {
  color: #fff;
  opacity: 80%;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body::placeholder,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body::placeholder {
  color: #fff;
  opacity: 80%;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field { /* stylelint-disable-line */ }

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:hover,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:hover {
  border-color: #00fad7;
  box-shadow: none;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:focus,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:focus {
  border-color: #00fad7;
  box-shadow: 0 0 0 0.2rem rgba(0, 250, 215, 0.3);
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:disabled,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:disabled {
  cursor: not-allowed;
  background-color: rgba(235, 235, 235, 0.2);
  opacity: 0.5;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:disabled:hover,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-message-body.form-control-message-field:disabled:hover {
  box-shadow: none;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input-label,
.zg-ai-coach-pill .zg-ai-coach-message-input-label {
  position: absolute;
  color: #fff;
  transform: translateY(calc(-100% - 0.25rem));
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-send-message,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-send-message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  width: initial;
  height: auto;
  height: initial;
  border: 0.0625rem solid #ebebeb;
  border-radius: 50%;
}

body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-send-message:hover, body[data-theme=ai-coach] .zg-ai-coach-message-input .zg-ai-coach-send-message:focus,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-send-message:hover,
.zg-ai-coach-pill .zg-ai-coach-message-input .zg-ai-coach-send-message:focus {
  background-color: rgba(255, 255, 255, 0.5);
}

body[data-theme=ai-coach] .zg-ai-coach-loading-container,
.zg-ai-coach-pill .zg-ai-coach-loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  scroll-margin-bottom: 6rem;
}

body[data-theme=ai-coach] .zg-ai-coach-loading-container .zg-ai-coach-loading-mask,
.zg-ai-coach-pill .zg-ai-coach-loading-container .zg-ai-coach-loading-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 1rem;
  overflow-x: clip;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

body[data-theme=ai-coach] .zg-ai-coach-loading-container .zg-ai-coach-loading-background,
.zg-ai-coach-pill .zg-ai-coach-loading-container .zg-ai-coach-loading-background {
  position: relative;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
}

body[data-theme=ai-coach] .zg-ai-coach-loading-container .zg-ai-coach-loading-background .zg-ai-coach-loading-stroke,
.zg-ai-coach-pill .zg-ai-coach-loading-container .zg-ai-coach-loading-background .zg-ai-coach-loading-stroke {
  position: absolute;
  left: -50%;
  width: 6.25rem;
  height: 0.125rem;
  background: linear-gradient(90deg, rgba(0, 250, 215, 0) 0%, #00fad7 131.58%);
  border-radius: 0.125rem;
  animation: ai-coach-loading 2.25s ease-in-out infinite;
}

body[data-theme=ai-coach] .zg-ai-coach-loading-container .zg-ai-coach-loading-background .zg-ai-coach-loading-stroke::before,
.zg-ai-coach-pill .zg-ai-coach-loading-container .zg-ai-coach-loading-background .zg-ai-coach-loading-stroke::before {
  position: absolute;
  top: -0.25rem;
  right: -2.6875rem;
  bottom: -0.25rem;
  left: 2.6875rem;
  z-index: 100;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 250, 215, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
}

@keyframes ai-coach-loading {
  0% {
    left: -100%;
    transform: rotate(0deg);
  }
  50% {
    left: 100%;
    transform: rotate(0deg);
  }
  50.001% {
    left: 150%;
    transform: rotate(180deg);
  }
  99.999% {
    left: -50%;
    transform: rotate(180deg);
  }
  100% {
    left: -100%;
    transform: rotate(0deg);
  }
}
body[data-theme=ai-coach] .zg-ai-coach-scroll-button,
.zg-ai-coach-pill .zg-ai-coach-scroll-button {
  position: fixed;
  right: 1rem;
  bottom: 14rem;
  z-index: 91;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: all;
  cursor: pointer;
  background: rgba(20, 55, 60, 0.2);
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}

body[data-theme=ai-coach] .zg-ai-coach-scroll-button--pill,
.zg-ai-coach-pill .zg-ai-coach-scroll-button--pill {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.zg-ai-icon .zg-ai-icon-container {
  position: relative;
  width: 11.25rem;
  height: 11.25rem;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 66.6666666667%;
  margin: auto;
  animation: zg-ai-logo-translate 5s infinite ease-in-out;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-background {
  z-index: -2;
  background: rgba(255, 255, 255, 0.01);
  border: 0.0625rem solid #00fad7;
  box-shadow: 0 0 2.5rem rgba(0, 250, 215, 0.9);
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-1-blob {
  background: radial-gradient(100% 100% at 50% 100%, rgba(0, 100, 255, 0) 0%, #0064ff 100%);
  opacity: 0.5;
  transform: rotate(90deg);
  animation: zg-ai-icon-rotate-1 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-2-blob {
  background: radial-gradient(100% 100% at 50% 100%, rgba(0, 250, 215, 0) 0%, #00fad7 100%);
  opacity: 0.5;
  transform: rotate(-180deg);
  animation: zg-ai-icon-rotate-2 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-3-blob {
  background: radial-gradient(100% 100% at 50% 100%, rgba(20, 55, 60, 0) 0%, #14373c 100%);
  opacity: 0.5;
  transform: rotate(-90deg);
  animation: zg-ai-icon-rotate-3 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-4-blob {
  background: radial-gradient(100% 100% at 50% 100%, rgba(0, 250, 215, 0) 0%, #00fad7 100%);
  opacity: 0.5;
  animation: zg-ai-icon-rotate-4 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-middle-blue-blob {
  background: radial-gradient(50% 50% at 50% 50%, #00fad7 0%, rgba(0, 250, 215, 0) 100%);
  opacity: 0.8;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-stroke {
  background-color: #0064ff;
  background-clip: padding-box;
  border: solid 0.0625rem transparent;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-stroke::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -0.125rem;
  content: "";
  border-radius: inherit;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-stroke-1::before {
  background: linear-gradient(to right, rgba(0, 100, 255, 0) 50%, #0064ff);
  animation: zg-ai-icon-rotate-1 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-stroke-2::before {
  background: linear-gradient(to bottom, rgba(0, 250, 215, 0) 50%, #00fad7);
  animation: zg-ai-icon-rotate-2 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-stroke-3::before {
  background: linear-gradient(to left, rgba(20, 55, 60, 0) 50%, #14373c);
  animation: zg-ai-icon-rotate-3 5s infinite linear;
}

.zg-ai-icon .zg-ai-icon-container .zg-ai-icon-stroke-4::before {
  background: linear-gradient(to top, rgba(0, 250, 215, 0) 50%, #00fad7);
  animation: zg-ai-icon-rotate-4 5s infinite linear;
}

@keyframes zg-ai-logo-translate {
  0% {
    transform: translate(0, -7%);
  }
  50% {
    transform: translate(0, 5%);
  }
  100% {
    transform: translate(0, -7%);
  }
}
@keyframes zg-ai-icon-rotate-1 {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(450deg);
  }
}
@keyframes zg-ai-icon-rotate-2 {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes zg-ai-icon-rotate-3 {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(270deg);
  }
}
@keyframes zg-ai-icon-rotate-4 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.zg-ai-coach-pill-container {
  position: absolute;
  bottom: 1rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 48rem) {
  .zg-ai-coach-pill-container {
    left: 14.75rem;
    width: calc(100vw - 14.75rem);
    padding: 0 0.75rem;
    transition: width 0.2s ease, left 0.2s ease;
  }
  .zg-ai-coach-pill-container.slim { /* stylelint-disable-line */
    left: 4rem;
    width: calc(100vw - 4rem);
  }
  .zg-ai-coach-pill-container.no-transition { /* stylelint-disable-line */
    transition: none;
  }
}
.zg-ai-coach-pill-container .zg-ai-coach-pill {
  position: relative;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 45rem;
  min-height: 9.25rem;
  padding: 1rem;
  background-color: #14373c;
  border-radius: 1rem;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .zg-ai-coach-pill-container .zg-ai-coach-pill {
    flex-direction: row;
    padding: 1rem 2rem;
    gap: 2rem;
    border-radius: 4.625rem;
  }
}
.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-title {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-coach-message-input {
  position: static;
  position: initial;
  height: auto;
  height: initial;
  -webkit-backdrop-filter: initial;
          backdrop-filter: initial;
  padding: 0;
}

@media (min-width: 48rem) {
  .zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-coach-message-input {
    width: 100%;
  }
  .zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-coach-message-input.slim { /* stylelint-disable-line */
    width: 100%;
  }
}
@media (max-width: 47.98rem) {
  .zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-coach-message-input .zg-ai-coach-message-input-label {
    position: static;
    position: initial;
    display: inline;
  }
}
.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-messages-container {
  margin-top: 0;
  margin-bottom: 0;
  gap: 0;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-messages-container .zg-ai-coach-loading-container > .zg-ai-coach-loading-mask {
  width: 100%;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-messages-container .zg-ai-coach-message {
  width: 100%;
  max-width: none;
  max-width: initial;
  max-height: 10.5rem;
  padding: 0.5rem;
  margin-right: 0.5rem;
  overflow-y: scroll;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-coach-pill-chat-link {
  margin-top: 0.5rem;
  font-weight: 600;
}

@media (min-width: 48rem) {
  .zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-content-container .zg-ai-coach-pill-chat-link {
    margin-top: 1rem;
  }
}
.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-icon > .zg-ai-icon-container {
  width: 2.8125rem;
  height: 2.8125rem;
}

@media (min-width: 48rem) {
  .zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-icon > .zg-ai-icon-container {
    width: 4.6875rem;
    height: 4.6875rem;
  }
}
.zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-close-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  fill: #fff;
}

@media (min-width: 48rem) {
  .zg-ai-coach-pill-container .zg-ai-coach-pill .zg-ai-coach-pill-close-button {
    top: 0;
    right: 0;
    fill: #000;
  }
}
.zg-ai-coach-pill-container .zg-ai-coach-pill--compact {
  flex-direction: row;
  width: auto;
  width: initial;
  min-height: 0;
  min-height: initial;
  gap: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 4.625rem;
  transition: transform 250ms cubic-bezier(0.33, 0, 0, 1);
  transform: scale(1);
}

.zg-ai-coach-pill-container .zg-ai-coach-pill--compact:hover {
  transform: scale(1.05);
}

.zg-ai-coach-pill-container .zg-ai-coach-pill--compact .zg-ai-coach-pill-title {
  display: inline;
  display: initial;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill--compact .zg-ai-coach-pill-content-container {
  display: none;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill--compact .zg-ai-icon > .zg-ai-icon-container {
  width: 1.5rem;
  height: 1.5rem;
}

.zg-ai-coach-pill-container .zg-ai-coach-pill--compact .zg-ai-coach-pill-close-button {
  display: none;
}

body[data-theme=ai-coach] .zg-dashboard-header-logo {
  background-image: url(/assets/dark-logo-438085ac07c7679e4e3f61384a652b287418f7dbf13dd5d5d1d13b9b4b378074.svg) !important;
}

body[data-theme=ai-coach] .zg-dashboard-header svg.menu-icon {
  color: #fff;
  fill: #fff;
}

body[data-theme=ai-coach] .zg-dashboard-header svg.menu-icon path {
  fill: #fff;
}

body[data-theme=ai-coach] .zg-dashboard-nav-modal__content {
  background: #14373c;
}

/* stylelint-enable selector-no-qualifying-type */
.zg-fund-action-card {
  background: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.75rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

#zg-fund-index .rings {
  width: 7.5rem;
  height: 7.5rem;
  position: relative;
}

#zg-fund-index .rings svg,
#zg-fund-index .rings circle {
  width: 7.5rem;
  height: 7.5rem;
}

#zg-fund-index .rings svg {
  transform: rotate(-90deg);
}

#zg-fund-index .rings svg circle {
  position: absolute;
  fill: none;
  stroke-width: 5;
  transform: translate(0.3125rem, 0.3125rem); /* This is to position it in the center */
  stroke-dasharray: 19.4375rem;
  stroke-linecap: round;
}

#zg-fund-index .rings svg circle.circle-bg {
  stroke-dashoffset: 0;
  stroke: #ebebeb;
}

#zg-fund-index .rings svg circle.circle-blue {
  stroke-dashoffset: calc(19.4375rem - 19.4375rem * var(--pc) / 100);
  stroke: #0064ff;
}

#zg-fund-index .rings .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#zg-fund-index .rings .number h3, #zg-fund-index .rings .number .h3,
#zg-fund-index .rings .number h4,
#zg-fund-index .rings .number .h4 {
  margin-bottom: 0;
  text-align: center;
}

#zg-fund-index .make-me-round {
  border-radius: 1rem;
}

#zg-fund-index .make-me-bottom-round {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

#zg-fund-index .card {
  border-radius: 1rem;
  height: 29.75rem;
}

#zg-fund-index .card .card-img-overlay {
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: inherit;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

#zg-fund-index .zg-circular-progress {
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 50%;
  border: 0.3125rem #ebebeb solid;
  margin: auto;
}

#zg-fund-index .zg-circular-progress .inner-text {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  place-content: center center;
}

#zg-fund-index .no-scroll-bar {
  overflow-x: scroll;
  padding-bottom: 2rem;
  margin-bottom: -2rem;
}

#zg-fund-index .no-scroll-bar::-webkit-scrollbar, #zg-fund-index .no-scroll-bar::-webkit-scrollbar-track, #zg-fund-index .no-scroll-bar::-webkit-scrollbar-thumb, #zg-fund-index .no-scroll-bar::-webkit-scrollbar-corner, #zg-fund-index .no-scroll-bar::-webkit-scrollbar-button, #zg-fund-index .no-scroll-bar::-webkit-scrollbar-track-piece, #zg-fund-index .no-scroll-bar::-webkit-resizer {
  width: 0 !important;
  height: 0 !important;
}

#zg-fund-index .zg-mentee-fund-content-container {
  height: 22.5rem;
  padding: 1rem;
  background: rgb(240 246 255/var(--tw-bg-opacity));
  border: 0.0625rem solid #ebebeb;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

#zg-fund-index .zg-mentee-fund-content-container.carousel-container {
  height: 26rem;
}

#zg-fund-index .zg-mentee-fund-content-container .text {
  height: auto;
  overflow: hidden;
}

#zg-fund-index .expandable-col {
  transition: all 0.2s ease;
}

#zg-fund-index .expandable-col .rounded-circle {
  cursor: pointer;
}

#zg-fund-index .expandable-col .rounded-circle > svg {
  transform: rotate(0);
}

#zg-fund-index .expandable-col.col-xxl-6 .rounded-circle > svg {
  transform: rotate(180deg);
}

#zg-fund-index .rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#zg-fund-index .rounded-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

#zg-fund-index .zg-mentee-fund-image-content-container {
  padding: 1rem;
  background: #fff;
  border: 0.0625rem solid #ebebeb;
  border-left: 0;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: -0.75rem;
}

@media (max-width: 87.48rem) {
  #zg-fund-index .zg-mentee-fund-image-content-container > h1, #zg-fund-index .zg-mentee-fund-image-content-container > .h1 {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
  #zg-fund-index .zg-mentee-fund-image-content-container > p {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}
#zg-fund-index .zg-mentee-fund-image-content-container--carousel {
  padding: 1rem;
  margin-top: -1rem;
  padding-top: 2rem;
  background: #fff;
  border: 0.0625rem solid #ebebeb;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 87.48rem) {
  #zg-fund-index .zg-mentee-fund-image-content-container--carousel > h1, #zg-fund-index .zg-mentee-fund-image-content-container--carousel > .h1 {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
  #zg-fund-index .zg-mentee-fund-image-content-container--carousel > p {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}
#zg-fund-index .expandable-img-col.expanded .rounded-circle > svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

#zg-fund-index .zg-fund-cards,
#zg-fund-index .zg-fund-scholars {
  display: none;
}

@media (min-width: 87.5rem) {
  #zg-fund-index .zg-fund-cards,
  #zg-fund-index .zg-fund-scholars {
    display: block;
  }
}
#zg-fund-index .zg-fund-cards-split,
#zg-fund-index .zg-fund-scholars-split {
  display: none;
}

@media (min-width: 36rem) {
  #zg-fund-index .zg-fund-cards-split,
  #zg-fund-index .zg-fund-scholars-split {
    display: block;
  }
}
@media (min-width: 87.5rem) {
  #zg-fund-index .zg-fund-cards-split,
  #zg-fund-index .zg-fund-scholars-split {
    display: none;
  }
}
#zg-fund-index .zg-fund-cards-carousel,
#zg-fund-index .zg-fund-scholars-carousel {
  display: block;
}

@media (min-width: 36rem) {
  #zg-fund-index .zg-fund-cards-carousel,
  #zg-fund-index .zg-fund-scholars-carousel {
    display: none;
  }
}
#zg-fund-index .carousel-inner {
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

#zg-fund-index .background-scholar--1 {
  background-image: url(/assets/thumbnails/scholar_1-a00eca08b288493b86988789d4b68f42774731947c5d959bed36dc867cd9b580.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

#zg-fund-index .background-scholar--2 {
  background-image: url(/assets/thumbnails/scholar_2-f9d84932600291974aad2114e721b3160c3dca708dc393c0c03cab25d703b15b.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

#zg-fund-index .background-scholar--3 {
  background-image: url(/assets/thumbnails/scholar_3-09a266a4c814dd2b318392180f463ff4e1cadbf7bf01a193415e9d0ec7200990.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#zg-fund-index .background-scholar--4 {
  background-image: url(/assets/thumbnails/scholar_4-0bb883f2940e5256011abda22f41a2bde195f3ccc57037c74fe7f4bcb580f5b1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.background-mentee-case-study--1 {
  background-image: url(/assets/thumbnails/mentee_case_study_1-916c5d32bb8283e326098393fa5dbf52844063c98b0c4b81b03e252430dec6a1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.background-mentee-case-study--2 {
  background-image: url(/assets/thumbnails/mentee_case_study_2-11983550f6106365f658c4355983ee97a33ff1338b36e7f8bba4b16c15196d8b.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.background-mentee-case-study--3 {
  background-image: url(/assets/thumbnails/mentee_case_study_3-88d01d9cd1d41a726b04cd05a45c7b4b9594e38e55721d49bbcab93ebf9526ae.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.background-mentee-case-study--4 {
  background-image: url(/assets/thumbnails/mentee_case_study_4-66e390ca2c92e325bf5333285774b11de4846638bba4e3c8c3b4b6ca403840bd.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.background-career-case-study--1 {
  background-image: url(/assets/thumbnails/career_case_study_1-fbd539f106cc0c2b1841b988735f864e60f2dac23a7656ca1e2c8467aa5de9ea.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.background-career-case-study--2 {
  background-image: url(/assets/thumbnails/career_case_study_2-285e93f1547522496cafd5a37b8a5359fc41e5baa806cb8cb296035b52dcd1c2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.background-career-case-study--3 {
  background-image: url(/assets/thumbnails/career_case_study_3-227d1b206c23a798377e69f1ea5add667c17028b5a395299faf6b330ac8359c2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.background-career-case-study--4 {
  background-image: url(/assets/thumbnails/career_case_study_4-9b70da869aaabbeeeb243ae2e4779a1f96af577b844cfa7a89fed489993273e1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.zg-custom-select {
  position: relative;
  /* hide original SELECT element: */
}

.zg-custom-select select {
  display: none;
}

.zg-custom-select .select-selected { /* stylelint-disable-line */
  max-width: 8.4375rem;
  height: auto;
  padding: 0.25rem 2rem 0.25rem 0.5rem;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 1rem;
  /* Style the arrow inside the select element: */
  /* Point the arrow upwards when the select box is open (active): */
}

.zg-custom-select .select-selected::after {
  position: absolute;
  top: 0.375rem;
  right: 0.625rem;
  width: 0.75rem;
  height: 0.9375rem;
  content: "";
  background: url(/assets/icons/carbon/chevron--down-793492fb4ae42ddf0bf51d71863a41e6bec57155c9df7b35ddb4fe2f6b004451.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.zg-custom-select .select-selected.select-arrow-active:after { /* stylelint-disable-line */
  top: 0.375rem;
  right: 0.4375rem;
  transform: rotate(180deg);
}

.zg-custom-select .select-selected.has-selected-option {
  background-color: #00fad7;
}

.zg-custom-select .select-items { /* stylelint-disable-line */
  position: absolute;
  top: 110%;
  right: 0;
  left: 0;
  z-index: 99;
  width: 20rem;
  background: #fff;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  max-height: 230px;
  overflow: scroll;
  cursor: pointer;
}

@media (max-width: 35.98rem) {
  .zg-custom-select .select-items {
    position: fixed;
    width: auto;
    margin: 10px 16px;
    top: auto;
  }
}
.zg-custom-select .select-items.select-hide { /* stylelint-disable-line */
  display: none;
}

.zg-custom-select .select-items div {
  position: relative;
  padding: 0.5rem 1rem;
  border: 0.0625rem solid transparent;
}

.zg-custom-select .select-items div:first-child {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.zg-custom-select .select-items div:last-child {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.zg-custom-select .select-items div:hover {
  background-color: #00fad7;
}

.zg-custom-select .select-items .select-optgroup {
  cursor: none;
  pointer-events: none !important;
  color: #aaa;
  font-size: 0.875rem;
  padding: 0.5rem 1rem 0 1rem;
}

.zg-custom-select .select-items .same-as-selected { /* stylelint-disable-line */
  background-color: #00fad7;
}

.zg-custom-select .select-items .same-as-selected::after {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 0.75rem;
  height: 0.9375rem;
  content: "";
  background: url(/assets/icons/carbon/checkmark-6bbd04512570a0afe63aa87d36814321266ac6cd9c0d8dab9847526a0f7a64f8.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring::after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.zg-companies-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .zg-companies-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }
}
.zg-h1 {
  font-family: Archia, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 4.5rem;
}

@media (min-width: 48rem) {
  .zg-h1 {
    font-size: 4rem;
    line-height: 6rem;
  }
}
@media (min-width: 75rem) {
  .zg-h1 {
    font-size: 5rem;
    line-height: 7.5rem;
  }
}
@media (min-width: 48rem) {
  .kanban-board {
    grid-template-columns: repeat(var(--kanban-board-columns), 1fr) !important;
  }
}
.kanban-board li[data-kanban-target=column] li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.kanban-board li[data-kanban-target=column] li a {
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

li[data-id][class*=tw-cursor-move] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

li[data-id][class*=tw-cursor-move] a {
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.kanban-board-dragging {
  box-shadow: 0 0.9375rem 1.5625rem rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 50;
  opacity: 1 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sortable-chosen {
  opacity: 1 !important;
}

.sortable-ghost {
  opacity: 0 !important; /* hides the original placeholder without affecting layout */
  transform: none !important; /* cancel any scale/rotation */
  box-shadow: none !important;
}

.kanban-ghost {
  border: dashed 0.125rem #0064ff;
  background-color: #e5f0ff !important; /* light blue */
  opacity: 1;
}

.kanban-ghost * {
  opacity: 0;
  transform: none !important;
}

.sortable-drag {
  transform: rotate(10deg) scale(1);
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.15);
  z-index: 50;
  opacity: 1 !important;
  list-style: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#partner-collage .partner-rect-bg--1 {
  background-image: url(/assets/thumbnails/partner-rect-1-55783a07b0853b14584aeb77e700d422b22c75615d17084b79c5a5bca8780470.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

#partner-collage .partner-rect-bg--2 {
  background-image: url(/assets/thumbnails/partner-rect-2-c9496929a9ef888814284a9d2618175116a4d0929e0885c1186c3f821667105f.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

#partner-collage .partner-rect-bg--3 {
  background-image: url(/assets/thumbnails/partner-rect-3-01612bbf38cea4d4b511432a4f36160d15f8442a82bc6fa5f3d6bd071c04528e.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--4 {
  background-image: url(/assets/thumbnails/partner-rect-4-886bb64a47f546b8a7995921828948784f0e3ddcafe1c3c67e890724255665b3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--5 {
  background-image: url(/assets/thumbnails/partner-rect-5-28497358b5c6653b60cd3edcd7cb00dbc93202ed6dabfcb25e2cdc719188d942.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--6 {
  background-image: url(/assets/thumbnails/partner-rect-6-ac12da2d02234d88994123f28176639c701f67fafac077b0d5bfa5ac6f94be46.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--8 {
  background-image: url(/assets/thumbnails/partner-rect-8-d9b64948a29537704c2e98ea6734b88919ad413994240932ae2c71278dd2dd48.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--9 {
  background-image: url(/assets/thumbnails/partner-rect-9-9d2574ad1080752f41dd5cd4cd368a5e3d9f5314688d57d8d6434b580fc9aeaa.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--10 {
  background-image: url(/assets/thumbnails/partner-rect-10-52855a8c8cd83198d84eb7ad519593e46b17fc7576af9290606025096f740aec.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

#partner-collage .partner-rect-bg--11 {
  background-image: url(/assets/thumbnails/partner-rect-11-33e2bd9de708162b69f428066843b3c7f437c75e0703e977d43420bdb7719efe.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

#partner-collage .partner-rect-bg--zg-1 {
  background-image: url(/assets/thumbnails/partner-rect-zg-1-8ce0ef851ad07df4ab0989b44e387846353028f7932f06228095801b7bbfd9fa.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--zg-2 {
  background-image: url(/assets/thumbnails/partner-rect-zg-2-60dcd5266a114b085b10607f49c2756c0e9d9ac54ee16b582d84de699f1cc49d.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#partner-collage .partner-rect-bg--zg-3 {
  background-image: url(/assets/thumbnails/partner-rect-zg-3-0696451a5ab2fbc35ca75e9f14b26bf99bb8ea3fe1fdb797314288f0523a5e91.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* And finally ViewComponent-specific styles */
.zg-community-attachment-card, .zg-community-comment__attachments .zg-community-attachment-card, .zg-community-post__attachments .zg-community-attachment-card, .zg-community-announcement__attachments .zg-community-attachment-card, .zg-community-attachment-card--upload-preview, .zg-attachment-upload__previews .zg-community-attachment-card {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem;
  justify-items: center;
  gap: 0.5rem;
}

.zg-community-attachment-card--upload-preview, .zg-attachment-upload__previews .zg-community-attachment-card {
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  min-width: 16rem;
  height: 5rem;
  border: none;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-community-attachment-card--image.zg-community-attachment-card--upload-preview, .zg-attachment-upload__previews .zg-community-attachment-card--image.zg-community-attachment-card, .zg-community-attachment-card--video.zg-community-attachment-card--upload-preview, .zg-attachment-upload__previews .zg-community-attachment-card--video.zg-community-attachment-card {
  min-width: 0;
  min-width: initial;
  padding: 0;
}

.zg-community-attachment-card--image.zg-community-attachment-card--upload-preview > .zg-community-attachment-card__details, .zg-attachment-upload__previews .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__details,
.zg-community-attachment-card--image.zg-community-attachment-card--upload-preview > .zg-community-attachment-card__download,
.zg-attachment-upload__previews .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__download, .zg-community-attachment-card--video.zg-community-attachment-card--upload-preview > .zg-community-attachment-card__details, .zg-attachment-upload__previews .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__details,
.zg-community-attachment-card--video.zg-community-attachment-card--upload-preview > .zg-community-attachment-card__download,
.zg-attachment-upload__previews .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__download {
  display: none;
}

.zg-community-post__attachments .zg-community-attachment-card--image.zg-community-attachment-card, .zg-community-announcement__attachments .zg-community-attachment-card--image.zg-community-attachment-card, .zg-community-post__attachments .zg-community-attachment-card--video.zg-community-attachment-card, .zg-community-announcement__attachments .zg-community-attachment-card--video.zg-community-attachment-card {
  min-width: 0;
  min-width: initial;
  padding: 0;
}

.zg-community-post__attachments .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__details, .zg-community-announcement__attachments .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__details,
.zg-community-post__attachments .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__download,
.zg-community-announcement__attachments .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__download, .zg-community-post__attachments .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__details, .zg-community-announcement__attachments .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__details,
.zg-community-post__attachments .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__download,
.zg-community-announcement__attachments .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__download {
  display: none;
}

.zg-community-post__attachments .zg-community-attachment-card--image.zg-community-attachment-card .zg-community-attachment-card__thumbnail, .zg-community-announcement__attachments .zg-community-attachment-card--image.zg-community-attachment-card .zg-community-attachment-card__thumbnail, .zg-community-post__attachments .zg-community-attachment-card--video.zg-community-attachment-card .zg-community-attachment-card__thumbnail, .zg-community-announcement__attachments .zg-community-attachment-card--video.zg-community-attachment-card .zg-community-attachment-card__thumbnail {
  width: auto;
  width: initial;
  min-width: 0;
  min-width: initial;
  max-width: none;
  height: 10rem;
}

.zg-community-post__attachments .zg-community-attachment-card--image.zg-community-attachment-card .zg-community-attachment-card__thumbnail img, .zg-community-announcement__attachments .zg-community-attachment-card--image.zg-community-attachment-card .zg-community-attachment-card__thumbnail img, .zg-community-post__attachments .zg-community-attachment-card--video.zg-community-attachment-card .zg-community-attachment-card__thumbnail img, .zg-community-announcement__attachments .zg-community-attachment-card--video.zg-community-attachment-card .zg-community-attachment-card__thumbnail img {
  width: auto;
  width: initial;
  max-width: 32rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.zg-community-comment__attachments .zg-community-attachment-card--image.zg-community-attachment-card, .zg-community-comment__attachments .zg-community-attachment-card--video.zg-community-attachment-card {
  min-width: 0;
  min-width: initial;
  padding: 0;
}

.zg-community-comment__attachments .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__details,
.zg-community-comment__attachments .zg-community-attachment-card--image.zg-community-attachment-card > .zg-community-attachment-card__download, .zg-community-comment__attachments .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__details,
.zg-community-comment__attachments .zg-community-attachment-card--video.zg-community-attachment-card > .zg-community-attachment-card__download {
  display: none;
}

.zg-community-attachment-card--image, .zg-community-attachment-card--video {
  padding: 0;
}

.zg-community-attachment-card--image .zg-community-attachment-card__details,
.zg-community-attachment-card--image .zg-community-attachment-card__download, .zg-community-attachment-card--video .zg-community-attachment-card__details,
.zg-community-attachment-card--video .zg-community-attachment-card__download {
  padding: 0.5rem;
}

.zg-community-attachment-card--image .zg-community-attachment-card__thumbnail, .zg-community-attachment-card--video .zg-community-attachment-card__thumbnail {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
}

.zg-community-attachment-card--image .zg-community-attachment-card__thumbnail img, .zg-community-attachment-card--video .zg-community-attachment-card__thumbnail img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.zg-community-attachment-card--video .zg-community-attachment-card__thumbnail {
  position: relative;
}

.zg-community-attachment-card--video .zg-community-attachment-card__thumbnail::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='%23fff'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpath d='M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28Z'/%3E %3Crect id='_Transparent_Rectangle_' data-name='Transparent Rectangle' class='cls-1' width='32' height='32' fill='currentColor'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
  border-radius: 0.5rem;
}

.zg-community-attachment-card--video .zg-community-attachment-card__thumbnail video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.zg-date-container--header, .zg-date-container--today, .zg-date-container {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 3.75rem;
}

.zg-tag--gradient-dark-green, .zg-tag--danger, .zg-tag--warning, .zg-tag--success, .zg-tag--blue-60, .zg-tag--blue, .zg-tag--dark-green, .zg-tag--white, .zg-tag--full-colour-blue, .zg-tag--full-colour, .zg-tag--hide-label, .zg-tag--skinny, .zg-tag, .zg-pill-label, .zg-pill-filter--selected, .zg-pill-filter, .zg-achievement-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-min-content;
  height: min-content;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.25rem;
  gap: 0.25rem;
}

.zg-tag__label, .zg-pill-label__label, .zg-pill-filter__label {
  color: #555;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-achievement-badge {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-attachment-upload__input {
  display: none;
}

.zg-attachment-upload__label {
  display: flex;
  width: -moz-min-content;
  width: min-content;
  height: -moz-min-content;
  height: min-content;
}

.zg-attachment-upload__previews {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-top: 1rem;
  overflow-x: scroll;
  gap: 1rem;
}

.zg-big-marker-event-compact-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 19.5rem;
  height: 19.5rem;
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-big-marker-event-compact-card__top {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: rgba(20, 55, 60, 0.2);
  border-radius: 0.5rem 0.5rem 0 0;
}

.zg-big-marker-event-compact-card__top-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1rem 0;
}

.zg-big-marker-event-compact-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(20, 55, 60, 0.4) 0%, rgba(20, 55, 60, 0.8) 100%);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  border-radius: 0 0 0.5rem 0.5rem;
}

.zg-big-marker-event-compact-card__content-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.zg-big-marker-event-compact-card__content-rsvp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.zg-big-marker-event-compact-card__content-rsvp .zg-btn__form,
.zg-big-marker-event-compact-card__content-rsvp .zg-btn {
  flex-grow: 1;
}

.zg-big-marker-event-compact-card__partner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.25rem 1rem;
  color: #555;
  background-color: #fff;
  border-radius: 0.25rem 0.25rem 0 0;
  gap: 0.5rem;
}

.zg-big-marker-event-compact-card__partner-logo {
  max-height: 1rem;
}

.zg-big-marker-event-compact-card__tags {
  display: flex;
  gap: 0.5rem;
}

.zg-big-marker-event-compact-card__title {
  padding: 0 1rem;
  color: #fff;
  text-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.zg-big-marker-event-compact-card__time {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.5rem;
  color: #fff;
  fill: #fff;
}

.zg-big-marker-event-compact-card__time path {
  fill: #fff;
}

.zg-big-marker-event-compact-card__time .zg-btn > .zg-btn__label {
  white-space: nowrap;
}

.zg-big-marker-event-compact-card__time > * {
  padding-right: 0.5rem;
  border-right: 0.0625rem solid rgba(229, 239, 255, 0.2);
}

.zg-big-marker-event-compact-card__time > :last-child {
  padding-right: 0;
  border-right: 0;
}

.zg-big-marker-event-compact-card__description {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  width: 100%;
}

.zg-big-marker-event-compact-card__description-text {
  color: #fff;
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.zg-big-marker-event-compact-card__description-button .zg-btn > .zg-btn__label {
  white-space: nowrap;
}

.zg-big-marker-event-compact-card__attendees {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  fill: #fff;
}

.zg-big-marker-event-compact-card__attendees path {
  fill: #fff;
}

.zg-big-marker-event-modal__header {
  position: absolute;
  right: 0;
  z-index: 1;
  padding: 0.8rem;
  border: none;
}

.zg-big-marker-event-modal__image {
  display: flex;
  align-self: stretch;
  min-height: 23rem;
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem;
}

.zg-big-marker-event-modal__image__top-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
}

.zg-big-marker-event-modal__image__tags {
  display: flex;
  gap: 0.5rem;
}

.zg-big-marker-event-modal__image__tags .zg-tag__label {
  color: #14373c !important;
}

.zg-big-marker-event-modal__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  height: auto;
  padding: 1rem;
  gap: 1.5rem;
}

.zg-big-marker-event-modal__body__partner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0 0.5rem;
  color: #555;
  border-bottom: 0.0625rem solid #f5f5f5;
  gap: 0.5rem;
}

.zg-big-marker-event-modal__body__info {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.zg-big-marker-event-modal__date {
  display: flex;
  align-items: center;
  padding-right: 1rem;
  border-right: 0.0625rem solid #e5efff;
}

.zg-big-marker-event-modal__data {
  display: flex;
  flex: 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 1rem;
  border-right: 0.0625rem solid #e5efff;
  gap: 0.5rem;
}

@media (max-width: 35.98rem) {
  .zg-big-marker-event-modal__data {
    width: 50%;
    padding-right: 0;
    border-right: none;
  }
}
.zg-big-marker-event-modal__time {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.5rem;
}

.zg-big-marker-event-modal__time svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-big-marker-event-modal__time svg path {
  fill: #0064ff;
}

.zg-big-marker-event-modal__time .zg-btn > .zg-btn__label {
  white-space: nowrap;
}

.zg-big-marker-event-modal__time > * {
  padding-right: 0.5rem;
  border-right: 0.0625rem solid #ebebeb;
}

.zg-big-marker-event-modal__time > :last-child {
  padding-right: 0;
  border-right: 0;
}

.zg-big-marker-event-modal__title, .zg-big-marker-event-modal__audience {
  width: 100%;
  overflow: hidden;
  color: #14373c;
  text-overflow: ellipsis;
}

.zg-big-marker-event-modal__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.zg-big-marker-event-modal__cta .zg-icon-label span {
  display: inline !important;
}

@media (max-width: 35.98rem) {
  .zg-big-marker-event-modal__cta {
    display: none;
  }
}
.zg-big-marker-event-modal__cta--mobile {
  display: none;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 35.98rem) {
  .zg-big-marker-event-modal__cta--mobile {
    display: flex;
  }
}
.zg-big-marker-event-modal__rsvp {
  min-width: 50%;
}

@media (min-width: 36rem) {
  .zg-big-marker-event-modal__rsvp {
    width: 100%;
  }
}
.zg-big-marker-event-modal__rsvp > .zg-btn {
  width: 100%;
}

.zg-big-marker-event-full-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.25rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-big-marker-event-full-card__top {
  min-width: 14rem;
  min-height: 11rem;
}

@media (min-width: 48rem) {
  .zg-big-marker-event-full-card {
    flex-direction: row;
    max-width: none;
    max-width: initial;
  }
  .zg-big-marker-event-full-card__top {
    min-width: 19rem;
    min-height: 15.75rem;
  }
  .zg-big-marker-event-full-card__content {
    overflow: hidden;
  }
}
.zg-big-marker-event-full-card__top {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 0.25rem;
}

.zg-big-marker-event-full-card__top-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1rem 0;
}

.zg-big-marker-event-full-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding: 1rem;
  gap: 1rem;
}

.zg-big-marker-event-full-card__content-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
}

.zg-big-marker-event-full-card__content-rsvp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.zg-big-marker-event-full-card__content-rsvp .zg-btn__form,
.zg-big-marker-event-full-card__content-rsvp .zg-btn {
  flex-grow: 1;
}

.zg-big-marker-event-full-card__partner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0 0.5rem;
  color: #555;
  border-bottom: 0.0625rem solid #f5f5f5;
  gap: 0.5rem;
}

.zg-big-marker-event-full-card__partner-logo {
  max-height: 1rem;
}

.zg-big-marker-event-full-card__tags {
  display: flex;
  gap: 0.5rem;
}

.zg-big-marker-event-full-card__title {
  overflow: hidden;
  color: #14373c;
  text-overflow: ellipsis;
}

.zg-big-marker-event-full-card__time {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.5rem;
}

.zg-big-marker-event-full-card__time svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-big-marker-event-full-card__time svg path {
  fill: #0064ff;
}

.zg-big-marker-event-full-card__time .zg-btn > .zg-btn__label {
  white-space: nowrap;
}

.zg-big-marker-event-full-card__time > * {
  padding-right: 0.5rem;
  border-right: 0.0625rem solid #ebebeb;
}

.zg-big-marker-event-full-card__time > :last-child {
  padding-right: 0;
  border-right: 0;
}

.zg-big-marker-event-full-card__description {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  width: 100%;
}

.zg-big-marker-event-full-card__description-text {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #555;
}

.zg-big-marker-event-full-card__description-button .zg-btn > .zg-btn__label {
  white-space: nowrap;
}

.zg-big-marker-event-full-card__attendees {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.zg-big-marker-event-showcase {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  background: #3383ff;
  border-radius: 0.25rem;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .zg-big-marker-event-showcase {
    flex-direction: row;
    align-items: center;
  }
}
.zg-big-marker-event-showcase h2, .zg-big-marker-event-showcase .h2,
.zg-big-marker-event-showcase p {
  color: #fff;
}

.zg-big-marker-event-showcase__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@keyframes slide-in-from-left {
  from {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slide-in-from-right {
  from {
    opacity: 0;
    transform: translate(100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.zg-blade .modal-content {
  border-color: #ebebeb;
  border-radius: 0;
}

.zg-blade .modal-content .modal-body {
  padding: 1rem;
}

.zg-blade .modal-header {
  padding: 0 1rem;
  margin: 0;
  border-color: #ebebeb;
}

.zg-blade .modal-header .modal-title {
  font-family: "Archia", sans-serif;
  font-weight: 600;
  color: #14373c;
}

.zg-blade.modal.fade > .modal-dialog {
  transform: translate(0, 0);
}

@media (min-width: 48rem) {
  .zg-blade.modal.fade > .modal-dialog {
    animation-duration: 0.2s;
    animation-timing-function: ease-in-out;
  }
}
.zg-blade > .modal-dialog {
  position: fixed;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 4.25rem); /* Fallback for when --vh is not set by viewport_height_controller */
  height: calc(1vh * 100 - 4.25rem);
  height: calc(var(--vh, 1vh) * 100 - 4.25rem);
  margin: 4.25rem 0 0 0;
}

.zg-blade > .modal-dialog > .modal-content {
  height: 100%;
  padding: 1rem 0 0 0;
  overflow-y: scroll;
  border-radius: 0.5rem 0.5rem 0 0;
}

@media (min-width: 48rem) {
  .zg-blade > .modal-dialog {
    width: 30rem;
    height: 100%;
    margin: 0;
  }
  .zg-blade > .modal-dialog > .modal-content {
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .zg-blade--left.modal.fade > .modal-dialog {
    animation-name: slide-in-from-left;
  }
}
.zg-blade--left > .modal-dialog {
  left: 0;
}

@media (min-width: 48rem) {
  .zg-blade--right.modal.fade > .modal-dialog {
    animation-name: slide-in-from-right;
  }
}
.zg-blade--right > .modal-dialog {
  right: 0;
}

.zg-community-reaction-button--selected, .zg-community-reaction-button, .zg-btn--dot-red, .zg-btn--community-writing-action, .zg-btn--community-interaction, .zg-btn--action, .zg-btn--popup, .zg-btn--text, .zg-btn--secondary-blue, .zg-btn--secondary, .zg-btn--primary, .zg-btn {
  box-sizing: border-box;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  gap: 0.5rem;
}

.zg-community-reaction-button--selected > .zg-btn__label, .zg-community-reaction-button > .zg-btn__label, .zg-btn--dot-red > .zg-btn__label, .zg-btn--community-writing-action > .zg-btn__label, .zg-btn--community-interaction > .zg-btn__label, .zg-btn--action > .zg-btn__label, .zg-btn--popup > .zg-btn__label, .zg-btn--text > .zg-btn__label, .zg-btn--secondary-blue > .zg-btn__label, .zg-btn--secondary > .zg-btn__label, .zg-btn--primary > .zg-btn__label, .zg-btn > .zg-btn__label {
  transition: color 0.15s ease-in-out;
}

.zg-btn__label {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-wrap: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-btn:disabled, .zg-btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #ccc !important;
  border-color: #ccc !important;
  opacity: 1;
}

.zg-btn--l {
  padding: 1rem 2rem;
}

.zg-btn--m {
  padding: 0.75rem 1.5rem;
}

.zg-btn--s {
  padding: 0.5rem 1rem;
}

.zg-btn--full-width {
  width: 100%;
}

@media (max-width: 35.98rem) {
  .zg-btn--full-width--sm {
    width: 100%;
  }
}
.zg-btn--no-padding {
  padding: 0;
}

.zg-btn--primary {
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
}

.zg-btn--primary.zg-btn--black {
  background-color: #000;
  border: 0.0625rem solid #000;
}

.zg-btn--primary.zg-btn--black > .zg-btn__label {
  color: #fff;
}

.zg-btn--primary.zg-btn--black svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--primary.zg-btn--black svg path {
  fill: #fff;
}

.zg-btn--primary.zg-btn--black:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.zg-btn--primary.zg-btn--blue {
  background-color: #0064ff;
  border: 0.0625rem solid #0064ff;
}

.zg-btn--primary.zg-btn--blue > .zg-btn__label {
  color: #fff;
}

.zg-btn--primary.zg-btn--blue svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--primary.zg-btn--blue svg path {
  fill: #fff;
}

.zg-btn--primary.zg-btn--blue:hover {
  background-color: #3383ff;
  border-color: #3383ff;
}

.zg-btn--primary.zg-btn--dark-green {
  background-color: #14373c;
  border: 0.0625rem solid #14373c;
}

.zg-btn--primary.zg-btn--dark-green > .zg-btn__label {
  color: #fff;
}

.zg-btn--primary.zg-btn--dark-green svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--primary.zg-btn--dark-green svg path {
  fill: #fff;
}

.zg-btn--primary.zg-btn--dark-green:hover {
  background-color: #215a62;
  border-color: #215a62;
}

.zg-btn--primary.zg-btn--mint {
  background-color: #00fad7;
  border: 0.0625rem solid #00fad7;
}

.zg-btn--primary.zg-btn--mint > .zg-btn__label {
  color: #14373c;
}

.zg-btn--primary.zg-btn--mint svg {
  color: #14373c;
  fill: #14373c;
}

.zg-btn--primary.zg-btn--mint svg path {
  fill: #14373c;
}

.zg-btn--primary.zg-btn--mint:hover {
  background-color: #00e1c1;
  border-color: #00e1c1;
}

.zg-btn--primary.zg-btn--danger {
  background-color: #d13b42;
  border: 0.0625rem solid #d13b42;
}

.zg-btn--primary.zg-btn--danger > .zg-btn__label {
  color: #fff;
}

.zg-btn--primary.zg-btn--danger svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--primary.zg-btn--danger svg path {
  fill: #fff;
}

.zg-btn--primary.zg-btn--danger:hover {
  background-color: #db646a;
  border-color: #db646a;
}

.zg-btn--primary.zg-btn--success {
  background-color: #0e8906;
  border: 0.0625rem solid #0e8906;
}

.zg-btn--primary.zg-btn--success > .zg-btn__label {
  color: #fff;
}

.zg-btn--primary.zg-btn--success svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--primary.zg-btn--success svg path {
  fill: #fff;
}

.zg-btn--primary.zg-btn--success:hover {
  background-color: #00e1c1;
  border-color: #00e1c1;
}

.zg-btn--secondary {
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.125rem;
}

.zg-btn--secondary .zg-btn__label {
  color: #000;
}

.zg-btn--secondary .zg-btn__label--blue {
  color: #0064ff;
}

.zg-btn--secondary.zg-btn--blue {
  border: 0.0625rem solid #0064ff;
}

.zg-btn--secondary.zg-btn--blue > .zg-btn__label {
  color: #0064ff;
}

.zg-btn--secondary.zg-btn--blue svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-btn--secondary.zg-btn--blue svg path {
  fill: #0064ff;
}

.zg-btn--secondary.zg-btn--blue:hover {
  background-color: #0064ff;
}

.zg-btn--secondary.zg-btn--blue:hover > .zg-btn__label {
  color: #fff;
}

.zg-btn--secondary.zg-btn--blue:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--secondary.zg-btn--blue:hover svg path {
  fill: #fff;
}

.zg-btn--secondary.zg-btn--dark-green {
  border: 0.0625rem solid #14373c;
}

.zg-btn--secondary.zg-btn--dark-green > .zg-btn__label {
  color: #14373c;
}

.zg-btn--secondary.zg-btn--dark-green svg {
  color: #14373c;
  fill: #14373c;
}

.zg-btn--secondary.zg-btn--dark-green svg path {
  fill: #14373c;
}

.zg-btn--secondary.zg-btn--dark-green:hover {
  background-color: #14373c;
}

.zg-btn--secondary.zg-btn--dark-green:hover > .zg-btn__label {
  color: #fff;
}

.zg-btn--secondary.zg-btn--dark-green:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--secondary.zg-btn--dark-green:hover svg path {
  fill: #fff;
}

.zg-btn--secondary.zg-btn--danger {
  border: 0.0625rem solid #d13b42;
}

.zg-btn--secondary.zg-btn--danger > .zg-btn__label {
  color: #d13b42;
}

.zg-btn--secondary.zg-btn--danger svg {
  color: #d13b42;
  fill: #d13b42;
}

.zg-btn--secondary.zg-btn--danger svg path {
  fill: #d13b42;
}

.zg-btn--secondary.zg-btn--danger:hover {
  background-color: #d13b42;
}

.zg-btn--secondary.zg-btn--danger:hover > .zg-btn__label {
  color: #fff;
}

.zg-btn--secondary.zg-btn--danger:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--secondary.zg-btn--danger:hover svg path {
  fill: #fff;
}

.zg-btn--secondary.zg-btn--success {
  border: 0.0625rem solid #0e8906;
}

.zg-btn--secondary.zg-btn--success > .zg-btn__label {
  color: #0e8906;
}

.zg-btn--secondary.zg-btn--success svg {
  color: #0e8906;
  fill: #0e8906;
}

.zg-btn--secondary.zg-btn--success svg path {
  fill: #0e8906;
}

.zg-btn--secondary.zg-btn--success:hover {
  background-color: #0e8906;
}

.zg-btn--secondary.zg-btn--success:hover > .zg-btn__label {
  color: #fff;
}

.zg-btn--secondary.zg-btn--success:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--secondary.zg-btn--success:hover svg path {
  fill: #fff;
}

.zg-btn--secondary-blue {
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 0.0625rem solid #0064ff;
  border-radius: 0.25rem;
}

.zg-btn--secondary-blue > .zg-btn__label {
  color: #0064ff;
}

.zg-btn--secondary-blue svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-btn--secondary-blue svg path {
  fill: #0064ff;
}

.zg-btn--secondary-blue:hover {
  background-color: #0064ff;
}

.zg-btn--secondary-blue:hover > .zg-btn__label {
  color: #fff;
}

.zg-btn--secondary-blue:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--secondary-blue:hover svg path {
  fill: #fff;
}

@media (min-width: 48rem) {
  .zg-btn--secondary-blue {
    margin: auto;
  }
}
.zg-btn--text {
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 0.125rem;
  gap: 0.25rem;
  text-decoration-color: #14373c;
}

.zg-btn--text .zg-btn__label {
  color: #0064ff;
  text-decoration: underline;
  text-decoration: none;
}

.zg-btn--text .zg-btn__label:hover {
  color: rgba(0, 100, 255, 0.7);
}

.zg-btn--text .zg-btn__label:active {
  color: rgba(0, 100, 255, 0.85);
}

.zg-btn--text .zg-btn__label:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

.zg-btn--text.js-focus-visible .zg-btn__label:focus:not(.focus-visible), .js-focus-visible .zg-btn--text .zg-btn__label:focus:not(.focus-visible) {
  box-shadow: none;
}

.zg-btn--text .zg-btn__label:focus:not(:focus-visible) {
  box-shadow: none;
}

.zg-btn--text--underline .zg-btn__label {
  text-decoration: underline;
}

.zg-btn--text.zg-btn--dark-green {
  text-decoration-color: #14373c;
}

.zg-btn--text.zg-btn--dark-green > .zg-btn__label {
  color: #14373c;
}

.zg-btn--text.zg-btn--dark-green svg {
  color: #14373c;
  fill: #14373c;
}

.zg-btn--text.zg-btn--dark-green svg path {
  fill: #14373c;
}

.zg-btn--text.zg-btn--dark-green:hover > .zg-btn__label {
  color: #071416;
}

.zg-btn--text.zg-btn--dark-green:hover svg {
  color: #071416;
  fill: #071416;
}

.zg-btn--text.zg-btn--dark-green:hover svg path {
  fill: #071416;
}

.zg-btn--text.zg-btn--blue {
  text-decoration-color: #0064ff;
}

.zg-btn--text.zg-btn--blue > .zg-btn__label {
  color: #0064ff;
}

.zg-btn--text.zg-btn--blue svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-btn--text.zg-btn--blue svg path {
  fill: #0064ff;
}

.zg-btn--text.zg-btn--blue:hover > .zg-btn__label {
  color: #0050cc;
}

.zg-btn--text.zg-btn--blue:hover svg {
  color: #0050cc;
  fill: #0050cc;
}

.zg-btn--text.zg-btn--blue:hover svg path {
  fill: #0050cc;
}

.zg-btn--text.zg-btn--danger {
  text-decoration-color: #d13b42;
}

.zg-btn--text.zg-btn--danger > .zg-btn__label {
  color: #d13b42;
}

.zg-btn--text.zg-btn--danger svg {
  color: #d13b42;
  fill: #d13b42;
}

.zg-btn--text.zg-btn--danger svg path {
  fill: #d13b42;
}

.zg-btn--text.zg-btn--danger:hover > .zg-btn__label {
  color: #b02930;
}

.zg-btn--text.zg-btn--danger:hover svg {
  color: #b02930;
  fill: #b02930;
}

.zg-btn--text.zg-btn--danger:hover svg path {
  fill: #b02930;
}

.zg-btn--text.zg-btn--success {
  text-decoration-color: #0e8906;
}

.zg-btn--text.zg-btn--success > .zg-btn__label {
  color: #0e8906;
}

.zg-btn--text.zg-btn--success svg {
  color: #0e8906;
  fill: #0e8906;
}

.zg-btn--text.zg-btn--success svg path {
  fill: #0e8906;
}

.zg-btn--text.zg-btn--success:hover > .zg-btn__label {
  color: #095804;
}

.zg-btn--text.zg-btn--success:hover svg {
  color: #095804;
  fill: #095804;
}

.zg-btn--text.zg-btn--success:hover svg path {
  fill: #095804;
}

.zg-btn--text.zg-btn--white {
  text-decoration-color: #fff;
}

.zg-btn--text.zg-btn--white > .zg-btn__label {
  color: #fff;
}

.zg-btn--text.zg-btn--white svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--text.zg-btn--white svg path {
  fill: #fff;
}

.zg-btn--text.zg-btn--white:hover > .zg-btn__label {
  color: #e6e6e6;
}

.zg-btn--text.zg-btn--white:hover svg {
  color: #e6e6e6;
  fill: #e6e6e6;
}

.zg-btn--text.zg-btn--white:hover svg path {
  fill: #e6e6e6;
}

.zg-btn--popup {
  align-items: center;
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: #fff;
  border: 0.0625rem solid #000;
  box-shadow: 0 0, 0 0, 0.0625rem 0.0625rem 0 0, 0.125rem 0.125rem 0 0, 0.1875rem 0.1875rem 0 0;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  transition-property: all;
}

.zg-btn--popup .zg-btn__label {
  color: #000;
}

.zg-btn--popup:hover {
  box-shadow: none;
  transform: translate(0.25rem, 0.25rem);
}

.zg-btn--popup--no-shadow {
  box-shadow: none;
}

.zg-btn--action {
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4375rem;
  background-color: #fff;
  border: 0.0625rem solid #14373c;
  border-radius: 0.125rem;
}

.zg-btn--action .zg-btn__label {
  color: #000;
}

.zg-btn--action.zg-btn--blue svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-btn--action.zg-btn--blue svg path {
  fill: #0064ff;
}

.zg-btn--action.zg-btn--blue:active, .zg-btn--action.zg-btn--blue:hover {
  background-color: #0064ff;
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--blue:active path, .zg-btn--action.zg-btn--blue:hover path {
  fill: #fff;
}

.zg-btn--action.zg-btn--blue:active svg, .zg-btn--action.zg-btn--blue:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--blue:active svg path, .zg-btn--action.zg-btn--blue:hover svg path {
  fill: #fff;
}

.zg-btn--action.zg-btn--dark-green svg {
  color: #14373c;
  fill: #14373c;
}

.zg-btn--action.zg-btn--dark-green svg path {
  fill: #14373c;
}

.zg-btn--action.zg-btn--dark-green:active, .zg-btn--action.zg-btn--dark-green:hover {
  background-color: #14373c;
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--dark-green:active path, .zg-btn--action.zg-btn--dark-green:hover path {
  fill: #fff;
}

.zg-btn--action.zg-btn--dark-green:active svg, .zg-btn--action.zg-btn--dark-green:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--dark-green:active svg path, .zg-btn--action.zg-btn--dark-green:hover svg path {
  fill: #fff;
}

.zg-btn--action.zg-btn--danger svg {
  color: #d13b42;
  fill: #d13b42;
}

.zg-btn--action.zg-btn--danger svg path {
  fill: #d13b42;
}

.zg-btn--action.zg-btn--danger:active, .zg-btn--action.zg-btn--danger:hover {
  background-color: #d13b42;
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--danger:active path, .zg-btn--action.zg-btn--danger:hover path {
  fill: #fff;
}

.zg-btn--action.zg-btn--danger:active svg, .zg-btn--action.zg-btn--danger:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--danger:active svg path, .zg-btn--action.zg-btn--danger:hover svg path {
  fill: #fff;
}

.zg-btn--action.zg-btn--success svg {
  color: #0e8906;
  fill: #0e8906;
}

.zg-btn--action.zg-btn--success svg path {
  fill: #0e8906;
}

.zg-btn--action.zg-btn--success:active, .zg-btn--action.zg-btn--success:hover {
  background-color: #0e8906;
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--success:active path, .zg-btn--action.zg-btn--success:hover path {
  fill: #fff;
}

.zg-btn--action.zg-btn--success:active svg, .zg-btn--action.zg-btn--success:hover svg {
  color: #fff;
  fill: #fff;
}

.zg-btn--action.zg-btn--success:active svg path, .zg-btn--action.zg-btn--success:hover svg path {
  fill: #fff;
}

.zg-btn--action-small {
  padding: 0.3125rem;
}

.zg-btn--community-interaction {
  align-items: center;
  height: 2rem;
  padding: 0.25rem 0.5rem;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 1rem;
  gap: 0.25rem;
  color: #0064ff;
  fill: #0064ff;
}

.zg-btn--community-interaction > .zg-btn__label {
  color: #14373c;
}

.zg-btn--community-interaction path {
  fill: #0064ff;
}

.zg-btn--community-interaction svg {
  color: #0064ff;
  fill: #0064ff;
}

.zg-btn--community-interaction svg path {
  fill: #0064ff;
}

.zg-btn--community-interaction:active, .zg-btn--community-interaction:hover, .zg-btn--community-interaction.zg-btn--active {
  color: #0064ff;
  background-color: #f7faff;
}

.zg-btn--community-interaction:active > .zg-btn__label, .zg-btn--community-interaction:hover > .zg-btn__label, .zg-btn--community-interaction.zg-btn--active > .zg-btn__label {
  color: #0064ff;
}

.zg-btn--community-writing-action {
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4375rem;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.25rem;
  color: #14373c;
  fill: #14373c;
}

.zg-btn--community-writing-action path {
  fill: #14373c;
}

.zg-btn--community-writing-action svg {
  color: #14373c;
  fill: #14373c;
}

.zg-btn--community-writing-action svg path {
  fill: #14373c;
}

.zg-btn--community-writing-action:active, .zg-btn--community-writing-action:hover, .zg-btn--community-writing-action.zg-btn--active {
  background-color: #f7faff;
  border-color: #3383ff;
  color: #3383ff;
  fill: #3383ff;
}

.zg-btn--community-writing-action:active path, .zg-btn--community-writing-action:hover path, .zg-btn--community-writing-action.zg-btn--active path {
  fill: #3383ff;
}

.zg-btn--community-writing-action:active svg, .zg-btn--community-writing-action:hover svg, .zg-btn--community-writing-action.zg-btn--active svg {
  color: #3383ff;
  fill: #3383ff;
}

.zg-btn--community-writing-action:active svg path, .zg-btn--community-writing-action:hover svg path, .zg-btn--community-writing-action.zg-btn--active svg path {
  fill: #3383ff;
}

.zg-btn--dot-red {
  position: relative;
}

.zg-btn--dot-red::before {
  position: absolute;
  top: -0.1875rem;
  right: -0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: #d13b42;
  border-radius: 50%;
}

.zg-btn__form[aria-busy=true] {
  position: relative;
}

.zg-btn__form[aria-busy=true] > button {
  pointer-events: none !important;
  cursor: not-allowed !important;
  opacity: 0.66;
}

.zg-btn__form[aria-busy=true]::after {
  position: absolute;
  z-index: 99;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 0.125rem solid rgba(0, 100, 255, 0.25);
  border-top-color: #0064ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.zg-collapse-section__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #ebebeb;
}

.zg-collapse-section__right-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.zg-collapse-section__content {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.zg-collapse-section--shadow .zg-collapse-section__header {
  padding-bottom: 0;
  border-bottom: none;
}

.zg-collapse-section--shadow .zg-collapse-section__content {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  overflow-wrap: break-word;
  border-top: 0.0625rem solid #ebebeb;
}

.zg-collapse-arrow > svg {
  transition: transform 0.2s ease;
}

.zg-collapse-arrow.expanded > svg { /* stylelint-disable-line */
  transform: rotate(180deg);
}

.zg-collapse-tag {
  padding: 0.25rem 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #00fad7;
  border-radius: 0.25rem;
}

.zg-community-announcement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  background-color: #fff;
  border: 0.125rem solid #00fad7;
  border-radius: 0.25rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  gap: 0.5rem;
}

.zg-community-announcement__header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "label actions" "user-profile actions";
  align-items: center;
  justify-content: space-between;
  width: 100%;
  grid-gap: 1rem;
  gap: 1rem;
}

.zg-community-announcement__header > .zg-community-user-profile-preview {
  grid-area: user-profile;
}

@media (min-width: 36rem) {
  .zg-community-announcement__header {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto;
    grid-template-areas: "user-profile label actions";
    align-items: flex-start;
  }
}
.zg-community-announcement__label {
  grid-area: label;
}

.zg-community-announcement__actions {
  display: flex;
  flex-wrap: wrap-reverse;
  align-self: start;
  justify-content: flex-end;
  grid-area: actions;
  gap: 1rem;
  gap: 0.25rem 1rem;
}

.zg-community-announcement__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.zg-community-announcement__title {
  font-weight: 600;
  color: #14373c;
}

.zg-community-announcement__card-body-post-link {
  text-decoration: none;
}

.zg-community-announcement__body {
  color: #555;
}

.zg-community-announcement__attachments {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: scroll;
  gap: 1rem;
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.zg-community-announcement__attachments::-webkit-scrollbar {
  display: none;
}

.zg-community-announcement__footer {
  display: flex;
  gap: 0.5rem;
}

.zg-community-announcement-creation {
  display: grid;
  grid-template-areas: "title-input title-input" "body-container body-container" "attachment-button formatting-button" "attachment-previews attachment-previews" "footer footer";
  grid-template-columns: auto 1fr;
  grid-gap: 1rem 0.5rem;
  gap: 1rem 0.5rem;
}

.zg-community-announcement-creation__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  padding-bottom: 0.0625rem;
  border-bottom: 0.0625rem solid #e5efff;
}

.zg-community-announcement-creation__header--title {
  display: flex;
  flex: 1 0;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  color: #14373c;
  text-overflow: ellipsis;
}

.zg-community-announcement-creation__header--close {
  width: 1.5rem;
  height: 1.5rem;
}

.zg-community-announcement-creation__title-input {
  grid-area: title-input;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  align-self: stretch;
  width: 100%;
}

.zg-community-announcement-creation__body-container {
  grid-area: body-container;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.zg-community-announcement-creation__body-input {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
  width: 100%;
}

.zg-community-announcement-creation__body-input > trix-toolbar {
  margin-bottom: -0.5rem;
  display: block !important;
}

.zg-community-announcement-creation__editor {
  width: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out;
}

.zg-community-announcement-creation__editor:focus, .zg-community-announcement-creation__editor:hover {
  border-color: #555;
}

.zg-community-announcement-creation__formatting-button {
  grid-area: formatting-button;
}

.zg-community-announcement-creation .zg-attachment-upload {
  grid-area: attachment-button;
}

.zg-community-announcement-creation .zg-attachment-upload__previews {
  grid-area: attachment-previews;
}

.zg-community-announcement-creation__footer {
  grid-area: footer;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  width: 100%;
  padding: 1rem;
  border-top: 0.0625rem solid #e5efff;
  gap: 1rem;
}

.zg-community-announcement-creation__editor ul {
  list-style-type: disc !important;
  padding-left: 1rem !important;
}

.zg-community-announcement-creation__editor ol {
  list-style-type: decimal !important;
  padding-left: 1rem !important;
}

.zg-community-announcement-creation__editor a {
  color: #0064ff !important;
  text-decoration: underline !important;
}

.zg-community-attachment-card__thumbnail-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  background: #e5efff;
  border: 0.0625rem solid #e5efff;
  border-radius: 50%;
}

.zg-community-attachment-card__details {
  min-width: 0;
  margin-right: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-community-attachment-card__details .zg-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zg-community-attachment-card__action {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  max-height: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.1);
  transform: translate(50%, -50%);
}

.zg-community-attachment-card__action .zg-btn--action {
  border: none;
  border-radius: 50%;
}

.zg-community-attachment-show__header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zg-community-attachment-show__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.zg-community-attachment-show__content {
  max-width: 100%;
  border-radius: 0.25rem;
}

.zg-community-comment-chain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.zg-community-comment-chain > * {
  width: 100%;
  padding-left: 1rem;
  border-left: 0.125rem solid #b3d1ff;
}

.zg-community-comment-chain > *:first-child {
  padding-left: 0;
  border-left: none;
}

.zg-community-comment-chain__pagination-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-community-comment-chain__pagination-link .zg-btn__label {
  text-decoration: none;
}

.zg-community-comment-chain__pagination-link--loading .zg-community-comment-chain__pagination-loader {
  display: inline-block;
}

.zg-community-comment-chain__pagination-link--loading .zg-btn > svg {
  display: none;
}

.zg-community-comment-chain__pagination-loader {
  display: none;
  border-width: 0.0625rem;
}

.zg-community-comment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.zg-community-comment--new {
  border-radius: 0;
  box-shadow: 0 0 0 0.25rem transparent;
  animation-name: background-fade;
  animation-duration: 4s;
  animation-timing-function: linear;
}

@keyframes background-fade {
  from {
    background-color: #e5efff;
    border-radius: 0.0625rem;
    box-shadow: 0 0 0 0.25rem #e5efff;
  }
  50% {
    background-color: #e5efff;
    box-shadow: 0 0 0 0.25rem #e5efff;
  }
  to {
    background-color: transparent;
    border-radius: 0.0625rem;
    box-shadow: 0 0 0 0.25rem transparent;
  }
}
.zg-community-comment__header {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  grid-template-areas: "user-profile actions";
  align-items: center;
  justify-content: space-between;
  width: 100%;
  grid-gap: 1rem;
  gap: 1rem;
}

.zg-community-comment__header > .zg-community-user-profile-preview {
  grid-area: user-profile;
}

.zg-community-comment__actions {
  display: flex;
  flex-wrap: wrap-reverse;
  align-self: start;
  justify-content: flex-end;
  grid-area: actions;
  gap: 1rem;
  gap: 0.25rem 1rem;
}

.zg-community-comment__body {
  color: #555;
}

.zg-community-comment__attachments {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: scroll;
  gap: 1rem;
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.zg-community-comment__attachments::-webkit-scrollbar {
  display: none;
}

.zg-community-comment__footer {
  display: flex;
  gap: 0.5rem;
}

.zg-community-comment-creation {
  display: grid;
  grid-template-areas: "attachment-previews attachment-previews attachment-previews" "input input input" "attachment-button formatting-button actions";
  grid-template-columns: auto auto 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.zg-community-comment-creation--compact {
  grid-template-areas: "avatar input";
  grid-template-columns: auto 1fr;
  align-items: center;
}

.zg-community-comment-creation--compact .zg-community-comment-creation__formatting-button,
.zg-community-comment-creation--compact .zg-community-comment-creation__actions,
.zg-community-comment-creation--compact .zg-attachment-upload,
.zg-community-comment-creation--compact .zg-attachment-upload__previews {
  display: none;
}

.zg-community-comment-creation--compact .zg-community-comment-creation__avatar {
  display: block;
}

.zg-community-comment-creation--top-level {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 0.0625rem solid #e5efff;
  border-radius: 0.5rem 0.5rem 0 0;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
}

.zg-community-comment-creation--top-level.zg-community-comment-creation--compact {
  padding: 1rem;
}

@media (min-width: 48rem) {
  .zg-community-comment-creation--top-level {
    left: 14.75rem;
    width: calc(100vw - 14.75rem);
    transition: width 0.2s ease, left 0.2s ease;
  }
  .zg-community-comment-creation--top-level.slim { /* stylelint-disable-line */
    left: 4rem;
    width: calc(100vw - 4rem);
  }
  .zg-community-comment-creation--top-level.no-transition { /* stylelint-disable-line */
    transition: none;
  }
}
@media (min-width: 87.5rem) {
  .zg-community-comment-creation--top-level {
    position: static;
    z-index: auto;
    z-index: initial;
    width: 100%;
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: initial;
            backdrop-filter: initial;
  }
}
.zg-community-comment-creation__avatar {
  display: none;
}

.zg-community-comment-creation__body-input {
  grid-area: input;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
  width: 100%;
}

.zg-community-comment-creation__editor {
  width: 100%;
  min-height: 1.5rem;
  max-height: 10rem;
  padding: 0.75rem 1rem;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out;
}

.zg-community-comment-creation__editor:focus, .zg-community-comment-creation__editor:hover {
  border-color: #555;
}

.zg-community-comment-creation__formatting-button {
  grid-area: formatting-button;
}

.zg-community-comment-creation__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1rem;
}

.zg-community-comment-creation .zg-attachment-upload {
  grid-area: attachment-button;
}

.zg-community-comment-creation .zg-attachment-upload__previews {
  grid-area: attachment-previews;
}

.zg-community-comment-creation__editor ul {
  list-style-type: disc !important;
  padding-left: 1rem !important;
}

.zg-community-comment-creation__editor ol {
  list-style-type: decimal !important;
  padding-left: 1rem !important;
}

.zg-community-comment-creation__editor a {
  color: #0064ff !important;
  text-decoration: underline !important;
}

.zg-community-post {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.25rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
  gap: 0.5rem;
}

.zg-community-post--unanswered {
  border-color: #3383ff;
}

.zg-community-post--pinned {
  border: 0.125rem solid #00fad7;
}

.zg-community-post--space-view .zg-community-post__header {
  grid-template-rows: auto;
  grid-template-areas: "user-profile actions";
}

.zg-community-post--space-view .zg-community-post__space-link {
  display: none;
}

.zg-community-post__header {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-template-areas: "space-link actions" "user-profile actions";
  align-items: center;
  justify-content: space-between;
  width: 100%;
  grid-gap: 1rem;
  gap: 1rem;
}

.zg-community-post__header > .zg-community-user-profile-preview {
  grid-area: user-profile;
}

.zg-community-post__space-link {
  grid-area: space-link;
}

.zg-community-post__space-link .zg-btn__label {
  text-align: start;
}

.zg-community-post__actions {
  display: flex;
  flex-wrap: wrap-reverse;
  align-self: start;
  justify-content: flex-end;
  grid-area: actions;
  gap: 1rem;
  gap: 0.25rem 1rem;
}

.zg-community-post__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.zg-community-post__title {
  font-weight: 600;
  color: #14373c;
}

.zg-community-post__card-body-post-link {
  text-decoration: none;
}

.zg-community-post__body {
  color: #555;
}

.zg-community-post__attachments {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: scroll;
  gap: 1rem;
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.zg-community-post__attachments::-webkit-scrollbar {
  display: none;
}

.zg-community-post__footer {
  display: flex;
  gap: 0.5rem;
}

.zg-community-space-page .zg-community-post__header {
  grid-template-rows: auto;
  grid-template-areas: "user-profile actions";
}

.zg-community-space-page .zg-community-post__space-link {
  display: none;
}

.zg-community-post__content a {
  color: #0064ff !important;
  text-decoration: underline !important;
}

.zg-community-post-creation {
  display: grid;
  grid-template-areas: "space-select space-select" "title-input title-input" "body-container body-container" "attachment-button formatting-button" "attachment-previews attachment-previews" "footer footer";
  grid-template-columns: auto 1fr;
  grid-gap: 1rem 0.5rem;
  gap: 1rem 0.5rem;
}

.zg-community-post-creation__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  padding-bottom: 0.0625rem;
  border-bottom: 0.0625rem solid #e5efff;
}

.zg-community-post-creation__header--title {
  display: flex;
  flex: 1 0;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  color: #14373c;
  text-overflow: ellipsis;
}

.zg-community-post-creation__header--close {
  width: 1.5rem;
  height: 1.5rem;
}

.zg-community-post-creation__space-select {
  grid-area: space-select;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  align-self: stretch;
  width: 100%;
}

.zg-community-post-creation__space-select--input {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #aaa;
  border-radius: 0.25rem;
  gap: 1rem;
}

.zg-community-post-creation__title-input {
  grid-area: title-input;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  align-self: stretch;
  width: 100%;
}

.zg-community-post-creation__body-container {
  grid-area: body-container;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.zg-community-post-creation__body-input {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
  width: 100%;
}

.zg-community-post-creation__body-input > trix-toolbar {
  margin-bottom: -0.5rem;
  display: block !important;
}

.zg-community-post-creation__editor {
  width: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out;
}

.zg-community-post-creation__editor:focus, .zg-community-post-creation__editor:hover {
  border-color: #555;
}

.zg-community-post-creation__formatting-button {
  grid-area: formatting-button;
}

.zg-community-post-creation .zg-attachment-upload {
  grid-area: attachment-button;
}

.zg-community-post-creation .zg-attachment-upload__previews {
  grid-area: attachment-previews;
}

.zg-community-post-creation__footer {
  grid-area: footer;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
  gap: 1rem;
  border-top: 0.0625rem solid #e5efff;
  padding-top: 1rem;
}

@media (min-width: 36rem) {
  .zg-community-post-creation__footer {
    flex-direction: row;
    justify-content: flex-end;
    padding: 1rem;
  }
}
.zg-community-post-creation__editor ul {
  list-style-type: disc !important;
  padding-left: 1rem !important;
}

.zg-community-post-creation__editor ol {
  list-style-type: decimal !important;
  padding-left: 1rem !important;
}

.zg-community-post-creation__editor a {
  color: #0064ff !important;
  text-decoration: underline !important;
}

.zg-community-reaction-button--selected, .zg-community-reaction-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  font-size: 1.75rem;
  border-radius: 50%;
  transition: background-color 0.1s ease-in-out;
}

.zg-community-reaction-button--selected:hover, .zg-community-reaction-button:hover {
  background-color: #e5efff;
}

.zg-community-reaction-button--selected:hover .zg-community-reaction-button__icon, .zg-community-reaction-button:hover .zg-community-reaction-button__icon {
  transform: scale(1.5) translateY(-0.25rem);
}

.zg-community-reaction-button--selected {
  background-color: #b3d1ff;
}

.zg-community-reaction-button--selected:hover {
  background-color: #9ac2ff;
}

.zg-community-reaction-button__icon {
  transition: transform 0.1s ease-in-out;
}

.zg-community-reaction-centre {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-community-reaction-centre__reactions-container {
  display: inline-flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-community-reaction-centre__reaction-pill {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 1.3125rem;
  height: 1.3125rem;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 1rem;
}

.zg-community-reaction-centre__reaction-pill:nth-child(2) {
  z-index: 2;
  margin-left: -0.375rem;
}

.zg-community-reaction-centre__reaction-pill:nth-child(3) {
  z-index: 1;
  margin-left: -0.375rem;
}

.zg-community-reaction-centre__reaction-pill-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.875rem;
  transform: translate(-50%, -50%);
}

.zg-community-reaction-centre__reaction-buttons-container {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 11rem;
  padding: 0.5rem;
  background-color: #fff;
  border: 0.0625rem solid #b3d1ff;
  border-radius: 2rem;
  box-shadow: 0 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.1);
  gap: 1rem;
}

.zg-community-reaction-centre__reaction-buttons-container > * {
  flex: 0 1;
}

@media (min-width: 30rem) {
  .zg-community-reaction-centre__reaction-buttons-container {
    flex-wrap: nowrap;
  }
}
.zg-community-space-attachment__details {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  gap: 0.5rem;
}

.zg-community-space-attachment__details__user {
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zg-community-space-attachment__details__link {
  text-wrap: nowrap;
}

.zg-community-space-card__description {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #555;
}

.zg-community-space-card--fixed-width {
  min-width: 21rem;
  max-width: 21rem;
}

.zg-community-space-page {
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: "header" "sidebar" "content";
  grid-gap: 1rem;
  gap: 1rem;
}

@media (min-width: 87.5rem) {
  .zg-community-space-page {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: "header sidebar" "content sidebar";
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .zg-community-space-page .zg-community-space-page__header {
    margin-bottom: 0;
  }
  .zg-community-space-page .zg-community-space-page__sidebar .zg-dashboard-horizontal-scroll-container {
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
}
.zg-community-space-page__header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.zg-community-space-page__sidebar {
  grid-area: sidebar;
}

.zg-community-space-page__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zg-community-user-profile-preview--no-badges, .zg-community-user-profile-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-community-user-profile-preview--no-badges .zg-community-user-profile-preview__badges {
  display: none;
}

.zg-community-user-profile-preview__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  overflow: hidden;
  border: 0.0625rem solid #e5efff;
  border-radius: 50%;
}

.zg-community-user-profile-preview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zg-community-user-profile-preview__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #14373c;
}

.zg-community-user-profile-preview__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-community-user-profile-preview__badges--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 1rem;
  gap: 0.25rem;
}

.zg-hover-profile-container {
  position: relative;
}

.zg-hover-profile {
  position: absolute;
  z-index: 100;
  display: none;
  width: 20rem;
  padding: 1rem;
  background-color: #fff;
  border: 0.0625rem solid #e5efff;
  border-radius: 0.25rem;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem rgba(0, 0, 0, 0.05);
}

.zg-content-funnel {
  display: flex;
  justify-content: space-between;
}

.zg-content-funnel__illustration {
  display: flex;
  align-items: center;
}

.zg-content-funnel__content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.5rem;
}

.zg-content-funnel__title {
  color: #14373c;
}

.zg-content-funnel__button {
  display: flex;
  align-items: center;
}

.zg-content-funnel__chevron {
  display: flex;
  align-items: center;
}

.zg-dashboard-main-row .zg-dashboard-back-link, .zg-dashboard-header .zg-dashboard-back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-dashboard-header .zg-dashboard-back-link {
  display: none;
}

@media (min-width: 48rem) {
  .zg-dashboard-header .zg-dashboard-back-link {
    display: flex;
  }
}
.zg-dashboard-main-row .zg-dashboard-back-link {
  padding-top: 1rem;
}

@media (min-width: 48rem) {
  .zg-dashboard-main-row .zg-dashboard-back-link {
    padding-top: 0;
    display: none;
  }
}
.zg-date-container--today {
  color: #0064ff;
}

.zg-date-container--header {
  flex-direction: row;
  gap: 0.25rem;
  align-items: baseline;
}

.zg-date-container__day-of-month {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.zg-divider--hide-if-last, .zg-divider--grey, .zg-divider {
  width: 100%;
  height: 0;
  border: 0;
  border-top: 0.0625rem solid #e5efff;
}

.zg-divider--grey {
  border-color: #f5f5f5;
}

.zg-divider--hide-if-last:last-child {
  display: none;
}

.zg-dropdown-menu {
  display: flex;
}

@media (min-width: 48rem) {
  .zg-dropdown-menu {
    position: relative;
  }
}
.zg-dropdown-menu__trigger-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.zg-dropdown-menu__trigger-container .zg-dropdown-menu-chevron {
  transition: transform 0.2s ease-in-out;
}

.show.zg-dropdown-menu__trigger-container .zg-dropdown-menu-chevron {
  transform: rotate(180deg);
}

.show.zg-dropdown-menu__menu--modal, .show.zg-dropdown-menu__menu--translucent, .show.zg-dropdown-menu__menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: calc(100vw - 2rem);
  padding: 1rem 0.5rem;
  margin-top: 0.7rem !important;
  margin-left: -1rem !important;
  background: #fff;
  border-color: #e5efff;
  border-radius: 0.5rem;
  box-shadow: 0 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.1);
  gap: 1rem;
}

@media (min-width: 48rem) {
  .show.zg-dropdown-menu__menu--modal, .show.zg-dropdown-menu__menu--translucent, .show.zg-dropdown-menu__menu {
    width: auto;
    margin-top: 0.5rem !important;
  }
}
.zg-dropdown-menu__menu--translucent.show {
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.zg-dropdown-menu__menu--modal.show {
  gap: 0;
  padding: 0;
  margin-top: 0.7rem !important;
}

@media (min-width: 48rem) {
  .zg-dropdown-menu__menu--modal.show {
    width: 28.5rem;
    margin-top: 0.5rem !important;
  }
}
.zg-dropdown-menu__menu--modal.show .modal-header {
  border-bottom: none;
}

.zg-dropdown-menu__menu--modal.show .modal-body {
  color: #555;
}

.zg-dropdown-menu-item--danger, .zg-dropdown-menu-item--white, .zg-dropdown-menu-item--blue, .zg-dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
}

.zg-dropdown-menu-item--danger:hover, .zg-dropdown-menu-item--white:hover, .zg-dropdown-menu-item--blue:hover, .zg-dropdown-menu-item:hover {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.zg-dropdown-menu-item__icon-wrapper {
  padding: 0.25rem;
}

.zg-dropdown-menu-item__label {
  font-family: "Archia", sans-serif;
  font-weight: 600;
}

.zg-dropdown-menu-item__badge {
  margin-left: auto;
}

.zg-dropdown-menu-item--blue .zg-dropdown-menu-item__icon {
  color: #0064ff;
  fill: #0064ff;
}

.zg-dropdown-menu-item--blue .zg-dropdown-menu-item__icon path {
  fill: #0064ff;
}

.zg-dropdown-menu-item--blue .zg-dropdown-menu-item__label {
  color: #0064ff;
}

.zg-dropdown-menu-item--white .zg-dropdown-menu-item__icon {
  color: #fff;
  fill: #fff;
}

.zg-dropdown-menu-item--white .zg-dropdown-menu-item__icon path {
  fill: #fff;
}

.zg-dropdown-menu-item--white .zg-dropdown-menu-item__label {
  color: #fff;
}

.zg-dropdown-menu-item--danger .zg-dropdown-menu-item__icon {
  color: #d13b42;
  fill: #d13b42;
}

.zg-dropdown-menu-item--danger .zg-dropdown-menu-item__icon path {
  fill: #d13b42;
}

.zg-dropdown-menu-item--danger .zg-dropdown-menu-item__label {
  color: #d13b42;
}

.zg-employer-full-card {
  display: grid;
  grid-template-areas: "company" "followers" "footer";
  grid-template-rows: auto auto 1fr;
  grid-gap: 2rem;
  gap: 2rem;
  width: 100%;
  justify-items: center;
}

.zg-employer-full-card__footer, .zg-employer-full-card__followers, .zg-employer-full-card__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 20rem;
  gap: 1rem;
}

.zg-employer-full-card__company {
  grid-area: company;
  width: 100%;
}

.zg-employer-full-card__followers {
  flex-direction: row;
  align-items: flex-start;
  height: -moz-max-content;
  height: max-content;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #14373c;
  gap: 0.5rem;
  grid-area: followers;
}

.zg-employer-full-card__followers_number {
  font-weight: 600;
}

.zg-employer-full-card__followers_label {
  font-weight: 400;
}

.zg-employer-full-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  max-width: initial;
  grid-area: footer;
  gap: 1rem 3rem;
}

@media (min-width: 48rem) and (max-width: 87.48rem) {
  .zg-employer-full-card__footer {
    flex-direction: row;
    flex-wrap: initial;
    align-items: flex-start;
  }
}
.zg-employer-full-card__logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.zg-employer-full-card__logo-container > .zg-tag {
  margin-bottom: -0.875rem;
  transform: translateY(-50%);
}

.zg-employer-full-card__logo-container > .zg-tag .zg-tag__icon {
  display: none;
}

.zg-employer-full-card__logo-container:not(:has(.zg-tag)) .zg-employer-full-card__logo {
  padding-bottom: 1rem;
}

.zg-employer-full-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1rem 1.5rem;
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.25rem;
  grid-area: logo;
}

.zg-employer-full-card__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 3.75rem;
}

.zg-employer-full-card__title {
  color: #14373c;
  text-align: center;
}

.zg-employer-full-card__one-liner {
  color: #555;
  text-align: center;
}

.zg-employer-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  min-height: 10rem;
}

.zg-employer-info-card__actions, .zg-employer-info-card__company, .zg-employer-info-card__role {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 20rem;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .zg-employer-info-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
  }
  .zg-employer-info-card__role {
    justify-content: center;
    align-items: flex-start;
  }
}
.zg-employer-info-card__company {
  gap: 0.5rem;
}

.zg-employer-info-card__actions {
  width: 100%;
}

.zg-employer-info-card__logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.zg-employer-info-card__logo-container > .zg-tag {
  margin-bottom: -0.875rem;
  transform: translateY(-50%);
}

.zg-employer-info-card__logo-container > .zg-tag .zg-tag__icon {
  display: none;
}

.zg-employer-info-card__logo-container:not(:has(.zg-tag)) .zg-employer-info-card__logo {
  padding-bottom: 1rem;
}

.zg-employer-info-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1rem 1.5rem;
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.25rem;
  grid-area: logo;
}

.zg-employer-info-card__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 3.75rem;
}

.zg-employer-info-card__title {
  text-align: left;
}

.zg-employer-preview-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.zg-employer-preview-tile__logo {
  max-height: 5rem;
  overflow: hidden;
}

.zg-employer-preview-tile__logo img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 0.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.zg-employer-profile-tile {
  display: grid;
  grid-template-areas: "logo . ." "title title ." "partner partner ." "followers follow chevron" "location location ." "properties properties .";
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto auto auto 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.zg-employer-profile-tile__logo {
  grid-area: logo;
  width: 7.5rem;
  max-width: 7.5rem;
  height: 5rem;
  max-height: 5rem;
  margin-bottom: 0.5rem;
}

.zg-employer-profile-tile__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.zg-employer-profile-tile__title {
  grid-area: title;
  align-self: center;
  font-family: "Archia", sans-serif;
  font-weight: 600;
  color: #14373c;
}

.zg-employer-profile-tile__title a {
  text-decoration: none;
}

.zg-employer-profile-tile__partner {
  align-self: center;
  grid-area: partner;
}

.zg-employer-profile-tile__followers {
  grid-area: followers;
  align-self: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #14373c;
}

.zg-employer-profile-tile__followers .zg-employer-profile-tile__followers_number {
  font-weight: 600;
}

.zg-employer-profile-tile__followers .zg-employer-profile-tile__followers_label {
  font-weight: 400;
}

.zg-employer-profile-tile__chevron {
  grid-area: chevron;
  justify-self: end;
  align-self: center;
}

.zg-employer-profile-tile__follow {
  grid-area: follow;
  align-self: center;
  justify-self: end;
}

.zg-employer-profile-tile__location {
  align-self: center;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #14373c;
  grid-area: location;
}

.zg-employer-profile-tile__properties {
  grid-area: properties;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 75rem) {
  .zg-employer-profile-tile {
    display: grid;
    grid-template-areas: "logo . ." "title title ." "partner partner ." "followers follow chevron" "location location ." "properties properties .";
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto auto auto 1fr;
    position: relative;
    grid-template-areas: "logo title title ." "logo partner . ." "logo followers followers chevron" "logo location location ." "logo properties properties .";
    grid-template-columns: auto auto 1fr 1.5rem;
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }
  .zg-employer-profile-tile .zg-employer-profile-tile__logo {
    align-self: center;
    height: 7.5rem;
    max-height: 7.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
  .zg-employer-profile-tile .zg-employer-profile-tile__logo img {
    -o-object-position: center;
       object-position: center;
  }
}
@media (min-width: 48rem) {
  :not(.zg-companies-container) > .zg-employer-profile-tile {
    display: grid;
    grid-template-areas: "logo . ." "title title ." "partner partner ." "followers follow chevron" "location location ." "properties properties .";
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto auto auto 1fr;
    position: relative;
    grid-template-areas: "logo title title ." "logo partner . ." "logo followers followers chevron" "logo location location ." "logo properties properties .";
    grid-template-columns: auto auto 1fr 1.5rem;
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }
  :not(.zg-companies-container) > .zg-employer-profile-tile .zg-employer-profile-tile__logo {
    align-self: center;
    height: 7.5rem;
    max-height: 7.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
  :not(.zg-companies-container) > .zg-employer-profile-tile .zg-employer-profile-tile__logo img {
    -o-object-position: center;
       object-position: center;
  }
}
.zg-flashes {
  pointer-events: none;
}

.zg-flashes .zg-flash {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0.875rem;
  color: #000;
  pointer-events: auto;
  border-radius: 0.25rem;
  opacity: 0;
  transition: ease-in-out opacity 0.15s, ease-in-out transform 0.15s;
  transform: scale(0.95);
}

.zg-flashes .zg-flash .zg-flash-icon {
  display: none;
}

.zg-flashes .zg-flash .zg-flash-timer {
  position: absolute;
  top: 0;
  left: -0.0625rem;
  width: calc(100% + 0.125rem);
}

.zg-flashes .zg-flash .zg-flash-timer .zg-flash-timer-bar {
  height: 0.0625rem;
  background-color: var(--flash-color);
  transform-origin: left center;
  animation: flash-timer calc(var(--flash-duration) * 1s) linear forwards;
}

@keyframes flash-timer {
  to {
    transform: scaleX(0);
  }
}
.zg-flashes .zg-flash--show {
  opacity: 1;
  transform: scale(1);
}

.zg-flashes .zg-flash.alert-success {
  --flash-color: #0e8906;
}

.zg-flashes .zg-flash.alert-info {
  --flash-color: #0064ff;
}

.zg-flashes .zg-flash.alert-warning {
  --flash-color: #ff9b40;
}

.zg-flashes .zg-flash.alert-danger {
  --flash-color: #d13b42;
}

.zg-flashes.zg-flashes-float {
  position: fixed;
  top: 2rem;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  padding: 0 1rem;
  gap: 0.5rem;
}

.zg-flashes.zg-flashes-float .zg-flash {
  padding: 0.5rem;
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
}

.zg-flashes.zg-flashes-float .zg-flash .zg-flash-icon {
  display: block;
  min-width: 1rem;
  max-width: 1rem;
  min-height: 1rem;
  max-height: 1rem;
  margin-right: 0.5rem;
  fill: var(--flash-color);
}

.zg-flashes.zg-flashes-float.zg-flashes-float--preview {
  position: static;
  position: initial;
  top: auto;
  top: initial;
  z-index: auto;
  z-index: initial;
  display: inline;
  display: initial;
  flex-direction: initial;
  align-items: initial;
  width: auto;
  width: initial;
  padding: 0;
  padding: initial;
}

.zg-form-navigation {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-areas: "next" "back";
}

@media (min-width: 48rem) {
  .zg-form-navigation {
    grid-template-areas: "back next";
    grid-template-columns: 1fr 1fr;
  }
}
.zg-form-navigation--fixed {
  right: 0;
  bottom: 0;
  width: 100%;
  transition: width 0.2s ease, left 0.2s ease;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
}

@media (min-width: 48rem) {
  .zg-form-navigation--fixed {
    position: fixed;
    left: 14.75rem;
    width: calc((100vw - 14.75rem) * 0.6);
  }
  .zg-form-navigation--fixed.slim { /* stylelint-disable-line */
    left: 4rem;
    width: calc((100vw - 4rem) * 0.6);
  }
  .zg-form-navigation--fixed.no-transition { /* stylelint-disable-line */
    transition: none;
  }
}
@media (min-width: 62rem) {
  .zg-form-navigation--fixed {
    width: calc((100vw - 14.75rem) / 2);
  }
  .zg-form-navigation--fixed.slim { /* stylelint-disable-line */
    width: calc((100vw - 4rem) / 2);
  }
}
.zg-form-navigation--blade-footer {
  width: 100%;
}

.zg-form-navigation--modal-footer {
  width: 100%;
}

@media (min-width: 36rem) {
  .zg-form-navigation--modal-footer {
    width: auto;
    grid-template-areas: "back next";
    grid-template-columns: 1fr 1fr;
  }
  .zg-form-navigation--modal-footer .zg-form-navigation__back {
    justify-self: end;
  }
}
.zg-form-navigation__back, .zg-form-navigation__next {
  display: flex;
  justify-content: center;
}

@media (min-width: 48rem) {
  .zg-form-navigation__back, .zg-form-navigation__next {
    align-self: center;
  }
}
.zg-form-navigation__back .btn,
.zg-form-navigation__back .zg-btn, .zg-form-navigation__next .btn,
.zg-form-navigation__next .zg-btn {
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 48rem) {
  .zg-form-navigation__back .btn,
  .zg-form-navigation__back .zg-btn, .zg-form-navigation__next .btn,
  .zg-form-navigation__next .zg-btn {
    width: auto;
    width: initial;
  }
}
.zg-form-navigation__back {
  grid-area: back;
}

@media (min-width: 48rem) {
  .zg-form-navigation__back {
    justify-self: start;
  }
}
.zg-form-navigation__next {
  grid-area: next;
}

@media (min-width: 48rem) {
  .zg-form-navigation__next {
    justify-self: end;
  }
}
.zg-grouped-list--dashboard, .zg-grouped-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 48rem) {
  .zg-grouped-list--dashboard .zg-grouped-list__group, .zg-grouped-list .zg-grouped-list__group {
    flex-direction: row;
  }
}
.zg-grouped-list__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zg-grouped-list--dashboard .zg-grouped-list__header, .zg-grouped-list__header {
  position: sticky;
  top: 0;
  height: 100%;
}

.zg-grouped-list__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 1rem;
}

.zg-grouped-list--dashboard .zg-grouped-list__header {
  top: 3.5rem;
  padding-top: 0.5rem;
}

@media (max-width: 47.98rem) {
  .zg-grouped-list--dashboard .zg-grouped-list__header {
    z-index: 1;
    width: calc(100% + 2rem);
    padding: 1rem;
    margin-left: -1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 0.0625rem solid #e5efff;
    -webkit-backdrop-filter: blur(0.3125rem);
            backdrop-filter: blur(0.3125rem);
  }
  .zg-grouped-list--dashboard .zg-grouped-list__header .zg-date-container {
    flex-direction: row;
    gap: 0.25rem;
    align-items: baseline;
  }
}
.zg-icon-label__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zg-icon-label__icon--pulsate {
  position: relative;
}

.zg-icon-label__icon--pulsate::before {
  position: absolute;
  top: -0.1875rem;
  left: -0.1875rem;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulsate {
  0% {
    opacity: 0;
    transform: scale(0.25, 0.25);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(1.25, 1.25);
  }
}
.zg-latest-match-message-container, body[data-theme=ai-coach] .zg-latest-match-message-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
}

.zg-latest-match-message-container img, body[data-theme=ai-coach] .zg-latest-match-message-container img {
  max-width: none;
  max-width: initial;
}

body[data-theme=ai-coach] .zg-latest-match-message-container {
  color: #fff;
}

body[data-theme=ai-coach] .zg-latest-match-message-container .zg-tag-label,
body[data-theme=ai-coach] .zg-latest-match-message-container .zg-caption {
  color: #fff;
}

body[data-theme=ai-coach] .zg-latest-match-message-container--content-bold {
  font-weight: 600;
  color: #fff !important;
}

body[data-theme=ai-coach] .zg-latest-match-message-container.unread {
  background: rgba(0, 0, 0, 0.2);
}

body[data-theme=ai-coach] .zg-latest-match-message-container:hover {
  background: rgba(0, 0, 0, 0.1) !important;
}

.zg-latest-match-message-container {
  color: #14373c;
}

.zg-latest-match-message-container--content-bold {
  font-weight: 600;
  color: #000 !important;
}

.zg-latest-match-message-container .zg-tag-label {
  color: #555;
}

.zg-latest-match-message-container .zg-caption {
  color: #555;
}

.zg-latest-match-message-container.unread {
  background: #e5efff;
}

.zg-latest-match-message-container:hover {
  background: #f7faff !important;
}

.zg-partner-flashes {
  pointer-events: none;
}

.zg-partner-flashes .zg-partner-flash {
  position: relative;
  display: inline-flex;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  pointer-events: auto;
  border-radius: 0.5rem;
  max-width: 25rem;
  opacity: 0;
  transition: ease-in-out opacity 0.15s, ease-in-out transform 0.15s;
  transform: scale(0.95);
}

.zg-partner-flashes .zg-partner-flash .zg-partner-flash-icon {
  display: none;
}

.zg-partner-flashes .zg-partner-flash .zg-partner-flash-timer {
  position: absolute;
  bottom: 0;
  left: -0.0625rem;
  width: calc(100% + 0.125rem);
}

.zg-partner-flashes .zg-partner-flash .zg-partner-flash-timer .zg-partner-flash-timer-bar {
  height: 0.0625rem;
  background-color: var(--flash-color);
  transform-origin: left center;
  animation: flash-timer calc(var(--flash-duration) * 1s) linear forwards;
}

@keyframes flash-timer {
  to {
    transform: scaleX(0);
  }
}
.zg-partner-flashes .zg-partner-flash--show {
  opacity: 1;
  transform: scale(1);
}

.zg-partner-flashes .zg-partner-flash.alert-success {
  --flash-color: #0064ff;
}

.zg-partner-flashes .zg-partner-flash.alert-notice {
  --flash-color: #ff9b40;
}

.zg-partner-flashes .zg-partner-flash.alert-warning {
  --flash-color: #07661e;
}

.zg-partner-flashes .zg-partner-flash.alert-danger {
  --flash-color: #d13b42;
}

.zg-partner-flashes.zg-partner-flashes-float {
  position: fixed;
  top: 0.5rem;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100vw;
  padding: 0 0.5rem;
  gap: 0.5rem;
}

.zg-partner-flashes.zg-partner-flashes-float .zg-partner-flash {
  padding: 1rem;
  border: 0.0625rem solid #fff;
  background: linear-gradient(180deg, #fff 30%, #f7faff 100%);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.zg-partner-flashes.zg-partner-flashes-float .zg-partner-flash .zg-partner-flash-icon {
  display: block;
  min-width: 1.625rem;
  max-width: 1.625rem;
  min-height: 1.625rem;
  max-height: 1.625rem;
  fill: var(--flash-color);
}

.zg-partner-flashes.zg-partner-flashes-float.zg-partner-flashes-float--preview {
  position: static;
  position: initial;
  top: auto;
  top: initial;
  z-index: auto;
  z-index: initial;
  display: inline;
  display: initial;
  flex-direction: initial;
  align-items: initial;
  width: auto;
  width: initial;
  padding: 0;
  padding: initial;
}

.zg-page-heading--opportunity-full-layout, .zg-page-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title-container action" "description description" "search search";
  align-items: center;
  grid-row-gap: 0;
  row-gap: 0;
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media (min-width: 36rem) {
  .zg-page-heading--opportunity-full-layout, .zg-page-heading {
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "title-container search action" "description description description";
  }
  .zg-page-heading--opportunity-full-layout .zg-page-heading__search, .zg-page-heading .zg-page-heading__search {
    width: auto;
    width: initial;
    margin-top: 0;
  }
}
.zg-page-heading__title-container {
  grid-area: title-container;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zg-page-heading__action {
  grid-area: action;
  justify-self: end;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.zg-page-heading__description {
  grid-area: description;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #555;
}

.zg-page-heading__search {
  grid-area: search;
  justify-self: end;
  width: 100%;
  margin-top: 0.5rem;
}

.zg-page-heading--opportunity-full-layout {
  margin-top: 2rem;
}

@media (min-width: 87.5rem) {
  .zg-page-heading--opportunity-full-layout {
    position: fixed;
    top: 4.25rem;
    width: calc(100vw - 14.75rem - 2rem);
    transition: width 0.2s ease;
  }
  .zg-page-heading--opportunity-full-layout.slim { /* stylelint-disable-line */
    width: calc(100vw - 4rem - 2rem);
  }
  .zg-page-heading--opportunity-full-layout.no-transition { /* stylelint-disable-line */
    transition: none;
  }
  .zg-page-heading--opportunity-full-layout .zg-page-heading__action--hidden {
    opacity: 0;
  }
  .zg-page-heading--opportunity-full-layout .zg-page-heading__action--display-none {
    display: none;
  }
}
.zg-page-heading--opportunity-full-layout .zg-dropdown-menu__menu {
  z-index: 2;
}

.zg-page-heading__title-container > .zg-page-heading__title {
  color: #14373c;
  word-break: break-word;
}

.zg-page-heading__description {
  color: #555;
}

.zg-pill-filter--selected, .zg-pill-filter {
  border-radius: 0.8125rem;
  gap: 0.5rem;
}

.zg-pill-filter__icon {
  fill: #555;
}

.zg-pill-filter--selected {
  background-color: #00fad7;
  border-color: #00fad7;
}

.zg-pill-filter--selected .zg-pill-filter__label {
  color: #000;
}

.zg-pill-filter--selected .zg-pill-filter__icon {
  fill: #000;
}

#preference-forms .zg-pill-filter--selected {
  background-color: #0064ff;
  border-color: #0064ff;
}

#preference-forms .zg-pill-filter--selected .zg-pill-filter__label {
  color: #fff;
}

#preference-forms .zg-pill-filter--selected .zg-pill-filter__icon {
  fill: #fff;
}

#apprenticeship-category-form .zg-pill-filter--selected {
  background-color: #0064ff;
  border-color: #0064ff;
}

#apprenticeship-category-form .zg-pill-filter--selected .zg-pill-filter__label {
  color: #fff;
}

#apprenticeship-category-form .zg-pill-filter--selected .zg-pill-filter__icon {
  fill: #fff;
}

#apprenticeship-type-form .zg-pill-filter--selected {
  background-color: #0064ff;
  border-color: #0064ff;
}

#apprenticeship-type-form .zg-pill-filter--selected .zg-pill-filter__label {
  color: #fff;
}

#apprenticeship-type-form .zg-pill-filter--selected .zg-pill-filter__icon {
  fill: #fff;
}

#apprenticeship-location-form .zg-pill-filter--selected {
  background-color: #0064ff;
  border-color: #0064ff;
}

#apprenticeship-location-form .zg-pill-filter--selected .zg-pill-filter__label {
  color: #fff;
}

#apprenticeship-location-form .zg-pill-filter--selected .zg-pill-filter__icon {
  fill: #fff;
}

.zg-pill-label {
  border-radius: 0.8125rem;
}

.zg-pill-label__icon {
  color: #0064ff;
  fill: #0064ff;
}

.zg-pill-label__icon path {
  fill: #0064ff;
}

.zg-progress-percent-bar {
  width: 100%;
  height: 0.375rem;
  border-radius: 0.1875rem;
}

.zg-progress-percent-bar__bar--blue {
  background-color: #0064ff;
}

.zg-progress-percent-bar__bar--success {
  background-color: #0e8906;
}

.zg-progress-percent-bar__bar--error {
  background-color: #d13b42;
}

.zg-progress-percent-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0064ff;
  white-space: nowrap;
}

.zg-relative-date-time {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3125rem;
  color: #555;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-section-heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

.zg-section-heading__heading--underline, .zg-section-heading__heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.zg-section-heading .zg-btn__label {
  text-wrap: nowrap;
}

.zg-section-heading__heading--underline {
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #ebebeb;
}

.zg-stat-spotlight {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}

.zg-stat-spotlight__value {
  font-family: "Archia", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0064ff;
}

.zg-stat-spotlight__sub-value {
  font-size: 0.875rem;
  font-weight: 400;
  color: #555;
}

.zg-tab-menu {
  position: relative;
}

.zg-tab-menu__items {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  overflow-x: scroll;
  scrollbar-width: none;
}

@media (min-width: 36rem) {
  .zg-tab-menu__items {
    overflow-x: visible;
  }
}
.zg-tab-menu__items::-webkit-scrollbar {
  width: 0;
}

.zg-tab-menu__left-indicator, .zg-tab-menu__right-indicator {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s ease-in;
}

.zg-tab-menu__left-indicator--visible, .zg-tab-menu__right-indicator--visible {
  opacity: 1;
  transition: opacity 0.1s ease-out;
}

.zg-tab-menu__left-indicator {
  left: 0;
  padding: 0 1.5rem 0 0;
  background: linear-gradient(to left, rgba(247, 250, 255, 0.5) 0%, #f7faff 100%);
}

.zg-tab-menu__right-indicator {
  right: 0;
  padding: 0 0 0 1.5rem;
  background: linear-gradient(to right, rgba(247, 250, 255, 0.5) 0%, #f7faff 100%);
}

.zg-tab-menu-item.active, .zg-tab-menu-item {
  padding: 0.5rem;
  color: #000;
  text-decoration: none;
  text-wrap: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.zg-tab-menu-item.active {
  color: #14373c;
  border-bottom: 0.125rem solid #00fad7;
}

.zg-tag--skinny {
  padding: 0.125rem 0.25rem;
}

.zg-tag--hide-label {
  padding: 0.25rem;
}

.zg-tag--hide-label .zg-tag__label {
  display: none;
}

.zg-tag--full-colour {
  background-color: #00fad7;
  border-color: #00fad7;
}

.zg-tag--full-colour .zg-tag__label {
  color: #000;
}

.zg-tag--full-colour-blue {
  background-color: rgba(0, 100, 255, 0.1);
  border-color: rgba(0, 100, 255, 0.1);
}

.zg-tag--full-colour-blue .zg-tag__label {
  font-weight: 500;
  color: #0064ff;
}

.zg-tag--white {
  border-color: #fff;
}

.zg-tag--white .zg-tag__label {
  color: #fff;
}

.zg-tag--dark-green {
  border-color: #14373c;
}

.zg-tag--dark-green .zg-tag__label {
  color: #14373c;
}

.zg-tag--blue {
  border-color: #0064ff;
}

.zg-tag--blue .zg-tag__label {
  color: #0064ff;
}

.zg-tag--blue-60 {
  border-color: #3383ff;
}

.zg-tag--blue-60 .zg-tag__label {
  color: #3383ff;
}

.zg-tag--success {
  border-color: #0e8906;
}

.zg-tag--success .zg-tag__label {
  color: #0e8906;
}

.zg-tag--warning {
  border-color: #ff9b40;
}

.zg-tag--warning .zg-tag__label {
  color: #ff9b40;
}

.zg-tag--danger {
  border-color: #d13b42;
}

.zg-tag--danger .zg-tag__label {
  color: #d13b42;
}

.zg-tag--gradient-dark-green {
  background: linear-gradient(180deg, rgba(20, 55, 60, 0.4) 0%, rgba(20, 55, 60, 0.8) 100%);
  border: 0;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
}

.zg-tag--gradient-dark-green .zg-tag__label {
  color: #fff;
}

.zg-modal-component__header {
  padding: 0.5rem 1rem;
}

.zg-modal-component--transparent .zg-modal-component__content {
  overflow: visible !important; /* stylelint-disable-line declaration-no-important */
  background-color: transparent;
  border: 0;
}

.zg-modal-component--transparent .zg-modal-component__header {
  position: relative;
  border: 0;
}

.zg-modal-component--transparent .zg-modal-component__close {
  position: absolute;
  top: -1rem;
  right: 1rem;
}

.zg-modal-component--transparent .zg-modal-component__body {
  border: 0;
}

.zg-turbo-modal {
  height: 100lvh;
}

.zg-turbo-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  pointer-events: auto;
  background-color: #fff;
  border: 0.0625rem solid #ebebeb;
  border-radius: 0.5rem;
  gap: 1rem;
}

.zg-turbo-modal .modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0.5rem;
  border-bottom: 0.0625rem solid #e5efff;
}

.zg-turbo-modal .modal-header h5, .zg-turbo-modal .modal-header .h5 {
  color: #14373c;
}

.zg-turbo-modal .modal-body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 1rem;
}

.zg-turbo-modal .modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border-top: none;
}

.zg-turbo-modal .modal-footer > * {
  margin: 0;
}

.zg-turbo-modal__close_button_absolute {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1099;
  pointer-events: auto;
}

@media (max-width: 35.98rem) {
  .zg-turbo-modal-sm-bottom.modal.fade > .modal-dialog {
    margin: 0;
    overflow: hidden;
    transform: translate(0, 0);
  }
  .zg-turbo-modal-sm-bottom .modal-dialog {
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
  }
  .zg-turbo-modal-sm-bottom .modal-dialog .modal-content {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
    max-height: 100%;
    overflow: hidden;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .zg-turbo-modal-sm-bottom .modal-dialog .modal-content .modal-body {
    overflow-y: auto;
  }
  .zg-turbo-modal-sm-bottom .modal-dialog .modal-content .button_to,
  .zg-turbo-modal-sm-bottom .modal-dialog .modal-content .btn,
  .zg-turbo-modal-sm-bottom .modal-dialog .modal-content .zg-btn,
  .zg-turbo-modal-sm-bottom .modal-dialog .modal-content .zg-btn__form {
    width: 100%;
  }
}
.zg-turbo-modal-video .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  border-radius: 0rem;
}

.zg-turbo-modal-video .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.zg-turbo-modal-video .modal-content {
  max-width: 62rem;
  max-height: 100vh;
  margin: 0.5rem;
  overflow: hidden;
}

.zg-turbo-modal-video .modal-content .ratio {
  overflow: hidden;
}

@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .zg-turbo-modal-video .modal-content {
    margin: 0;
    border-radius: 0;
  }
}
.zg-turbo-modal-right-panel .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 24rem;
  margin: 0;
  padding: 0;
  transform: none;
  transition: transform 0.3s ease-in-out;
}

.zg-turbo-modal-right-panel .modal-content {
  height: 100vh;
  border-radius: 0;
  border-right: none;
  border-top: none;
  border-bottom: none;
}

.zg-turbo-modal-right-panel .modal-body {
  flex: 1 1;
  overflow-y: auto;
}

.zg-turbo-modal-right-panel.modal.fade .modal-dialog {
  transform: translateX(100%);
}

.zg-turbo-modal-right-panel.modal.show .modal-dialog {
  transform: translateX(0);
}

.zg-view-count {
  align-items: center;
}

.zg-view-count__count, .zg-view-count__unit {
  font-size: 0.875rem;
}

.zg-progress-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #e5efff;
  background-image: linear-gradient(to right, transparent 50%, #0064ff 0);
  position: relative;
  display: inline-block;
  margin: 0;
}

.zg-progress-circle::before {
  content: "";
  display: block;
  margin-left: 50%;
  height: 100%;
  border-radius: 0 100% 100% 0/50%;
  background-color: inherit;
  transform-origin: left;
}

.zg-progress-circle--ring::after, .zg-progress-circle--ring-with-label::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.zg-progress-circle--ring-with-label::after {
  content: attr(data-percentage);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.625rem;
}

.zg-progress-circle[data-percentage="0"]:before {
  transform: rotate(0turn);
}

.zg-progress-circle[data-percentage="1"]:before {
  transform: rotate(0.01turn);
}

.zg-progress-circle[data-percentage="2"]:before {
  transform: rotate(0.02turn);
}

.zg-progress-circle[data-percentage="3"]:before {
  transform: rotate(0.03turn);
}

.zg-progress-circle[data-percentage="4"]:before {
  transform: rotate(0.04turn);
}

.zg-progress-circle[data-percentage="5"]:before {
  transform: rotate(0.05turn);
}

.zg-progress-circle[data-percentage="6"]:before {
  transform: rotate(0.06turn);
}

.zg-progress-circle[data-percentage="7"]:before {
  transform: rotate(0.07turn);
}

.zg-progress-circle[data-percentage="8"]:before {
  transform: rotate(0.08turn);
}

.zg-progress-circle[data-percentage="9"]:before {
  transform: rotate(0.09turn);
}

.zg-progress-circle[data-percentage="10"]:before {
  transform: rotate(0.1turn);
}

.zg-progress-circle[data-percentage="11"]:before {
  transform: rotate(0.11turn);
}

.zg-progress-circle[data-percentage="12"]:before {
  transform: rotate(0.12turn);
}

.zg-progress-circle[data-percentage="13"]:before {
  transform: rotate(0.13turn);
}

.zg-progress-circle[data-percentage="14"]:before {
  transform: rotate(0.14turn);
}

.zg-progress-circle[data-percentage="15"]:before {
  transform: rotate(0.15turn);
}

.zg-progress-circle[data-percentage="16"]:before {
  transform: rotate(0.16turn);
}

.zg-progress-circle[data-percentage="17"]:before {
  transform: rotate(0.17turn);
}

.zg-progress-circle[data-percentage="18"]:before {
  transform: rotate(0.18turn);
}

.zg-progress-circle[data-percentage="19"]:before {
  transform: rotate(0.19turn);
}

.zg-progress-circle[data-percentage="20"]:before {
  transform: rotate(0.2turn);
}

.zg-progress-circle[data-percentage="21"]:before {
  transform: rotate(0.21turn);
}

.zg-progress-circle[data-percentage="22"]:before {
  transform: rotate(0.22turn);
}

.zg-progress-circle[data-percentage="23"]:before {
  transform: rotate(0.23turn);
}

.zg-progress-circle[data-percentage="24"]:before {
  transform: rotate(0.24turn);
}

.zg-progress-circle[data-percentage="25"]:before {
  transform: rotate(0.25turn);
}

.zg-progress-circle[data-percentage="26"]:before {
  transform: rotate(0.26turn);
}

.zg-progress-circle[data-percentage="27"]:before {
  transform: rotate(0.27turn);
}

.zg-progress-circle[data-percentage="28"]:before {
  transform: rotate(0.28turn);
}

.zg-progress-circle[data-percentage="29"]:before {
  transform: rotate(0.29turn);
}

.zg-progress-circle[data-percentage="30"]:before {
  transform: rotate(0.3turn);
}

.zg-progress-circle[data-percentage="31"]:before {
  transform: rotate(0.31turn);
}

.zg-progress-circle[data-percentage="32"]:before {
  transform: rotate(0.32turn);
}

.zg-progress-circle[data-percentage="33"]:before {
  transform: rotate(0.33turn);
}

.zg-progress-circle[data-percentage="34"]:before {
  transform: rotate(0.34turn);
}

.zg-progress-circle[data-percentage="35"]:before {
  transform: rotate(0.35turn);
}

.zg-progress-circle[data-percentage="36"]:before {
  transform: rotate(0.36turn);
}

.zg-progress-circle[data-percentage="37"]:before {
  transform: rotate(0.37turn);
}

.zg-progress-circle[data-percentage="38"]:before {
  transform: rotate(0.38turn);
}

.zg-progress-circle[data-percentage="39"]:before {
  transform: rotate(0.39turn);
}

.zg-progress-circle[data-percentage="40"]:before {
  transform: rotate(0.4turn);
}

.zg-progress-circle[data-percentage="41"]:before {
  transform: rotate(0.41turn);
}

.zg-progress-circle[data-percentage="42"]:before {
  transform: rotate(0.42turn);
}

.zg-progress-circle[data-percentage="43"]:before {
  transform: rotate(0.43turn);
}

.zg-progress-circle[data-percentage="44"]:before {
  transform: rotate(0.44turn);
}

.zg-progress-circle[data-percentage="45"]:before {
  transform: rotate(0.45turn);
}

.zg-progress-circle[data-percentage="46"]:before {
  transform: rotate(0.46turn);
}

.zg-progress-circle[data-percentage="47"]:before {
  transform: rotate(0.47turn);
}

.zg-progress-circle[data-percentage="48"]:before {
  transform: rotate(0.48turn);
}

.zg-progress-circle[data-percentage="49"]:before {
  transform: rotate(0.49turn);
}

.zg-progress-circle[data-percentage="50"]:before {
  transform: rotate(0.5turn);
}

.zg-progress-circle[data-percentage="51"]:before {
  background-color: #0064ff;
  transform: rotate(0.01turn);
}

.zg-progress-circle[data-percentage="52"]:before {
  background-color: #0064ff;
  transform: rotate(0.02turn);
}

.zg-progress-circle[data-percentage="53"]:before {
  background-color: #0064ff;
  transform: rotate(0.03turn);
}

.zg-progress-circle[data-percentage="54"]:before {
  background-color: #0064ff;
  transform: rotate(0.04turn);
}

.zg-progress-circle[data-percentage="55"]:before {
  background-color: #0064ff;
  transform: rotate(0.05turn);
}

.zg-progress-circle[data-percentage="56"]:before {
  background-color: #0064ff;
  transform: rotate(0.06turn);
}

.zg-progress-circle[data-percentage="57"]:before {
  background-color: #0064ff;
  transform: rotate(0.07turn);
}

.zg-progress-circle[data-percentage="58"]:before {
  background-color: #0064ff;
  transform: rotate(0.08turn);
}

.zg-progress-circle[data-percentage="59"]:before {
  background-color: #0064ff;
  transform: rotate(0.09turn);
}

.zg-progress-circle[data-percentage="60"]:before {
  background-color: #0064ff;
  transform: rotate(0.1turn);
}

.zg-progress-circle[data-percentage="61"]:before {
  background-color: #0064ff;
  transform: rotate(0.11turn);
}

.zg-progress-circle[data-percentage="62"]:before {
  background-color: #0064ff;
  transform: rotate(0.12turn);
}

.zg-progress-circle[data-percentage="63"]:before {
  background-color: #0064ff;
  transform: rotate(0.13turn);
}

.zg-progress-circle[data-percentage="64"]:before {
  background-color: #0064ff;
  transform: rotate(0.14turn);
}

.zg-progress-circle[data-percentage="65"]:before {
  background-color: #0064ff;
  transform: rotate(0.15turn);
}

.zg-progress-circle[data-percentage="66"]:before {
  background-color: #0064ff;
  transform: rotate(0.16turn);
}

.zg-progress-circle[data-percentage="67"]:before {
  background-color: #0064ff;
  transform: rotate(0.17turn);
}

.zg-progress-circle[data-percentage="68"]:before {
  background-color: #0064ff;
  transform: rotate(0.18turn);
}

.zg-progress-circle[data-percentage="69"]:before {
  background-color: #0064ff;
  transform: rotate(0.19turn);
}

.zg-progress-circle[data-percentage="70"]:before {
  background-color: #0064ff;
  transform: rotate(0.2turn);
}

.zg-progress-circle[data-percentage="71"]:before {
  background-color: #0064ff;
  transform: rotate(0.21turn);
}

.zg-progress-circle[data-percentage="72"]:before {
  background-color: #0064ff;
  transform: rotate(0.22turn);
}

.zg-progress-circle[data-percentage="73"]:before {
  background-color: #0064ff;
  transform: rotate(0.23turn);
}

.zg-progress-circle[data-percentage="74"]:before {
  background-color: #0064ff;
  transform: rotate(0.24turn);
}

.zg-progress-circle[data-percentage="75"]:before {
  background-color: #0064ff;
  transform: rotate(0.25turn);
}

.zg-progress-circle[data-percentage="76"]:before {
  background-color: #0064ff;
  transform: rotate(0.26turn);
}

.zg-progress-circle[data-percentage="77"]:before {
  background-color: #0064ff;
  transform: rotate(0.27turn);
}

.zg-progress-circle[data-percentage="78"]:before {
  background-color: #0064ff;
  transform: rotate(0.28turn);
}

.zg-progress-circle[data-percentage="79"]:before {
  background-color: #0064ff;
  transform: rotate(0.29turn);
}

.zg-progress-circle[data-percentage="80"]:before {
  background-color: #0064ff;
  transform: rotate(0.3turn);
}

.zg-progress-circle[data-percentage="81"]:before {
  background-color: #0064ff;
  transform: rotate(0.31turn);
}

.zg-progress-circle[data-percentage="82"]:before {
  background-color: #0064ff;
  transform: rotate(0.32turn);
}

.zg-progress-circle[data-percentage="83"]:before {
  background-color: #0064ff;
  transform: rotate(0.33turn);
}

.zg-progress-circle[data-percentage="84"]:before {
  background-color: #0064ff;
  transform: rotate(0.34turn);
}

.zg-progress-circle[data-percentage="85"]:before {
  background-color: #0064ff;
  transform: rotate(0.35turn);
}

.zg-progress-circle[data-percentage="86"]:before {
  background-color: #0064ff;
  transform: rotate(0.36turn);
}

.zg-progress-circle[data-percentage="87"]:before {
  background-color: #0064ff;
  transform: rotate(0.37turn);
}

.zg-progress-circle[data-percentage="88"]:before {
  background-color: #0064ff;
  transform: rotate(0.38turn);
}

.zg-progress-circle[data-percentage="89"]:before {
  background-color: #0064ff;
  transform: rotate(0.39turn);
}

.zg-progress-circle[data-percentage="90"]:before {
  background-color: #0064ff;
  transform: rotate(0.4turn);
}

.zg-progress-circle[data-percentage="91"]:before {
  background-color: #0064ff;
  transform: rotate(0.41turn);
}

.zg-progress-circle[data-percentage="92"]:before {
  background-color: #0064ff;
  transform: rotate(0.42turn);
}

.zg-progress-circle[data-percentage="93"]:before {
  background-color: #0064ff;
  transform: rotate(0.43turn);
}

.zg-progress-circle[data-percentage="94"]:before {
  background-color: #0064ff;
  transform: rotate(0.44turn);
}

.zg-progress-circle[data-percentage="95"]:before {
  background-color: #0064ff;
  transform: rotate(0.45turn);
}

.zg-progress-circle[data-percentage="96"]:before {
  background-color: #0064ff;
  transform: rotate(0.46turn);
}

.zg-progress-circle[data-percentage="97"]:before {
  background-color: #0064ff;
  transform: rotate(0.47turn);
}

.zg-progress-circle[data-percentage="98"]:before {
  background-color: #0064ff;
  transform: rotate(0.48turn);
}

.zg-progress-circle[data-percentage="99"]:before {
  background-color: #0064ff;
  transform: rotate(0.49turn);
}

.zg-progress-circle[data-percentage="100"]:before {
  background-color: #0064ff;
  transform: rotate(0.5turn);
}

.zg-promotion-banner-image {
  background-image: url(/assets/thumbnails/antonia-2a1df4028c65fce890021c16b67142480af6ce28b6ae9c050d62f031575f1d5e.jpg);
}

.modal-backdrop {
  z-index: 60;
}

.zg-turbo-modal {
  height: 100dvh;
}

.zg-progress-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #e5efff;
  background-image: linear-gradient(to right, transparent 50%, #0064ff 0);
  position: relative;
  display: inline-block;
  margin: 0;
}

.zg-progress-circle::before {
  content: "";
  display: block;
  margin-left: 50%;
  height: 100%;
  border-radius: 0 100% 100% 0/50%;
  background-color: inherit;
  transform-origin: left;
}

.zg-progress-circle--ring::after, .zg-progress-circle--ring-with-label::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  inset: 0;
}

.zg-progress-circle--ring-with-label::after {
  content: attr(data-percentage);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.625rem;
}

.zg-progress-circle[data-percentage="0"]:before {
  transform: rotate(0turn);
}

.zg-progress-circle[data-percentage="1"]:before {
  transform: rotate(0.01turn);
}

.zg-progress-circle[data-percentage="2"]:before {
  transform: rotate(0.02turn);
}

.zg-progress-circle[data-percentage="3"]:before {
  transform: rotate(0.03turn);
}

.zg-progress-circle[data-percentage="4"]:before {
  transform: rotate(0.04turn);
}

.zg-progress-circle[data-percentage="5"]:before {
  transform: rotate(0.05turn);
}

.zg-progress-circle[data-percentage="6"]:before {
  transform: rotate(0.06turn);
}

.zg-progress-circle[data-percentage="7"]:before {
  transform: rotate(0.07turn);
}

.zg-progress-circle[data-percentage="8"]:before {
  transform: rotate(0.08turn);
}

.zg-progress-circle[data-percentage="9"]:before {
  transform: rotate(0.09turn);
}

.zg-progress-circle[data-percentage="10"]:before {
  transform: rotate(0.1turn);
}

.zg-progress-circle[data-percentage="11"]:before {
  transform: rotate(0.11turn);
}

.zg-progress-circle[data-percentage="12"]:before {
  transform: rotate(0.12turn);
}

.zg-progress-circle[data-percentage="13"]:before {
  transform: rotate(0.13turn);
}

.zg-progress-circle[data-percentage="14"]:before {
  transform: rotate(0.14turn);
}

.zg-progress-circle[data-percentage="15"]:before {
  transform: rotate(0.15turn);
}

.zg-progress-circle[data-percentage="16"]:before {
  transform: rotate(0.16turn);
}

.zg-progress-circle[data-percentage="17"]:before {
  transform: rotate(0.17turn);
}

.zg-progress-circle[data-percentage="18"]:before {
  transform: rotate(0.18turn);
}

.zg-progress-circle[data-percentage="19"]:before {
  transform: rotate(0.19turn);
}

.zg-progress-circle[data-percentage="20"]:before {
  transform: rotate(0.2turn);
}

.zg-progress-circle[data-percentage="21"]:before {
  transform: rotate(0.21turn);
}

.zg-progress-circle[data-percentage="22"]:before {
  transform: rotate(0.22turn);
}

.zg-progress-circle[data-percentage="23"]:before {
  transform: rotate(0.23turn);
}

.zg-progress-circle[data-percentage="24"]:before {
  transform: rotate(0.24turn);
}

.zg-progress-circle[data-percentage="25"]:before {
  transform: rotate(0.25turn);
}

.zg-progress-circle[data-percentage="26"]:before {
  transform: rotate(0.26turn);
}

.zg-progress-circle[data-percentage="27"]:before {
  transform: rotate(0.27turn);
}

.zg-progress-circle[data-percentage="28"]:before {
  transform: rotate(0.28turn);
}

.zg-progress-circle[data-percentage="29"]:before {
  transform: rotate(0.29turn);
}

.zg-progress-circle[data-percentage="30"]:before {
  transform: rotate(0.3turn);
}

.zg-progress-circle[data-percentage="31"]:before {
  transform: rotate(0.31turn);
}

.zg-progress-circle[data-percentage="32"]:before {
  transform: rotate(0.32turn);
}

.zg-progress-circle[data-percentage="33"]:before {
  transform: rotate(0.33turn);
}

.zg-progress-circle[data-percentage="34"]:before {
  transform: rotate(0.34turn);
}

.zg-progress-circle[data-percentage="35"]:before {
  transform: rotate(0.35turn);
}

.zg-progress-circle[data-percentage="36"]:before {
  transform: rotate(0.36turn);
}

.zg-progress-circle[data-percentage="37"]:before {
  transform: rotate(0.37turn);
}

.zg-progress-circle[data-percentage="38"]:before {
  transform: rotate(0.38turn);
}

.zg-progress-circle[data-percentage="39"]:before {
  transform: rotate(0.39turn);
}

.zg-progress-circle[data-percentage="40"]:before {
  transform: rotate(0.4turn);
}

.zg-progress-circle[data-percentage="41"]:before {
  transform: rotate(0.41turn);
}

.zg-progress-circle[data-percentage="42"]:before {
  transform: rotate(0.42turn);
}

.zg-progress-circle[data-percentage="43"]:before {
  transform: rotate(0.43turn);
}

.zg-progress-circle[data-percentage="44"]:before {
  transform: rotate(0.44turn);
}

.zg-progress-circle[data-percentage="45"]:before {
  transform: rotate(0.45turn);
}

.zg-progress-circle[data-percentage="46"]:before {
  transform: rotate(0.46turn);
}

.zg-progress-circle[data-percentage="47"]:before {
  transform: rotate(0.47turn);
}

.zg-progress-circle[data-percentage="48"]:before {
  transform: rotate(0.48turn);
}

.zg-progress-circle[data-percentage="49"]:before {
  transform: rotate(0.49turn);
}

.zg-progress-circle[data-percentage="50"]:before {
  transform: rotate(0.5turn);
}

.zg-progress-circle[data-percentage="51"]:before {
  background-color: #0064ff;
  transform: rotate(0.01turn);
}

.zg-progress-circle[data-percentage="52"]:before {
  background-color: #0064ff;
  transform: rotate(0.02turn);
}

.zg-progress-circle[data-percentage="53"]:before {
  background-color: #0064ff;
  transform: rotate(0.03turn);
}

.zg-progress-circle[data-percentage="54"]:before {
  background-color: #0064ff;
  transform: rotate(0.04turn);
}

.zg-progress-circle[data-percentage="55"]:before {
  background-color: #0064ff;
  transform: rotate(0.05turn);
}

.zg-progress-circle[data-percentage="56"]:before {
  background-color: #0064ff;
  transform: rotate(0.06turn);
}

.zg-progress-circle[data-percentage="57"]:before {
  background-color: #0064ff;
  transform: rotate(0.07turn);
}

.zg-progress-circle[data-percentage="58"]:before {
  background-color: #0064ff;
  transform: rotate(0.08turn);
}

.zg-progress-circle[data-percentage="59"]:before {
  background-color: #0064ff;
  transform: rotate(0.09turn);
}

.zg-progress-circle[data-percentage="60"]:before {
  background-color: #0064ff;
  transform: rotate(0.1turn);
}

.zg-progress-circle[data-percentage="61"]:before {
  background-color: #0064ff;
  transform: rotate(0.11turn);
}

.zg-progress-circle[data-percentage="62"]:before {
  background-color: #0064ff;
  transform: rotate(0.12turn);
}

.zg-progress-circle[data-percentage="63"]:before {
  background-color: #0064ff;
  transform: rotate(0.13turn);
}

.zg-progress-circle[data-percentage="64"]:before {
  background-color: #0064ff;
  transform: rotate(0.14turn);
}

.zg-progress-circle[data-percentage="65"]:before {
  background-color: #0064ff;
  transform: rotate(0.15turn);
}

.zg-progress-circle[data-percentage="66"]:before {
  background-color: #0064ff;
  transform: rotate(0.16turn);
}

.zg-progress-circle[data-percentage="67"]:before {
  background-color: #0064ff;
  transform: rotate(0.17turn);
}

.zg-progress-circle[data-percentage="68"]:before {
  background-color: #0064ff;
  transform: rotate(0.18turn);
}

.zg-progress-circle[data-percentage="69"]:before {
  background-color: #0064ff;
  transform: rotate(0.19turn);
}

.zg-progress-circle[data-percentage="70"]:before {
  background-color: #0064ff;
  transform: rotate(0.2turn);
}

.zg-progress-circle[data-percentage="71"]:before {
  background-color: #0064ff;
  transform: rotate(0.21turn);
}

.zg-progress-circle[data-percentage="72"]:before {
  background-color: #0064ff;
  transform: rotate(0.22turn);
}

.zg-progress-circle[data-percentage="73"]:before {
  background-color: #0064ff;
  transform: rotate(0.23turn);
}

.zg-progress-circle[data-percentage="74"]:before {
  background-color: #0064ff;
  transform: rotate(0.24turn);
}

.zg-progress-circle[data-percentage="75"]:before {
  background-color: #0064ff;
  transform: rotate(0.25turn);
}

.zg-progress-circle[data-percentage="76"]:before {
  background-color: #0064ff;
  transform: rotate(0.26turn);
}

.zg-progress-circle[data-percentage="77"]:before {
  background-color: #0064ff;
  transform: rotate(0.27turn);
}

.zg-progress-circle[data-percentage="78"]:before {
  background-color: #0064ff;
  transform: rotate(0.28turn);
}

.zg-progress-circle[data-percentage="79"]:before {
  background-color: #0064ff;
  transform: rotate(0.29turn);
}

.zg-progress-circle[data-percentage="80"]:before {
  background-color: #0064ff;
  transform: rotate(0.3turn);
}

.zg-progress-circle[data-percentage="81"]:before {
  background-color: #0064ff;
  transform: rotate(0.31turn);
}

.zg-progress-circle[data-percentage="82"]:before {
  background-color: #0064ff;
  transform: rotate(0.32turn);
}

.zg-progress-circle[data-percentage="83"]:before {
  background-color: #0064ff;
  transform: rotate(0.33turn);
}

.zg-progress-circle[data-percentage="84"]:before {
  background-color: #0064ff;
  transform: rotate(0.34turn);
}

.zg-progress-circle[data-percentage="85"]:before {
  background-color: #0064ff;
  transform: rotate(0.35turn);
}

.zg-progress-circle[data-percentage="86"]:before {
  background-color: #0064ff;
  transform: rotate(0.36turn);
}

.zg-progress-circle[data-percentage="87"]:before {
  background-color: #0064ff;
  transform: rotate(0.37turn);
}

.zg-progress-circle[data-percentage="88"]:before {
  background-color: #0064ff;
  transform: rotate(0.38turn);
}

.zg-progress-circle[data-percentage="89"]:before {
  background-color: #0064ff;
  transform: rotate(0.39turn);
}

.zg-progress-circle[data-percentage="90"]:before {
  background-color: #0064ff;
  transform: rotate(0.4turn);
}

.zg-progress-circle[data-percentage="91"]:before {
  background-color: #0064ff;
  transform: rotate(0.41turn);
}

.zg-progress-circle[data-percentage="92"]:before {
  background-color: #0064ff;
  transform: rotate(0.42turn);
}

.zg-progress-circle[data-percentage="93"]:before {
  background-color: #0064ff;
  transform: rotate(0.43turn);
}

.zg-progress-circle[data-percentage="94"]:before {
  background-color: #0064ff;
  transform: rotate(0.44turn);
}

.zg-progress-circle[data-percentage="95"]:before {
  background-color: #0064ff;
  transform: rotate(0.45turn);
}

.zg-progress-circle[data-percentage="96"]:before {
  background-color: #0064ff;
  transform: rotate(0.46turn);
}

.zg-progress-circle[data-percentage="97"]:before {
  background-color: #0064ff;
  transform: rotate(0.47turn);
}

.zg-progress-circle[data-percentage="98"]:before {
  background-color: #0064ff;
  transform: rotate(0.48turn);
}

.zg-progress-circle[data-percentage="99"]:before {
  background-color: #0064ff;
  transform: rotate(0.49turn);
}

.zg-progress-circle[data-percentage="100"]:before {
  background-color: #0064ff;
  transform: rotate(0.5turn);
}

.zg-v2-collapse-section__show-link a {
  color: #0064ff !important;
  text-decoration: underline !important;
}

.zg-v2-collapse-section__show-link a:hover {
  color: rgba(0, 100, 255, 0.7);
}

.zg-v2-collapse-section__show-link a:active {
  color: rgba(0, 100, 255, 0.85);
}

.zg-v2-collapse-section__show-link a:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem #fff, 0 0 0 0.3rem #0064ff;
}

.zg-v2-collapse-section__show-link.js-focus-visible a:focus:not(.focus-visible), .js-focus-visible .zg-v2-collapse-section__show-link a:focus:not(.focus-visible) {
  box-shadow: none;
}

.zg-v2-collapse-section__show-link a:focus:not(:focus-visible) {
  box-shadow: none;
}

.navigation-container .link-container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border-width: 0.0625rem;
  border-color: rgb(235 235 235/0);
  border-color: rgb(235 235 235/var(--tw-border-opacity));
  --tw-border-opacity: 0;
  padding: 0.5rem;
}

.navigation-container .link-container:hover {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}

.navigation-container .link-text {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.navigation-container.animated {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation-container.animated .link-text {
  transition-property: opacity, line-height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.navigation-container.collapsed {
  width: 52px;
}

.navigation-container.collapsed .logo-container {
  align-items: center;
  justify-content: center;
}

.navigation-container.collapsed .link-container {
  gap: 0px;
}

.navigation-container.collapsed .link-text {
  width: 0px;
  overflow: visible;
  text-wrap: nowrap;
  padding-left: 0.5rem;
  line-height: 0px;
  opacity: 0;
}

.navigation-container:not(.collapsed) {
  width: 16rem;
}

.navigation-container:not(.collapsed) .logo-container {
  align-items: flex-start;
}

.logo-collapsed {
  display: none;
}

.navigation-container.collapsed .logo-expanded {
  display: none;
}

.navigation-container.collapsed .logo-collapsed {
  display: block;
}

.navigation-container .link-container.active {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border-width: 0.0625rem;
  --tw-border-opacity: 1;
  border-color: rgb(235 235 235/1);
  border-color: rgb(235 235 235/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
  padding: 0.5rem;
}

.navigation-container .link-container.active .link-text {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.controls-container .link-container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border-width: 0.0625rem;
  border-color: rgb(235 235 235/0);
  border-color: rgb(235 235 235/var(--tw-border-opacity));
  --tw-border-opacity: 0;
  padding: 0.5rem;
}

.controls-container .link-container:hover {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}

.controls-container .support-link-container {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.controls-container .link-text {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.controls-container.animated {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.controls-container.animated .link-text {
  transition-property: opacity, line-height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.controls-container.animated .profile_container {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.controls-container.collapsed {
  width: 34px;
}

.controls-container.collapsed .links-outer-container {
  align-items: center;
}

.controls-container.collapsed .link-container {
  gap: 0px;
}

.controls-container.collapsed .link-text {
  width: 0px;
  overflow: visible;
  text-wrap: nowrap;
  padding-left: 0.5rem;
  line-height: 0px;
  opacity: 0;
}

.controls-container.collapsed .profile_container {
  padding: 0.5rem;
}

.controls-container.collapsed .account-container {
  display: none;
}

.controls-container:not(.collapsed) {
  width: 16rem;
}

.controls-container:not(.collapsed) .links-outer-container {
  align-items: flex-start;
}

.controls-container:not(.collapsed) .links-inner-container {
  width: 100%;
}

.controls-container:not(.collapsed) .profile_container {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.controls-container .link-container.active {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border-width: 0.0625rem;
  --tw-border-opacity: 1;
  border-color: rgb(235 235 235/1);
  border-color: rgb(235 235 235/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
  padding: 0.5rem;
}

.controls-container .link-container.active .link_svg {
  stroke: #000000;
}

.controls-container .link-container.active .link-text {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

/* Tailwind CSS */
/* dialog-polyfill styles for Safari/older browsers */
dialog {
  border: none;
}

:root {
  --topnav-height: 3.5rem;
  --sidenav-width: 7.3125rem;
  --bottomnav-height: 5.5rem;
}

/*
 ! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

body {
  margin: 0px;
  display: flex;
  height: 100vh;
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(0 100 255/1);
  background-color: rgb(0 100 255/var(--tw-bg-opacity));
}

@supports (height: 100dvh) {
  body {
    height: 100dvh;
  }
}
body {
  --webkit-font-smoothing: antialiased;
  --moz-osx-font-smoothing: grayscale;
  /* Hide arrow on details elements */
  /* https://stackoverflow.com/a/66814239/5086401 */
}

body details > summary::marker,
body details > summary::-webkit-details-marker {
  display: none;
}

#zg-outer-container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

#zg-main-container {
  overflow-y: scroll;
  overscroll-behavior: none;
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
  overflow-x: clip;
}

#zg-main-container::-webkit-scrollbar {
  display: none;
}

#zg-partner-main-container,
.zg-partner-main-container {
  overflow-y: scroll;
  overscroll-behavior: none;
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
  overflow-x: scroll;
}

#zg-partner-main-container::-webkit-scrollbar,
.zg-partner-main-container::-webkit-scrollbar {
  display: none;
}

#zg-partner-impact-report-page-container-landscape > #page,
.zg-partner-impact-report-page-container-landscape > #page {
  height: 800px;
  page-break-after: always;
  -moz-column-break-after: page;
       break-after: page;
  background-image: linear-gradient(to bottom, #0064ff 0, #0064ff 1rem, white 1rem, white 80%, #0064ff 80%, #0064ff 100%);
}

#zg-partner-impact-report-page-container-landscape > #page > .content-block,
.zg-partner-impact-report-page-container-landscape > #page > .content-block {
  height: 85%;
  min-height: 85%;
}

#zg-partner-impact-report-page-container-landscape > #page > .content-block--md,
.zg-partner-impact-report-page-container-landscape > #page > .content-block--md {
  height: 80%;
  min-height: 80%;
}

#zg-partner-impact-report-page-container-landscape > #page > .content-block--sm,
.zg-partner-impact-report-page-container-landscape > #page > .content-block--sm {
  height: 73%;
  min-height: 73%;
}

h1, .h1 {
  font-size: 2rem;
  font-weight: 600;
}

h2, .h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5, .h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

h6, .h6 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

dl {
  margin-bottom: 1rem;
  margin-top: 0px;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0px;
}

svg {
  display: inline-block;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

.tw-container {
  width: 100%;
}

@media (min-width: 23.4375rem) {
  .tw-container {
    max-width: 23.4375rem;
  }
}
@media (min-width: 48rem) {
  .tw-container {
    max-width: 48rem;
  }
}
@media (min-width: 62rem) {
  .tw-container {
    max-width: 62rem;
  }
}
@media (min-width: 87.5rem) {
  .tw-container {
    max-width: 87.5rem;
  }
}
.tw-prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}

.tw-prose :where(p):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.tw-prose :where([class~=lead]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.tw-prose :where(a):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.tw-prose :where(strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.tw-prose :where(a strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(blockquote strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(thead th strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(ol):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.tw-prose :where(ol[type=A]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: upper-alpha;
}

.tw-prose :where(ol[type=a]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: lower-alpha;
}

.tw-prose :where(ol[type=A s]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: upper-alpha;
}

.tw-prose :where(ol[type=a s]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: lower-alpha;
}

.tw-prose :where(ol[type=I]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: upper-roman;
}

.tw-prose :where(ol[type=i]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: lower-roman;
}

.tw-prose :where(ol[type=I s]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: upper-roman;
}

.tw-prose :where(ol[type=i s]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: lower-roman;
}

.tw-prose :where(ol[type="1"]):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: decimal;
}

.tw-prose :where(ul):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.tw-prose :where(ol > li):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.tw-prose :where(ul > li):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::marker {
  color: var(--tw-prose-bullets);
}

.tw-prose :where(dt):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.tw-prose :where(hr):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.tw-prose :where(blockquote):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "“" "”" "‘" "’";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}

.tw-prose :where(blockquote p:first-of-type):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::before {
  content: open-quote;
}

.tw-prose :where(blockquote p:last-of-type):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::after {
  content: close-quote;
}

.tw-prose :where(h1):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.tw-prose :where(h1 strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  font-weight: 900;
  color: inherit;
}

.tw-prose :where(h2):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.tw-prose :where(h2 strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  font-weight: 800;
  color: inherit;
}

.tw-prose :where(h3):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.tw-prose :where(h3 strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  font-weight: 700;
  color: inherit;
}

.tw-prose :where(h4):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.tw-prose :where(h4 strong):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  font-weight: 700;
  color: inherit;
}

.tw-prose :where(img):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.tw-prose :where(picture):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.tw-prose :where(video):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.tw-prose :where(kbd):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}

.tw-prose :where(code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.tw-prose :where(code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::before {
  content: "`";
}

.tw-prose :where(code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::after {
  content: "`";
}

.tw-prose :where(a code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(h1 code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(h2 code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
  font-size: 0.875em;
}

.tw-prose :where(h3 code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
  font-size: 0.9em;
}

.tw-prose :where(h4 code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(blockquote code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(thead th code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: inherit;
}

.tw-prose :where(pre):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}

.tw-prose :where(pre code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.tw-prose :where(pre code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::before {
  content: none;
}

.tw-prose :where(pre code):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *))::after {
  content: none;
}

.tw-prose :where(table):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  width: 100%;
  table-layout: auto;
  text-align: start;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.tw-prose :where(thead):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.tw-prose :where(thead th):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.tw-prose :where(tbody tr):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.tw-prose :where(tbody tr:last-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  border-bottom-width: 0;
}

.tw-prose :where(tbody td):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  vertical-align: baseline;
}

.tw-prose :where(tfoot):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.tw-prose :where(tfoot td):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  vertical-align: top;
}

.tw-prose :where(figure > *):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.tw-prose :where(figcaption):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.tw-prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.tw-prose :where(picture > img):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.tw-prose :where(li):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.tw-prose :where(ol > li):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-inline-start: 0.375em;
}

.tw-prose :where(ul > li):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-inline-start: 0.375em;
}

.tw-prose :where(.tw-prose > ul > li p):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.tw-prose :where(.tw-prose > ul > li > p:first-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 1.25em;
}

.tw-prose :where(.tw-prose > ul > li > p:last-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-bottom: 1.25em;
}

.tw-prose :where(.tw-prose > ol > li > p:first-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 1.25em;
}

.tw-prose :where(.tw-prose > ol > li > p:last-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-bottom: 1.25em;
}

.tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.tw-prose :where(dl):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.tw-prose :where(dd):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}

.tw-prose :where(hr + *):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
}

.tw-prose :where(h2 + *):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
}

.tw-prose :where(h3 + *):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
}

.tw-prose :where(h4 + *):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
}

.tw-prose :where(thead th:first-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-inline-start: 0;
}

.tw-prose :where(thead th:last-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-inline-end: 0;
}

.tw-prose :where(tbody td, tfoot td):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.tw-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-inline-start: 0;
}

.tw-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  padding-inline-end: 0;
}

.tw-prose :where(figure):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.tw-prose :where(.tw-prose > :first-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-top: 0;
}

.tw-prose :where(.tw-prose > :last-child):not(:where([class~=tw-not-prose], [class~=tw-not-prose] *)) {
  margin-bottom: 0;
}

.tw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.\!tw-pointer-events-none {
  pointer-events: none !important;
}

.tw-pointer-events-none {
  pointer-events: none;
}

.tw-pointer-events-auto {
  pointer-events: auto;
}

.tw-visible {
  visibility: visible;
}

.tw-invisible {
  visibility: hidden;
}

.tw-fixed {
  position: fixed;
}

.tw-absolute {
  position: absolute;
}

.tw-relative {
  position: relative;
}

.tw-sticky {
  position: sticky;
}

.tw-inset-0 {
  inset: 0px;
}

.tw-inset-x-0 {
  left: 0px;
  right: 0px;
}

.-tw-left-28 {
  left: -7rem;
}

.-tw-left-4 {
  left: -1rem;
}

.-tw-left-\[4\.5rem\] {
  left: -4.5rem;
}

.-tw-top-16 {
  top: -4rem;
}

.tw--top-1 {
  top: -0.25rem;
}

.tw--top-1\.5 {
  top: -0.375rem;
}

.tw-bottom-0 {
  bottom: 0px;
}

.tw-bottom-10 {
  bottom: 2.5rem;
}

.tw-bottom-16 {
  bottom: 4rem;
}

.tw-bottom-\[5rem\] {
  bottom: 5rem;
}

.tw-bottom-\[6rem\] {
  bottom: 6rem;
}

.tw-left-0 {
  left: 0px;
}

.tw-left-1\/2 {
  left: 50%;
}

.tw-left-4 {
  left: 1rem;
}

.tw-left-8 {
  left: 2rem;
}

.tw-right-0 {
  right: 0px;
}

.tw-right-1 {
  right: 0.25rem;
}

.tw-right-16 {
  right: 4rem;
}

.tw-right-2 {
  right: 0.5rem;
}

.tw-right-2\.5 {
  right: 0.625rem;
}

.tw-right-3 {
  right: 0.75rem;
}

.tw-right-4 {
  right: 1rem;
}

.tw-right-5 {
  right: 1.25rem;
}

.tw-right-\[-1rem\] {
  right: -1rem;
}

.tw--top-4 {
  top: -1rem;
}

.tw-top-0 {
  top: 0px;
}

.tw-top-1\/2 {
  top: 50%;
}

.tw-top-10 {
  top: 2.5rem;
}

.tw-top-2 {
  top: 0.5rem;
}

.tw-top-20 {
  top: 5rem;
}

.tw-top-24 {
  top: 6rem;
}

.tw-top-4 {
  top: 1rem;
}

.tw-top-\[-1rem\] {
  top: -1rem;
}

.tw-top-\[-4rem\] {
  top: -4rem;
}

.tw-top-\[6rem\] {
  top: 6rem;
}

.tw-top-auto {
  top: auto;
}

.tw-top-full {
  top: 100%;
}

.\!tw-z-60 {
  z-index: 60 !important;
}

.tw-z-0 {
  z-index: 0;
}

.tw-z-10 {
  z-index: 10;
}

.tw-z-100 {
  z-index: 100;
}

.tw-z-20 {
  z-index: 20;
}

.tw-z-30 {
  z-index: 30;
}

.tw-z-40 {
  z-index: 40;
}

.tw-z-50 {
  z-index: 50;
}

.tw-z-60 {
  z-index: 60;
}

.tw-z-70 {
  z-index: 70;
}

.tw-z-90 {
  z-index: 90;
}

.tw-z-\[9999\] {
  z-index: 9999;
}

.tw-col-span-2 {
  grid-column: span 2/span 2;
}

.tw-col-span-3 {
  grid-column: span 3/span 3;
}

.tw-col-span-6 {
  grid-column: span 6/span 6;
}

.tw-row-span-2 {
  grid-row: span 2/span 2;
}

.\!tw-m-auto {
  margin: auto !important;
}

.tw-m-0 {
  margin: 0px;
}

.tw-m-1 {
  margin: 0.25rem;
}

.tw-m-2 {
  margin: 0.5rem;
}

.tw-m-3 {
  margin: 0.75rem;
}

.tw-m-4 {
  margin: 1rem;
}

.\!tw-mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.\!tw-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.-tw-my-4 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.tw-mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.tw-mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.tw-mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.tw-mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.tw-mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.tw-mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.tw-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.tw-my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.tw-my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.tw-my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tw-my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.tw-my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.tw-my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.tw-my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.\!tw-mb-2 {
  margin-bottom: 0.5rem !important;
}

.-tw-ml-6 {
  margin-left: -1.5rem;
}

.-tw-mr-12 {
  margin-right: -3rem;
}

.-tw-mr-4 {
  margin-right: -1rem;
}

.-tw-mt-12 {
  margin-top: -3rem;
}

.-tw-mt-px {
  margin-top: -1px;
}

.tw--mb-4 {
  margin-bottom: -1rem;
}

.tw--ml-7 {
  margin-left: -1.75rem;
}

.tw--mt-6 {
  margin-top: -1.5rem;
}

.tw-mb-0 {
  margin-bottom: 0px;
}

.tw-mb-1 {
  margin-bottom: 0.25rem;
}

.tw-mb-2 {
  margin-bottom: 0.5rem;
}

.tw-mb-3 {
  margin-bottom: 0.75rem;
}

.tw-mb-4 {
  margin-bottom: 1rem;
}

.tw-mb-6 {
  margin-bottom: 1.5rem;
}

.tw-mb-8 {
  margin-bottom: 2rem;
}

.tw-ml-1 {
  margin-left: 0.25rem;
}

.tw-ml-10 {
  margin-left: 2.5rem;
}

.tw-ml-12 {
  margin-left: 3rem;
}

.tw-ml-2 {
  margin-left: 0.5rem;
}

.tw-ml-3 {
  margin-left: 0.75rem;
}

.tw-ml-4 {
  margin-left: 1rem;
}

.tw-ml-5 {
  margin-left: 1.25rem;
}

.tw-ml-auto {
  margin-left: auto;
}

.tw-mr-1 {
  margin-right: 0.25rem;
}

.tw-mr-10 {
  margin-right: 2.5rem;
}

.tw-mr-2 {
  margin-right: 0.5rem;
}

.tw-mr-4 {
  margin-right: 1rem;
}

.tw-mr-\[40\%\] {
  margin-right: 40%;
}

.tw-mr-auto {
  margin-right: auto;
}

.tw-mt-0 {
  margin-top: 0px;
}

.tw-mt-0\.5 {
  margin-top: 0.125rem;
}

.tw-mt-1 {
  margin-top: 0.25rem;
}

.tw-mt-10 {
  margin-top: 2.5rem;
}

.tw-mt-16 {
  margin-top: 4rem;
}

.tw-mt-2 {
  margin-top: 0.5rem;
}

.tw-mt-20 {
  margin-top: 5rem;
}

.tw-mt-3 {
  margin-top: 0.75rem;
}

.tw-mt-32 {
  margin-top: 8rem;
}

.tw-mt-4 {
  margin-top: 1rem;
}

.tw-mt-5 {
  margin-top: 1.25rem;
}

.tw-mt-6 {
  margin-top: 1.5rem;
}

.tw-mt-8 {
  margin-top: 2rem;
}

.tw-mt-auto {
  margin-top: auto;
}

.tw-line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.tw-line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tw-line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tw-line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.tw-block {
  display: block;
}

.tw-inline-block {
  display: inline-block;
}

.tw-flex {
  display: flex;
}

.tw-inline-flex {
  display: inline-flex;
}

.tw-grid {
  display: grid;
}

.tw-hidden {
  display: none;
}

.\!tw-size-12 {
  width: 3rem !important;
  height: 3rem !important;
}

.\!tw-size-16 {
  width: 4rem !important;
  height: 4rem !important;
}

.\!tw-size-20 {
  width: 5rem !important;
  height: 5rem !important;
}

.\!tw-size-22 {
  width: 5.5rem !important;
  height: 5.5rem !important;
}

.\!tw-size-24 {
  width: 6rem !important;
  height: 6rem !important;
}

.\!tw-size-3 {
  width: 0.75rem !important;
  height: 0.75rem !important;
}

.\!tw-size-4 {
  width: 1rem !important;
  height: 1rem !important;
}

.\!tw-size-6 {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

.\!tw-size-8 {
  width: 2rem !important;
  height: 2rem !important;
}

.tw-size-1 {
  width: 0.25rem;
  height: 0.25rem;
}

.tw-size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.tw-size-11 {
  width: 2.75rem;
  height: 2.75rem;
}

.tw-size-12 {
  width: 3rem;
  height: 3rem;
}

.tw-size-14 {
  width: 3.5rem;
  height: 3.5rem;
}

.tw-size-16 {
  width: 4rem;
  height: 4rem;
}

.tw-size-2 {
  width: 0.5rem;
  height: 0.5rem;
}

.tw-size-20 {
  width: 5rem;
  height: 5rem;
}

.tw-size-22 {
  width: 5.5rem;
  height: 5.5rem;
}

.tw-size-24 {
  width: 6rem;
  height: 6rem;
}

.tw-size-28 {
  width: 7rem;
  height: 7rem;
}

.tw-size-3 {
  width: 0.75rem;
  height: 0.75rem;
}

.tw-size-3\.5 {
  width: 0.875rem;
  height: 0.875rem;
}

.tw-size-36 {
  width: 9rem;
  height: 9rem;
}

.tw-size-4 {
  width: 1rem;
  height: 1rem;
}

.tw-size-40 {
  width: 10rem;
  height: 10rem;
}

.tw-size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.tw-size-56 {
  width: 14rem;
  height: 14rem;
}

.tw-size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.tw-size-64 {
  width: 16rem;
  height: 16rem;
}

.tw-size-7 {
  width: 1.75rem;
  height: 1.75rem;
}

.tw-size-8 {
  width: 2rem;
  height: 2rem;
}

.tw-size-\[2\.3125rem\] {
  width: 2.3125rem;
  height: 2.3125rem;
}

.tw-size-\[2\.8125rem\] {
  width: 2.8125rem;
  height: 2.8125rem;
}

.tw-size-\[2px\] {
  width: 2px;
  height: 2px;
}

.tw-size-\[3\.125rem\] {
  width: 3.125rem;
  height: 3.125rem;
}

.tw-size-\[3\.75rem\] {
  width: 3.75rem;
  height: 3.75rem;
}

.tw-size-\[34px\] {
  width: 34px;
  height: 34px;
}

.tw-size-\[4\.25rem\] {
  width: 4.25rem;
  height: 4.25rem;
}

.tw-size-\[90px\] {
  width: 90px;
  height: 90px;
}

.tw-size-fit {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.tw-size-full {
  width: 100%;
  height: 100%;
}

.\!tw-h-12 {
  height: 3rem !important;
}

.\!tw-h-14 {
  height: 3.5rem !important;
}

.\!tw-h-16 {
  height: 4rem !important;
}

.\!tw-h-3 {
  height: 0.75rem !important;
}

.\!tw-h-35 {
  height: 8.75rem !important;
}

.\!tw-h-8 {
  height: 2rem !important;
}

.\!tw-h-\[2\.3125rem\] {
  height: 2.3125rem !important;
}

.\!tw-h-px {
  height: 1px !important;
}

.tw-h-1 {
  height: 0.25rem;
}

.tw-h-10 {
  height: 2.5rem;
}

.tw-h-12 {
  height: 3rem;
}

.tw-h-120 {
  height: 30rem;
}

.tw-h-14 {
  height: 3.5rem;
}

.tw-h-16 {
  height: 4rem;
}

.tw-h-2 {
  height: 0.5rem;
}

.tw-h-20 {
  height: 5rem;
}

.tw-h-22 {
  height: 5.5rem;
}

.tw-h-24 {
  height: 6rem;
}

.tw-h-28 {
  height: 7rem;
}

.tw-h-3 {
  height: 0.75rem;
}

.tw-h-30 {
  height: 7.5rem;
}

.tw-h-32 {
  height: 8rem;
}

.tw-h-36 {
  height: 9rem;
}

.tw-h-4 {
  height: 1rem;
}

.tw-h-40 {
  height: 10rem;
}

.tw-h-44 {
  height: 11rem;
}

.tw-h-45 {
  height: 11.25rem;
}

.tw-h-48 {
  height: 12rem;
}

.tw-h-5 {
  height: 1.25rem;
}

.tw-h-52 {
  height: 13rem;
}

.tw-h-6 {
  height: 1.5rem;
}

.tw-h-60 {
  height: 15rem;
}

.tw-h-64 {
  height: 16rem;
}

.tw-h-7 {
  height: 1.75rem;
}

.tw-h-72 {
  height: 18rem;
}

.tw-h-8 {
  height: 2rem;
}

.tw-h-80 {
  height: 20rem;
}

.tw-h-9 {
  height: 2.25rem;
}

.tw-h-\[0\.1rem\] {
  height: 0.1rem;
}

.tw-h-\[1\.3125rem\] {
  height: 1.3125rem;
}

.tw-h-\[11rem\] {
  height: 11rem;
}

.tw-h-\[120px\] {
  height: 120px;
}

.tw-h-\[130px\] {
  height: 130px;
}

.tw-h-\[1px\] {
  height: 1px;
}

.tw-h-\[2\.3125rem\] {
  height: 2.3125rem;
}

.tw-h-\[20rem\] {
  height: 20rem;
}

.tw-h-\[220px\] {
  height: 220px;
}

.tw-h-\[3\.4rem\] {
  height: 3.4rem;
}

.tw-h-\[34px\] {
  height: 34px;
}

.tw-h-\[45px\] {
  height: 45px;
}

.tw-h-\[53px\] {
  height: 53px;
}

.tw-h-\[620px\] {
  height: 620px;
}

.tw-h-\[640px\] {
  height: 640px;
}

.tw-h-\[73\%\] {
  height: 73%;
}

.tw-h-\[7rem\] {
  height: 7rem;
}

.tw-h-\[80\%\] {
  height: 80%;
}

.tw-h-\[800px\] {
  height: 800px;
}

.tw-h-\[85\%\] {
  height: 85%;
}

.tw-h-\[90vh\] {
  height: 90vh;
}

.tw-h-\[calc\(100\%-14rem\)\] {
  height: calc(100% - 14rem);
}

.tw-h-\[calc\(100\%-4rem\)\] {
  height: calc(100% - 4rem);
}

.tw-h-auto {
  height: auto;
}

.tw-h-dvh {
  height: 100dvh;
}

.tw-h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.tw-h-full {
  height: 100%;
}

.tw-h-min {
  height: -moz-min-content;
  height: min-content;
}

.tw-h-screen {
  height: 100vh;
}

.tw-max-h-11 {
  max-height: 2.75rem;
}

.tw-max-h-16 {
  max-height: 4rem;
}

.tw-max-h-28 {
  max-height: 7rem;
}

.tw-max-h-3 {
  max-height: 0.75rem;
}

.tw-max-h-45 {
  max-height: 11.25rem;
}

.tw-max-h-6 {
  max-height: 1.5rem;
}

.tw-max-h-64 {
  max-height: 16rem;
}

.tw-max-h-72 {
  max-height: 18rem;
}

.tw-max-h-80 {
  max-height: 20rem;
}

.tw-max-h-96 {
  max-height: 24rem;
}

.tw-max-h-\[10\.75rem\] {
  max-height: 10.75rem;
}

.tw-max-h-\[20rem\] {
  max-height: 20rem;
}

.tw-max-h-\[3\.125rem\] {
  max-height: 3.125rem;
}

.tw-max-h-\[3\.75rem\] {
  max-height: 3.75rem;
}

.tw-max-h-\[4\.25rem\] {
  max-height: 4.25rem;
}

.tw-max-h-\[80vh\] {
  max-height: 80vh;
}

.tw-max-h-none {
  max-height: none;
}

.\!tw-min-h-0 {
  min-height: 0px !important;
}

.\!tw-min-h-4 {
  min-height: 1rem !important;
}

.\!tw-min-h-8 {
  min-height: 2rem !important;
}

.\!tw-min-h-\[2\.3125rem\] {
  min-height: 2.3125rem !important;
}

.\!tw-min-h-px {
  min-height: 1px !important;
}

.tw-min-h-0 {
  min-height: 0px;
}

.tw-min-h-10 {
  min-height: 2.5rem;
}

.tw-min-h-11 {
  min-height: 2.75rem;
}

.tw-min-h-12 {
  min-height: 3rem;
}

.tw-min-h-16 {
  min-height: 4rem;
}

.tw-min-h-20 {
  min-height: 5rem;
}

.tw-min-h-24 {
  min-height: 6rem;
}

.tw-min-h-36 {
  min-height: 9rem;
}

.tw-min-h-4 {
  min-height: 1rem;
}

.tw-min-h-40 {
  min-height: 10rem;
}

.tw-min-h-44 {
  min-height: 11rem;
}

.tw-min-h-48 {
  min-height: 12rem;
}

.tw-min-h-5 {
  min-height: 1.25rem;
}

.tw-min-h-56 {
  min-height: 14rem;
}

.tw-min-h-6 {
  min-height: 1.5rem;
}

.tw-min-h-60 {
  min-height: 15rem;
}

.tw-min-h-64 {
  min-height: 16rem;
}

.tw-min-h-7 {
  min-height: 1.75rem;
}

.tw-min-h-8 {
  min-height: 2rem;
}

.tw-min-h-80 {
  min-height: 20rem;
}

.tw-min-h-9 {
  min-height: 2.25rem;
}

.tw-min-h-96 {
  min-height: 24rem;
}

.tw-min-h-\[133px\] {
  min-height: 133px;
}

.tw-min-h-\[1px\] {
  min-height: 1px;
}

.tw-min-h-\[2\.3125rem\] {
  min-height: 2.3125rem;
}

.tw-min-h-\[2\.8125rem\] {
  min-height: 2.8125rem;
}

.tw-min-h-\[20rem\] {
  min-height: 20rem;
}

.tw-min-h-\[73\%\] {
  min-height: 73%;
}

.tw-min-h-\[80\%\] {
  min-height: 80%;
}

.tw-min-h-\[85\%\] {
  min-height: 85%;
}

.tw-min-h-full {
  min-height: 100%;
}

.tw-min-h-screen {
  min-height: 100vh;
}

.tw-min-h-unset {
  min-height: 0;
  min-height: initial;
}

.\!tw-w-12 {
  width: 3rem !important;
}

.\!tw-w-14 {
  width: 3.5rem !important;
}

.\!tw-w-16 {
  width: 4rem !important;
}

.\!tw-w-175 {
  width: 43.75rem !important;
}

.\!tw-w-268 {
  width: 67rem !important;
}

.\!tw-w-35 {
  width: 8.75rem !important;
}

.\!tw-w-48 {
  width: 12rem !important;
}

.\!tw-w-64 {
  width: 16rem !important;
}

.\!tw-w-75 {
  width: 18.75rem !important;
}

.\!tw-w-8 {
  width: 2rem !important;
}

.\!tw-w-auto {
  width: auto !important;
}

.\!tw-w-full {
  width: 100% !important;
}

.tw-w-0 {
  width: 0px;
}

.tw-w-1 {
  width: 0.25rem;
}

.tw-w-1\/12 {
  width: 8.333333%;
}

.tw-w-1\/2 {
  width: 50%;
}

.tw-w-1\/3 {
  width: 33.333333%;
}

.tw-w-1\/5 {
  width: 20%;
}

.tw-w-10 {
  width: 2.5rem;
}

.tw-w-10\/12 {
  width: 83.333333%;
}

.tw-w-11\/12 {
  width: 91.666667%;
}

.tw-w-12 {
  width: 3rem;
}

.tw-w-120 {
  width: 30rem;
}

.tw-w-14 {
  width: 3.5rem;
}

.tw-w-16 {
  width: 4rem;
}

.tw-w-175 {
  width: 43.75rem;
}

.tw-w-2 {
  width: 0.5rem;
}

.tw-w-2\.5 {
  width: 0.625rem;
}

.tw-w-2\/3 {
  width: 66.666667%;
}

.tw-w-20 {
  width: 5rem;
}

.tw-w-24 {
  width: 6rem;
}

.tw-w-28 {
  width: 7rem;
}

.tw-w-3 {
  width: 0.75rem;
}

.tw-w-3\/12 {
  width: 25%;
}

.tw-w-3\/4 {
  width: 75%;
}

.tw-w-3\/5 {
  width: 60%;
}

.tw-w-32 {
  width: 8rem;
}

.tw-w-35 {
  width: 8.75rem;
}

.tw-w-4 {
  width: 1rem;
}

.tw-w-4\/5 {
  width: 80%;
}

.tw-w-40 {
  width: 10rem;
}

.tw-w-45 {
  width: 11.25rem;
}

.tw-w-48 {
  width: 12rem;
}

.tw-w-5 {
  width: 1.25rem;
}

.tw-w-5\/12 {
  width: 41.666667%;
}

.tw-w-6 {
  width: 1.5rem;
}

.tw-w-64 {
  width: 16rem;
}

.tw-w-72 {
  width: 18rem;
}

.tw-w-75 {
  width: 18.75rem;
}

.tw-w-8 {
  width: 2rem;
}

.tw-w-80 {
  width: 20rem;
}

.tw-w-9 {
  width: 2.25rem;
}

.tw-w-96 {
  width: 24rem;
}

.tw-w-\[1\.3125rem\] {
  width: 1.3125rem;
}

.tw-w-\[12\.5rem\] {
  width: 12.5rem;
}

.tw-w-\[13rem\] {
  width: 13rem;
}

.tw-w-\[17rem\] {
  width: 17rem;
}

.tw-w-\[18\.75rem\] {
  width: 18.75rem;
}

.tw-w-\[1px\] {
  width: 1px;
}

.tw-w-\[21\.4375rem\] {
  width: 21.4375rem;
}

.tw-w-\[22\.5rem\] {
  width: 22.5rem;
}

.tw-w-\[25rem\] {
  width: 25rem;
}

.tw-w-\[34px\] {
  width: 34px;
}

.tw-w-\[44px\] {
  width: 44px;
}

.tw-w-\[500px\] {
  width: 500px;
}

.tw-w-\[512px\] {
  width: 512px;
}

.tw-w-\[52px\] {
  width: 52px;
}

.tw-w-\[600px\] {
  width: 600px;
}

.tw-w-\[90vw\] {
  width: 90vw;
}

.tw-w-\[950px\] {
  width: 950px;
}

.tw-w-\[calc\(100\%\+2rem\+1px\)\] {
  width: calc(100% + 2rem + 1px);
}

.tw-w-\[calc\(80vw-0\.5rem\)\] {
  width: calc(80vw - 0.5rem);
}

.tw-w-auto {
  width: auto;
}

.tw-w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.tw-w-full {
  width: 100%;
}

.tw-w-max {
  width: -moz-max-content;
  width: max-content;
}

.\!tw-min-w-0 {
  min-width: 0px !important;
}

.\!tw-min-w-20 {
  min-width: 5rem !important;
}

.\!tw-min-w-4 {
  min-width: 1rem !important;
}

.\!tw-min-w-40 {
  min-width: 10rem !important;
}

.\!tw-min-w-48 {
  min-width: 12rem !important;
}

.\!tw-min-w-60 {
  min-width: 15rem !important;
}

.\!tw-min-w-75 {
  min-width: 18.75rem !important;
}

.\!tw-min-w-80 {
  min-width: 20rem !important;
}

.\!tw-min-w-\[8\.125rem\] {
  min-width: 8.125rem !important;
}

.\!tw-min-w-min {
  min-width: -moz-min-content !important;
  min-width: min-content !important;
}

.tw-min-w-0 {
  min-width: 0px;
}

.tw-min-w-1 {
  min-width: 0.25rem;
}

.tw-min-w-10 {
  min-width: 2.5rem;
}

.tw-min-w-11 {
  min-width: 2.75rem;
}

.tw-min-w-12 {
  min-width: 3rem;
}

.tw-min-w-16 {
  min-width: 4rem;
}

.tw-min-w-20 {
  min-width: 5rem;
}

.tw-min-w-22 {
  min-width: 5.5rem;
}

.tw-min-w-28 {
  min-width: 7rem;
}

.tw-min-w-3 {
  min-width: 0.75rem;
}

.tw-min-w-35 {
  min-width: 8.75rem;
}

.tw-min-w-36 {
  min-width: 9rem;
}

.tw-min-w-4 {
  min-width: 1rem;
}

.tw-min-w-40 {
  min-width: 10rem;
}

.tw-min-w-44 {
  min-width: 11rem;
}

.tw-min-w-45 {
  min-width: 11.25rem;
}

.tw-min-w-56 {
  min-width: 14rem;
}

.tw-min-w-6 {
  min-width: 1.5rem;
}

.tw-min-w-60 {
  min-width: 15rem;
}

.tw-min-w-64 {
  min-width: 16rem;
}

.tw-min-w-7 {
  min-width: 1.75rem;
}

.tw-min-w-75 {
  min-width: 18.75rem;
}

.tw-min-w-8 {
  min-width: 2rem;
}

.tw-min-w-80 {
  min-width: 20rem;
}

.tw-min-w-96 {
  min-width: 24rem;
}

.tw-min-w-\[10rem\] {
  min-width: 10rem;
}

.tw-min-w-\[15\.5rem\] {
  min-width: 15.5rem;
}

.tw-min-w-\[18\.75rem\] {
  min-width: 18.75rem;
}

.tw-min-w-\[370px\] {
  min-width: 370px;
}

.tw-min-w-\[40\%\] {
  min-width: 40%;
}

.tw-min-w-\[60rem\] {
  min-width: 60rem;
}

.tw-min-w-full {
  min-width: 100%;
}

.tw-min-w-unset {
  min-width: 0;
  min-width: initial;
}

.\!tw-max-w-2xl {
  max-width: 42rem !important;
}

.\!tw-max-w-48 {
  max-width: 12rem !important;
}

.\!tw-max-w-4xl {
  max-width: 56rem !important;
}

.\!tw-max-w-full {
  max-width: 100% !important;
}

.\!tw-max-w-sm {
  max-width: 24rem !important;
}

.\!tw-max-w-xl {
  max-width: 36rem !important;
}

.tw-max-w-120 {
  max-width: 30rem;
}

.tw-max-w-136 {
  max-width: 34rem;
}

.tw-max-w-175 {
  max-width: 43.75rem;
}

.tw-max-w-268 {
  max-width: 67rem;
}

.tw-max-w-2xl {
  max-width: 42rem;
}

.tw-max-w-3 {
  max-width: 0.75rem;
}

.tw-max-w-3xl {
  max-width: 48rem;
}

.tw-max-w-43 {
  max-width: 10.75rem;
}

.tw-max-w-4xl {
  max-width: 56rem;
}

.tw-max-w-5xl {
  max-width: 64rem;
}

.tw-max-w-6 {
  max-width: 1.5rem;
}

.tw-max-w-75 {
  max-width: 18.75rem;
}

.tw-max-w-80 {
  max-width: 20rem;
}

.tw-max-w-81 {
  max-width: 21.4375rem;
}

.tw-max-w-96 {
  max-width: 24rem;
}

.tw-max-w-\[15rem\] {
  max-width: 15rem;
}

.tw-max-w-\[18\.75rem\] {
  max-width: 18.75rem;
}

.tw-max-w-\[21rem\] {
  max-width: 21rem;
}

.tw-max-w-\[3\.125rem\] {
  max-width: 3.125rem;
}

.tw-max-w-\[3\.75rem\] {
  max-width: 3.75rem;
}

.tw-max-w-\[370px\] {
  max-width: 370px;
}

.tw-max-w-\[4\.25rem\] {
  max-width: 4.25rem;
}

.tw-max-w-\[420px\] {
  max-width: 420px;
}

.tw-max-w-\[500px\] {
  max-width: 500px;
}

.tw-max-w-\[62\.5rem\] {
  max-width: 62.5rem;
}

.tw-max-w-\[680px\] {
  max-width: 680px;
}

.tw-max-w-\[70\%\] {
  max-width: 70%;
}

.tw-max-w-\[90px\] {
  max-width: 90px;
}

.tw-max-w-full {
  max-width: 100%;
}

.tw-max-w-lg {
  max-width: 32rem;
}

.tw-max-w-md {
  max-width: 28rem;
}

.tw-max-w-none {
  max-width: none;
}

.tw-max-w-sm {
  max-width: 24rem;
}

.tw-max-w-xl {
  max-width: 36rem;
}

.tw-max-w-xs {
  max-width: 20rem;
}

.tw-flex-1 {
  flex: 1 1;
}

.tw-flex-none {
  flex: none;
}

.tw-flex-shrink {
  flex-shrink: 1;
}

.tw-flex-shrink-0 {
  flex-shrink: 0;
}

.tw-shrink-0 {
  flex-shrink: 0;
}

.tw-flex-grow {
  flex-grow: 1;
}

.tw-flex-grow-0 {
  flex-grow: 0;
}

.tw-grow {
  flex-grow: 1;
}

.tw-grow-0 {
  flex-grow: 0;
}

.tw-basis-0 {
  flex-basis: 0px;
}

.tw-basis-1 {
  flex-basis: 0.25rem;
}

.tw-basis-1\/2 {
  flex-basis: 50%;
}

.tw-basis-1\/3 {
  flex-basis: 33.333333%;
}

.tw-basis-1\/4 {
  flex-basis: 25%;
}

.tw-basis-10\/12 {
  flex-basis: 83.333333%;
}

.tw-basis-2\/12 {
  flex-basis: 16.666667%;
}

.tw-basis-2\/3 {
  flex-basis: 66.666667%;
}

.tw-basis-2\/4 {
  flex-basis: 50%;
}

.tw-basis-\[100\%\] {
  flex-basis: 100%;
}

.tw-basis-full {
  flex-basis: 100%;
}

.-tw-translate-x-8 {
  --tw-translate-x: -2rem;
  transform: translate(-2rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-tw-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-tw-translate-y-8 {
  --tw-translate-y: -2rem;
  transform: translate(var(--tw-translate-x), -2rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-tw-translate-y-\[5rem\] {
  --tw-translate-y: -5rem;
  transform: translate(var(--tw-translate-x), -5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-translate-x-8 {
  --tw-translate-x: 2rem;
  transform: translate(2rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-translate-x-\[50\%\] {
  --tw-translate-x: 50%;
  transform: translate(50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-translate-y-8 {
  --tw-translate-y: 2rem;
  transform: translate(var(--tw-translate-x), 2rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-tw-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-rotate-\[-45deg\] {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.tw-transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\!tw-transform-none {
  transform: none !important;
}

@keyframes tw-pulsate {
  0% {
    opacity: 0;
    transform: scale(0.25, 0.25);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(1.25, 1.25);
  }
}
.tw-animate-pulsate {
  animation: tw-pulsate 1s ease-out infinite;
}

@keyframes tw-pulse {
  50% {
    opacity: 0.5;
  }
}
.tw-animate-pulse {
  animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes tw-spin {
  to {
    transform: rotate(360deg);
  }
}
.tw-animate-spin {
  animation: tw-spin 1s linear infinite;
}

.tw-cursor-default {
  cursor: default;
}

.tw-cursor-move {
  cursor: move;
}

.tw-cursor-not-allowed {
  cursor: not-allowed;
}

.tw-cursor-pointer {
  cursor: pointer;
}

.tw-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tw-resize-none {
  resize: none;
}

.tw-snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}

.tw-snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}

.tw-snap-start {
  scroll-snap-align: start;
}

.tw-list-inside {
  list-style-position: inside;
}

.tw-list-outside {
  list-style-position: outside;
}

.tw-list-decimal {
  list-style-type: decimal;
}

.tw-list-disc {
  list-style-type: disc;
}

.tw-break-after-page {
  page-break-after: always;
  -moz-column-break-after: page;
       break-after: page;
}

.tw-auto-cols-1 {
  grid-auto-columns: 100%;
}

.tw-auto-cols-fr {
  grid-auto-columns: minmax(0, 1fr);
}

.tw-grid-flow-row {
  grid-auto-flow: row;
}

.tw-grid-flow-col {
  grid-auto-flow: column;
}

.tw-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.tw-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.tw-grid-cols-1fr-1fr {
  grid-template-columns: 1fr 1fr;
}

.tw-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tw-grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tw-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tw-flex-row {
  flex-direction: row;
}

.tw-flex-row-reverse {
  flex-direction: row-reverse;
}

.\!tw-flex-col {
  flex-direction: column !important;
}

.tw-flex-col {
  flex-direction: column;
}

.tw-flex-col-reverse {
  flex-direction: column-reverse;
}

.tw-flex-wrap {
  flex-wrap: wrap;
}

.tw-flex-nowrap {
  flex-wrap: nowrap;
}

.tw-place-content-center {
  place-content: center;
}

.tw-place-items-center {
  place-items: center;
}

.tw-content-center {
  align-content: center;
}

.tw-content-start {
  align-content: flex-start;
}

.tw-content-between {
  align-content: space-between;
}

.tw-items-start {
  align-items: flex-start;
}

.tw-items-end {
  align-items: flex-end;
}

.\!tw-items-center {
  align-items: center !important;
}

.tw-items-center {
  align-items: center;
}

.tw-items-baseline {
  align-items: baseline;
}

.tw-items-stretch {
  align-items: stretch;
}

.tw-justify-start {
  justify-content: flex-start;
}

.tw-justify-end {
  justify-content: flex-end;
}

.tw-justify-center {
  justify-content: center;
}

.\!tw-justify-between {
  justify-content: space-between !important;
}

.tw-justify-between {
  justify-content: space-between;
}

.tw-justify-evenly {
  justify-content: space-evenly;
}

.tw-justify-stretch {
  justify-content: stretch;
}

.tw-justify-items-center {
  justify-items: center;
}

.tw-gap-0 {
  gap: 0px;
}

.tw-gap-0\.5 {
  gap: 0.125rem;
}

.tw-gap-1 {
  gap: 0.25rem;
}

.tw-gap-1\.5 {
  gap: 0.375rem;
}

.tw-gap-10 {
  gap: 2.5rem;
}

.tw-gap-2 {
  gap: 0.5rem;
}

.tw-gap-2\.5 {
  gap: 0.625rem;
}

.tw-gap-3 {
  gap: 0.75rem;
}

.tw-gap-4 {
  gap: 1rem;
}

.tw-gap-5 {
  gap: 1.25rem;
}

.tw-gap-6 {
  gap: 1.5rem;
}

.tw-gap-7 {
  gap: 1.75rem;
}

.tw-gap-8 {
  gap: 2rem;
}

.tw-gap-9 {
  gap: 2.25rem;
}

.tw-gap-\[0\.125rem\] {
  gap: 0.125rem;
}

.tw-gap-\[0\.375rem\] {
  gap: 0.375rem;
}

.tw-gap-\[0\.625\] {
  gap: 0.625;
}

.tw-gap-\[0\.625rem\] {
  gap: 0.625rem;
}

.tw-gap-\[10px\] {
  gap: 10px;
}

.tw-gap-\[6px\] {
  gap: 6px;
}

.tw-gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.tw-gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.tw-gap-y-2 {
  row-gap: 0.5rem;
}

.tw-space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * (1 - 0));
  margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.tw-space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - 0));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.tw-space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - 0));
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.tw-space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - 0));
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.tw-space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * (1 - 0));
  margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * 0);
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.tw-space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * (1 - 0));
  margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.tw-self-start {
  align-self: flex-start;
}

.tw-self-center {
  align-self: center;
}

.tw-self-stretch {
  align-self: stretch;
}

.tw-overflow-auto {
  overflow: auto;
}

.\!tw-overflow-hidden {
  overflow: hidden !important;
}

.tw-overflow-hidden {
  overflow: hidden;
}

.tw-overflow-visible {
  overflow: visible;
}

.tw-overflow-scroll {
  overflow: scroll;
}

.tw-overflow-x-auto {
  overflow-x: auto;
}

.tw-overflow-y-auto {
  overflow-y: auto;
}

.\!tw-overflow-x-hidden {
  overflow-x: hidden !important;
}

.tw-overflow-x-hidden {
  overflow-x: hidden;
}

.\!tw-overflow-y-hidden {
  overflow-y: hidden !important;
}

.tw-overflow-y-hidden {
  overflow-y: hidden;
}

.tw-overflow-y-clip {
  overflow-y: clip;
}

.\!tw-overflow-x-visible {
  overflow-x: visible !important;
}

.tw-overflow-x-scroll {
  overflow-x: scroll;
}

.\!tw-overflow-y-scroll {
  overflow-y: scroll !important;
}

.\!tw-overscroll-x-auto {
  overscroll-behavior-x: auto !important;
}

.tw-overscroll-x-contain {
  overscroll-behavior-x: contain;
}

.tw-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tw-overflow-ellipsis {
  text-overflow: ellipsis;
}

.\!tw-text-ellipsis {
  text-overflow: ellipsis !important;
}

.tw-text-ellipsis {
  text-overflow: ellipsis;
}

.\!tw-whitespace-nowrap {
  white-space: nowrap !important;
}

.tw-whitespace-nowrap {
  white-space: nowrap;
}

.\!tw-text-nowrap {
  text-wrap: nowrap !important;
}

.tw-text-nowrap {
  text-wrap: nowrap;
}

.tw-text-pretty {
  text-wrap: pretty;
}

.tw-break-words {
  overflow-wrap: break-word;
}

.tw-break-all {
  word-break: break-all;
}

.\!tw-rounded-full {
  border-radius: 9999px !important;
}

.\!tw-rounded-lg {
  border-radius: 0.5rem !important;
}

.tw-rounded {
  border-radius: 0.25rem;
}

.tw-rounded-1\/2 {
  border-radius: 50%;
}

.tw-rounded-2xl {
  border-radius: 1rem;
}

.tw-rounded-3xl {
  border-radius: 1.5rem;
}

.tw-rounded-\[0\.8125rem\] {
  border-radius: 0.8125rem;
}

.tw-rounded-\[100px\] {
  border-radius: 100px;
}

.tw-rounded-full {
  border-radius: 9999px;
}

.tw-rounded-lg {
  border-radius: 0.5rem;
}

.tw-rounded-md {
  border-radius: 0.25rem;
}

.tw-rounded-sm {
  border-radius: 0.125rem;
}

.tw-rounded-xl {
  border-radius: 0.75rem;
}

.tw-rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.tw-rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.tw-rounded-b-md {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.tw-rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.tw-rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.tw-rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.tw-rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.tw-rounded-t-md {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.\!tw-border-0 {
  border-width: 0px !important;
}

.tw-border {
  border-width: 1px;
}

.tw-border-0 {
  border-width: 0px;
}

.tw-border-1 {
  border-width: 0.0625rem;
}

.tw-border-2 {
  border-width: 2px;
}

.tw-border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}

.\!tw-border-r-2 {
  border-right-width: 2px !important;
}

.\!tw-border-t-0 {
  border-top-width: 0px !important;
}

.tw-border-b {
  border-bottom-width: 1px;
}

.tw-border-b-0 {
  border-bottom-width: 0px;
}

.tw-border-b-1 {
  border-bottom-width: 0.0625rem;
}

.tw-border-b-2 {
  border-bottom-width: 2px;
}

.tw-border-l-1 {
  border-left-width: 0.0625rem;
}

.tw-border-l-2 {
  border-left-width: 2px;
}

.tw-border-l-8 {
  border-left-width: 8px;
}

.tw-border-t {
  border-top-width: 1px;
}

.tw-border-t-0 {
  border-top-width: 0px;
}

.tw-border-solid {
  border-style: solid;
}

.tw-border-dashed {
  border-style: dashed;
}

.\!tw-border-none {
  border-style: none !important;
}

.tw-border-none {
  border-style: none;
}

.\!tw-border-\[\#0064FF\]\/30 {
  border-color: rgba(0, 100, 255, 0.3) !important;
}

.\!tw-border-blue {
  --tw-border-opacity: 1 !important;
  border-color: rgb(0 100 255/1) !important;
  border-color: rgb(0 100 255/var(--tw-border-opacity)) !important;
}

.\!tw-border-blue-60 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(51 131 255/1) !important;
  border-color: rgb(51 131 255/var(--tw-border-opacity)) !important;
}

.\!tw-border-danger {
  --tw-border-opacity: 1 !important;
  border-color: rgb(209 59 66/1) !important;
  border-color: rgb(209 59 66/var(--tw-border-opacity)) !important;
}

.\!tw-border-dark-green {
  --tw-border-opacity: 1 !important;
  border-color: rgb(20 55 60/1) !important;
  border-color: rgb(20 55 60/var(--tw-border-opacity)) !important;
}

.\!tw-border-green {
  --tw-border-opacity: 1 !important;
  border-color: rgb(7 102 30/1) !important;
  border-color: rgb(7 102 30/var(--tw-border-opacity)) !important;
}

.\!tw-border-mint {
  --tw-border-opacity: 1 !important;
  border-color: rgb(0 250 215/1) !important;
  border-color: rgb(0 250 215/var(--tw-border-opacity)) !important;
}

.\!tw-border-warning {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 155 64/1) !important;
  border-color: rgb(255 155 64/var(--tw-border-opacity)) !important;
}

.\!tw-border-white {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 255 255/1) !important;
  border-color: rgb(255 255 255/var(--tw-border-opacity)) !important;
}

.tw-border-blue {
  --tw-border-opacity: 1;
  border-color: rgb(0 100 255/1);
  border-color: rgb(0 100 255/var(--tw-border-opacity));
}

.tw-border-blue-10 {
  --tw-border-opacity: 1;
  border-color: rgb(229 239 255/1);
  border-color: rgb(229 239 255/var(--tw-border-opacity));
}

.tw-border-blue-30 {
  --tw-border-opacity: 1;
  border-color: rgb(179 209 255/1);
  border-color: rgb(179 209 255/var(--tw-border-opacity));
}

.tw-border-blue-60 {
  --tw-border-opacity: 1;
  border-color: rgb(51 131 255/1);
  border-color: rgb(51 131 255/var(--tw-border-opacity));
}

.tw-border-card-neutral {
  --tw-border-opacity: 1;
  border-color: rgb(240 246 255/1);
  border-color: rgb(240 246 255/var(--tw-border-opacity));
}

.tw-border-danger {
  --tw-border-opacity: 1;
  border-color: rgb(209 59 66/1);
  border-color: rgb(209 59 66/var(--tw-border-opacity));
}

.tw-border-dark-green {
  --tw-border-opacity: 1;
  border-color: rgb(20 55 60/1);
  border-color: rgb(20 55 60/var(--tw-border-opacity));
}

.tw-border-electric-blue {
  --tw-border-opacity: 1;
  border-color: rgb(0 100 255/1);
  border-color: rgb(0 100 255/var(--tw-border-opacity));
}

.tw-border-grey-1 {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245/1);
  border-color: rgb(245 245 245/var(--tw-border-opacity));
}

.tw-border-grey-2 {
  --tw-border-opacity: 1;
  border-color: rgb(235 235 235/1);
  border-color: rgb(235 235 235/var(--tw-border-opacity));
}

.tw-border-grey-4 {
  --tw-border-opacity: 1;
  border-color: rgb(85 85 85/1);
  border-color: rgb(85 85 85/var(--tw-border-opacity));
}

.tw-border-mint {
  --tw-border-opacity: 1;
  border-color: rgb(0 250 215/1);
  border-color: rgb(0 250 215/var(--tw-border-opacity));
}

.tw-border-warning {
  --tw-border-opacity: 1;
  border-color: rgb(255 155 64/1);
  border-color: rgb(255 155 64/var(--tw-border-opacity));
}

.tw-border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255/1);
  border-color: rgb(255 255 255/var(--tw-border-opacity));
}

.tw-border-b-grey-2 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(235 235 235/1);
  border-bottom-color: rgb(235 235 235/var(--tw-border-opacity));
}

.tw-border-l-grey-2 {
  --tw-border-opacity: 1;
  border-left-color: rgb(235 235 235/1);
  border-left-color: rgb(235 235 235/var(--tw-border-opacity));
}

.tw-border-opacity-0 {
  --tw-border-opacity: 0;
}

.tw-border-opacity-25 {
  --tw-border-opacity: 0.25;
}

.\!tw-bg-\[rgba\(255\,255\,255\,0\.04\)\] {
  background-color: rgba(255, 255, 255, 0.04) !important;
}

.\!tw-bg-blue {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 100 255/1) !important;
  background-color: rgb(0 100 255/var(--tw-bg-opacity)) !important;
}

.\!tw-bg-blue-0\.1 {
  background-color: rgba(0, 100, 255, 0.1) !important;
}

.\!tw-bg-blue-30 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(179 209 255/1) !important;
  background-color: rgb(179 209 255/var(--tw-bg-opacity)) !important;
}

.\!tw-bg-card-neutral {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(240 246 255/1) !important;
  background-color: rgb(240 246 255/var(--tw-bg-opacity)) !important;
}

.\!tw-bg-danger {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(209 59 66/1) !important;
  background-color: rgb(209 59 66/var(--tw-bg-opacity)) !important;
}

.\!tw-bg-mint {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 250 215/1) !important;
  background-color: rgb(0 250 215/var(--tw-bg-opacity)) !important;
}

.\!tw-bg-warning-50 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 250 235/1) !important;
  background-color: rgb(255 250 235/var(--tw-bg-opacity)) !important;
}

.\!tw-bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255/1) !important;
  background-color: rgb(255 255 255/var(--tw-bg-opacity)) !important;
}

.tw-bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0/1);
  background-color: rgb(0 0 0/var(--tw-bg-opacity));
}

.tw-bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(0 100 255/1);
  background-color: rgb(0 100 255/var(--tw-bg-opacity));
}

.tw-bg-blue-10 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 239 255/1);
  background-color: rgb(229 239 255/var(--tw-bg-opacity));
}

.tw-bg-blue-2 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 245 255/1);
  background-color: rgb(239 245 255/var(--tw-bg-opacity));
}

.tw-bg-blue-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(247 250 255/1);
  background-color: rgb(247 250 255/var(--tw-bg-opacity));
}

.tw-bg-blue-30 {
  --tw-bg-opacity: 1;
  background-color: rgb(179 209 255/1);
  background-color: rgb(179 209 255/var(--tw-bg-opacity));
}

.tw-bg-blue-60 {
  --tw-bg-opacity: 1;
  background-color: rgb(51 131 255/1);
  background-color: rgb(51 131 255/var(--tw-bg-opacity));
}

.tw-bg-blue\/5 {
  background-color: rgba(0, 100, 255, 0.05);
}

.tw-bg-card-neutral {
  --tw-bg-opacity: 1;
  background-color: rgb(240 246 255/1);
  background-color: rgb(240 246 255/var(--tw-bg-opacity));
}

.tw-bg-card-neutral\/30 {
  background-color: rgba(240, 246, 255, 0.3);
}

.tw-bg-danger {
  --tw-bg-opacity: 1;
  background-color: rgb(209 59 66/1);
  background-color: rgb(209 59 66/var(--tw-bg-opacity));
}

.tw-bg-danger-12 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 230 231/1);
  background-color: rgb(249 230 231/var(--tw-bg-opacity));
}

.tw-bg-danger-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226/1);
  background-color: rgb(254 226 226/var(--tw-bg-opacity));
}

.tw-bg-dark-green {
  --tw-bg-opacity: 1;
  background-color: rgb(20 55 60/1);
  background-color: rgb(20 55 60/var(--tw-bg-opacity));
}

.tw-bg-dark-green\/20 {
  background-color: rgba(20, 55, 60, 0.2);
}

.tw-bg-electric-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(0 100 255/1);
  background-color: rgb(0 100 255/var(--tw-bg-opacity));
}

.tw-bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(227 249 229/1);
  background-color: rgb(227 249 229/var(--tw-bg-opacity));
}

.tw-bg-grey-1 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245/1);
  background-color: rgb(245 245 245/var(--tw-bg-opacity));
}

.tw-bg-grey-2 {
  --tw-bg-opacity: 1;
  background-color: rgb(235 235 235/1);
  background-color: rgb(235 235 235/var(--tw-bg-opacity));
}

.tw-bg-grey-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(170 170 170/1);
  background-color: rgb(170 170 170/var(--tw-bg-opacity));
}

.tw-bg-mint {
  --tw-bg-opacity: 1;
  background-color: rgb(0 250 215/1);
  background-color: rgb(0 250 215/var(--tw-bg-opacity));
}

.tw-bg-mint-30 {
  --tw-bg-opacity: 1;
  background-color: rgb(179 254 243/1);
  background-color: rgb(179 254 243/var(--tw-bg-opacity));
}

.tw-bg-warning-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 250 235/1);
  background-color: rgb(255 250 235/var(--tw-bg-opacity));
}

.tw-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}

.tw-bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.tw-bg-opacity-20 {
  --tw-bg-opacity: 0.2;
}

.tw-bg-opacity-30 {
  --tw-bg-opacity: 0.3;
}

.\!tw-bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
}

.tw-bg-aiBackground {
  background-image: radial-gradient(farthest-corner at 50% 0%, rgba(0, 100, 255, 0.4) 15%, rgba(0, 250, 215, 0.3) 50%, #F0F6FF 80%);
}

.tw-bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.tw-bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.tw-bg-progress-circle {
  background-image: linear-gradient(to right, transparent 50%, #e5efff 0);
}

.tw-from-dark-green {
  --tw-gradient-from: #14373c var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 55 60 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.tw-from-dark-green-0\.4 {
  --tw-gradient-from: rgba(#14373c, 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.tw-from-white {
  --tw-gradient-from: #ffffff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.tw-from-100\% {
  --tw-gradient-from-position: 100%;
}

.tw-from-35\% {
  --tw-gradient-from-position: 35%;
}

.tw-from-80\% {
  --tw-gradient-from-position: 80%;
}

.tw-to-white\/0 {
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
}

.tw-bg-cover {
  background-size: cover;
}

.tw-bg-bottom {
  background-position: bottom;
}

.tw-bg-center {
  background-position: center;
}

.tw-bg-no-repeat {
  background-repeat: no-repeat;
}

.tw-fill-black {
  fill: #000000;
}

.tw-fill-blue {
  fill: #0064ff;
}

.tw-fill-blue-60 {
  fill: #3383ff;
}

.tw-fill-danger {
  fill: #d13b42;
}

.tw-fill-dark-green {
  fill: #14373c;
}

.tw-fill-green {
  fill: #07661E;
}

.tw-fill-grey-2 {
  fill: #ebebeb;
}

.tw-fill-grey-4 {
  fill: #555;
}

.tw-fill-none {
  fill: none;
}

.tw-fill-warning {
  fill: #ff9b40;
}

.tw-fill-white {
  fill: #ffffff;
}

.\!tw-stroke-black {
  stroke: #000000 !important;
}

.\!tw-stroke-blue {
  stroke: #0064ff !important;
}

.\!tw-stroke-danger {
  stroke: #d13b42 !important;
}

.\!tw-stroke-grey-4 {
  stroke: #555 !important;
}

.\!tw-stroke-white {
  stroke: #ffffff !important;
}

.tw-stroke-black {
  stroke: #000000;
}

.tw-stroke-blue {
  stroke: #0064ff;
}

.tw-stroke-blue-10 {
  stroke: #e5efff;
}

.tw-stroke-danger {
  stroke: #d13b42;
}

.tw-stroke-green {
  stroke: #07661E;
}

.tw-stroke-grey-2 {
  stroke: #ebebeb;
}

.tw-stroke-grey-3 {
  stroke: #aaa;
}

.tw-stroke-grey-4 {
  stroke: #555;
}

.tw-stroke-none {
  stroke: none;
}

.tw-stroke-white {
  stroke: #ffffff;
}

.tw-stroke-white\/20 {
  stroke: rgba(255, 255, 255, 0.2);
}

.\!tw-stroke-1 {
  stroke-width: 1 !important;
}

.\!tw-stroke-2 {
  stroke-width: 2 !important;
}

.\!tw-stroke-\[1\.33\] {
  stroke-width: 1.33 !important;
}

.tw-stroke-2 {
  stroke-width: 2;
}

.tw-stroke-\[0\.89\] {
  stroke-width: 0.89;
}

.tw-stroke-\[1\.33\] {
  stroke-width: 1.33;
}

.tw-object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.tw-object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.tw-object-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.tw-object-center {
  -o-object-position: center;
     object-position: center;
}

.tw-object-top {
  -o-object-position: top;
     object-position: top;
}

.\!tw-p-0 {
  padding: 0px !important;
}

.\!tw-p-4 {
  padding: 1rem !important;
}

.tw-p-0 {
  padding: 0px;
}

.tw-p-0\.5 {
  padding: 0.125rem;
}

.tw-p-1 {
  padding: 0.25rem;
}

.tw-p-10 {
  padding: 2.5rem;
}

.tw-p-2 {
  padding: 0.5rem;
}

.tw-p-3 {
  padding: 0.75rem;
}

.tw-p-4 {
  padding: 1rem;
}

.tw-p-5 {
  padding: 1.25rem;
}

.tw-p-6 {
  padding: 1.5rem;
}

.tw-p-8 {
  padding: 2rem;
}

.tw-p-\[6px\] {
  padding: 6px;
}

.\!tw-px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.\!tw-px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.\!tw-px-3\.5 {
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
}

.\!tw-py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.\!tw-py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.tw-px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.tw-px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.tw-px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.tw-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.tw-px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.tw-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.tw-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tw-px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.tw-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tw-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.tw-px-\[21px\] {
  padding-left: 21px;
  padding-right: 21px;
}

.tw-py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.tw-py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.tw-py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.tw-py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.tw-py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.tw-py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.tw-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tw-py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.tw-py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.tw-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.tw-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.tw-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.tw-py-\[0\.125rem\] {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.tw-py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}

.tw-py-\[5px\] {
  padding-top: 5px;
  padding-bottom: 5px;
}

.\!tw-pt-5 {
  padding-top: 1.25rem !important;
}

.tw-pb-0 {
  padding-bottom: 0px;
}

.tw-pb-1 {
  padding-bottom: 0.25rem;
}

.tw-pb-2 {
  padding-bottom: 0.5rem;
}

.tw-pb-3 {
  padding-bottom: 0.75rem;
}

.tw-pb-4 {
  padding-bottom: 1rem;
}

.tw-pb-5 {
  padding-bottom: 1.25rem;
}

.tw-pb-6 {
  padding-bottom: 1.5rem;
}

.tw-pb-8 {
  padding-bottom: 2rem;
}

.tw-pl-0 {
  padding-left: 0px;
}

.tw-pl-1 {
  padding-left: 0.25rem;
}

.tw-pl-2 {
  padding-left: 0.5rem;
}

.tw-pl-4 {
  padding-left: 1rem;
}

.tw-pl-5 {
  padding-left: 1.25rem;
}

.tw-pl-6 {
  padding-left: 1.5rem;
}

.tw-pr-1 {
  padding-right: 0.25rem;
}

.tw-pr-10 {
  padding-right: 2.5rem;
}

.tw-pr-16 {
  padding-right: 4rem;
}

.tw-pr-2 {
  padding-right: 0.5rem;
}

.tw-pr-3 {
  padding-right: 0.75rem;
}

.tw-pr-4 {
  padding-right: 1rem;
}

.tw-pr-6 {
  padding-right: 1.5rem;
}

.tw-pr-80 {
  padding-right: 20rem;
}

.tw-pt-0 {
  padding-top: 0px;
}

.tw-pt-1 {
  padding-top: 0.25rem;
}

.tw-pt-10 {
  padding-top: 2.5rem;
}

.tw-pt-14 {
  padding-top: 3.5rem;
}

.tw-pt-2 {
  padding-top: 0.5rem;
}

.tw-pt-28 {
  padding-top: 7rem;
}

.tw-pt-4 {
  padding-top: 1rem;
}

.tw-pt-6 {
  padding-top: 1.5rem;
}

.tw-pt-8 {
  padding-top: 2rem;
}

.tw-pt-\[100px\] {
  padding-top: 100px;
}

.tw-pt-\[9px\] {
  padding-top: 9px;
}

.tw-text-left {
  text-align: left;
}

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

.tw-text-right {
  text-align: right;
}

.tw-font-\[\'Archia\'\] {
  font-family: "Archia";
}

.tw-font-\[\'Poppins\'\] {
  font-family: "Poppins";
}

.tw-font-archia {
  font-family: Archia, sans-serif;
}

.tw-font-poppins {
  font-family: Poppins, sans-serif;
}

.\!tw-text-2xl {
  font-size: 1.5rem !important;
}

.\!tw-text-5xl {
  font-size: 3rem !important;
}

.\!tw-text-base {
  font-size: 1rem !important;
}

.\!tw-text-sm {
  font-size: 0.875rem !important;
}

.\!tw-text-xs {
  font-size: 0.75rem !important;
}

.tw-text-2xl {
  font-size: 1.5rem;
}

.tw-text-3xl {
  font-size: 1.75rem;
}

.tw-text-4xl {
  font-size: 2rem;
}

.tw-text-5xl {
  font-size: 3rem;
}

.tw-text-9xl {
  font-size: 7.5rem;
}

.tw-text-\[14px\] {
  font-size: 14px;
}

.tw-text-base {
  font-size: 1rem;
}

.tw-text-lg {
  font-size: 1.125rem;
}

.tw-text-sm {
  font-size: 0.875rem;
}

.tw-text-sm\/6 {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.tw-text-xl {
  font-size: 1.25rem;
}

.tw-text-xs {
  font-size: 0.75rem;
}

.tw-text-xxs {
  font-size: 0.6875rem;
}

.\!tw-font-medium {
  font-weight: 500 !important;
}

.\!tw-font-normal {
  font-weight: 400 !important;
}

.\!tw-font-semibold {
  font-weight: 600 !important;
}

.tw-font-black {
  font-weight: 900;
}

.tw-font-bold {
  font-weight: 700;
}

.tw-font-light {
  font-weight: 300;
}

.tw-font-medium {
  font-weight: 500;
}

.tw-font-normal {
  font-weight: 400;
}

.tw-font-semibold {
  font-weight: 600;
}

.tw-font-thin {
  font-weight: 100;
}

.tw-uppercase {
  text-transform: uppercase;
}

.tw-italic {
  font-style: italic;
}

.tw-leading-5 {
  line-height: 1.25rem;
}

.tw-leading-6 {
  line-height: 1.5rem;
}

.tw-leading-9 {
  line-height: 2.25rem;
}

.tw-leading-\[0px\] {
  line-height: 0px;
}

.tw-leading-\[1\.3125rem\] {
  line-height: 1.3125rem;
}

.tw-leading-none {
  line-height: 1;
}

.tw-leading-normal {
  line-height: 1.5;
}

.tw-leading-relaxed {
  line-height: 1.625;
}

.tw-leading-snug {
  line-height: 1.375;
}

.tw-leading-tight {
  line-height: 1.25;
}

.tw-tracking-widest {
  letter-spacing: 0.1em;
}

.\!tw-text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0/1) !important;
  color: rgb(0 0 0/var(--tw-text-opacity)) !important;
}

.\!tw-text-blue {
  --tw-text-opacity: 1 !important;
  color: rgb(0 100 255/1) !important;
  color: rgb(0 100 255/var(--tw-text-opacity)) !important;
}

.\!tw-text-blue-10 {
  --tw-text-opacity: 1 !important;
  color: rgb(229 239 255/1) !important;
  color: rgb(229 239 255/var(--tw-text-opacity)) !important;
}

.\!tw-text-blue-60 {
  --tw-text-opacity: 1 !important;
  color: rgb(51 131 255/1) !important;
  color: rgb(51 131 255/var(--tw-text-opacity)) !important;
}

.\!tw-text-danger {
  --tw-text-opacity: 1 !important;
  color: rgb(209 59 66/1) !important;
  color: rgb(209 59 66/var(--tw-text-opacity)) !important;
}

.\!tw-text-dark-green {
  --tw-text-opacity: 1 !important;
  color: rgb(20 55 60/1) !important;
  color: rgb(20 55 60/var(--tw-text-opacity)) !important;
}

.\!tw-text-green {
  --tw-text-opacity: 1 !important;
  color: rgb(7 102 30/1) !important;
  color: rgb(7 102 30/var(--tw-text-opacity)) !important;
}

.\!tw-text-grey-2 {
  --tw-text-opacity: 1 !important;
  color: rgb(235 235 235/1) !important;
  color: rgb(235 235 235/var(--tw-text-opacity)) !important;
}

.\!tw-text-grey-3 {
  --tw-text-opacity: 1 !important;
  color: rgb(170 170 170/1) !important;
  color: rgb(170 170 170/var(--tw-text-opacity)) !important;
}

.\!tw-text-grey-4 {
  --tw-text-opacity: 1 !important;
  color: rgb(85 85 85/1) !important;
  color: rgb(85 85 85/var(--tw-text-opacity)) !important;
}

.\!tw-text-mint {
  --tw-text-opacity: 1 !important;
  color: rgb(0 250 215/1) !important;
  color: rgb(0 250 215/var(--tw-text-opacity)) !important;
}

.\!tw-text-warning {
  --tw-text-opacity: 1 !important;
  color: rgb(255 155 64/1) !important;
  color: rgb(255 155 64/var(--tw-text-opacity)) !important;
}

.\!tw-text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255/1) !important;
  color: rgb(255 255 255/var(--tw-text-opacity)) !important;
}

.\!tw-text-white\/80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.tw-text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-text-blue {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.tw-text-blue-10 {
  --tw-text-opacity: 1;
  color: rgb(229 239 255/1);
  color: rgb(229 239 255/var(--tw-text-opacity));
}

.tw-text-blue-60 {
  --tw-text-opacity: 1;
  color: rgb(51 131 255/1);
  color: rgb(51 131 255/var(--tw-text-opacity));
}

.tw-text-danger {
  --tw-text-opacity: 1;
  color: rgb(209 59 66/1);
  color: rgb(209 59 66/var(--tw-text-opacity));
}

.tw-text-dark-green {
  --tw-text-opacity: 1;
  color: rgb(20 55 60/1);
  color: rgb(20 55 60/var(--tw-text-opacity));
}

.tw-text-electric-blue {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.tw-text-green {
  --tw-text-opacity: 1;
  color: rgb(7 102 30/1);
  color: rgb(7 102 30/var(--tw-text-opacity));
}

.tw-text-grey-2 {
  --tw-text-opacity: 1;
  color: rgb(235 235 235/1);
  color: rgb(235 235 235/var(--tw-text-opacity));
}

.tw-text-grey-3 {
  --tw-text-opacity: 1;
  color: rgb(170 170 170/1);
  color: rgb(170 170 170/var(--tw-text-opacity));
}

.tw-text-grey-4 {
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.tw-text-mint {
  --tw-text-opacity: 1;
  color: rgb(0 250 215/1);
  color: rgb(0 250 215/var(--tw-text-opacity));
}

.tw-text-warning {
  --tw-text-opacity: 1;
  color: rgb(255 155 64/1);
  color: rgb(255 155 64/var(--tw-text-opacity));
}

.tw-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.tw-underline {
  text-decoration-line: underline;
}

.\!tw-no-underline {
  text-decoration-line: none !important;
}

.tw-no-underline {
  text-decoration-line: none;
}

.tw-decoration-white {
  text-decoration-color: #ffffff;
}

.tw-opacity-0 {
  opacity: 0;
}

.tw-opacity-25 {
  opacity: 0.25;
}

.tw-opacity-30 {
  opacity: 0.3;
}

.tw-opacity-40 {
  opacity: 0.4;
}

.tw-opacity-50 {
  opacity: 0.5;
}

.tw-opacity-60 {
  opacity: 0.6;
}

.tw-opacity-70 {
  opacity: 0.7;
}

.tw-shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 25px 50px -12px rgb(0 0 0 / 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-\[-1px_-1px_2px_rgba\(0\,0\,0\,0\.06\)\] {
  --tw-shadow: -1px -1px 2px rgba(0,0,0,0.06);
  --tw-shadow-colored: -1px -1px 2px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), -1px -1px 2px rgba(0,0,0,0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-\[inset_0_0_10px_0_rgba\(0\,100\,255\,0\.1\)\] {
  --tw-shadow: inset 0 0 10px 0 rgba(0,100,255,0.1);
  --tw-shadow-colored: inset 0 0 10px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), inset 0 0 10px 0 rgba(0,100,255,0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-\[inset_0_0_11\.25px_0_rgba\(255\,255\,255\,0\.1\)\] {
  --tw-shadow: inset 0 0 11.25px 0 rgba(255,255,255,0.1);
  --tw-shadow-colored: inset 0 0 11.25px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), inset 0 0 11.25px 0 rgba(255,255,255,0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-\[inset_0_0_11\.25px_0_rgba\(255\,255\,255\,0\.3\)\] {
  --tw-shadow: inset 0 0 11.25px 0 rgba(255,255,255,0.3);
  --tw-shadow-colored: inset 0 0 11.25px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), inset 0 0 11.25px 0 rgba(255,255,255,0.3);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-\[inset_0_0_20px_0_rgba\(0\,100\,255\,0\.2\)\] {
  --tw-shadow: inset 0 0 20px 0 rgba(0,100,255,0.2);
  --tw-shadow-colored: inset 0 0 20px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), inset 0 0 20px 0 rgba(0,100,255,0.2);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-bottomnav {
  --tw-shadow: 0 0.5rem 1rem 0 rgba(4, 99, 124, 0.06);
  --tw-shadow-colored: 0 0.5rem 1rem 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0.5rem 1rem 0 rgba(4, 99, 124, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-btn {
  --tw-shadow: 0 .0625rem .125rem 0 rgba(16, 14, 40, 0.05);
  --tw-shadow-colored: 0 .0625rem .125rem 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 .0625rem .125rem 0 rgba(16, 14, 40, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-card {
  --tw-shadow: 0.313rem 0.313rem 1.563rem 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0.313rem 0.313rem 1.563rem 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0.313rem 0.313rem 1.563rem 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-card-hover {
  --tw-shadow: 0 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 0.625rem 1.25rem 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-sidenav {
  --tw-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 41, 106, 0.14);
  --tw-shadow-colored: 0 0.0625rem 0.1875rem 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0.0625rem 0.1875rem 0 rgba(0, 41, 106, 0.14);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-shadow-snapshot {
  --tw-shadow: 0 0.75rem 1.5rem 0 rgba(0, 0, 0, 0.40);
  --tw-shadow-colored: 0 0.75rem 1.5rem 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0.75rem 1.5rem 0 rgba(0, 0, 0, 0.40);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.tw-blur-xl {
  --tw-blur: blur(24px);
  filter: blur(24px) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.tw-transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition-\[opacity\,_line-height\] {
  transition-property: opacity, line-height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-duration-150 {
  transition-duration: 150ms;
}

.tw-duration-300 {
  transition-duration: 300ms;
}

.tw-duration-500 {
  transition-duration: 500ms;
}

.tw-ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.tw-scrollable {
  overflow-y: scroll;
  overscroll-behavior: none;
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.tw-scrollable::-webkit-scrollbar {
  display: none;
}

.tw-scrollbar-hidden {
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.tw-scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.tw-scrollable-reverse {
  overflow-y: scroll;
  overscroll-behavior: none;
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
  flex-direction: column-reverse !important;
}

.tw-scrollable-reverse::-webkit-scrollbar {
  display: none;
}

.tw-h-topnav {
  height: 3.5rem;
  height: var(--topnav-height);
}

.tw-h-bottomnav {
  height: 5.5rem;
  height: var(--bottomnav-height);
}

.tw-w-sidenav {
  width: 7.3125rem;
  width: var(--sidenav-width);
}

.tw-w-calc-100-minus-sidenav {
  width: calc(100% - 7.3125rem);
  width: calc(100% - var(--sidenav-width));
}

.tw-ml-sidenav {
  margin-left: 7.3125rem;
  margin-left: var(--sidenav-width);
}

.tw-mt-topnav {
  margin-top: 3.5rem;
  margin-top: var(--topnav-height);
}

.tw-mb-bottomnav {
  margin-bottom: 5.5rem;
  margin-bottom: var(--bottomnav-height);
}

.tw-mb-bottomnav-x-2 {
  margin-bottom: calc(5.5rem * 2);
  margin-bottom: calc(var(--bottomnav-height) * 2);
}

@media (max-width: 47.98rem) {
  .tw-mb-main-content-section {
    padding-bottom: 5.5rem;
    padding-bottom: var(--bottomnav-height);
  }
}
.tw-not-sr-onlymb-bottomnav {
  margin-bottom: 5.5rem;
  margin-bottom: var(--bottomnav-height);
}

.\!tw-title-1 {
  font-size: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-title-1 {
  font-size: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-title-2 {
  font-size: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-title-3 {
  font-size: 1.125rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-title-4 {
  font-size: 1rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-tag-medium {
  font-size: 0.75rem;
  font-weight: 500;
}

.tw-caption {
  font-size: 0.875rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.tw-caption-light {
  font-size: 0.875rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(170 170 170/1);
  color: rgb(170 170 170/var(--tw-text-opacity));
}

.tw-caption-dark {
  font-size: 0.875rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-label {
  font-size: 0.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.\!tw-label-medium {
  font-size: 0.875rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-label-medium {
  font-size: 0.875rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-label-medium-light {
  font-size: 0.875rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.tw-text-outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: white 0.0625rem;
}

.\!tw-text-shadow-lg {
  text-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.2) !important;
}

.tw-text-shadow-lg {
  text-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.2);
}

.tw-no-scrollbar {
  /* Hide the scrollbar for Internet Explorer, Edge and Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide the scrollbar for Chrome, Safari and Opera */
}

.tw-no-scrollbar::-webkit-scrollbar {
  display: none;
}

.tw-link-flex {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 23.4375rem) {
  .tw-link-flex {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tw-two-line-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.\!tw-icon-blue {
  fill: #0064ff;
}

.tw-icon-blue {
  fill: #0064ff;
}

.\!tw-icon-blue {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.tw-icon-blue {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.\!tw-icon-blue svg {
  fill: #0064ff;
}

.tw-icon-blue svg {
  fill: #0064ff;
}

.\!tw-icon-blue svg {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.tw-icon-blue svg {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.\!tw-icon-blue svg path {
  fill: #0064ff;
}

.tw-icon-blue svg path {
  fill: #0064ff;
}

.tw-icon-blue-10 {
  fill: #e5efff;
  --tw-text-opacity: 1;
  color: rgb(229 239 255/1);
  color: rgb(229 239 255/var(--tw-text-opacity));
}

.tw-icon-blue-10 svg {
  fill: #e5efff;
  --tw-text-opacity: 1;
  color: rgb(229 239 255/1);
  color: rgb(229 239 255/var(--tw-text-opacity));
}

.tw-icon-blue-10 svg path {
  fill: #e5efff;
}

.tw-icon-blue-30 {
  fill: #b3d1ff;
  --tw-text-opacity: 1;
  color: rgb(179 209 255/1);
  color: rgb(179 209 255/var(--tw-text-opacity));
}

.tw-icon-blue-30 svg {
  fill: #b3d1ff;
  --tw-text-opacity: 1;
  color: rgb(179 209 255/1);
  color: rgb(179 209 255/var(--tw-text-opacity));
}

.tw-icon-blue-30 svg path {
  fill: #b3d1ff;
}

.tw-icon-blue-60 {
  fill: #3383ff;
  --tw-text-opacity: 1;
  color: rgb(51 131 255/1);
  color: rgb(51 131 255/var(--tw-text-opacity));
}

.tw-icon-blue-60 svg {
  fill: #3383ff;
  --tw-text-opacity: 1;
  color: rgb(51 131 255/1);
  color: rgb(51 131 255/var(--tw-text-opacity));
}

.tw-icon-blue-60 svg path {
  fill: #3383ff;
}

.\!tw-icon-green {
  fill: #07661E;
}

.tw-icon-green {
  fill: #07661E;
}

.\!tw-icon-green {
  --tw-text-opacity: 1;
  color: rgb(7 102 30/1);
  color: rgb(7 102 30/var(--tw-text-opacity));
}

.tw-icon-green {
  --tw-text-opacity: 1;
  color: rgb(7 102 30/1);
  color: rgb(7 102 30/var(--tw-text-opacity));
}

.\!tw-icon-green svg {
  fill: #07661E;
}

.tw-icon-green svg {
  fill: #07661E;
}

.\!tw-icon-green svg {
  --tw-text-opacity: 1;
  color: rgb(7 102 30/1);
  color: rgb(7 102 30/var(--tw-text-opacity));
}

.tw-icon-green svg {
  --tw-text-opacity: 1;
  color: rgb(7 102 30/1);
  color: rgb(7 102 30/var(--tw-text-opacity));
}

.\!tw-icon-green svg path {
  fill: #07661E;
}

.tw-icon-green svg path {
  fill: #07661E;
}

.tw-icon-warning {
  fill: #ff9b40;
  --tw-text-opacity: 1;
  color: rgb(255 155 64/1);
  color: rgb(255 155 64/var(--tw-text-opacity));
}

.tw-icon-warning svg {
  fill: #ff9b40;
  --tw-text-opacity: 1;
  color: rgb(255 155 64/1);
  color: rgb(255 155 64/var(--tw-text-opacity));
}

.tw-icon-warning svg path {
  fill: #ff9b40;
}

.tw-icon-warning-50 {
  fill: #FFFAEB;
  --tw-text-opacity: 1;
  color: rgb(255 250 235/1);
  color: rgb(255 250 235/var(--tw-text-opacity));
}

.tw-icon-warning-50 svg {
  fill: #FFFAEB;
  --tw-text-opacity: 1;
  color: rgb(255 250 235/1);
  color: rgb(255 250 235/var(--tw-text-opacity));
}

.tw-icon-warning-50 svg path {
  fill: #FFFAEB;
}

.\!tw-icon-danger {
  fill: #d13b42;
}

.tw-icon-danger {
  fill: #d13b42;
}

.\!tw-icon-danger {
  --tw-text-opacity: 1;
  color: rgb(209 59 66/1);
  color: rgb(209 59 66/var(--tw-text-opacity));
}

.tw-icon-danger {
  --tw-text-opacity: 1;
  color: rgb(209 59 66/1);
  color: rgb(209 59 66/var(--tw-text-opacity));
}

.\!tw-icon-danger svg {
  fill: #d13b42;
}

.tw-icon-danger svg {
  fill: #d13b42;
}

.\!tw-icon-danger svg {
  --tw-text-opacity: 1;
  color: rgb(209 59 66/1);
  color: rgb(209 59 66/var(--tw-text-opacity));
}

.tw-icon-danger svg {
  --tw-text-opacity: 1;
  color: rgb(209 59 66/1);
  color: rgb(209 59 66/var(--tw-text-opacity));
}

.\!tw-icon-danger svg path {
  fill: #d13b42;
}

.tw-icon-danger svg path {
  fill: #d13b42;
}

.tw-icon-danger-12 {
  fill: #F9E6E7;
  --tw-text-opacity: 1;
  color: rgb(249 230 231/1);
  color: rgb(249 230 231/var(--tw-text-opacity));
}

.tw-icon-danger-12 svg {
  fill: #F9E6E7;
  --tw-text-opacity: 1;
  color: rgb(249 230 231/1);
  color: rgb(249 230 231/var(--tw-text-opacity));
}

.tw-icon-danger-12 svg path {
  fill: #F9E6E7;
}

.tw-icon-white {
  fill: #ffffff;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.tw-icon-white svg {
  fill: #ffffff;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.tw-icon-white svg path {
  fill: #ffffff;
}

.\!tw-icon-grey-4 {
  fill: #555;
}

.tw-icon-grey-4 {
  fill: #555;
}

.\!tw-icon-grey-4 {
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.tw-icon-grey-4 {
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.\!tw-icon-grey-4 svg {
  fill: #555;
}

.tw-icon-grey-4 svg {
  fill: #555;
}

.\!tw-icon-grey-4 svg {
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.tw-icon-grey-4 svg {
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.\!tw-icon-grey-4 svg path {
  fill: #555;
}

.tw-icon-grey-4 svg path {
  fill: #555;
}

.tw-icon-black {
  fill: #000000;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-icon-black svg {
  fill: #000000;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-icon-black svg path {
  fill: #000000;
}

.tw-icon-dark-green {
  fill: #14373c;
  --tw-text-opacity: 1;
  color: rgb(20 55 60/1);
  color: rgb(20 55 60/var(--tw-text-opacity));
}

.tw-icon-dark-green svg {
  fill: #14373c;
  --tw-text-opacity: 1;
  color: rgb(20 55 60/1);
  color: rgb(20 55 60/var(--tw-text-opacity));
}

.tw-icon-dark-green svg path {
  fill: #14373c;
}

.tw-icon-16 {
  width: 1rem;
  min-width: 1rem;
  height: auto;
}

.tw-icon-24 {
  width: 1.5rem;
  min-width: 1.5rem;
  height: auto;
}

.tw-icon-32 {
  width: 2rem;
  min-width: 2rem;
  height: auto;
}

.tw-icon-48 {
  width: 3rem;
  min-width: 3rem;
  height: auto;
}

.tw-icon-90 {
  width: 5.625rem;
  min-width: 5.625rem;
  height: auto;
}

.tw-transition-height {
  transition: height 0.2s;
}

.tw-partner-trix-editor .trix-button-row {
  justify-content: flex-end;
  border-style: none;
  border-radius: 0 !important;
}

.tw-partner-trix-editor .trix-button-row .trix-button-group--text-tools button:first-child {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0.5rem !important;
}

.tw-partner-trix-editor .trix-button-row .trix-button-group--block-tools button:last-child {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0.5rem !important;
}

.tw-partner-trix-editor trix-editor {
  min-height: 10rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
  border-bottom-right-radius: 0 !important;
}

.tw-font-poppins {
  font-family: Poppins, sans-serif !important;
}

.tw-font-poppins h1, .tw-font-poppins .h1,
.tw-font-poppins h2,
.tw-font-poppins .h2,
.tw-font-poppins h3,
.tw-font-poppins .h3,
.tw-font-poppins h4,
.tw-font-poppins .h4,
.tw-font-poppins h5,
.tw-font-poppins .h5,
.tw-font-poppins h6,
.tw-font-poppins .h6 {
  font-family: Poppins, sans-serif !important;
}

.tw-prose {
  --tw-text-opacity: 1;
  color: rgb(20 55 60/1);
  color: rgb(20 55 60/var(--tw-text-opacity));
  font-family: Poppins, sans-serif;
}

.tw-prose h1, .tw-prose .h1, .tw-prose h2, .tw-prose .h2, .tw-prose h3, .tw-prose .h3, .tw-prose h4, .tw-prose .h4, .tw-prose h5, .tw-prose .h5, .tw-prose h6, .tw-prose .h6 {
  font-family: Poppins, sans-serif;
}

.tw-prose h1, .tw-prose .h1 {
  font-size: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-prose h2, .tw-prose .h2 {
  font-size: 1.125rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-prose h3, .tw-prose .h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-prose p {
  --tw-text-opacity: 1;
  color: rgb(20 55 60/1);
  color: rgb(20 55 60/var(--tw-text-opacity));
}

.tw-prose strong {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-prose pre {
  --tw-bg-opacity: 1;
  background-color: rgb(20 55 60/1);
  background-color: rgb(20 55 60/var(--tw-bg-opacity));
}

.\[hover\:tw-text-white\] {
  hover: tw-text-white;
}

.\[max-md\:tw-w-full\] {
  max-md: tw-w-full;
}

.\[md\:tw-grid-cols-1fr-1fr\] {
  md: tw-grid-cols-1fr-1fr;
}

.\[md\:tw-justify-self-end\] {
  md: tw-justify-self-end;
}

.\[md\:tw-justify-self-start\] {
  md: tw-justify-self-start;
}

.\[md\:tw-max-w-175\] {
  md: tw-max-w-175;
}

.\[md\:tw-max-w-4xl\] {
  md: tw-max-w-4xl;
}

.\[md\:tw-max-w-sm\] {
  md: tw-max-w-sm;
}

.\[md\:tw-max-w-xl\] {
  md: tw-max-w-xl;
}

.\[md\:tw-min-w-28\] {
  md: tw-min-w-28;
}

.\*\:tw-min-w-60 > * {
  min-width: 15rem;
}

.marker\:tw-text-blue *::marker {
  color: rgb(0, 100, 255);
}

.marker\:tw-text-blue::marker {
  color: rgb(0, 100, 255);
}

.backdrop\:tw-bg-black-0\.5::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.backdrop\:tw-bg-black\/50::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.before\:tw-absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:tw-left-0::before {
  content: var(--tw-content);
  left: 0px;
}

.before\:tw-left-\[-0\.1875rem\]::before {
  content: var(--tw-content);
  left: -0.1875rem;
}

.before\:tw-right-\[-0\.1875rem\]::before {
  content: var(--tw-content);
  right: -0.1875rem;
}

.before\:tw-top-0::before {
  content: var(--tw-content);
  top: 0px;
}

.before\:tw-top-\[-0\.1875rem\]::before {
  content: var(--tw-content);
  top: -0.1875rem;
}

.before\:tw-block::before {
  content: var(--tw-content);
  display: block;
}

.before\:tw-h-2::before {
  content: var(--tw-content);
  height: 0.5rem;
}

.before\:tw-h-3::before {
  content: var(--tw-content);
  height: 0.75rem;
}

.before\:tw-h-full::before {
  content: var(--tw-content);
  height: 100%;
}

.before\:tw-w-2::before {
  content: var(--tw-content);
  width: 0.5rem;
}

.before\:tw-w-3::before {
  content: var(--tw-content);
  width: 0.75rem;
}

.before\:tw-w-full::before {
  content: var(--tw-content);
  width: 100%;
}

.before\:tw-origin-left::before {
  content: var(--tw-content);
  transform-origin: left;
}

.before\:tw-rounded-1\/2::before {
  content: var(--tw-content);
  border-radius: 50%;
}

.before\:tw-rounded-lg::before {
  content: var(--tw-content);
  border-radius: 0.5rem;
}

.before\:tw-bg-black-0\.5::before {
  content: var(--tw-content);
  background-color: rgba(0, 0, 0, 0.5);
}

.before\:tw-bg-current::before {
  content: var(--tw-content);
  background-color: currentColor;
}

.before\:tw-bg-danger::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(209 59 66/1);
  background-color: rgb(209 59 66/var(--tw-bg-opacity));
}

.before\:tw-bg-green::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(7 102 30/1);
  background-color: rgb(7 102 30/var(--tw-bg-opacity));
}

.before\:tw-bg-play-icon::before {
  content: var(--tw-content);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='white'%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E %3C/defs%3E %3Cpath d='M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28Z'/%3E %3Crect id='_Transparent_Rectangle_' data-name='Transparent Rectangle' class='cls-1' width='32' height='32' fill='currentColor'/%3E %3C/svg%3E");
}

.before\:tw-bg-6::before {
  content: var(--tw-content);
  background-size: 1.5rem;
}

.before\:tw-bg-center::before {
  content: var(--tw-content);
  background-position: center;
}

.before\:tw-bg-no-repeat::before {
  content: var(--tw-content);
  background-repeat: no-repeat;
}

.before\:tw-content-\[\'\'\]::before {
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}

.after\:tw-absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:tw-bottom-0::after {
  content: var(--tw-content);
  bottom: 0px;
}

.after\:tw-left-0::after {
  content: var(--tw-content);
  left: 0px;
}

.after\:tw-right-0::after {
  content: var(--tw-content);
  right: 0px;
}

.after\:tw-top-0::after {
  content: var(--tw-content);
  top: 0px;
}

.after\:tw-m-auto::after {
  content: var(--tw-content);
  margin: auto;
}

.after\:tw-flex::after {
  content: var(--tw-content);
  display: flex;
}

.after\:tw-h-\[70\%\]::after {
  content: var(--tw-content);
  height: 70%;
}

.after\:tw-w-\[70\%\]::after {
  content: var(--tw-content);
  width: 70%;
}

.after\:tw-items-center::after {
  content: var(--tw-content);
  align-items: center;
}

.after\:tw-justify-center::after {
  content: var(--tw-content);
  justify-content: center;
}

.after\:tw-rounded-1\/2::after {
  content: var(--tw-content);
  border-radius: 50%;
}

.after\:tw-bg-white::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/1);
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}

.after\:tw-text-center::after {
  content: var(--tw-content);
  text-align: center;
}

.after\:tw-text-\[0\.625rem\]::after {
  content: var(--tw-content);
  font-size: 0.625rem;
}

.after\:tw-content-\[attr\(data-percentage\)\]::after {
  --tw-content: attr(data-percentage);
  content: attr(data-percentage);
  content: var(--tw-content);
}

.last\:tw-mb-0:last-child {
  margin-bottom: 0px;
}

@keyframes tw-spin {
  to {
    transform: rotate(360deg);
  }
}
.hover\:tw-animate-spin:hover {
  animation: tw-spin 1s linear infinite;
}

.hover\:tw-border-blue:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 100 255/1);
  border-color: rgb(0 100 255/var(--tw-border-opacity));
}

.hover\:tw-border-opacity-100:hover {
  --tw-border-opacity: 1;
}

.hover\:\!tw-bg-danger:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(209 59 66/1) !important;
  background-color: rgb(209 59 66/var(--tw-bg-opacity)) !important;
}

.hover\:\!tw-bg-danger\/80:hover {
  background-color: rgba(209, 59, 66, 0.8) !important;
}

.hover\:tw-bg-blue-2:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 245 255/1);
  background-color: rgb(239 245 255/var(--tw-bg-opacity));
}

.hover\:tw-bg-blue-60:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(51 131 255/1);
  background-color: rgb(51 131 255/var(--tw-bg-opacity));
}

.hover\:tw-bg-card-neutral:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 246 255/1);
  background-color: rgb(240 246 255/var(--tw-bg-opacity));
}

.hover\:tw-bg-dark-green:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(20 55 60/1);
  background-color: rgb(20 55 60/var(--tw-bg-opacity));
}

.hover\:tw-bg-grey-1:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245/1);
  background-color: rgb(245 245 245/var(--tw-bg-opacity));
}

.hover\:tw-fill-white:hover {
  fill: #ffffff;
}

.hover\:tw-stroke-grey-3:hover {
  stroke: #aaa;
}

.hover\:tw-stroke-white:hover {
  stroke: #ffffff;
}

.hover\:\!tw-text-white:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255/1) !important;
  color: rgb(255 255 255/var(--tw-text-opacity)) !important;
}

.hover\:tw-text-blue:hover {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.hover\:tw-text-blue-60:hover {
  --tw-text-opacity: 1;
  color: rgb(51 131 255/1);
  color: rgb(51 131 255/var(--tw-text-opacity));
}

.hover\:tw-text-current:hover {
  color: currentColor;
}

.hover\:tw-text-danger-12:hover {
  --tw-text-opacity: 1;
  color: rgb(249 230 231/1);
  color: rgb(249 230 231/var(--tw-text-opacity));
}

.hover\:tw-text-grey-4:hover {
  --tw-text-opacity: 1;
  color: rgb(85 85 85/1);
  color: rgb(85 85 85/var(--tw-text-opacity));
}

.hover\:tw-text-warning:hover {
  --tw-text-opacity: 1;
  color: rgb(255 155 64/1);
  color: rgb(255 155 64/var(--tw-text-opacity));
}

.hover\:tw-text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.hover\:tw-underline:hover {
  text-decoration-line: underline;
}

.hover\:tw-opacity-80:hover {
  opacity: 0.8;
}

.hover\:tw-opacity-90:hover {
  opacity: 0.9;
}

.hover\:tw-shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.hover\:tw-shadow-sm:hover {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.hover\:tw-transition:hover {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:tw-icon-danger-12:hover {
  fill: #F9E6E7;
  --tw-text-opacity: 1;
  color: rgb(249 230 231/1);
  color: rgb(249 230 231/var(--tw-text-opacity));
}

.hover\:tw-icon-danger-12:hover svg {
  fill: #F9E6E7;
  --tw-text-opacity: 1;
  color: rgb(249 230 231/1);
  color: rgb(249 230 231/var(--tw-text-opacity));
}

.hover\:tw-icon-danger-12:hover svg path {
  fill: #F9E6E7;
}

.focus\:tw-border-blue:focus {
  --tw-border-opacity: 1;
  border-color: rgb(0 100 255/1);
  border-color: rgb(0 100 255/var(--tw-border-opacity));
}

.focus\:tw-outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:tw-ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0, 0, 0, 0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
}

.focus\:tw-ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0, 0, 0, 0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
}

.focus-visible\:tw-outline-none.focus-visible.js-focus-visible, .js-focus-visible .focus-visible\:tw-outline-none.focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:tw-outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.disabled\:tw-pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:tw-opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:tw-opacity-80:disabled {
  opacity: 0.8;
}

.tw-group:hover .group-hover\:tw-bg-card-neutral\/50 {
  background-color: rgba(240, 246, 255, 0.5);
}

.tw-group:hover .group-hover\:tw-fill-mint {
  fill: #00fad7;
}

.tw-group:hover .group-hover\:tw-fill-white {
  fill: #ffffff;
}

.tw-group:hover .group-hover\:\!tw-stroke-black {
  stroke: #000000 !important;
}

.tw-group:hover .group-hover\:tw-text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.tw-group:hover .group-hover\:tw-text-blue-60 {
  --tw-text-opacity: 1;
  color: rgb(51 131 255/1);
  color: rgb(51 131 255/var(--tw-text-opacity));
}

.tw-group:hover .group-hover\:tw-transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-group:hover .group-hover\:tw-icon-white {
  fill: #ffffff;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.tw-group:hover .group-hover\:tw-icon-white svg {
  fill: #ffffff;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.tw-group:hover .group-hover\:tw-icon-white svg path {
  fill: #ffffff;
}

@media all and (display-mode: standalone) {
  .standalone\:tw-block {
    display: block;
  }
  .standalone\:tw-hidden {
    display: none;
  }
}
@media not all and (min-width: 48rem) {
  .max-md\:tw-bottom-0 {
    bottom: 0px;
  }
  .max-md\:tw-mt-4 {
    margin-top: 1rem;
  }
  .max-md\:tw-max-h-\[calc\(100vh-4rem\)\] {
    max-height: calc(100vh - 4rem);
  }
  .max-md\:tw-w-dvw {
    width: 100dvw;
  }
  .max-md\:tw-w-full {
    width: 100%;
  }
  .max-md\:tw-max-w-dvw {
    max-width: 100dvw;
  }
  .max-md\:tw-overflow-x-visible {
    overflow-x: visible;
  }
  .max-md\:tw-rounded-b-none {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}
@media (min-width: 23.4375rem) {
  .sm\:-tw-mt-8 {
    margin-top: -2rem;
  }
  .sm\:\!tw-size-40 {
    width: 10rem !important;
    height: 10rem !important;
  }
  .sm\:tw-w-80 {
    width: 20rem;
  }
  .sm\:tw-w-auto {
    width: auto;
  }
  .sm\:tw-w-full {
    width: 100%;
  }
  .sm\:tw-min-w-0 {
    min-width: 0px;
  }
  .sm\:tw-min-w-40 {
    min-width: 10rem;
  }
  .sm\:tw-max-w-80 {
    max-width: 20rem;
  }
  .sm\:tw-auto-cols-1 {
    grid-auto-columns: 100%;
  }
  .sm\:tw-auto-cols-2 {
    grid-auto-columns: 50%;
  }
  .sm\:tw-auto-cols-3 {
    grid-auto-columns: 33.3333333333%;
  }
  .sm\:tw-auto-cols-4 {
    grid-auto-columns: 25%;
  }
  .sm\:tw-auto-cols-5 {
    grid-auto-columns: 20%;
  }
  .sm\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:tw-justify-center {
    justify-content: center;
  }
  .sm\:tw-p-3 {
    padding: 0.75rem;
  }
  .sm\:tw-pb-8 {
    padding-bottom: 2rem;
  }
  .sm\:tw-title-1 {
    font-size: 1.5rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(0 0 0/1);
    color: rgb(0 0 0/var(--tw-text-opacity));
  }
}
@media (min-width: 48rem) {
  .md\:-tw-left-\[4rem\] {
    left: -4rem;
  }
  .md\:-tw-top-2 {
    top: -0.5rem;
  }
  .md\:-tw-top-4 {
    top: -1rem;
  }
  .md\:tw-bottom-0 {
    bottom: 0px;
  }
  .md\:tw-bottom-4 {
    bottom: 1rem;
  }
  .md\:tw-left-0 {
    left: 0px;
  }
  .md\:tw-left-auto {
    left: auto;
  }
  .md\:tw-right-0 {
    right: 0px;
  }
  .md\:tw-right-4 {
    right: 1rem;
  }
  .md\:tw-right-8 {
    right: 2rem;
  }
  .md\:tw-right-auto {
    right: auto;
  }
  .md\:tw-top-4 {
    top: 1rem;
  }
  .md\:tw-top-auto {
    top: auto;
  }
  .md\:tw-z-50 {
    z-index: 50;
  }
  .md\:tw-z-auto {
    z-index: auto;
  }
  .md\:-tw-order-1 {
    order: -1;
  }
  .md\:-tw-order-2 {
    order: -2;
  }
  .md\:tw-col-span-1 {
    grid-column: span 1/span 1;
  }
  .md\:tw-col-start-2 {
    grid-column-start: 2;
  }
  .md\:tw-row-span-2 {
    grid-row: span 2/span 2;
  }
  .md\:tw-mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .md\:tw-mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .md\:tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:-tw-mb-12 {
    margin-bottom: -3rem;
  }
  .md\:-tw-mt-8 {
    margin-top: -2rem;
  }
  .md\:tw-mb-0 {
    margin-bottom: 0px;
  }
  .md\:tw-ml-12 {
    margin-left: 3rem;
  }
  .md\:tw-ml-6 {
    margin-left: 1.5rem;
  }
  .md\:tw-mr-6 {
    margin-right: 1.5rem;
  }
  .md\:tw-mt-20 {
    margin-top: 5rem;
  }
  .md\:tw-mt-36 {
    margin-top: 9rem;
  }
  .md\:tw-mt-4 {
    margin-top: 1rem;
  }
  .md\:tw-line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .md\:tw-line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .md\:tw-block {
    display: block;
  }
  .md\:tw-inline-block {
    display: inline-block;
  }
  .md\:tw-inline {
    display: inline;
  }
  .md\:tw-flex {
    display: flex;
  }
  .md\:tw-inline-flex {
    display: inline-flex;
  }
  .md\:tw-grid {
    display: grid;
  }
  .md\:tw-hidden {
    display: none;
  }
  .md\:\!tw-size-48 {
    width: 12rem !important;
    height: 12rem !important;
  }
  .md\:tw-size-12 {
    width: 3rem;
    height: 3rem;
  }
  .md\:tw-size-20 {
    width: 5rem;
    height: 5rem;
  }
  .md\:tw-size-40 {
    width: 10rem;
    height: 10rem;
  }
  .md\:tw-h-10 {
    height: 2.5rem;
  }
  .md\:tw-h-35 {
    height: 8.75rem;
  }
  .md\:tw-h-\[7\.75rem\] {
    height: 7.75rem;
  }
  .md\:tw-h-\[85vh\] {
    height: 85vh;
  }
  .md\:tw-h-dvh {
    height: 100dvh;
  }
  .md\:tw-max-h-36 {
    max-height: 9rem;
  }
  .md\:\!tw-min-h-\[34\.6875rem\] {
    min-height: 34.6875rem !important;
  }
  .md\:tw-min-h-160 {
    min-height: 40rem;
  }
  .md\:tw-min-h-56 {
    min-height: 14rem;
  }
  .md\:\!tw-w-1\/3 {
    width: 33.333333% !important;
  }
  .md\:\!tw-w-40 {
    width: 10rem !important;
  }
  .md\:\!tw-w-\[28\.125rem\] {
    width: 28.125rem !important;
  }
  .md\:tw-w-1\/2 {
    width: 50%;
  }
  .md\:tw-w-175 {
    width: 43.75rem;
  }
  .md\:tw-w-40 {
    width: 10rem;
  }
  .md\:tw-w-52 {
    width: 13rem;
  }
  .md\:tw-w-60 {
    width: 15rem;
  }
  .md\:tw-w-80 {
    width: 20rem;
  }
  .md\:tw-w-\[12\.75rem\] {
    width: 12.75rem;
  }
  .md\:tw-w-\[17rem\] {
    width: 17rem;
  }
  .md\:tw-w-\[20\.375rem\] {
    width: 20.375rem;
  }
  .md\:tw-w-\[25rem\] {
    width: 25rem;
  }
  .md\:tw-w-\[29\.5rem\] {
    width: 29.5rem;
  }
  .md\:tw-w-\[36rem\] {
    width: 36rem;
  }
  .md\:tw-w-\[48rem\] {
    width: 48rem;
  }
  .md\:tw-w-auto {
    width: auto;
  }
  .md\:tw-w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .md\:tw-w-full {
    width: 100%;
  }
  .md\:\!tw-min-w-40 {
    min-width: 10rem !important;
  }
  .md\:tw-min-w-28 {
    min-width: 7rem;
  }
  .md\:tw-min-w-60 {
    min-width: 15rem;
  }
  .md\:tw-min-w-72 {
    min-width: 18rem;
  }
  .md\:tw-min-w-\[13rem\] {
    min-width: 13rem;
  }
  .md\:\!tw-max-w-none {
    max-width: none !important;
  }
  .md\:tw-max-w-175 {
    max-width: 43.75rem;
  }
  .md\:tw-max-w-4xl {
    max-width: 56rem;
  }
  .md\:tw-max-w-5xl {
    max-width: 64rem;
  }
  .md\:tw-max-w-60 {
    max-width: 15rem;
  }
  .md\:tw-max-w-72 {
    max-width: 18rem;
  }
  .md\:tw-max-w-\[220px\] {
    max-width: 220px;
  }
  .md\:tw-max-w-\[282px\] {
    max-width: 282px;
  }
  .md\:tw-max-w-sm {
    max-width: 24rem;
  }
  .md\:tw-max-w-xl {
    max-width: 36rem;
  }
  .md\:tw-flex-initial {
    flex: 0 1 auto;
  }
  .md\:tw-shrink-0 {
    flex-shrink: 0;
  }
  .md\:tw-snap-none {
    scroll-snap-type: none;
  }
  .md\:tw-auto-cols-1 {
    grid-auto-columns: 100%;
  }
  .md\:tw-auto-cols-2 {
    grid-auto-columns: 50%;
  }
  .md\:tw-auto-cols-3 {
    grid-auto-columns: 33.3333333333%;
  }
  .md\:tw-auto-cols-4 {
    grid-auto-columns: 25%;
  }
  .md\:tw-auto-cols-5 {
    grid-auto-columns: 20%;
  }
  .md\:tw-grid-cols-1fr-1fr {
    grid-template-columns: 1fr 1fr;
  }
  .md\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:tw-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:tw-grid-cols-auto-auto {
    grid-template-columns: auto auto;
  }
  .md\:tw-grid-rows-subgrid {
    grid-template-rows: subgrid;
  }
  .md\:tw-flex-row {
    flex-direction: row;
  }
  .md\:tw-flex-col {
    flex-direction: column;
  }
  .md\:tw-items-center {
    align-items: center;
  }
  .md\:tw-justify-start {
    justify-content: flex-start;
  }
  .md\:tw-justify-end {
    justify-content: flex-end;
  }
  .md\:tw-justify-center {
    justify-content: center;
  }
  .md\:tw-justify-between {
    justify-content: space-between;
  }
  .md\:tw-gap-0 {
    gap: 0px;
  }
  .md\:tw-gap-2 {
    gap: 0.5rem;
  }
  .md\:tw-gap-3 {
    gap: 0.75rem;
  }
  .md\:tw-gap-4 {
    gap: 1rem;
  }
  .md\:tw-space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * (1 - 0));
    margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * 0);
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }
  .md\:tw-justify-self-start {
    justify-self: start;
  }
  .md\:tw-justify-self-end {
    justify-self: end;
  }
  .md\:tw-overflow-visible {
    overflow: visible;
  }
  .md\:tw-overflow-x-hidden {
    overflow-x: hidden;
  }
  .md\:tw-rounded-lg {
    border-radius: 0.5rem;
  }
  .md\:tw-rounded-l-none {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .md\:tw-rounded-r-none {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .md\:tw-border {
    border-width: 1px;
  }
  .md\:tw-border-blue-10 {
    --tw-border-opacity: 1;
    border-color: rgb(229 239 255/1);
    border-color: rgb(229 239 255/var(--tw-border-opacity));
  }
  .md\:\!tw-p-6 {
    padding: 1.5rem !important;
  }
  .md\:tw-p-0 {
    padding: 0px;
  }
  .md\:tw-p-4 {
    padding: 1rem;
  }
  .md\:tw-p-6 {
    padding: 1.5rem;
  }
  .md\:tw-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:tw-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:tw-py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:tw-pb-16 {
    padding-bottom: 4rem;
  }
  .md\:tw-pb-4 {
    padding-bottom: 1rem;
  }
  .md\:tw-pb-8 {
    padding-bottom: 2rem;
  }
  .md\:tw-pr-0 {
    padding-right: 0px;
  }
  .md\:tw-pt-6 {
    padding-top: 1.5rem;
  }
  .md\:tw-text-center {
    text-align: center;
  }
  .md\:tw-text-start {
    text-align: start;
  }
  .md\:tw-text-base {
    font-size: 1rem;
  }
  .md\:tw-text-sm {
    font-size: 0.875rem;
  }
  .md\:tw-w-calc-100-minus-sidenav {
    width: calc(100% - 7.3125rem);
    width: calc(100% - var(--sidenav-width));
  }
  .md\:tw-ml-sidenav {
    margin-left: 7.3125rem;
    margin-left: var(--sidenav-width);
  }
  .md\:tw-title-1 {
    font-size: 1.5rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(0 0 0/1);
    color: rgb(0 0 0/var(--tw-text-opacity));
  }
  .md\:tw-title-2 {
    font-size: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(0 0 0/1);
    color: rgb(0 0 0/var(--tw-text-opacity));
  }
  .md\:hover\:tw-border-r-2:hover {
    border-right-width: 2px;
  }
  .md\:hover\:tw-border-blue:hover {
    --tw-border-opacity: 1;
    border-color: rgb(0 100 255/1);
    border-color: rgb(0 100 255/var(--tw-border-opacity));
  }
  .md\:hover\:tw-bg-card-neutral:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(240 246 255/1);
    background-color: rgb(240 246 255/var(--tw-bg-opacity));
  }
}
@media (min-width: 62rem) {
  .lg\:tw-block {
    display: block;
  }
  .lg\:tw-flex {
    display: flex;
  }
  .lg\:tw-grid {
    display: grid;
  }
  .lg\:tw-hidden {
    display: none;
  }
  .lg\:tw-size-16 {
    width: 4rem;
    height: 4rem;
  }
  .lg\:tw-size-24 {
    width: 6rem;
    height: 6rem;
  }
  .lg\:tw-w-72 {
    width: 18rem;
  }
  .lg\:tw-w-\[43\.75rem\] {
    width: 43.75rem;
  }
  .lg\:tw-w-\[490px\] {
    width: 490px;
  }
  .lg\:tw-w-full {
    width: 100%;
  }
  .lg\:tw-min-w-96 {
    min-width: 24rem;
  }
  .lg\:tw-max-w-80 {
    max-width: 20rem;
  }
  .lg\:tw-max-w-full {
    max-width: 100%;
  }
  .lg\:tw-basis-10\/12 {
    flex-basis: 83.333333%;
  }
  .lg\:tw-basis-2\/12 {
    flex-basis: 16.666667%;
  }
  .lg\:tw-basis-\[45\%\] {
    flex-basis: 45%;
  }
  .lg\:tw-basis-\[55\%\] {
    flex-basis: 55%;
  }
  .lg\:tw-auto-cols-1 {
    grid-auto-columns: 100%;
  }
  .lg\:tw-auto-cols-2 {
    grid-auto-columns: 50%;
  }
  .lg\:tw-auto-cols-3 {
    grid-auto-columns: 33.3333333333%;
  }
  .lg\:tw-auto-cols-4 {
    grid-auto-columns: 25%;
  }
  .lg\:tw-auto-cols-5 {
    grid-auto-columns: 20%;
  }
  .lg\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:tw-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:tw-flex-row {
    flex-direction: row;
  }
  .lg\:tw-flex-col {
    flex-direction: column;
  }
  .lg\:tw-gap-4 {
    gap: 1rem;
  }
  .lg\:tw-overflow-visible {
    overflow: visible;
  }
  .lg\:tw-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .lg\:tw-pb-16 {
    padding-bottom: 4rem;
  }
  .lg\:tw-pr-6 {
    padding-right: 1.5rem;
  }
  .lg\:tw-pt-0 {
    padding-top: 0px;
  }
  .lg\:tw-pt-16 {
    padding-top: 4rem;
  }
  .lg\:tw-text-5xl {
    font-size: 3rem;
  }
  .lg\:tw-text-sm {
    font-size: 0.875rem;
  }
  .lg\:tw-font-normal {
    font-weight: 400;
  }
}
@media (min-width: 87.5rem) {
  .xl\:-tw-top-8 {
    top: -2rem;
  }
  .xl\:tw-mr-8 {
    margin-right: 2rem;
  }
  .xl\:tw-mt-16 {
    margin-top: 4rem;
  }
  .xl\:tw-mt-20 {
    margin-top: 5rem;
  }
  .xl\:tw-mt-32 {
    margin-top: 8rem;
  }
  .xl\:tw-mt-36 {
    margin-top: 9rem;
  }
  .xl\:tw-mt-4 {
    margin-top: 1rem;
  }
  .xl\:tw-block {
    display: block;
  }
  .xl\:tw-flex {
    display: flex;
  }
  .xl\:tw-hidden {
    display: none;
  }
  .xl\:tw-h-full {
    height: 100%;
  }
  .xl\:tw-w-4\/5 {
    width: 80%;
  }
  .xl\:tw-w-\[21\.5rem\] {
    width: 21.5rem;
  }
  .xl\:tw-w-\[40rem\] {
    width: 40rem;
  }
  .xl\:tw-max-w-175 {
    max-width: 43.75rem;
  }
  .xl\:tw-max-w-268 {
    max-width: 67rem;
  }
  .xl\:tw-max-w-\[21\.5rem\] {
    max-width: 21.5rem;
  }
  .xl\:tw-max-w-md {
    max-width: 28rem;
  }
  .xl\:tw-auto-cols-1 {
    grid-auto-columns: 100%;
  }
  .xl\:tw-auto-cols-2 {
    grid-auto-columns: 50%;
  }
  .xl\:tw-auto-cols-3 {
    grid-auto-columns: 33.3333333333%;
  }
  .xl\:tw-auto-cols-4 {
    grid-auto-columns: 25%;
  }
  .xl\:tw-auto-cols-5 {
    grid-auto-columns: 20%;
  }
  .xl\:tw-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:tw-flex-row {
    flex-direction: row;
  }
  .xl\:tw-flex-col {
    flex-direction: column;
  }
  .xl\:tw-items-center {
    align-items: center;
  }
  .xl\:tw-gap-6 {
    gap: 1.5rem;
  }
  .xl\:tw-gap-8 {
    gap: 2rem;
  }
  .xl\:tw-overflow-hidden {
    overflow: hidden;
  }
  .xl\:tw-overflow-x-auto {
    overflow-x: auto;
  }
  .xl\:tw-rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  .xl\:tw-p-4 {
    padding: 1rem;
  }
  .xl\:tw-pr-12 {
    padding-right: 3rem;
  }
  .xl\:tw-pt-0 {
    padding-top: 0px;
  }
}
.\[\&\.active\>\.nav-icon-active\]\:tw-block.active > .nav-icon-active {
  display: block;
}

.\[\&\.active\>\.nav-icon-inactive\]\:tw-hidden.active > .nav-icon-inactive {
  display: none;
}

.\[\&\.active\>p\]\:tw-text-blue.active > p {
  --tw-text-opacity: 1;
  color: rgb(0 100 255/1);
  color: rgb(0 100 255/var(--tw-text-opacity));
}

.\[\&\.active\]\:tw-border-x-2.active {
  border-left-width: 2px;
  border-right-width: 2px;
}

.\[\&\.active\]\:tw-border-r-2.active {
  border-right-width: 2px;
}

.\[\&\.active\]\:tw-border-blue.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 100 255/1);
  border-color: rgb(0 100 255/var(--tw-border-opacity));
}

.\[\&\.active\]\:tw-border-l-white.active {
  --tw-border-opacity: 1;
  border-left-color: rgb(255 255 255/1);
  border-left-color: rgb(255 255 255/var(--tw-border-opacity));
}

.\[\&\.active\]\:tw-bg-card-neutral.active {
  --tw-bg-opacity: 1;
  background-color: rgb(240 246 255/1);
  background-color: rgb(240 246 255/var(--tw-bg-opacity));
}

.\[\&\:hover\>\*\>svg\]\:tw-icon-white:hover > * > svg {
  fill: #ffffff;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.\[\&\:hover\>\*\>svg\]\:tw-icon-white:hover > * > svg svg {
  fill: #ffffff;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/1);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.\[\&\:hover\>\*\>svg\]\:tw-icon-white:hover > * > svg svg path {
  fill: #ffffff;
}

.\[\&\:hover_button\]\:tw-bg-blue:hover button {
  --tw-bg-opacity: 1;
  background-color: rgb(0 100 255/1);
  background-color: rgb(0 100 255/var(--tw-bg-opacity));
}

.\[\&\:hover_button_path\]\:tw-stroke-white:hover button path {
  stroke: #ffffff;
}

.\[\&\:nth-child\(2\)\]\:tw-m-\[-0\.375rem\]:nth-child(2) {
  margin: -0.375rem;
}

.\[\&\:nth-child\(3\)\]\:tw-m-\[-0\.375rem\]:nth-child(3) {
  margin: -0.375rem;
}

.\[\&\>\*\]\:tw-grow > * {
  flex-grow: 1;
}

.\[\&\>\.nav-icon-active\]\:tw-hidden > .nav-icon-active {
  display: none;
}

.\[\&\>circle\]\:tw-fill-black > circle {
  fill: #000000;
}

.\[\&\>circle\]\:tw-fill-green > circle {
  fill: #07661E;
}

.\[\&\>path\]\:tw-stroke-warning > path {
  stroke: #ff9b40;
}

.\[\&\>span\]\:tw-flex > span {
  display: flex;
}

.\[\&\>span\]\:tw-items-center > span {
  align-items: center;
}

.\[\&\>span\]\:tw-gap-2 > span {
  gap: 0.5rem;
}

.\[\&\>svg\]\:tw-hidden > svg {
  display: none;
}

.hover\:\[\&\>svg\]\:tw-fill-blue > svg:hover {
  fill: #0064ff;
}

.hover\:\[\&\>svg\]\:tw-stroke-blue > svg:hover {
  stroke: #0064ff;
}

.tw-peer:checked ~ .peer-checked\:\[\&\>svg\]\:tw-block > svg {
  display: block;
}

.tw-peer:hover ~ .peer-hover\:\[\&\>svg\]\:tw-fill-blue > svg {
  fill: #0064ff;
}

.tw-peer:hover ~ .peer-hover\:\[\&\>svg\]\:tw-stroke-blue > svg {
  stroke: #0064ff;
}

.\[\&\[open\]\>summary_button_svg\]\:tw-rotate-180[open] > summary button svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&_\#resend-button\]\:tw-w-80 #resend-button {
  width: 20rem;
}

.\[\&_\#resend-button\]\:tw-max-w-60 #resend-button {
  max-width: 15rem;
}

.\[\&_\.zg-label\]\:\!tw-label-medium .zg-label {
  font-size: 0.875rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0/1);
  color: rgb(0 0 0/var(--tw-text-opacity));
}

.\[\&_\.zg-radio-btn-group\]\:\!tw-bg-white .zg-radio-btn-group {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255/1) !important;
  background-color: rgb(255 255 255/var(--tw-bg-opacity)) !important;
}

@media not all and (min-width: 48rem) {
  .max-md\:\[\&_button\]\:tw-w-full button {
    width: 100%;
  }
}
.\[\&_path\]\:tw-fill-none path {
  fill: none;
}

.\[\&_path\]\:tw-stroke-black path {
  stroke: #000000;
}

.\[\&_path\]\:tw-stroke-blue path {
  stroke: #0064ff;
}

.\[\&_path\]\:tw-stroke-danger path {
  stroke: #d13b42;
}

.\[\&_path\]\:tw-stroke-warning path {
  stroke: #ff9b40;
}

.\[\&_path\]\:tw-stroke-white path {
  stroke: #ffffff;
}

.\[\&_path\]\:tw-stroke-1 path {
  stroke-width: 1;
}

.\[\&_path\]\:tw-stroke-2 path {
  stroke-width: 2;
}

.tw-group:hover .group-hover\:\[\&_path\]\:tw-fill-danger path {
  fill: #d13b42;
}

.tw-group:hover .group-hover\:\[\&_path\]\:tw-fill-white path {
  fill: #ffffff;
}

.tw-group:hover .group-hover\:\[\&_path\]\:tw-stroke-blue-60 path {
  stroke: #3383ff;
}

.tw-group:hover .group-hover\:\[\&_path\]\:tw-stroke-white path {
  stroke: #ffffff;
}

.\[\&_svg\]\:tw-fill-none svg {
  fill: none;
}

.\[\&_svg\]\:tw-stroke-black svg {
  stroke: #000000;
}

.\[\&_svg\]\:tw-stroke-none svg {
  stroke: none;
}

.\[\&_svg\]\:hover\:tw-fill-white:hover svg {
  fill: #ffffff;
}

.kanban-board--interactable .\[\.kanban-board--interactable_\&\]\:tw-cursor-move {
  cursor: move;
}
