@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

ind-bypass-block-links:focus-within {
  --flex-gap: var(--content-gap-normal);
  --flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: var(--flex-gap);
  flex-wrap: var(--flex-wrap);
}

ind-bypass-block-links:not(:focus-within) {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

.inactive[class^=icon-]::before,
.inactive[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
.icon-agreement::before {
  content: "\e900";
}

.icon-alarm::before {
  content: "\e901";
}

.icon-arrow-down::before {
  content: "\e902";
}

.icon-arrow-left::before {
  content: "\e903";
}

.icon-arrow-right-sparse::before {
  content: "\e904";
}

.icon-arrow-up::before {
  content: "\e905";
}

.icon-arrows-vert::before {
  content: "\e906";
}

.icon-attachment::before {
  content: "\e907";
}

.icon-bell::before {
  content: "\e908";
}

.icon-bold::before {
  content: "\e909";
}

.icon-book::before {
  content: "\e90a";
}

.icon-bookmark::before {
  content: "\e90b";
}

.icon-broadcast::before {
  content: "\e90c";
}

.icon-bubble-quote::before {
  content: "\e90d";
}

.icon-bullhorn::before {
  content: "\e90e";
}

.icon-calendar::before {
  content: "\e90f";
}

.icon-calendar-day::before {
  content: "\ea65";
}

.icon-camera::before {
  content: "\e910";
}

.icon-chart::before {
  content: "\e911";
}

.icon-checkbox-checked::before {
  content: "\e912";
}

.icon-checkbox-unchecked::before {
  content: "\e913";
}

.icon-checkmark::before {
  content: "\e914";
}

.icon-circle-small::before {
  content: "\e915";
}

.icon-clipboard::before {
  content: "\e916";
}

.icon-close::before {
  content: "\e917";
}

.icon-cloud2::before {
  content: "\e918";
}

.icon-code::before {
  content: "\e919";
}

.icon-coins::before {
  content: "\e91a";
}

.icon-collapse::before {
  content: "\e91b";
}

.icon-compass2::before {
  content: "\e91c";
}

.icon-copy::before {
  content: "\e91d";
}

.icon-copy1::before {
  content: "\e91e";
}

.icon-cross::before {
  content: "\e91f";
}

.icon-disable::before {
  content: "\e920";
}

.icon-drag-indicator::before {
  content: "\e99c";
}

.icon-dropmenu::before {
  content: "\e921";
}

.icon-earth::before {
  content: "\e922";
}

.icon-edit::before {
  content: "\e923";
}

.icon-enlarge::before {
  content: "\e924";
}

.icon-enter::before {
  content: "\e925";
}

.icon-equalizer::before {
  content: "\e926";
}

.icon-exit::before {
  content: "\e927";
}

.icon-expand::before {
  content: "\e928";
}

.icon-eye::before {
  content: "\e929";
}

.icon-eye-blocked::before,
.icon-unlisted-event::before {
  content: "\e92a";
}

.icon-file::before {
  content: "\e92b";
}

.icon-file-check::before {
  content: "\e92c";
}

.icon-file-content::before {
  content: "\e92d";
}

.icon-file-css::before {
  content: "\e92e";
}

.icon-file-download::before {
  content: "\e92f";
}

.icon-file-excel::before {
  content: "\e930";
}

.icon-file-eye::before {
  content: "\e931";
}

.icon-file-filled::before {
  content: "\e932";
}

.icon-file-image::before {
  content: "\e933";
}

.icon-file-music::before {
  content: "\e934";
}

.icon-file-openoffice::before {
  content: "\e935";
}

.icon-file-pdf::before {
  content: "\e936";
}

.icon-file-play::before {
  content: "\e937";
}

.icon-file-presentation::before {
  content: "\e938";
}

.icon-file-spreadsheet::before {
  content: "\e939";
}

.icon-file-text::before {
  content: "\e93a";
}

.icon-file-video::before {
  content: "\e93b";
}

.icon-file-word::before {
  content: "\e93c";
}

.icon-file-xml::before {
  content: "\e93d";
}

.icon-file-zip::before {
  content: "\e93e";
}

.icon-filter::before {
  content: "\e93f";
}

.icon-first::before {
  content: "\e940";
}

.icon-floppy::before {
  content: "\e941";
}

.icon-folder::before {
  content: "\e942";
}

.icon-folder-open::before {
  content: "\e943";
}

.icon-folder-plus::before {
  content: "\e944";
}

.icon-font-size::before {
  content: "\e945";
}

.icon-grid::before {
  content: "\e946";
}

.icon-grid2::before {
  content: "\e947";
}

.icon-hammer::before {
  content: "\e948";
}

.icon-handle::before {
  content: "\e949";
}

.icon-home::before {
  content: "\e94a";
}

.icon-hour-glass2::before {
  content: "\e94b";
}

.icon-id-badge::before {
  content: "\e99d";
}

.icon-image::before {
  content: "\e94c";
}

.icon-import::before {
  content: "\e94d";
}

.icon-info::before {
  content: "\e94e";
}

.icon-italic::before {
  content: "\e94f";
}

.icon-key::before {
  content: "\e950";
}

.icon-key-a::before {
  content: "\e951";
}

.icon-lamp::before {
  content: "\e952";
}

.icon-lan::before {
  content: "\e953";
}

.icon-last::before {
  content: "\e954";
}

.icon-layout::before {
  content: "\e955";
}

.icon-link::before {
  content: "\e956";
}

.icon-list::before {
  content: "\e957";
}

.icon-location::before {
  content: "\e958";
}

.icon-lock::before,
.icon-protection-self::before {
  content: "\e959";
}

.icon-lock-center::before {
  content: "\e95a";
}

.icon-loop::before {
  content: "\e95b";
}

.icon-mail::before {
  content: "\e95c";
}

.icon-medal::before {
  content: "\e95d";
}

.icon-mic::before {
  content: "\e95e";
}

.icon-mobile::before {
  content: "\e95f";
}

.icon-move::before {
  content: "\e960";
}

.icon-new::before {
  content: "\e961";
}

.icon-next::before {
  content: "\e962";
}

.icon-no-camera::before {
  content: "\e963";
}

.icon-numbered-list::before {
  content: "\e964";
}

.icon-package-download::before {
  content: "\e965";
}

.icon-pagebreak::before {
  content: "\e966";
}

.icon-palette::before {
  content: "\e967";
}

.icon-phone::before {
  content: "\e968";
}

.icon-play::before {
  content: "\e969";
}

.icon-plus::before {
  content: "\e96a";
}

.icon-prev::before {
  content: "\e96b";
}

.icon-price-tag::before {
  content: "\e96c";
}

.icon-printer::before {
  content: "\e96d";
}

.icon-projector::before {
  content: "\e96e";
}

.icon-puzzle::before {
  content: "\e96f";
}

.icon-qrcode::before {
  content: "\e970";
}

.icon-question::before {
  content: "\e971";
}

.icon-quill::before {
  content: "\e972";
}

.icon-redo::before {
  content: "\e973";
}

.icon-remove::before {
  content: "\e974";
}

.icon-rulers::before {
  content: "\e975";
}

.icon-search::before {
  content: "\e976";
}

.icon-settings::before {
  content: "\e977";
}

.icon-seven-segment9::before {
  content: "\e978";
}

.icon-shield::before {
  content: "\e979";
}

.icon-shrink::before {
  content: "\e97a";
}

.icon-sort::before {
  content: "\e97b";
}

.icon-sort-alpha-asc::before {
  content: "\e97c";
}

.icon-sort-alpha-desc::before {
  content: "\e97d";
}

.icon-split::before {
  content: "\e97e";
}

.icon-stack::before {
  content: "\e97f";
}

.icon-stack-minus::before {
  content: "\e980";
}

.icon-stack-plus::before {
  content: "\e981";
}

.icon-stack-text::before {
  content: "\e982";
}

.icon-star::before {
  content: "\e983";
}

.icon-star-empty::before {
  content: "\e984";
}

.icon-stop::before {
  content: "\e985";
}

.icon-switchoff::before {
  content: "\e986";
}

.icon-switchon::before {
  content: "\e987";
}

.icon-tag::before {
  content: "\e988";
}

.icon-text-color::before {
  content: "\e989";
}

.icon-textarea::before {
  content: "\e98a";
}

.icon-textfield::before {
  content: "\e98b";
}

.icon-ticket::before {
  content: "\e98c";
}

.icon-tilde::before {
  content: "\e98d";
}

.icon-time::before {
  content: "\e98e";
}

.icon-transmission::before {
  content: "\e98f";
}

.icon-type::before {
  content: "\e990";
}

.icon-undo::before {
  content: "\e991";
}

.icon-unlocked::before,
.icon-protection-public::before {
  content: "\e992";
}

.icon-upload::before {
  content: "\e993";
}

.icon-user::before {
  content: "\e994";
}

.icon-user-block::before {
  content: "\e995";
}

.icon-user-chairperson::before {
  content: "\e996";
}

.icon-user-check::before {
  content: "\e997";
}

.icon-user-reading::before {
  content: "\e998";
}

.icon-users::before {
  content: "\e999";
}

.icon-warning::before {
  content: "\e99a";
}

.icon-wrench::before {
  content: "\e99b";
}

/* animated spinner icon */
.icon-spinner::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
.icon-none::before {
  content: " ";
}

.disabled .icon-spinner::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
.icon-protection-public::before {
  color: #00c851;
}

.icon-protection-self::before {
  color: #f91f1f;
}

.icon-unlisted-event::before {
  color: #f91f1f;
}

ind-bypass-block-links:focus-within {
  padding: var(--container-padding);
  background: var(--message-important-surface-color);
  color: var(--message-important-text-color);
  font-size: calc(var(--text-size-global-adjust) * var(--text-size-rel-l));
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}
@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

ind-combo-box button[value=clear]:not([hidden]) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

ind-combo-box button[value=clear]:not([hidden]) span {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

ind-combo-box button[value=clear]:not([hidden]) {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before,
ind-combo-box::after,
ind-combo-box button[value=clear]:not([hidden])::after {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

.inactive[class^=icon-]::before,
.inactive[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
.icon-agreement::before {
  content: "\e900";
}

.icon-alarm::before {
  content: "\e901";
}

.icon-arrow-down::before,
ind-combo-box::after {
  content: "\e902";
}

.icon-arrow-left::before {
  content: "\e903";
}

.icon-arrow-right-sparse::before {
  content: "\e904";
}

.icon-arrow-up::before {
  content: "\e905";
}

.icon-arrows-vert::before {
  content: "\e906";
}

.icon-attachment::before {
  content: "\e907";
}

.icon-bell::before {
  content: "\e908";
}

.icon-bold::before {
  content: "\e909";
}

.icon-book::before {
  content: "\e90a";
}

.icon-bookmark::before {
  content: "\e90b";
}

.icon-broadcast::before {
  content: "\e90c";
}

.icon-bubble-quote::before {
  content: "\e90d";
}

.icon-bullhorn::before {
  content: "\e90e";
}

.icon-calendar::before {
  content: "\e90f";
}

.icon-calendar-day::before {
  content: "\ea65";
}

.icon-camera::before {
  content: "\e910";
}

.icon-chart::before {
  content: "\e911";
}

.icon-checkbox-checked::before {
  content: "\e912";
}

.icon-checkbox-unchecked::before {
  content: "\e913";
}

.icon-checkmark::before {
  content: "\e914";
}

.icon-circle-small::before {
  content: "\e915";
}

.icon-clipboard::before {
  content: "\e916";
}

.icon-close::before {
  content: "\e917";
}

.icon-cloud2::before {
  content: "\e918";
}

.icon-code::before {
  content: "\e919";
}

.icon-coins::before {
  content: "\e91a";
}

.icon-collapse::before {
  content: "\e91b";
}

.icon-compass2::before {
  content: "\e91c";
}

.icon-copy::before {
  content: "\e91d";
}

.icon-copy1::before {
  content: "\e91e";
}

.icon-cross::before,
ind-combo-box button[value=clear]:not([hidden])::after {
  content: "\e91f";
}

.icon-disable::before {
  content: "\e920";
}

.icon-drag-indicator::before {
  content: "\e99c";
}

.icon-dropmenu::before {
  content: "\e921";
}

.icon-earth::before {
  content: "\e922";
}

.icon-edit::before {
  content: "\e923";
}

.icon-enlarge::before {
  content: "\e924";
}

.icon-enter::before {
  content: "\e925";
}

.icon-equalizer::before {
  content: "\e926";
}

.icon-exit::before {
  content: "\e927";
}

.icon-expand::before {
  content: "\e928";
}

.icon-eye::before {
  content: "\e929";
}

.icon-eye-blocked::before,
.icon-unlisted-event::before {
  content: "\e92a";
}

.icon-file::before {
  content: "\e92b";
}

.icon-file-check::before {
  content: "\e92c";
}

.icon-file-content::before {
  content: "\e92d";
}

.icon-file-css::before {
  content: "\e92e";
}

.icon-file-download::before {
  content: "\e92f";
}

.icon-file-excel::before {
  content: "\e930";
}

.icon-file-eye::before {
  content: "\e931";
}

.icon-file-filled::before {
  content: "\e932";
}

.icon-file-image::before {
  content: "\e933";
}

.icon-file-music::before {
  content: "\e934";
}

.icon-file-openoffice::before {
  content: "\e935";
}

.icon-file-pdf::before {
  content: "\e936";
}

.icon-file-play::before {
  content: "\e937";
}

.icon-file-presentation::before {
  content: "\e938";
}

.icon-file-spreadsheet::before {
  content: "\e939";
}

.icon-file-text::before {
  content: "\e93a";
}

.icon-file-video::before {
  content: "\e93b";
}

.icon-file-word::before {
  content: "\e93c";
}

.icon-file-xml::before {
  content: "\e93d";
}

.icon-file-zip::before {
  content: "\e93e";
}

.icon-filter::before {
  content: "\e93f";
}

.icon-first::before {
  content: "\e940";
}

.icon-floppy::before {
  content: "\e941";
}

.icon-folder::before {
  content: "\e942";
}

.icon-folder-open::before {
  content: "\e943";
}

.icon-folder-plus::before {
  content: "\e944";
}

.icon-font-size::before {
  content: "\e945";
}

.icon-grid::before {
  content: "\e946";
}

.icon-grid2::before {
  content: "\e947";
}

.icon-hammer::before {
  content: "\e948";
}

.icon-handle::before {
  content: "\e949";
}

.icon-home::before {
  content: "\e94a";
}

.icon-hour-glass2::before {
  content: "\e94b";
}

.icon-id-badge::before {
  content: "\e99d";
}

.icon-image::before {
  content: "\e94c";
}

.icon-import::before {
  content: "\e94d";
}

.icon-info::before {
  content: "\e94e";
}

.icon-italic::before {
  content: "\e94f";
}

.icon-key::before {
  content: "\e950";
}

.icon-key-a::before {
  content: "\e951";
}

.icon-lamp::before {
  content: "\e952";
}

.icon-lan::before {
  content: "\e953";
}

.icon-last::before {
  content: "\e954";
}

.icon-layout::before {
  content: "\e955";
}

.icon-link::before {
  content: "\e956";
}

.icon-list::before {
  content: "\e957";
}

.icon-location::before {
  content: "\e958";
}

.icon-lock::before,
.icon-protection-self::before {
  content: "\e959";
}

.icon-lock-center::before {
  content: "\e95a";
}

.icon-loop::before {
  content: "\e95b";
}

.icon-mail::before {
  content: "\e95c";
}

.icon-medal::before {
  content: "\e95d";
}

.icon-mic::before {
  content: "\e95e";
}

.icon-mobile::before {
  content: "\e95f";
}

.icon-move::before {
  content: "\e960";
}

.icon-new::before {
  content: "\e961";
}

.icon-next::before {
  content: "\e962";
}

.icon-no-camera::before {
  content: "\e963";
}

.icon-numbered-list::before {
  content: "\e964";
}

.icon-package-download::before {
  content: "\e965";
}

.icon-pagebreak::before {
  content: "\e966";
}

.icon-palette::before {
  content: "\e967";
}

.icon-phone::before {
  content: "\e968";
}

.icon-play::before {
  content: "\e969";
}

.icon-plus::before {
  content: "\e96a";
}

.icon-prev::before {
  content: "\e96b";
}

.icon-price-tag::before {
  content: "\e96c";
}

.icon-printer::before {
  content: "\e96d";
}

.icon-projector::before {
  content: "\e96e";
}

.icon-puzzle::before {
  content: "\e96f";
}

.icon-qrcode::before {
  content: "\e970";
}

.icon-question::before {
  content: "\e971";
}

.icon-quill::before {
  content: "\e972";
}

.icon-redo::before {
  content: "\e973";
}

.icon-remove::before {
  content: "\e974";
}

.icon-rulers::before {
  content: "\e975";
}

.icon-search::before {
  content: "\e976";
}

.icon-settings::before {
  content: "\e977";
}

.icon-seven-segment9::before {
  content: "\e978";
}

.icon-shield::before {
  content: "\e979";
}

.icon-shrink::before {
  content: "\e97a";
}

.icon-sort::before {
  content: "\e97b";
}

.icon-sort-alpha-asc::before {
  content: "\e97c";
}

.icon-sort-alpha-desc::before {
  content: "\e97d";
}

.icon-split::before {
  content: "\e97e";
}

.icon-stack::before {
  content: "\e97f";
}

.icon-stack-minus::before {
  content: "\e980";
}

.icon-stack-plus::before {
  content: "\e981";
}

.icon-stack-text::before {
  content: "\e982";
}

.icon-star::before {
  content: "\e983";
}

.icon-star-empty::before {
  content: "\e984";
}

.icon-stop::before {
  content: "\e985";
}

.icon-switchoff::before {
  content: "\e986";
}

.icon-switchon::before {
  content: "\e987";
}

.icon-tag::before {
  content: "\e988";
}

.icon-text-color::before {
  content: "\e989";
}

.icon-textarea::before {
  content: "\e98a";
}

.icon-textfield::before {
  content: "\e98b";
}

.icon-ticket::before {
  content: "\e98c";
}

.icon-tilde::before {
  content: "\e98d";
}

.icon-time::before {
  content: "\e98e";
}

.icon-transmission::before {
  content: "\e98f";
}

.icon-type::before {
  content: "\e990";
}

.icon-undo::before {
  content: "\e991";
}

.icon-unlocked::before,
.icon-protection-public::before {
  content: "\e992";
}

.icon-upload::before {
  content: "\e993";
}

.icon-user::before {
  content: "\e994";
}

.icon-user-block::before {
  content: "\e995";
}

.icon-user-chairperson::before {
  content: "\e996";
}

.icon-user-check::before {
  content: "\e997";
}

.icon-user-reading::before {
  content: "\e998";
}

.icon-users::before {
  content: "\e999";
}

.icon-warning::before {
  content: "\e99a";
}

.icon-wrench::before {
  content: "\e99b";
}

/* animated spinner icon */
.icon-spinner::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
.icon-none::before {
  content: " ";
}

.disabled .icon-spinner::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
.icon-protection-public::before {
  color: #00c851;
}

.icon-protection-self::before {
  color: #f91f1f;
}

.icon-unlisted-event::before {
  color: #f91f1f;
}

ind-combo-box[open] [role=listbox],
ind-combo-box [role=listbox][data-position-check] {
  position: var(--target-position, fixed);
  left: var(--target-left, auto);
  right: var(--target-right, auto);
  top: var(--target-top, auto);
  bottom: var(--target-bottom, auto);
  width: var(--target-width, auto);
  height: var(--target-height, auto);
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

ind-combo-box {
  display: inline-block;
  position: relative;
}
.ui.form ind-combo-box input[role=combobox], ind-combo-box input[role=combobox] {
  padding-right: 2em;
}
.ui.form ind-combo-box[clearable] input[role=combobox], ind-combo-box[clearable] input[role=combobox] {
  padding-right: 4.5em;
}
ind-combo-box [role=combobox][aria-expanded=true] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
ind-combo-box::after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  font-size: 1.2em;
  transform: translateY(-50%);
  pointer-events: none;
}
ind-combo-box[open]::after {
  transform: translateY(-50%) rotate(180deg);
}
ind-combo-box:not([open]) [role=listbox]:not([data-position-check]) {
  display: none;
}
ind-combo-box[open] [role=listbox],
ind-combo-box [role=listbox][data-position-check] {
  z-index: 10;
  min-width: 100%;
  max-height: min(75vh, 16em);
  overflow-y: auto;
  border: 1px solid #85b7d9;
  background: white;
  box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
}
ind-combo-box [role=listbox]:not([data-top]) {
  border-top: 0;
  border-top-left-radius: 0.28571429rem;
  border-top-right-radius: 0.28571429rem;
}
ind-combo-box [role=listbox][data-top] {
  border-bottom: 0;
  border-bottom-left-radius: 0.28571429rem;
  border-bottom-right-radius: 0.28571429rem;
}
ind-combo-box [role=listbox][data-position-check] {
  opacity: 0;
  pointer-events: none;
}
ind-combo-box [role=option] {
  padding: 0.67857143em 1em;
  list-style: none;
  color: var(--text-color);
}
ind-combo-box [role=option]:not([aria-selected=true]) {
  cursor: pointer;
}
ind-combo-box [role=option][aria-disabled] {
  color: var(--control-disabled-text-color);
  pointer-events: none;
}
ind-combo-box [role=option]:not([aria-selected=true]):hover {
  background: var(--control-clickable-surface-focus-color);
}
ind-combo-box [aria-selected=true] {
  background: var(--control-alt-clickable-surface-color);
  color: var(--control-alt-text-color);
  outline: medium;
}
ind-combo-box button[value=clear]:not([hidden]) {
  position: absolute;
  top: 50%;
  right: 2em;
  width: 1.5em;
  aspect-ratio: 1;
  padding: 0;
  transform: translateY(-50%);
}
ind-combo-box button[value=clear]:not([hidden])::after {
  font-size: 87.5%;
}
@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

ind-date-grid .weekdays > *, ind-date-picker > button, ind-date-range-picker fieldset button, ind-calendar .controls > button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

ind-date-picker > button span, ind-date-picker .date-format, ind-date-range-picker legend, ind-date-range-picker .date-format, ind-date-range-picker fieldset button span, ind-calendar .controls > button span {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

ind-date-picker > button, ind-date-range-picker fieldset button, ind-calendar .controls > button {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

ind-date-picker > button, ind-date-range-picker fieldset button, ind-calendar .controls > button {
  padding: 0;
}
/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before,
ind-date-picker > button::before,
ind-date-range-picker fieldset button::before,
ind-date-range-picker .arrow::before,
ind-calendar .controls > button::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

.inactive[class^=icon-]::before,
.inactive[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
.icon-agreement::before {
  content: "\e900";
}

.icon-alarm::before {
  content: "\e901";
}

.icon-arrow-down::before {
  content: "\e902";
}

.icon-arrow-left::before {
  content: "\e903";
}

.icon-arrow-right-sparse::before,
ind-date-range-picker .arrow::before {
  content: "\e904";
}

.icon-arrow-up::before {
  content: "\e905";
}

.icon-arrows-vert::before {
  content: "\e906";
}

.icon-attachment::before {
  content: "\e907";
}

.icon-bell::before {
  content: "\e908";
}

.icon-bold::before {
  content: "\e909";
}

.icon-book::before {
  content: "\e90a";
}

.icon-bookmark::before {
  content: "\e90b";
}

.icon-broadcast::before {
  content: "\e90c";
}

.icon-bubble-quote::before {
  content: "\e90d";
}

.icon-bullhorn::before {
  content: "\e90e";
}

.icon-calendar::before,
ind-date-picker > button::before,
ind-date-range-picker fieldset button::before {
  content: "\e90f";
}

.icon-calendar-day::before {
  content: "\ea65";
}

.icon-camera::before {
  content: "\e910";
}

.icon-chart::before {
  content: "\e911";
}

.icon-checkbox-checked::before {
  content: "\e912";
}

.icon-checkbox-unchecked::before {
  content: "\e913";
}

.icon-checkmark::before {
  content: "\e914";
}

.icon-circle-small::before {
  content: "\e915";
}

.icon-clipboard::before {
  content: "\e916";
}

.icon-close::before {
  content: "\e917";
}

.icon-cloud2::before {
  content: "\e918";
}

.icon-code::before {
  content: "\e919";
}

.icon-coins::before {
  content: "\e91a";
}

.icon-collapse::before {
  content: "\e91b";
}

.icon-compass2::before {
  content: "\e91c";
}

.icon-copy::before {
  content: "\e91d";
}

.icon-copy1::before {
  content: "\e91e";
}

.icon-cross::before {
  content: "\e91f";
}

.icon-disable::before {
  content: "\e920";
}

.icon-drag-indicator::before {
  content: "\e99c";
}

.icon-dropmenu::before {
  content: "\e921";
}

.icon-earth::before {
  content: "\e922";
}

.icon-edit::before {
  content: "\e923";
}

.icon-enlarge::before {
  content: "\e924";
}

.icon-enter::before {
  content: "\e925";
}

.icon-equalizer::before {
  content: "\e926";
}

.icon-exit::before {
  content: "\e927";
}

.icon-expand::before {
  content: "\e928";
}

.icon-eye::before {
  content: "\e929";
}

.icon-eye-blocked::before,
.icon-unlisted-event::before {
  content: "\e92a";
}

.icon-file::before {
  content: "\e92b";
}

.icon-file-check::before {
  content: "\e92c";
}

.icon-file-content::before {
  content: "\e92d";
}

.icon-file-css::before {
  content: "\e92e";
}

.icon-file-download::before {
  content: "\e92f";
}

.icon-file-excel::before {
  content: "\e930";
}

.icon-file-eye::before {
  content: "\e931";
}

.icon-file-filled::before {
  content: "\e932";
}

.icon-file-image::before {
  content: "\e933";
}

.icon-file-music::before {
  content: "\e934";
}

.icon-file-openoffice::before {
  content: "\e935";
}

.icon-file-pdf::before {
  content: "\e936";
}

.icon-file-play::before {
  content: "\e937";
}

.icon-file-presentation::before {
  content: "\e938";
}

.icon-file-spreadsheet::before {
  content: "\e939";
}

.icon-file-text::before {
  content: "\e93a";
}

.icon-file-video::before {
  content: "\e93b";
}

.icon-file-word::before {
  content: "\e93c";
}

.icon-file-xml::before {
  content: "\e93d";
}

.icon-file-zip::before {
  content: "\e93e";
}

.icon-filter::before {
  content: "\e93f";
}

.icon-first::before,
ind-calendar .controls [value=previous-year]::before {
  content: "\e940";
}

.icon-floppy::before {
  content: "\e941";
}

.icon-folder::before {
  content: "\e942";
}

.icon-folder-open::before {
  content: "\e943";
}

.icon-folder-plus::before {
  content: "\e944";
}

.icon-font-size::before {
  content: "\e945";
}

.icon-grid::before {
  content: "\e946";
}

.icon-grid2::before {
  content: "\e947";
}

.icon-hammer::before {
  content: "\e948";
}

.icon-handle::before {
  content: "\e949";
}

.icon-home::before {
  content: "\e94a";
}

.icon-hour-glass2::before {
  content: "\e94b";
}

.icon-id-badge::before {
  content: "\e99d";
}

.icon-image::before {
  content: "\e94c";
}

.icon-import::before {
  content: "\e94d";
}

.icon-info::before {
  content: "\e94e";
}

.icon-italic::before {
  content: "\e94f";
}

.icon-key::before {
  content: "\e950";
}

.icon-key-a::before {
  content: "\e951";
}

.icon-lamp::before {
  content: "\e952";
}

.icon-lan::before {
  content: "\e953";
}

.icon-last::before,
ind-calendar .controls [value=next-year]::before {
  content: "\e954";
}

.icon-layout::before {
  content: "\e955";
}

.icon-link::before {
  content: "\e956";
}

.icon-list::before {
  content: "\e957";
}

.icon-location::before {
  content: "\e958";
}

.icon-lock::before,
.icon-protection-self::before {
  content: "\e959";
}

.icon-lock-center::before {
  content: "\e95a";
}

.icon-loop::before {
  content: "\e95b";
}

.icon-mail::before {
  content: "\e95c";
}

.icon-medal::before {
  content: "\e95d";
}

.icon-mic::before {
  content: "\e95e";
}

.icon-mobile::before {
  content: "\e95f";
}

.icon-move::before {
  content: "\e960";
}

.icon-new::before {
  content: "\e961";
}

.icon-next::before,
ind-calendar .controls [value=next-month]::before {
  content: "\e962";
}

.icon-no-camera::before {
  content: "\e963";
}

.icon-numbered-list::before {
  content: "\e964";
}

.icon-package-download::before {
  content: "\e965";
}

.icon-pagebreak::before {
  content: "\e966";
}

.icon-palette::before {
  content: "\e967";
}

.icon-phone::before {
  content: "\e968";
}

.icon-play::before {
  content: "\e969";
}

.icon-plus::before {
  content: "\e96a";
}

.icon-prev::before,
ind-calendar .controls [value=previous-month]::before {
  content: "\e96b";
}

.icon-price-tag::before {
  content: "\e96c";
}

.icon-printer::before {
  content: "\e96d";
}

.icon-projector::before {
  content: "\e96e";
}

.icon-puzzle::before {
  content: "\e96f";
}

.icon-qrcode::before {
  content: "\e970";
}

.icon-question::before {
  content: "\e971";
}

.icon-quill::before {
  content: "\e972";
}

.icon-redo::before {
  content: "\e973";
}

.icon-remove::before {
  content: "\e974";
}

.icon-rulers::before {
  content: "\e975";
}

.icon-search::before {
  content: "\e976";
}

.icon-settings::before {
  content: "\e977";
}

.icon-seven-segment9::before {
  content: "\e978";
}

.icon-shield::before {
  content: "\e979";
}

.icon-shrink::before {
  content: "\e97a";
}

.icon-sort::before {
  content: "\e97b";
}

.icon-sort-alpha-asc::before {
  content: "\e97c";
}

.icon-sort-alpha-desc::before {
  content: "\e97d";
}

.icon-split::before {
  content: "\e97e";
}

.icon-stack::before {
  content: "\e97f";
}

.icon-stack-minus::before {
  content: "\e980";
}

.icon-stack-plus::before {
  content: "\e981";
}

.icon-stack-text::before {
  content: "\e982";
}

.icon-star::before {
  content: "\e983";
}

.icon-star-empty::before {
  content: "\e984";
}

.icon-stop::before {
  content: "\e985";
}

.icon-switchoff::before {
  content: "\e986";
}

.icon-switchon::before {
  content: "\e987";
}

.icon-tag::before {
  content: "\e988";
}

.icon-text-color::before {
  content: "\e989";
}

.icon-textarea::before {
  content: "\e98a";
}

.icon-textfield::before {
  content: "\e98b";
}

.icon-ticket::before {
  content: "\e98c";
}

.icon-tilde::before {
  content: "\e98d";
}

.icon-time::before {
  content: "\e98e";
}

.icon-transmission::before {
  content: "\e98f";
}

.icon-type::before {
  content: "\e990";
}

.icon-undo::before {
  content: "\e991";
}

.icon-unlocked::before,
.icon-protection-public::before {
  content: "\e992";
}

.icon-upload::before {
  content: "\e993";
}

.icon-user::before {
  content: "\e994";
}

.icon-user-block::before {
  content: "\e995";
}

.icon-user-chairperson::before {
  content: "\e996";
}

.icon-user-check::before {
  content: "\e997";
}

.icon-user-reading::before {
  content: "\e998";
}

.icon-users::before {
  content: "\e999";
}

.icon-warning::before {
  content: "\e99a";
}

.icon-wrench::before {
  content: "\e99b";
}

/* animated spinner icon */
.icon-spinner::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
.icon-none::before {
  content: " ";
}

.disabled .icon-spinner::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
.icon-protection-public::before {
  color: #00c851;
}

.icon-protection-self::before {
  color: #f91f1f;
}

.icon-unlisted-event::before {
  color: #f91f1f;
}

ind-date-picker > button, .ui-widget ind-date-picker > button, ind-calendar {
  font-size: 1.143rem;
}

ind-calendar dialog[open],
ind-calendar dialog[data-position-check] {
  position: var(--target-position, fixed);
  left: var(--target-left, auto);
  right: var(--target-right, auto);
  top: var(--target-top, auto);
  bottom: var(--target-bottom, auto);
  width: var(--target-width, auto);
  height: var(--target-height, auto);
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

ind-date-picker {
  display: flex;
  flex-direction: column;
  gap: var(--control-internal-gap);
  align-items: flex-start;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
ind-date-picker > input {
  padding-right: 2.5em;
}
ind-date-picker > button {
  position: absolute;
  right: 0.2em;
  top: 0.2em;
  width: 2em;
  aspect-ratio: 1;
}
ind-date-picker > button:disabled {
  pointer-events: none;
  opacity: 0.45;
}
ind-date-range-picker {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
ind-date-range-picker fieldset {
  display: flex;
  align-items: center;
  gap: 1em;
}
.ui.form ind-date-range-picker fieldset {
  font-family: "Muli", "Helvetica Neue", Arial, Helvetica, sans-serif;
  border-radius: 0.28571429rem;
  background: white;
  padding: 0.67857143em 1em;
  margin: 0;
  outline: none;
  line-height: 1.21428571em;
  font-size: 1em;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0 transparent inset;
  transition: color 0.1s ease, border-color 0.1s ease;
  flex: 1;
}
.ui.form ind-date-range-picker fieldset:focus {
  border-color: #85b7d9;
}
.ui.form .field.error ind-date-range-picker fieldset {
  background: #fff6f6;
  border-color: #c00;
  color: #c00;
  box-shadow: none;
}
.ui.form ind-date-range-picker fieldset:focus-within, ind-date-range-picker fieldset:focus-within {
  border: 1px solid #85b7d9;
}
ind-date-range-picker label {
  display: flex;
  align-items: center;
  gap: var(--control-padding);
}
ind-date-range-picker label span {
  font-weight: bold;
}
ind-date-range-picker fieldset button {
  padding: var(--control-padding);
}
.ui.form ind-date-range-picker input[type=text] label input, ind-date-range-picker input[type=text] label input {
  font-size: revert;
}
.ui.form ind-date-range-picker input[type=text], ind-date-range-picker input[type=text] {
  max-width: 9em !important;
  padding: 0;
  border: 0;
}
ind-date-range-picker .arrow::before {
  color: var(--text-secondary-color);
}
ind-date-range-picker .calendars {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}

ind-calendar dialog[open],
ind-calendar dialog[data-position-check] {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  z-index: 10;
  padding: 0.5em;
  margin: 0;
  border: 0;
  border-radius: var(--control-border-radius);
}
ind-calendar dialog[open] {
  box-shadow: var(--control-raised-shadow);
}
ind-calendar dialog[data-position-check] {
  opacity: 0;
  pointer-events: none;
}
ind-calendar .controls,
ind-calendar .month-year {
  display: flex;
  gap: 0.5em;
}
ind-calendar .controls {
  justify-content: space-between;
}
ind-calendar .controls > button {
  flex: none;
  width: 2em;
}
ind-calendar .controls .month-year {
  flex: 1;
}
ind-calendar .month-year :is(select, input[type=number]) {
  flex: 1;
  background: var(--background-primary);
}
.ui.form ind-calendar .month-year :is(select, input[type=number]), ind-calendar .month-year :is(select, input[type=number]) {
  width: 2em;
  padding: 0.5em !important;
  border-width: 1px;
  border-radius: var(--control-border-radius);
  border-color: var(--control-border-color);
  -webkit-appearance: auto;
  line-height: 1 !important;
}
.ui.form ind-calendar .month-year :is(select, input[type=number]):focus-visible, ind-calendar .month-year :is(select, input[type=number]):focus-visible {
  outline: revert;
  -webkit-appearance: auto;
}
.ui.form ind-calendar .month-year :is(select, input[type=number]):-moz-focusring, ind-calendar .month-year :is(select, input[type=number]):-moz-focusring {
  color: unset !important;
  text-shadow: unset !important;
  outline: revert;
}
.ui.form .field.error ind-calendar .month-year :is(select, input[type=number]) {
  border-color: var(--control-border-color);
  background: transparent;
  color: inherit;
  -webkit-appearance: auto;
}
.ui.form .field.error ind-calendar .month-year :is(select, input[type=number]):focus-visible {
  outline: solid;
  -webkit-appearance: auto;
}

ind-date-grid {
  min-width: 20em;
}
ind-date-grid .month-label {
  font-weight: bold;
  padding: 0.5em 0.5em 0.2em;
}
ind-date-grid:not(:first-child) .month-label {
  text-align: right;
}
ind-date-grid [role=listbox],
ind-date-grid .weekdays {
  flex: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 0.2em;
  width: 100%;
}
ind-date-grid [role=listbox] {
  aspect-ratio: 7/6;
  min-width: 21em;
}
ind-date-grid .weekdays {
  font-weight: bold;
}
ind-date-grid .weekdays > * {
  aspect-ratio: 1;
  text-decoration: none;
}
ind-date-grid .weekdays [data-weekend] {
  color: var(--text-secondary-color);
}
ind-date-grid [role=listbox] button {
  aspect-ratio: 1;
  background-color: transparent;
  border: none;
  transition: all 0.2s;
}
ind-date-grid [role=listbox] button[data-range-start] {
  border-top-left-radius: var(--control-border-radius);
  border-bottom-left-radius: var(--control-border-radius);
}
ind-date-grid [role=listbox] button[data-range-end] {
  border-top-right-radius: var(--control-border-radius);
  border-bottom-right-radius: var(--control-border-radius);
}
ind-date-grid [role=listbox] button[data-current-month=true] {
  color: var(--control-text-color);
}
ind-date-grid [role=listbox] button[data-current-month=false] {
  color: var(--text-secondary-color);
  background: var(--background-secondary);
}
ind-date-grid [role=listbox] button[data-current-month=false]:empty {
  pointer-events: none;
}
ind-date-grid [role=listbox] button[aria-selected] {
  background-color: var(--surface-accent-secondary-color);
}
ind-date-grid [role=listbox] button[aria-selected][data-range-start], ind-date-grid [role=listbox] button[aria-selected][data-range-end] {
  background-color: var(--surface-accent-color);
  color: var(--text-inverse-color);
}
ind-date-grid [role=listbox] button[aria-disabled] {
  cursor: not-allowed;
}
ind-date-grid [role=listbox] button[aria-disabled]:not([aria-selected]) {
  opacity: 0.2;
}
ind-date-grid [role=listbox] button:hover, ind-date-grid [role=listbox] button:focus-visible {
  background-color: var(--control-clickable-surface-focus-color);
  color: var(--control-text-color);
}
ind-date-grid [role=listbox] button[aria-selected]:hover, ind-date-grid [role=listbox] button[aria-selected]:focus-visible {
  background-color: var(--control-alt-clickable-surface-focus-color);
  color: var(--control-alt-text-color);
}
ind-date-grid [role=listbox] button:focus-visible {
  z-index: 1;
}
ind-menu menu {
  --time-menu-animation: 0.2s;
  --length-menu-travel: -0.4em;
  position: absolute;
  z-index: 1;
}

ind-menu [aria-expanded=true] + menu {
  animation: menu-slide-down var(--time-menu-animation);
}

ind-menu :not([aria-expanded=true]) + menu {
  display: none;
  animation: menu-slide-up var(--time-menu-animation);
}

@keyframes menu-slide-down {
  from {
    display: block;
    opacity: 0;
    transform: translateY(var(--length-menu-travel));
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes menu-slide-up {
  from {
    display: block;
    opacity: 1;
    transform: none;
  }
  to {
    display: none;
    opacity: 0;
    transform: translateY(var(--length-menu-travel));
  }
}
@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before,
ind-select .caption::after,
ind-select .clear::after {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

.inactive[class^=icon-]::before,
.inactive[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
.icon-agreement::before {
  content: "\e900";
}

.icon-alarm::before {
  content: "\e901";
}

.icon-arrow-down::before,
ind-select .caption::after {
  content: "\e902";
}

.icon-arrow-left::before {
  content: "\e903";
}

.icon-arrow-right-sparse::before {
  content: "\e904";
}

.icon-arrow-up::before {
  content: "\e905";
}

.icon-arrows-vert::before {
  content: "\e906";
}

.icon-attachment::before {
  content: "\e907";
}

.icon-bell::before {
  content: "\e908";
}

.icon-bold::before {
  content: "\e909";
}

.icon-book::before {
  content: "\e90a";
}

.icon-bookmark::before {
  content: "\e90b";
}

.icon-broadcast::before {
  content: "\e90c";
}

.icon-bubble-quote::before {
  content: "\e90d";
}

.icon-bullhorn::before {
  content: "\e90e";
}

.icon-calendar::before {
  content: "\e90f";
}

.icon-calendar-day::before {
  content: "\ea65";
}

.icon-camera::before {
  content: "\e910";
}

.icon-chart::before {
  content: "\e911";
}

.icon-checkbox-checked::before {
  content: "\e912";
}

.icon-checkbox-unchecked::before {
  content: "\e913";
}

.icon-checkmark::before {
  content: "\e914";
}

.icon-circle-small::before {
  content: "\e915";
}

.icon-clipboard::before {
  content: "\e916";
}

.icon-close::before {
  content: "\e917";
}

.icon-cloud2::before {
  content: "\e918";
}

.icon-code::before {
  content: "\e919";
}

.icon-coins::before {
  content: "\e91a";
}

.icon-collapse::before {
  content: "\e91b";
}

.icon-compass2::before {
  content: "\e91c";
}

.icon-copy::before {
  content: "\e91d";
}

.icon-copy1::before {
  content: "\e91e";
}

.icon-cross::before,
ind-select .clear::after {
  content: "\e91f";
}

.icon-disable::before {
  content: "\e920";
}

.icon-drag-indicator::before {
  content: "\e99c";
}

.icon-dropmenu::before {
  content: "\e921";
}

.icon-earth::before {
  content: "\e922";
}

.icon-edit::before {
  content: "\e923";
}

.icon-enlarge::before {
  content: "\e924";
}

.icon-enter::before {
  content: "\e925";
}

.icon-equalizer::before {
  content: "\e926";
}

.icon-exit::before {
  content: "\e927";
}

.icon-expand::before {
  content: "\e928";
}

.icon-eye::before {
  content: "\e929";
}

.icon-eye-blocked::before,
.icon-unlisted-event::before {
  content: "\e92a";
}

.icon-file::before {
  content: "\e92b";
}

.icon-file-check::before {
  content: "\e92c";
}

.icon-file-content::before {
  content: "\e92d";
}

.icon-file-css::before {
  content: "\e92e";
}

.icon-file-download::before {
  content: "\e92f";
}

.icon-file-excel::before {
  content: "\e930";
}

.icon-file-eye::before {
  content: "\e931";
}

.icon-file-filled::before {
  content: "\e932";
}

.icon-file-image::before {
  content: "\e933";
}

.icon-file-music::before {
  content: "\e934";
}

.icon-file-openoffice::before {
  content: "\e935";
}

.icon-file-pdf::before {
  content: "\e936";
}

.icon-file-play::before {
  content: "\e937";
}

.icon-file-presentation::before {
  content: "\e938";
}

.icon-file-spreadsheet::before {
  content: "\e939";
}

.icon-file-text::before {
  content: "\e93a";
}

.icon-file-video::before {
  content: "\e93b";
}

.icon-file-word::before {
  content: "\e93c";
}

.icon-file-xml::before {
  content: "\e93d";
}

.icon-file-zip::before {
  content: "\e93e";
}

.icon-filter::before {
  content: "\e93f";
}

.icon-first::before {
  content: "\e940";
}

.icon-floppy::before {
  content: "\e941";
}

.icon-folder::before {
  content: "\e942";
}

.icon-folder-open::before {
  content: "\e943";
}

.icon-folder-plus::before {
  content: "\e944";
}

.icon-font-size::before {
  content: "\e945";
}

.icon-grid::before {
  content: "\e946";
}

.icon-grid2::before {
  content: "\e947";
}

.icon-hammer::before {
  content: "\e948";
}

.icon-handle::before {
  content: "\e949";
}

.icon-home::before {
  content: "\e94a";
}

.icon-hour-glass2::before {
  content: "\e94b";
}

.icon-id-badge::before {
  content: "\e99d";
}

.icon-image::before {
  content: "\e94c";
}

.icon-import::before {
  content: "\e94d";
}

.icon-info::before {
  content: "\e94e";
}

.icon-italic::before {
  content: "\e94f";
}

.icon-key::before {
  content: "\e950";
}

.icon-key-a::before {
  content: "\e951";
}

.icon-lamp::before {
  content: "\e952";
}

.icon-lan::before {
  content: "\e953";
}

.icon-last::before {
  content: "\e954";
}

.icon-layout::before {
  content: "\e955";
}

.icon-link::before {
  content: "\e956";
}

.icon-list::before {
  content: "\e957";
}

.icon-location::before {
  content: "\e958";
}

.icon-lock::before,
.icon-protection-self::before {
  content: "\e959";
}

.icon-lock-center::before {
  content: "\e95a";
}

.icon-loop::before {
  content: "\e95b";
}

.icon-mail::before {
  content: "\e95c";
}

.icon-medal::before {
  content: "\e95d";
}

.icon-mic::before {
  content: "\e95e";
}

.icon-mobile::before {
  content: "\e95f";
}

.icon-move::before {
  content: "\e960";
}

.icon-new::before {
  content: "\e961";
}

.icon-next::before {
  content: "\e962";
}

.icon-no-camera::before {
  content: "\e963";
}

.icon-numbered-list::before {
  content: "\e964";
}

.icon-package-download::before {
  content: "\e965";
}

.icon-pagebreak::before {
  content: "\e966";
}

.icon-palette::before {
  content: "\e967";
}

.icon-phone::before {
  content: "\e968";
}

.icon-play::before {
  content: "\e969";
}

.icon-plus::before {
  content: "\e96a";
}

.icon-prev::before {
  content: "\e96b";
}

.icon-price-tag::before {
  content: "\e96c";
}

.icon-printer::before {
  content: "\e96d";
}

.icon-projector::before {
  content: "\e96e";
}

.icon-puzzle::before {
  content: "\e96f";
}

.icon-qrcode::before {
  content: "\e970";
}

.icon-question::before {
  content: "\e971";
}

.icon-quill::before {
  content: "\e972";
}

.icon-redo::before {
  content: "\e973";
}

.icon-remove::before {
  content: "\e974";
}

.icon-rulers::before {
  content: "\e975";
}

.icon-search::before {
  content: "\e976";
}

.icon-settings::before {
  content: "\e977";
}

.icon-seven-segment9::before {
  content: "\e978";
}

.icon-shield::before {
  content: "\e979";
}

.icon-shrink::before {
  content: "\e97a";
}

.icon-sort::before {
  content: "\e97b";
}

.icon-sort-alpha-asc::before {
  content: "\e97c";
}

.icon-sort-alpha-desc::before {
  content: "\e97d";
}

.icon-split::before {
  content: "\e97e";
}

.icon-stack::before {
  content: "\e97f";
}

.icon-stack-minus::before {
  content: "\e980";
}

.icon-stack-plus::before {
  content: "\e981";
}

.icon-stack-text::before {
  content: "\e982";
}

.icon-star::before {
  content: "\e983";
}

.icon-star-empty::before {
  content: "\e984";
}

.icon-stop::before {
  content: "\e985";
}

.icon-switchoff::before {
  content: "\e986";
}

.icon-switchon::before {
  content: "\e987";
}

.icon-tag::before {
  content: "\e988";
}

.icon-text-color::before {
  content: "\e989";
}

.icon-textarea::before {
  content: "\e98a";
}

.icon-textfield::before {
  content: "\e98b";
}

.icon-ticket::before {
  content: "\e98c";
}

.icon-tilde::before {
  content: "\e98d";
}

.icon-time::before {
  content: "\e98e";
}

.icon-transmission::before {
  content: "\e98f";
}

.icon-type::before {
  content: "\e990";
}

.icon-undo::before {
  content: "\e991";
}

.icon-unlocked::before,
.icon-protection-public::before {
  content: "\e992";
}

.icon-upload::before {
  content: "\e993";
}

.icon-user::before {
  content: "\e994";
}

.icon-user-block::before {
  content: "\e995";
}

.icon-user-chairperson::before {
  content: "\e996";
}

.icon-user-check::before {
  content: "\e997";
}

.icon-user-reading::before {
  content: "\e998";
}

.icon-users::before {
  content: "\e999";
}

.icon-warning::before {
  content: "\e99a";
}

.icon-wrench::before {
  content: "\e99b";
}

/* animated spinner icon */
.icon-spinner::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
.icon-none::before {
  content: " ";
}

.disabled .icon-spinner::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
.icon-protection-public::before {
  color: #00c851;
}

.icon-protection-self::before {
  color: #f91f1f;
}

.icon-unlisted-event::before {
  color: #f91f1f;
}

ind-select [role=listbox] {
  position: var(--target-position, fixed);
  left: var(--target-left, auto);
  right: var(--target-right, auto);
  top: var(--target-top, auto);
  bottom: var(--target-bottom, auto);
  width: var(--target-width, auto);
  height: var(--target-height, auto);
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

ind-select {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0;
  cursor: pointer;
}
ind-select .caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
          user-select: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ui.form ind-select .caption {
  font-family: "Muli", "Helvetica Neue", Arial, Helvetica, sans-serif;
  border-radius: 0.28571429rem;
  background: white;
  padding: 0.67857143em 1em;
  margin: 0;
  outline: none;
  line-height: 1.21428571em;
  font-size: 1em;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0 transparent inset;
  transition: color 0.1s ease, border-color 0.1s ease;
  flex: 1;
}
.ui.form ind-select .caption:focus {
  border-color: #85b7d9;
}
.ui.form .field.error ind-select .caption {
  background: #fff6f6;
  border-color: #c00;
  color: #c00;
  box-shadow: none;
}
.ui.form ind-select .caption, ind-select .caption {
  padding-right: 2.2em;
}
.ui.form ind-select[data-clearable=true] .caption, ind-select[data-clearable=true] .caption {
  padding-right: 4em;
}
.ui.form ind-select:focus-visible .caption, ind-select:focus-visible .caption {
  border-color: #85b7d9;
}
ind-select .caption::after {
  position: absolute;
  right: 0.5em;
  display: inline-block;
  font-size: 1.2em;
}
ind-select[open] .caption::after {
  transform: rotate(180deg);
  z-index: 11;
}
ind-select dialog {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 1px);
  padding: 0;
  margin: 0;
  z-index: 10;
  border: 0;
}
ind-select .option-filter {
  width: 100%;
}
ind-select .option-filter span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
ind-select .option-filter input {
  width: 100%;
}
.ui.form ind-select .option-filter input, ind-select .option-filter input {
  padding: calc(0.67857143em + 1px) calc(1em + 1px);
  padding-right: 2em;
}
.ui.form ind-select[open] .option-filter input:not([data-top]), ind-select[open] .option-filter input:not([data-top]) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ui.form ind-select[open] .option-filter input[data-top], ind-select[open] .option-filter input[data-top] {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
ind-select .option-filter input::placeholder {
  font-family: "Muli", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 1em;
}
ind-select [role=listbox] {
  left: calc(var(--target-left) - 1px);
  min-width: var(--anchor-width, 100%);
  max-height: min(75vh, 16em);
  overflow-y: auto;
  border: 1px solid #85b7d9;
  background: white;
  box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  border-radius: 0.28571429rem;
}
ind-select [role=listbox]:not([data-top]) {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
ind-select [role=listbox][data-top] {
  border-bottom: 0;
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
ind-select [role=option],
ind-select .no-option {
  padding: 0.67857143em 1em;
  list-style: none;
}
ind-select [role=option] {
  color: var(--text-color);
  cursor: pointer;
}
ind-select .no-option {
  color: var(--clickable-text-disabled-color);
  cursor: not-allowed;
}
ind-select [role=option]:not([aria-selected]):hover {
  background: var(--control-clickable-surface-focus-color);
}
ind-select [aria-selected] {
  background: var(--control-alt-clickable-surface-focus-color);
  color: var(--control-alt-text-color);
  cursor: initial;
}
ind-select [aria-disabled] {
  color: #aaa;
  cursor: initial;
  pointer-events: none;
}
ind-select .clear:not([hidden]) {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 2em;
  min-width: 0;
  padding: 0.2em;
  width: auto;
  border: 0;
  background: transparent;
}
ind-select .clear > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
ind-select .clear::after {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
}
@charset "UTF-8";
/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before,
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):checked::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

._-web-client-js-react-components-___Checkbox-module__inactive___rXcp3[class^=icon-]::before,
._-web-client-js-react-components-___Checkbox-module__inactive___rXcp3[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
._-web-client-js-react-components-___Checkbox-module__icon-agreement___yWSOV::before {
  content: "\e900";
}

._-web-client-js-react-components-___Checkbox-module__icon-alarm___NP-ZK::before {
  content: "\e901";
}

._-web-client-js-react-components-___Checkbox-module__icon-arrow-down___r\+Hng::before {
  content: "\e902";
}

._-web-client-js-react-components-___Checkbox-module__icon-arrow-left___OiiiD::before {
  content: "\e903";
}

._-web-client-js-react-components-___Checkbox-module__icon-arrow-right-sparse___XU9l\+::before {
  content: "\e904";
}

._-web-client-js-react-components-___Checkbox-module__icon-arrow-up___w-cDw::before {
  content: "\e905";
}

._-web-client-js-react-components-___Checkbox-module__icon-arrows-vert___vjm9U::before {
  content: "\e906";
}

._-web-client-js-react-components-___Checkbox-module__icon-attachment___YjQSF::before {
  content: "\e907";
}

._-web-client-js-react-components-___Checkbox-module__icon-bell___sC3gn::before {
  content: "\e908";
}

._-web-client-js-react-components-___Checkbox-module__icon-bold___Kux2z::before {
  content: "\e909";
}

._-web-client-js-react-components-___Checkbox-module__icon-book___dbu\+0::before {
  content: "\e90a";
}

._-web-client-js-react-components-___Checkbox-module__icon-bookmark___EKX3n::before {
  content: "\e90b";
}

._-web-client-js-react-components-___Checkbox-module__icon-broadcast___J0FBe::before {
  content: "\e90c";
}

._-web-client-js-react-components-___Checkbox-module__icon-bubble-quote___eSJwx::before {
  content: "\e90d";
}

._-web-client-js-react-components-___Checkbox-module__icon-bullhorn___yM2kI::before {
  content: "\e90e";
}

._-web-client-js-react-components-___Checkbox-module__icon-calendar___LKdOH::before {
  content: "\e90f";
}

._-web-client-js-react-components-___Checkbox-module__icon-calendar-day___VVfKu::before {
  content: "\ea65";
}

._-web-client-js-react-components-___Checkbox-module__icon-camera___Uidfa::before {
  content: "\e910";
}

._-web-client-js-react-components-___Checkbox-module__icon-chart___oETBp::before {
  content: "\e911";
}

._-web-client-js-react-components-___Checkbox-module__icon-checkbox-checked___Y4BEa::before {
  content: "\e912";
}

._-web-client-js-react-components-___Checkbox-module__icon-checkbox-unchecked___uatF4::before {
  content: "\e913";
}

._-web-client-js-react-components-___Checkbox-module__icon-checkmark___VODum::before,
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):checked::before {
  content: "\e914";
}

._-web-client-js-react-components-___Checkbox-module__icon-circle-small___-9M55::before {
  content: "\e915";
}

._-web-client-js-react-components-___Checkbox-module__icon-clipboard___YVhst::before {
  content: "\e916";
}

._-web-client-js-react-components-___Checkbox-module__icon-close___aRRWp::before {
  content: "\e917";
}

._-web-client-js-react-components-___Checkbox-module__icon-cloud2___pL4Wh::before {
  content: "\e918";
}

._-web-client-js-react-components-___Checkbox-module__icon-code___PWIMO::before {
  content: "\e919";
}

._-web-client-js-react-components-___Checkbox-module__icon-coins___cNRNf::before {
  content: "\e91a";
}

._-web-client-js-react-components-___Checkbox-module__icon-collapse___ZJFpU::before {
  content: "\e91b";
}

._-web-client-js-react-components-___Checkbox-module__icon-compass2___UdIKT::before {
  content: "\e91c";
}

._-web-client-js-react-components-___Checkbox-module__icon-copy___jehzI::before {
  content: "\e91d";
}

._-web-client-js-react-components-___Checkbox-module__icon-copy1___9JSoJ::before {
  content: "\e91e";
}

._-web-client-js-react-components-___Checkbox-module__icon-cross___h3Ozp::before {
  content: "\e91f";
}

._-web-client-js-react-components-___Checkbox-module__icon-disable___LzIQg::before {
  content: "\e920";
}

._-web-client-js-react-components-___Checkbox-module__icon-drag-indicator___Vzboz::before {
  content: "\e99c";
}

._-web-client-js-react-components-___Checkbox-module__icon-dropmenu___bfG6o::before {
  content: "\e921";
}

._-web-client-js-react-components-___Checkbox-module__icon-earth___8pLN\+::before {
  content: "\e922";
}

._-web-client-js-react-components-___Checkbox-module__icon-edit___VX8mo::before {
  content: "\e923";
}

._-web-client-js-react-components-___Checkbox-module__icon-enlarge___Unulj::before {
  content: "\e924";
}

._-web-client-js-react-components-___Checkbox-module__icon-enter___decw2::before {
  content: "\e925";
}

._-web-client-js-react-components-___Checkbox-module__icon-equalizer___rqtt2::before {
  content: "\e926";
}

._-web-client-js-react-components-___Checkbox-module__icon-exit___ClXmZ::before {
  content: "\e927";
}

._-web-client-js-react-components-___Checkbox-module__icon-expand___6DWU4::before {
  content: "\e928";
}

._-web-client-js-react-components-___Checkbox-module__icon-eye___UGubJ::before {
  content: "\e929";
}

._-web-client-js-react-components-___Checkbox-module__icon-eye-blocked___mmOYe::before,
._-web-client-js-react-components-___Checkbox-module__icon-unlisted-event___VAbmv::before {
  content: "\e92a";
}

._-web-client-js-react-components-___Checkbox-module__icon-file___tuWU3::before {
  content: "\e92b";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-check___uEsEt::before {
  content: "\e92c";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-content___gSdGW::before {
  content: "\e92d";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-css___kTZRn::before {
  content: "\e92e";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-download___DEBrD::before {
  content: "\e92f";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-excel___UQUjg::before {
  content: "\e930";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-eye___X5Vj0::before {
  content: "\e931";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-filled___EpsGM::before {
  content: "\e932";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-image___mA4K2::before {
  content: "\e933";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-music___asEbN::before {
  content: "\e934";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-openoffice___jORS3::before {
  content: "\e935";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-pdf___ATb3s::before {
  content: "\e936";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-play___HfNcp::before {
  content: "\e937";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-presentation___dI5HP::before {
  content: "\e938";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-spreadsheet___jUfnK::before {
  content: "\e939";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-text___WsSnW::before {
  content: "\e93a";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-video___\+it4e::before {
  content: "\e93b";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-word___40RPL::before {
  content: "\e93c";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-xml___N8aS7::before {
  content: "\e93d";
}

._-web-client-js-react-components-___Checkbox-module__icon-file-zip___J38T\+::before {
  content: "\e93e";
}

._-web-client-js-react-components-___Checkbox-module__icon-filter___V251S::before {
  content: "\e93f";
}

._-web-client-js-react-components-___Checkbox-module__icon-first___5w18V::before {
  content: "\e940";
}

._-web-client-js-react-components-___Checkbox-module__icon-floppy___IdZ4J::before {
  content: "\e941";
}

._-web-client-js-react-components-___Checkbox-module__icon-folder___9XwZE::before {
  content: "\e942";
}

._-web-client-js-react-components-___Checkbox-module__icon-folder-open___647P-::before {
  content: "\e943";
}

._-web-client-js-react-components-___Checkbox-module__icon-folder-plus___MmO-F::before {
  content: "\e944";
}

._-web-client-js-react-components-___Checkbox-module__icon-font-size___Tm-Nl::before {
  content: "\e945";
}

._-web-client-js-react-components-___Checkbox-module__icon-grid___eKT\+2::before {
  content: "\e946";
}

._-web-client-js-react-components-___Checkbox-module__icon-grid2___pIEY2::before {
  content: "\e947";
}

._-web-client-js-react-components-___Checkbox-module__icon-hammer___ED0jz::before {
  content: "\e948";
}

._-web-client-js-react-components-___Checkbox-module__icon-handle___pnVEg::before {
  content: "\e949";
}

._-web-client-js-react-components-___Checkbox-module__icon-home___4eRgD::before {
  content: "\e94a";
}

._-web-client-js-react-components-___Checkbox-module__icon-hour-glass2___jsBNH::before {
  content: "\e94b";
}

._-web-client-js-react-components-___Checkbox-module__icon-id-badge___gw7wS::before {
  content: "\e99d";
}

._-web-client-js-react-components-___Checkbox-module__icon-image___02u6y::before {
  content: "\e94c";
}

._-web-client-js-react-components-___Checkbox-module__icon-import___TA-8y::before {
  content: "\e94d";
}

._-web-client-js-react-components-___Checkbox-module__icon-info___\+\+ZXm::before {
  content: "\e94e";
}

._-web-client-js-react-components-___Checkbox-module__icon-italic___1fV5f::before {
  content: "\e94f";
}

._-web-client-js-react-components-___Checkbox-module__icon-key___EV\+6c::before {
  content: "\e950";
}

._-web-client-js-react-components-___Checkbox-module__icon-key-a___iB1Rl::before {
  content: "\e951";
}

._-web-client-js-react-components-___Checkbox-module__icon-lamp___fBP-5::before {
  content: "\e952";
}

._-web-client-js-react-components-___Checkbox-module__icon-lan___I53ef::before {
  content: "\e953";
}

._-web-client-js-react-components-___Checkbox-module__icon-last___jiPjB::before {
  content: "\e954";
}

._-web-client-js-react-components-___Checkbox-module__icon-layout___RBiYJ::before {
  content: "\e955";
}

._-web-client-js-react-components-___Checkbox-module__icon-link___VDcey::before {
  content: "\e956";
}

._-web-client-js-react-components-___Checkbox-module__icon-list___QMtu-::before {
  content: "\e957";
}

._-web-client-js-react-components-___Checkbox-module__icon-location___FyWLk::before {
  content: "\e958";
}

._-web-client-js-react-components-___Checkbox-module__icon-lock___ljT2L::before,
._-web-client-js-react-components-___Checkbox-module__icon-protection-self___F1awk::before {
  content: "\e959";
}

._-web-client-js-react-components-___Checkbox-module__icon-lock-center___84JcK::before {
  content: "\e95a";
}

._-web-client-js-react-components-___Checkbox-module__icon-loop___TGDL-::before {
  content: "\e95b";
}

._-web-client-js-react-components-___Checkbox-module__icon-mail___4JQs4::before {
  content: "\e95c";
}

._-web-client-js-react-components-___Checkbox-module__icon-medal___M7EFP::before {
  content: "\e95d";
}

._-web-client-js-react-components-___Checkbox-module__icon-mic___C5ifT::before {
  content: "\e95e";
}

._-web-client-js-react-components-___Checkbox-module__icon-mobile___qJsLs::before {
  content: "\e95f";
}

._-web-client-js-react-components-___Checkbox-module__icon-move___MngSy::before {
  content: "\e960";
}

._-web-client-js-react-components-___Checkbox-module__icon-new___5kLj-::before {
  content: "\e961";
}

._-web-client-js-react-components-___Checkbox-module__icon-next___JJ0l3::before {
  content: "\e962";
}

._-web-client-js-react-components-___Checkbox-module__icon-no-camera___VbjC1::before {
  content: "\e963";
}

._-web-client-js-react-components-___Checkbox-module__icon-numbered-list___Bad5S::before {
  content: "\e964";
}

._-web-client-js-react-components-___Checkbox-module__icon-package-download___CgiUj::before {
  content: "\e965";
}

._-web-client-js-react-components-___Checkbox-module__icon-pagebreak___B6UAT::before {
  content: "\e966";
}

._-web-client-js-react-components-___Checkbox-module__icon-palette___os-TD::before {
  content: "\e967";
}

._-web-client-js-react-components-___Checkbox-module__icon-phone___CdoB5::before {
  content: "\e968";
}

._-web-client-js-react-components-___Checkbox-module__icon-play___amMgt::before {
  content: "\e969";
}

._-web-client-js-react-components-___Checkbox-module__icon-plus___kYdOm::before {
  content: "\e96a";
}

._-web-client-js-react-components-___Checkbox-module__icon-prev___Usk90::before {
  content: "\e96b";
}

._-web-client-js-react-components-___Checkbox-module__icon-price-tag___Io8Jd::before {
  content: "\e96c";
}

._-web-client-js-react-components-___Checkbox-module__icon-printer___HnINb::before {
  content: "\e96d";
}

._-web-client-js-react-components-___Checkbox-module__icon-projector___ieCMr::before {
  content: "\e96e";
}

._-web-client-js-react-components-___Checkbox-module__icon-puzzle___aPqOm::before {
  content: "\e96f";
}

._-web-client-js-react-components-___Checkbox-module__icon-qrcode___bVB\+5::before {
  content: "\e970";
}

._-web-client-js-react-components-___Checkbox-module__icon-question___JetqZ::before {
  content: "\e971";
}

._-web-client-js-react-components-___Checkbox-module__icon-quill___kOkJ2::before {
  content: "\e972";
}

._-web-client-js-react-components-___Checkbox-module__icon-redo___XSLYJ::before {
  content: "\e973";
}

._-web-client-js-react-components-___Checkbox-module__icon-remove___j1LKf::before {
  content: "\e974";
}

._-web-client-js-react-components-___Checkbox-module__icon-rulers___E4ZKg::before {
  content: "\e975";
}

._-web-client-js-react-components-___Checkbox-module__icon-search___hHnsV::before {
  content: "\e976";
}

._-web-client-js-react-components-___Checkbox-module__icon-settings___0sHXZ::before {
  content: "\e977";
}

._-web-client-js-react-components-___Checkbox-module__icon-seven-segment9___LZsDm::before {
  content: "\e978";
}

._-web-client-js-react-components-___Checkbox-module__icon-shield___Vg0Is::before {
  content: "\e979";
}

._-web-client-js-react-components-___Checkbox-module__icon-shrink___vqVcq::before {
  content: "\e97a";
}

._-web-client-js-react-components-___Checkbox-module__icon-sort___Yu5dy::before {
  content: "\e97b";
}

._-web-client-js-react-components-___Checkbox-module__icon-sort-alpha-asc___MtTnk::before {
  content: "\e97c";
}

._-web-client-js-react-components-___Checkbox-module__icon-sort-alpha-desc___epp-2::before {
  content: "\e97d";
}

._-web-client-js-react-components-___Checkbox-module__icon-split___fD-WO::before {
  content: "\e97e";
}

._-web-client-js-react-components-___Checkbox-module__icon-stack___AUIbX::before {
  content: "\e97f";
}

._-web-client-js-react-components-___Checkbox-module__icon-stack-minus___0d2G\+::before {
  content: "\e980";
}

._-web-client-js-react-components-___Checkbox-module__icon-stack-plus___r\+nIx::before {
  content: "\e981";
}

._-web-client-js-react-components-___Checkbox-module__icon-stack-text___s-h9b::before {
  content: "\e982";
}

._-web-client-js-react-components-___Checkbox-module__icon-star___mUTVX::before {
  content: "\e983";
}

._-web-client-js-react-components-___Checkbox-module__icon-star-empty___KTjAK::before {
  content: "\e984";
}

._-web-client-js-react-components-___Checkbox-module__icon-stop___Rwdeo::before {
  content: "\e985";
}

._-web-client-js-react-components-___Checkbox-module__icon-switchoff___lJX9\+::before {
  content: "\e986";
}

._-web-client-js-react-components-___Checkbox-module__icon-switchon___sxPqC::before {
  content: "\e987";
}

._-web-client-js-react-components-___Checkbox-module__icon-tag___pzf4A::before {
  content: "\e988";
}

._-web-client-js-react-components-___Checkbox-module__icon-text-color___5Dtue::before {
  content: "\e989";
}

._-web-client-js-react-components-___Checkbox-module__icon-textarea___Vp7oT::before {
  content: "\e98a";
}

._-web-client-js-react-components-___Checkbox-module__icon-textfield___DJJwb::before {
  content: "\e98b";
}

._-web-client-js-react-components-___Checkbox-module__icon-ticket___IFDrT::before {
  content: "\e98c";
}

._-web-client-js-react-components-___Checkbox-module__icon-tilde___Qkp90::before {
  content: "\e98d";
}

._-web-client-js-react-components-___Checkbox-module__icon-time___XnZh5::before {
  content: "\e98e";
}

._-web-client-js-react-components-___Checkbox-module__icon-transmission___knXpy::before {
  content: "\e98f";
}

._-web-client-js-react-components-___Checkbox-module__icon-type___3QYfq::before {
  content: "\e990";
}

._-web-client-js-react-components-___Checkbox-module__icon-undo___3cxLW::before {
  content: "\e991";
}

._-web-client-js-react-components-___Checkbox-module__icon-unlocked___wqcLV::before,
._-web-client-js-react-components-___Checkbox-module__icon-protection-public___3bxjY::before {
  content: "\e992";
}

._-web-client-js-react-components-___Checkbox-module__icon-upload___l7jpD::before {
  content: "\e993";
}

._-web-client-js-react-components-___Checkbox-module__icon-user___1r5uZ::before {
  content: "\e994";
}

._-web-client-js-react-components-___Checkbox-module__icon-user-block___dkAW9::before {
  content: "\e995";
}

._-web-client-js-react-components-___Checkbox-module__icon-user-chairperson___2WkKo::before {
  content: "\e996";
}

._-web-client-js-react-components-___Checkbox-module__icon-user-check___YmCdc::before {
  content: "\e997";
}

._-web-client-js-react-components-___Checkbox-module__icon-user-reading___lBhLZ::before {
  content: "\e998";
}

._-web-client-js-react-components-___Checkbox-module__icon-users___4UlvP::before {
  content: "\e999";
}

._-web-client-js-react-components-___Checkbox-module__icon-warning___b5QTY::before {
  content: "\e99a";
}

._-web-client-js-react-components-___Checkbox-module__icon-wrench___WOmL9::before {
  content: "\e99b";
}

/* animated spinner icon */
._-web-client-js-react-components-___Checkbox-module__icon-spinner___VhApO::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
._-web-client-js-react-components-___Checkbox-module__icon-none___X8t8t::before {
  content: " ";
}

._-web-client-js-react-components-___Checkbox-module__disabled___FW0hQ ._-web-client-js-react-components-___Checkbox-module__icon-spinner___VhApO::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
._-web-client-js-react-components-___Checkbox-module__icon-protection-public___3bxjY::before {
  color: #00c851;
}

._-web-client-js-react-components-___Checkbox-module__icon-protection-self___F1awk::before {
  color: #f91f1f;
}

._-web-client-js-react-components-___Checkbox-module__icon-unlisted-event___VAbmv::before {
  color: #f91f1f;
}

._-web-client-js-react-components-___Checkbox-module__checkbox-label___lICzc {
  display: inline-flex;
  gap: var(--content-gap-normal);
  align-items: center;
}

._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4 {
  appearance: none;
  transition: background 0.2s;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]) {
  --checkbox-size: 1.2em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  margin: 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0.28571429rem;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):disabled {
  border-color: 1px solid rgba(34, 36, 38, 0.15);
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):focus {
  border: 1px solid #85b7d9;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):checked::before, ._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):indeterminate::before {
  position: absolute;
  display: inline-block;
  font-size: 87.5%;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4:not([data-as-toggle]):indeterminate::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.2em;
  background-color: currentcolor;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4[data-as-toggle=true] {
  --toggle-size: 1.5em;
  display: inline-block;
  position: relative;
  width: calc(var(--toggle-size) * 2);
  height: var(--toggle-size);
  overflow: hidden;
  border-radius: calc(var(--toggle-size) / 2)/50%;
  box-shadow: inset 0 0 0.1em rgba(0, 0, 0, 0.4);
  border: 1px solid #85b7d9;
  background: white;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4[data-as-toggle=true]:is(:focus, :hover) {
  border-color: #85b7d9;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4[data-as-toggle=true]::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  aspect-ratio: 1;
  box-shadow: 0 0 0.2em rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: transform 0.2s;
  border: 1px solid #85b7d9;
  background: white;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4[data-as-toggle=true]:checked {
  background: #85b7d9;
}
._-web-client-js-react-components-___Checkbox-module__checkbox___5Eco4[data-as-toggle=true]:checked::before {
  transform: translateX(var(--toggle-size));
}
._-web-client-js-react-forms-___fields-module__field-error___NpUkE {
  color: #f91f1f !important;
  border-color: #f91f1f !important;
  font-weight: bold;
}

._-web-client-js-react-forms-___fields-module__field-description___\+VicI,
.field-description {
  font-style: italic;
  font-size: 0.9em;
  color: #999;
}

._-web-client-js-react-forms-___fields-module__fieldset___Bk-9g {
  border: 0;
  margin-bottom: 0.5em;
  padding: 0;
}
._-web-client-js-react-forms-___fields-module__fieldset___Bk-9g legend {
  font-weight: bold;
  font-size: 1.3em;
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  padding-left: 0;
  padding-bottom: 0.5em;
  margin-bottom: 0.3em;
  color: #777;
}
._-web-client-js-react-forms-___fields-module__fieldset___Bk-9g + ._-web-client-js-react-forms-___fields-module__fieldset___Bk-9g:not(._-web-client-js-react-forms-___fields-module__compact___cta4I) {
  margin-top: 2em;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-widget___ImTP8 {
  cursor: pointer;
  filter: opacity(0.6);
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-widget___ImTP8:hover {
  filter: none;
}

._-web-client-js-custom_elements-___ind_share_widget-module__show___DxYxZ {
  filter: none;
}

._-web-client-js-custom_elements-___ind_share_widget-module__share-header-title___dlTsF {
  font-size: 1.6em;
  text-align: center;
  margin: 5px 0 5px 0;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-header-title___dlTsF ._-web-client-js-custom_elements-___ind_share_widget-module__icon___M-VsE {
  margin-right: 5px;
}

._-web-client-js-custom_elements-___ind_share_widget-module__share-section-header___wyhT1 {
  margin: 10px 0 10px 0 !important;
  font-size: 1.15em !important;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-section-header___wyhT1 ._-web-client-js-custom_elements-___ind_share_widget-module__icon___M-VsE {
  font-size: inherit !important;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-section-header___wyhT1 ._-web-client-js-custom_elements-___ind_share_widget-module__title___mzRqY {
  padding-left: 5px !important;
}

._-web-client-js-custom_elements-___ind_share_widget-module__share-button-column___XxND3 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-button-column___XxND3 ._-web-client-js-custom_elements-___ind_share_widget-module__share-button___9Bv66 {
  margin-right: 0;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-button-column___XxND3 ._-web-client-js-custom_elements-___ind_share_widget-module__share-button___9Bv66 img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}
._-web-client-js-custom_elements-___ind_share_widget-module__share-button-column___XxND3 ._-web-client-js-custom_elements-___ind_share_widget-module__share-button___9Bv66 span {
  vertical-align: middle;
}

._-web-client-js-custom_elements-___ind_share_widget-module__mastodon-button___HbQxd {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

._-web-client-js-custom_elements-___ind_share_widget-module__empty-mastodon-server-notice___Upzrj .icon.star {
  font-size: 1.5em !important;
}

._-web-client-js-custom_elements-___ind_share_widget-module__saved-mastodon-server-notice___Z7ET5 .icon.check.circle.outline {
  font-size: 1.5em !important;
}

._-web-client-js-custom_elements-___ind_share_widget-module__error-message___I61M3 {
  margin-top: 10px;
  color: #c00;
}
ind-vc-room-segment.ui.segment {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
ind-vc-room-segment.ui.segment .ui.secondary.menu {
  margin: 0;
  width: 100%;
}
ind-vc-room-segment.ui.segment .ui.secondary.menu > .item {
  margin: 0;
}
ind-vc-room-segment.ui.segment .ui.secondary.menu > .item.vc-icon img {
  height: 0.8em;
  width: auto;
}
ind-vc-room-segment.ui.segment .ui.secondary.menu > .item.vc-room-name {
  display: inline;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 0 4 50%;
}
ind-vc-room-segment.ui.segment .ui.secondary.menu .right.menu > .item {
  margin: 0;
}

ind-vc-room-segment .expand-button {
  cursor: pointer;
}

ind-vc-room-segment .secondary.segment {
  --time-menu-animation: 0.2s;
  --length-menu-travel: -5em;
  display: block;
  z-index: 1;
}

ind-vc-room-segment.expanded .secondary.segment {
  animation: menu-slide-down var(--time-menu-animation);
}

ind-vc-room-segment:not(.expanded) .secondary.segment {
  display: none;
  animation: menu-slide-up var(--time-menu-animation);
}

@keyframes menu-slide-down {
  from {
    display: block;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes menu-slide-up {
  from {
    display: block;
    opacity: 1;
    transform: none;
  }
  to {
    display: none;
    opacity: 0;
    transform: translateY(var(--length-menu-travel));
  }
}
@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

ind-with-toggletip button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

.inactive[class^=icon-]::before,
.inactive[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
.icon-agreement::before {
  content: "\e900";
}

.icon-alarm::before {
  content: "\e901";
}

.icon-arrow-down::before {
  content: "\e902";
}

.icon-arrow-left::before {
  content: "\e903";
}

.icon-arrow-right-sparse::before {
  content: "\e904";
}

.icon-arrow-up::before {
  content: "\e905";
}

.icon-arrows-vert::before {
  content: "\e906";
}

.icon-attachment::before {
  content: "\e907";
}

.icon-bell::before {
  content: "\e908";
}

.icon-bold::before {
  content: "\e909";
}

.icon-book::before {
  content: "\e90a";
}

.icon-bookmark::before {
  content: "\e90b";
}

.icon-broadcast::before {
  content: "\e90c";
}

.icon-bubble-quote::before {
  content: "\e90d";
}

.icon-bullhorn::before {
  content: "\e90e";
}

.icon-calendar::before {
  content: "\e90f";
}

.icon-calendar-day::before {
  content: "\ea65";
}

.icon-camera::before {
  content: "\e910";
}

.icon-chart::before {
  content: "\e911";
}

.icon-checkbox-checked::before {
  content: "\e912";
}

.icon-checkbox-unchecked::before {
  content: "\e913";
}

.icon-checkmark::before {
  content: "\e914";
}

.icon-circle-small::before {
  content: "\e915";
}

.icon-clipboard::before {
  content: "\e916";
}

.icon-close::before {
  content: "\e917";
}

.icon-cloud2::before {
  content: "\e918";
}

.icon-code::before {
  content: "\e919";
}

.icon-coins::before {
  content: "\e91a";
}

.icon-collapse::before {
  content: "\e91b";
}

.icon-compass2::before {
  content: "\e91c";
}

.icon-copy::before {
  content: "\e91d";
}

.icon-copy1::before {
  content: "\e91e";
}

.icon-cross::before {
  content: "\e91f";
}

.icon-disable::before {
  content: "\e920";
}

.icon-drag-indicator::before {
  content: "\e99c";
}

.icon-dropmenu::before {
  content: "\e921";
}

.icon-earth::before {
  content: "\e922";
}

.icon-edit::before {
  content: "\e923";
}

.icon-enlarge::before {
  content: "\e924";
}

.icon-enter::before {
  content: "\e925";
}

.icon-equalizer::before {
  content: "\e926";
}

.icon-exit::before {
  content: "\e927";
}

.icon-expand::before {
  content: "\e928";
}

.icon-eye::before {
  content: "\e929";
}

.icon-eye-blocked::before,
.icon-unlisted-event::before {
  content: "\e92a";
}

.icon-file::before {
  content: "\e92b";
}

.icon-file-check::before {
  content: "\e92c";
}

.icon-file-content::before {
  content: "\e92d";
}

.icon-file-css::before {
  content: "\e92e";
}

.icon-file-download::before {
  content: "\e92f";
}

.icon-file-excel::before {
  content: "\e930";
}

.icon-file-eye::before {
  content: "\e931";
}

.icon-file-filled::before {
  content: "\e932";
}

.icon-file-image::before {
  content: "\e933";
}

.icon-file-music::before {
  content: "\e934";
}

.icon-file-openoffice::before {
  content: "\e935";
}

.icon-file-pdf::before {
  content: "\e936";
}

.icon-file-play::before {
  content: "\e937";
}

.icon-file-presentation::before {
  content: "\e938";
}

.icon-file-spreadsheet::before {
  content: "\e939";
}

.icon-file-text::before {
  content: "\e93a";
}

.icon-file-video::before {
  content: "\e93b";
}

.icon-file-word::before {
  content: "\e93c";
}

.icon-file-xml::before {
  content: "\e93d";
}

.icon-file-zip::before {
  content: "\e93e";
}

.icon-filter::before {
  content: "\e93f";
}

.icon-first::before {
  content: "\e940";
}

.icon-floppy::before {
  content: "\e941";
}

.icon-folder::before {
  content: "\e942";
}

.icon-folder-open::before {
  content: "\e943";
}

.icon-folder-plus::before {
  content: "\e944";
}

.icon-font-size::before {
  content: "\e945";
}

.icon-grid::before {
  content: "\e946";
}

.icon-grid2::before {
  content: "\e947";
}

.icon-hammer::before {
  content: "\e948";
}

.icon-handle::before {
  content: "\e949";
}

.icon-home::before {
  content: "\e94a";
}

.icon-hour-glass2::before {
  content: "\e94b";
}

.icon-id-badge::before {
  content: "\e99d";
}

.icon-image::before {
  content: "\e94c";
}

.icon-import::before {
  content: "\e94d";
}

.icon-info::before {
  content: "\e94e";
}

.icon-italic::before {
  content: "\e94f";
}

.icon-key::before {
  content: "\e950";
}

.icon-key-a::before {
  content: "\e951";
}

.icon-lamp::before {
  content: "\e952";
}

.icon-lan::before {
  content: "\e953";
}

.icon-last::before {
  content: "\e954";
}

.icon-layout::before {
  content: "\e955";
}

.icon-link::before {
  content: "\e956";
}

.icon-list::before {
  content: "\e957";
}

.icon-location::before {
  content: "\e958";
}

.icon-lock::before,
.icon-protection-self::before {
  content: "\e959";
}

.icon-lock-center::before {
  content: "\e95a";
}

.icon-loop::before {
  content: "\e95b";
}

.icon-mail::before {
  content: "\e95c";
}

.icon-medal::before {
  content: "\e95d";
}

.icon-mic::before {
  content: "\e95e";
}

.icon-mobile::before {
  content: "\e95f";
}

.icon-move::before {
  content: "\e960";
}

.icon-new::before {
  content: "\e961";
}

.icon-next::before {
  content: "\e962";
}

.icon-no-camera::before {
  content: "\e963";
}

.icon-numbered-list::before {
  content: "\e964";
}

.icon-package-download::before {
  content: "\e965";
}

.icon-pagebreak::before {
  content: "\e966";
}

.icon-palette::before {
  content: "\e967";
}

.icon-phone::before {
  content: "\e968";
}

.icon-play::before {
  content: "\e969";
}

.icon-plus::before {
  content: "\e96a";
}

.icon-prev::before {
  content: "\e96b";
}

.icon-price-tag::before {
  content: "\e96c";
}

.icon-printer::before {
  content: "\e96d";
}

.icon-projector::before {
  content: "\e96e";
}

.icon-puzzle::before {
  content: "\e96f";
}

.icon-qrcode::before {
  content: "\e970";
}

.icon-question::before {
  content: "\e971";
}

.icon-quill::before {
  content: "\e972";
}

.icon-redo::before {
  content: "\e973";
}

.icon-remove::before {
  content: "\e974";
}

.icon-rulers::before {
  content: "\e975";
}

.icon-search::before {
  content: "\e976";
}

.icon-settings::before {
  content: "\e977";
}

.icon-seven-segment9::before {
  content: "\e978";
}

.icon-shield::before {
  content: "\e979";
}

.icon-shrink::before {
  content: "\e97a";
}

.icon-sort::before {
  content: "\e97b";
}

.icon-sort-alpha-asc::before {
  content: "\e97c";
}

.icon-sort-alpha-desc::before {
  content: "\e97d";
}

.icon-split::before {
  content: "\e97e";
}

.icon-stack::before {
  content: "\e97f";
}

.icon-stack-minus::before {
  content: "\e980";
}

.icon-stack-plus::before {
  content: "\e981";
}

.icon-stack-text::before {
  content: "\e982";
}

.icon-star::before {
  content: "\e983";
}

.icon-star-empty::before {
  content: "\e984";
}

.icon-stop::before {
  content: "\e985";
}

.icon-switchoff::before {
  content: "\e986";
}

.icon-switchon::before {
  content: "\e987";
}

.icon-tag::before {
  content: "\e988";
}

.icon-text-color::before {
  content: "\e989";
}

.icon-textarea::before {
  content: "\e98a";
}

.icon-textfield::before {
  content: "\e98b";
}

.icon-ticket::before {
  content: "\e98c";
}

.icon-tilde::before {
  content: "\e98d";
}

.icon-time::before {
  content: "\e98e";
}

.icon-transmission::before {
  content: "\e98f";
}

.icon-type::before {
  content: "\e990";
}

.icon-undo::before {
  content: "\e991";
}

.icon-unlocked::before,
.icon-protection-public::before {
  content: "\e992";
}

.icon-upload::before {
  content: "\e993";
}

.icon-user::before {
  content: "\e994";
}

.icon-user-block::before {
  content: "\e995";
}

.icon-user-chairperson::before {
  content: "\e996";
}

.icon-user-check::before {
  content: "\e997";
}

.icon-user-reading::before {
  content: "\e998";
}

.icon-users::before {
  content: "\e999";
}

.icon-warning::before {
  content: "\e99a";
}

.icon-wrench::before {
  content: "\e99b";
}

/* animated spinner icon */
.icon-spinner::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
.icon-none::before {
  content: " ";
}

.disabled .icon-spinner::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
.icon-protection-public::before {
  color: #00c851;
}

.icon-protection-self::before {
  color: #f91f1f;
}

.icon-unlisted-event::before {
  color: #f91f1f;
}

ind-with-tooltip [data-tip-content],
ind-with-toggletip [data-tip-content] {
  position: var(--target-position, fixed);
  left: var(--target-left, auto);
  right: var(--target-right, auto);
  top: var(--target-top, auto);
  bottom: var(--target-bottom, auto);
  width: var(--target-width, auto);
  height: var(--target-height, auto);
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

ind-with-tooltip,
ind-with-toggletip {
  --arrow-left: auto;
  --arrow-right: auto;
  --arrow-top: auto;
  --arrow-bottom: auto;
  --arrow-direction: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  --tooltip-surface-color: #333;
  --tooltip-text-color: #fff;
}
ind-with-tooltip [data-tip-content],
ind-with-toggletip [data-tip-content] {
  display: block;
  z-index: 1;
  width: max-content;
  max-width: min(100dvw - 1em, 40ch);
  padding: 0.5em;
  border: solid transparent;
  border-width: 0.5em 0;
  cursor: default;
  color: var(--tooltip-text-color);
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}
ind-with-tooltip [data-tip-content] > *,
ind-with-toggletip [data-tip-content] > * {
  position: relative;
}
ind-with-tooltip[orientation=horizontal] [data-tip-content],
ind-with-toggletip[orientation=horizontal] [data-tip-content] {
  border-width: 0 0.5em;
}
ind-with-tooltip:not([orientation=horizontal]) [data-tip-content],
ind-with-toggletip:not([orientation=horizontal]) [data-tip-content] {
  border-width: 0.5em 0;
}
ind-with-tooltip:not([shown]) [data-tip-content],
ind-with-toggletip:not([shown]) [data-tip-content] {
  opacity: 0;
  pointer-events: none;
}
ind-with-tooltip [data-tip-content]::before,
ind-with-toggletip [data-tip-content]::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--tooltip-surface-color);
  border-radius: 0.2em;
}
ind-with-tooltip[shown]::after,
ind-with-toggletip[shown]::after {
  --arrow-size: 0.5em;
  content: "";
  position: absolute;
  display: inline-block;
  border-style: solid;
  border-color: transparent transparent var(--tooltip-surface-color) transparent;
  border-width: var(--arrow-size);
  transform: rotate(var(--arrow-direction));
}
ind-with-tooltip[orientation=horizontal]::after,
ind-with-toggletip[orientation=horizontal]::after {
  left: calc(var(--arrow-left) - var(--arrow-size) + 0.1em);
  right: calc(100% - var(--arrow-size) + 0.1em);
  top: calc(50% - var(--arrow-size));
}
ind-with-tooltip:not([orientation=horizontal])::after,
ind-with-toggletip:not([orientation=horizontal])::after {
  top: calc(var(--arrow-top) - var(--arrow-size) + 0.1em);
  bottom: calc(100% - var(--arrow-size) + 0.1em);
  left: calc(50% - var(--arrow-size));
}

ind-with-toggletip {
  display: inline-flex;
}
._-web-client-js-react-components-principals-___items-module__item___vlQyN,
.ui.list > ._-web-client-js-react-components-principals-___items-module__item___vlQyN,
.ui.list.list > ._-web-client-js-react-components-principals-___items-module__item___vlQyN {
  display: flex !important;
  align-items: center;
  min-height: 32px;
}

._-web-client-js-react-components-principals-___items-module__event-role___fO5SR {
  width: 3.5em;
  text-align: center;
}
._-web-client-js-react-components-principals-___items-module__event-role___fO5SR > span {
  /* from the role-code mixin */
  border-radius: 2px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  padding: 0.3em 0.1em;
  font-size: 0.9em;
  font-weight: bold;
  /* from the SUI icon */
  display: inline-block;
  margin: 0 0.25rem 0 0;
  width: 3.25em;
  text-align: center;
}

._-web-client-js-react-components-principals-___items-module__icon___aW4cI {
  width: 3.5em;
  text-align: center;
  color: #777;
  flex-shrink: 0;
  align-self: start;
}

._-web-client-js-react-components-principals-___items-module__content___-JgYu {
  flex-grow: 1;
}

._-web-client-js-react-components-principals-___items-module__loader___XzCT6 {
  margin-right: 5px;
  margin-bottom: 5px;
}

._-web-client-js-react-components-principals-___items-module__actions___x58HT {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

._-web-client-js-react-components-principals-___items-module__button___Iwcpb {
  cursor: pointer;
  opacity: 0.5 !important;
}
._-web-client-js-react-components-principals-___items-module__button___Iwcpb:hover {
  opacity: 1 !important;
}
._-web-client-js-react-components-principals-___items-module__button___Iwcpb._-web-client-js-react-components-principals-___items-module__delete___fwaA0 {
  color: #f91f1f;
}
._-web-client-js-react-components-principals-___items-module__button___Iwcpb._-web-client-js-react-components-principals-___items-module__favorite___YJHPI {
  color: #bbb;
}
._-web-client-js-react-components-principals-___items-module__button___Iwcpb._-web-client-js-react-components-principals-___items-module__favorite___YJHPI._-web-client-js-react-components-principals-___items-module__active___3DNmV, ._-web-client-js-react-components-principals-___items-module__button___Iwcpb._-web-client-js-react-components-principals-___items-module__favorite___YJHPI:hover {
  color: #e99e18;
}

._-web-client-js-react-components-principals-___items-module__favorite___YJHPI.disabled {
  opacity: 1 !important;
}
._-web-client-js-react-components-principals-___items-module__favorite___YJHPI.disabled ._-web-client-js-react-components-principals-___items-module__content___-JgYu {
  opacity: 0.45;
}
._-web-client-js-react-components-principals-___Search-module__header___KbURh {
  min-height: 4.55rem;
}

._-web-client-js-react-components-principals-___Search-module__search-buttons___svWAQ .dropdown {
  margin-left: 1em;
}

.icon._-web-client-js-react-components-principals-___Search-module__event-person___i-zMi {
  color: #09c;
}

._-web-client-js-react-components-principals-___Search-module__staged-label___tw6b3 {
  animation: highlight 0.5s ease-out;
}

._-web-client-js-react-components-principals-___Search-module__staged-list-item___OmO3X {
  display: flex;
  justify-content: space-between;
}
._-web-client-js-react-components-principals-___Search-module__staged-list-item___OmO3X > .icon {
  margin-left: auto;
}

._-web-client-js-react-components-principals-___Search-module__search-content___SMPzB {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

._-web-client-js-react-components-principals-___Search-module__search-content___SMPzB ._-web-client-js-react-components-principals-___Search-module__form___QVy2- {
  flex-grow: 1;
  margin-right: 2em;
}

._-web-client-js-react-components-principals-___Search-module__search-content___SMPzB ._-web-client-js-react-components-principals-___Search-module__results___iY2vl {
  flex: 1 1 60%;
}

._-web-client-js-react-components-principals-___Search-module__search-results___kelqX._-web-client-js-react-components-principals-___Search-module__disabled___gYysP {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

._-web-client-js-react-components-principals-___Search-module__search-results___kelqX ._-web-client-js-react-components-principals-___Search-module__list___bGXjn {
  max-height: 490px;
  overflow-y: auto;
}

._-web-client-js-react-components-principals-___Search-module__has-avatar___PTVvJ {
  margin-left: 8px;
}

.ui.list .item._-web-client-js-react-components-principals-___Search-module__result-item___RLpKR:first-child {
  padding-top: 0.6em;
}

.ui.list .item._-web-client-js-react-components-principals-___Search-module__result-item___RLpKR:last-child {
  padding-bottom: 0.6em;
}

.ui.list .item._-web-client-js-react-components-principals-___Search-module__result-item___RLpKR:hover {
  cursor: pointer;
  background: #f9f9f9;
}
._-web-client-js-react-components-principals-___PrincipalListField-module__list___5ui39 {
  margin-top: 0 !important;
  max-height: 200px;
  overflow-y: scroll;
}

._-web-client-js-react-components-principals-___PrincipalListField-module__empty___ffI36 {
  text-align: center;
  font-style: italic;
  color: #999;
}
._-web-client-js-react-components-principals-___PermissionTree-module__permission-tree___BQckS {
  padding: 0 1em 0.5em 1em;
}
._-web-client-js-react-components-principals-___PermissionTree-module__permission-tree___BQckS > ._-web-client-js-react-components-principals-___PermissionTree-module__permission-tree___BQckS {
  border-left: 3px solid #dfdfdf;
  padding: 0 0 0 0.3em;
  margin: 0 0 0.3em 0.3em;
}
._-web-client-js-react-components-principals-___PermissionTree-module__permission-tree___BQckS ._-web-client-js-react-components-principals-___PermissionTree-module__permission-option___d-CZm {
  padding: 0.1em 0;
}
._-web-client-js-react-components-principals-___PrincipalPermissions-module__permission-add-button___EDrOU.circular.icon {
  margin: 0.2em 0 0.2em 0.2em;
  cursor: pointer;
}
._-web-client-js-react-components-principals-___PrincipalPermissions-module__permission-add-button___EDrOU.circular.icon:hover {
  color: #bbb;
}

._-web-client-js-react-components-principals-___PrincipalPermissions-module__principal-permission___Vr1pG .ui.label {
  margin: 0.2em 0 0 0.2em;
}
._-web-client-js-react-components-principals-___PrincipalPermissions-module__principal-permission___Vr1pG .ui.icon.button i {
  margin: 0;
}
.modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  outline: none;
  padding: 0;
  width: 80%;
  max-width: 900px;
  max-height: 70vh;
}
.modal-dialog .modal-overflow-container {
  overflow-y: auto;
}
.modal-dialog .modal-dialog-content {
  padding: 1em;
  max-height: 100%;
}
.modal-dialog.modal-with-header .modal-overflow-container {
  max-height: calc(70vh - 60px);
}
.modal-dialog.modal-with-header .modal-dialog-header {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ececec;
  padding: 1em;
  height: auto;
  width: 100%;
}
.modal-dialog.modal-with-header .modal-dialog-header a.icon-cross {
  margin-left: auto;
}
.modal-dialog.modal-with-header .modal-dialog-header h2.modal-dialog-title {
  margin: 0;
  font-weight: normal;
}
.modal-dialog.modal-with-fixed-footer .modal-dialog-footer, .modal-dialog.modal-with-footer .modal-dialog-footer {
  background-color: #f9f9f9;
  border-top: 1px solid #ececec;
  padding: 1em;
  height: 60px;
  width: 100%;
}
.modal-dialog.modal-with-fixed-footer .modal-dialog-footer h2.modal-dialog-title, .modal-dialog.modal-with-footer .modal-dialog-footer h2.modal-dialog-title {
  margin: 0;
  font-weight: normal;
}
.modal-dialog.modal-with-footer .modal-overflow-container {
  max-height: calc(70vh - 60px);
}
.modal-dialog.modal-with-fixed-footer {
  position: fixed;
  height: 70vh;
}
.modal-dialog.modal-with-fixed-footer .modal-overflow-container {
  max-height: none;
  overflow-y: visible;
}
.modal-dialog.modal-with-fixed-footer .modal-dialog-content {
  position: absolute;
  overflow-y: auto;
  height: calc(100% - 60px);
}
.modal-dialog.modal-with-fixed-footer .modal-dialog-footer {
  position: absolute;
  bottom: 0;
}
.modal-dialog.modal-with-header.modal-with-footer .modal-overflow-container {
  max-height: calc(70vh - 60px - 60px);
}
.modal-dialog.modal-with-header.modal-with-fixed-footer .modal-dialog-content {
  max-height: calc(70vh - 60px - 60px);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(153, 153, 153, 0.5);
}

.modal-overlay-open {
  overflow: hidden;
}
.paginator {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin-top: 0.2em;
  margin-bottom: 1em;
}
.paginator li:not(:last-child) {
  margin-right: 0.2em;
}
.paginator .page-number,
.paginator .page-arrow {
  display: flex;
}
.datepicker-container {
  display: flex;
  justify-content: center;
  padding: 0 !important;
}

.datepicker-select {
  padding: 0 !important;
  height: 33px !important;
  width: auto !important;
}

ind-date-grid button {
  /* Workaround for design system's _utils.scss not applying in all cases */
  font: inherit;
  font-size: 1.143rem;
}

ind-calendar .month-year {
  min-width: 11em;
}

ind-calendar .month-year select {
  font: inherit;
}

ind-calendar .calendars {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
._-web-client-js-react-components-___Carousel-module__carousel___du6N2 {
  padding: 1em 0 0 0;
}
._-web-client-js-react-components-___Carousel-module__carousel___du6N2 ._-web-client-js-react-components-___Carousel-module__pane-container___SJq5m {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

._-web-client-js-react-components-___Carousel-module__carousel-page___BqmcZ {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 100%;
  transition: margin-left 1s ease-out;
}

._-web-client-js-react-components-___Carousel-module__progress-indicator___xBwTO {
  transition: background-color 0.25s ease-in;
  background-color: #dfdfdf;
  width: 100px;
  height: 2px;
  margin: 10px auto;
}
._-web-client-js-react-components-___Carousel-module__progress-indicator___xBwTO.disabled, ._-web-client-js-react-components-___Carousel-module__progress-indicator___xBwTO.disabled ._-web-client-js-react-components-___Carousel-module__progress-bar___Zgbbi {
  background-color: #f9f9f9;
}
._-web-client-js-react-components-___Carousel-module__progress-indicator___xBwTO ._-web-client-js-react-components-___Carousel-module__progress-bar___Zgbbi {
  height: 100%;
  background-color: #2185d0;
  transition: width 0.25s linear;
  width: 0;
}

._-web-client-js-react-components-___Carousel-module__pane-switcher___TE-AQ {
  list-style-type: none;
  padding: 0;
  margin: 0.5em 0 0 0;
}
._-web-client-js-react-components-___Carousel-module__pane-switcher___TE-AQ ._-web-client-js-react-components-___Carousel-module__pane-switcher-item___UiIx7 {
  display: inline-block;
  border: 1px solid #2185d0;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  cursor: pointer;
  transition: background-color 0.25s ease-in;
}
._-web-client-js-react-components-___Carousel-module__pane-switcher___TE-AQ ._-web-client-js-react-components-___Carousel-module__pane-switcher-item___UiIx7:not(:last-child) {
  margin-right: 0.5em;
}
._-web-client-js-react-components-___Carousel-module__pane-switcher___TE-AQ ._-web-client-js-react-components-___Carousel-module__pane-switcher-item___UiIx7.active {
  background-color: #2185d0;
}
.ui.button._-web-client-js-react-components-___ScrollButton-module__scroll-btn___hSnOi {
  background-color: #7dcfb6;
  color: #f9f9f9;
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  z-index: 1001;
  transition: opacity 0.25s ease-in;
}
.ui.button._-web-client-js-react-components-___ScrollButton-module__scroll-btn___hSnOi._-web-client-js-react-components-___ScrollButton-module__visible___uDQkz {
  opacity: 0.75;
}
.ui.button._-web-client-js-react-components-___ScrollButton-module__scroll-btn___hSnOi:hover, .ui.button._-web-client-js-react-components-___ScrollButton-module__scroll-btn___hSnOi:focus {
  background-color: #45ba97;
  color: #f9f9f9;
}
._-web-client-js-react-components-___StickyWithScrollBack-module__sticky-content___k8UVQ {
  margin-bottom: 10px;
}
._-web-client-js-react-components-___StickyWithScrollBack-module__sticky-content___k8UVQ > :nth-child(2) {
  z-index: 15;
  background-color: white;
}
._-web-client-js-react-components-___StickyWithScrollBack-module__sticky-content___k8UVQ.ui.stuck-container + div {
  padding-top: 130px;
}
._-web-client-js-react-components-___StickyWithScrollBack-module__sticky-content___k8UVQ .ui.sticky.fixed.top {
  padding-top: 30px;
  box-shadow: rgba(85, 85, 85, 0.2) 0 25px 30px -20px;
  transition: all, 0.25s ease-in;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.7;
  max-height: 30em;
  overflow-y: auto;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw li:not(:last-child) {
  margin-bottom: 0.3em;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw code {
  border-radius: 2px;
  font-style: normal;
  font-size: 0.9em;
  border: 1px solid #dfdfdf;
  background: #f9f9f9;
  padding: 0.1em;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw:not(._-web-client-js-react-components-___PlaceholderInfo-module__jinja___KYk68) ._-web-client-js-react-components-___PlaceholderInfo-module__description___Fruh3 {
  -webkit-user-select: none;
          user-select: none;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw ._-web-client-js-react-components-___PlaceholderInfo-module__description___Fruh3 div.highlight {
  font-family: "Liberation Mono", monospace;
  display: inline;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw ._-web-client-js-react-components-___PlaceholderInfo-module__description___Fruh3 div.highlight pre {
  display: inline;
}
._-web-client-js-react-components-___PlaceholderInfo-module__placeholder-info___wLKRw ._-web-client-js-react-components-___PlaceholderInfo-module__required___2sidJ {
  font-style: italic;
  margin-left: 0.2em;
  -webkit-user-select: none;
          user-select: none;
}
._-web-client-js-react-components-___PopoverDropdownMenu-module__trigger-container___wfbff {
  display: inline-block;
}

._-web-client-js-react-components-___PopoverDropdownMenu-module__dropdown-container___5id4F {
  padding: 2px;
  z-index: 1000;
  overflow: auto;
}
._-web-client-js-react-components-___PopoverDropdownMenu-module__dropdown-container___5id4F.ui.dropdown .menu {
  position: relative;
}
._-web-client-js-react-components-___ListFilter-module__filters-container___Vw2D6 {
  margin-left: 0.5em;
  white-space: nowrap;
}

._-web-client-js-react-components-___ListFilter-module__filters-menu___kq0uI {
  max-width: 15em;
}

._-web-client-js-react-components-___ListFilter-module__active-filters___IEgN3 {
  display: flex;
  flex-direction: column;
  margin: 0.4em;
  gap: 0.4em;
}

.ui.label._-web-client-js-react-components-___ListFilter-module__filter___wZA63 {
  display: flex;
  margin: 0;
}
.ui.label._-web-client-js-react-components-___ListFilter-module__filter___wZA63 p {
  margin-block-end: 0;
}
.ui.label._-web-client-js-react-components-___ListFilter-module__filter___wZA63 .detail {
  overflow: hidden;
}
.ui.label._-web-client-js-react-components-___ListFilter-module__filter___wZA63 .detail p {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui.label._-web-client-js-react-components-___ListFilter-module__filter___wZA63 .detail p:not(:last-child) {
  margin-block-end: 0.1em;
}
.ui.label._-web-client-js-react-components-___ListFilter-module__filter___wZA63 ._-web-client-js-react-components-___ListFilter-module__right___aOjUw {
  margin-left: auto !important;
  padding-left: 1em;
}
._-web-client-js-react-components-files-___FileArea-module__dropzone-area___M0gaU .ui.segment {
  border: 2px dashed #007cac !important;
}
._-web-client-js-react-components-files-___FileArea-module__dropzone-area___M0gaU ._-web-client-js-react-components-files-___FileArea-module__file-card___kHhHm ._-web-client-js-react-components-files-___FileArea-module__action___g6P15 {
  position: absolute;
  top: 3px;
  right: 2px;
  cursor: pointer;
}
._-web-client-js-react-components-files-___FileArea-module__dropzone-area___M0gaU ._-web-client-js-react-components-files-___FileArea-module__file-card___kHhHm .content .header {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
._-web-client-js-react-components-files-___FileArea-module__dropzone-area___M0gaU ._-web-client-js-react-components-files-___FileArea-module__file-card___kHhHm .content .header ._-web-client-js-react-components-files-___FileArea-module__filename___c2pCY {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 350px;
}
._-web-client-js-react-components-files-___FileArea-module__dropzone-area___M0gaU ._-web-client-js-react-components-files-___FileArea-module__file-card___kHhHm .ui.progress {
  margin: 0;
}
._-web-client-js-react-components-files-___FileArea-module__dropzone-area___M0gaU ._-web-client-js-react-components-files-___FileArea-module__file-selection-btn___O5Gug {
  margin-top: 10px;
  max-width: none !important;
}
@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL:active {
  box-shadow: inset 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
}

._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL {
  --button-border-color: var(--control-border-color);
  --button-text-color: var(--control-text-color);
  --button-surface-color: var(--control-clickable-surface-color);
  --button-surface-hover-color: var(--control-clickable-surface-focus-color);
  gap: var(--control-internal-gap);
  padding: var(--control-padding);
  border: 0;
  color: var(--button-text-color);
  background: var(--button-surface-color);
  line-height: 1.1;
  font-weight: bold;
}
._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL:focus, ._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL:hover {
  color: var(--button-text-color);
  background-color: var(--button-surface-hover-color);
}
._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL {
  border-radius: var(--control-border-radius);
}

._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL:disabled {
  --button-disabled-border-color: var(--control-disabled-border-color);
  --button-disabled-surface-color: var(--control-disabled-clickable-surface-color);
  --button-disabled-text-color: var(--control-disabled-text-color);
  background: var(--buttton-disabled-surface-color);
  color: var(--button-disabled-text-color);
  border-color: var(--button-disabled-border-color);
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

._-web-client-js-react-components-pictures-___Picture-module__inactive___p1bNW[class^=icon-]::before,
._-web-client-js-react-components-pictures-___Picture-module__inactive___p1bNW[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
._-web-client-js-react-components-pictures-___Picture-module__icon-agreement___-Mdat::before {
  content: "\e900";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-alarm___Llktu::before {
  content: "\e901";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-arrow-down___5UZd4::before {
  content: "\e902";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-arrow-left___2d\+bw::before {
  content: "\e903";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-arrow-right-sparse___Y0gYV::before {
  content: "\e904";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-arrow-up___N94im::before {
  content: "\e905";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-arrows-vert___ROLM0::before {
  content: "\e906";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-attachment___Kl9I6::before {
  content: "\e907";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-bell___PpRU9::before {
  content: "\e908";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-bold___ACRGJ::before {
  content: "\e909";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-book___XuM7p::before {
  content: "\e90a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-bookmark___\+ZZhH::before {
  content: "\e90b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-broadcast___kGs53::before {
  content: "\e90c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-bubble-quote___x55Bh::before {
  content: "\e90d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-bullhorn___Eh-gR::before {
  content: "\e90e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-calendar___qfKT\+::before {
  content: "\e90f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-calendar-day___WbX9Q::before {
  content: "\ea65";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-camera___uMCSs::before {
  content: "\e910";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-chart___lu6\+y::before {
  content: "\e911";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-checkbox-checked___CWwCg::before {
  content: "\e912";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-checkbox-unchecked___aC\+Cz::before {
  content: "\e913";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-checkmark___Sa-ln::before {
  content: "\e914";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-circle-small___vfKli::before {
  content: "\e915";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-clipboard___eiYh4::before {
  content: "\e916";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-close___d90En::before {
  content: "\e917";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-cloud2___wwKky::before {
  content: "\e918";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-code___xx-UA::before {
  content: "\e919";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-coins___32-OV::before {
  content: "\e91a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-collapse___vQoXU::before {
  content: "\e91b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-compass2___q24LM::before {
  content: "\e91c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-copy___O9yBr::before {
  content: "\e91d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-copy1___yuQay::before {
  content: "\e91e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-cross___H6Jee::before {
  content: "\e91f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-disable___Y6Wbz::before {
  content: "\e920";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-drag-indicator___NXoft::before {
  content: "\e99c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-dropmenu___3HoBT::before {
  content: "\e921";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-earth___8LNQx::before {
  content: "\e922";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-edit___Y78-g::before {
  content: "\e923";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-enlarge___aUGnQ::before {
  content: "\e924";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-enter___I1Prj::before {
  content: "\e925";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-equalizer___0C3Ro::before {
  content: "\e926";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-exit___JQuFp::before {
  content: "\e927";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-expand___k\+i6R::before {
  content: "\e928";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-eye___kYpr2::before {
  content: "\e929";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-eye-blocked___inSLy::before,
._-web-client-js-react-components-pictures-___Picture-module__icon-unlisted-event___AU0h6::before {
  content: "\e92a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file___jYiwY::before {
  content: "\e92b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-check___EuWGp::before {
  content: "\e92c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-content___gM\+WP::before {
  content: "\e92d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-css___BkVTB::before {
  content: "\e92e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-download___EXZPL::before {
  content: "\e92f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-excel___K3wyQ::before {
  content: "\e930";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-eye___yeggT::before {
  content: "\e931";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-filled___1inXW::before {
  content: "\e932";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-image___OLFjm::before {
  content: "\e933";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-music___BcIYR::before {
  content: "\e934";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-openoffice___sI4lz::before {
  content: "\e935";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-pdf___caFaS::before {
  content: "\e936";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-play___0\+xO7::before {
  content: "\e937";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-presentation___3RV1Z::before {
  content: "\e938";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-spreadsheet___YBfri::before {
  content: "\e939";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-text___4IRF0::before {
  content: "\e93a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-video___pFjHt::before {
  content: "\e93b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-word___p8yUi::before {
  content: "\e93c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-xml___koRZ4::before {
  content: "\e93d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-file-zip___9aU2X::before {
  content: "\e93e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-filter___SNPN7::before {
  content: "\e93f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-first___Tm9cl::before {
  content: "\e940";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-floppy___nC8Jl::before {
  content: "\e941";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-folder___Q3EAe::before {
  content: "\e942";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-folder-open___Yy0H5::before {
  content: "\e943";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-folder-plus___c3ZWE::before {
  content: "\e944";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-font-size___OBC\+l::before {
  content: "\e945";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-grid___0bqG4::before {
  content: "\e946";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-grid2___PBC2k::before {
  content: "\e947";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-hammer___a8Yu3::before {
  content: "\e948";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-handle___LGqxX::before {
  content: "\e949";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-home___dTBdL::before {
  content: "\e94a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-hour-glass2___3zDSj::before {
  content: "\e94b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-id-badge___w4d0O::before {
  content: "\e99d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-image___kvOAu::before {
  content: "\e94c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-import___y3aKd::before {
  content: "\e94d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-info___\+Wy2W::before {
  content: "\e94e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-italic___M1-I9::before {
  content: "\e94f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-key___liSpw::before {
  content: "\e950";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-key-a___IscJC::before {
  content: "\e951";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-lamp___Ng6YT::before {
  content: "\e952";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-lan___tTEdQ::before {
  content: "\e953";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-last___E5DAO::before {
  content: "\e954";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-layout___CoLnG::before {
  content: "\e955";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-link___tNU4d::before {
  content: "\e956";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-list___WyBdn::before {
  content: "\e957";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-location___\+dDmT::before {
  content: "\e958";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-lock___zuTJ3::before,
._-web-client-js-react-components-pictures-___Picture-module__icon-protection-self___qJbiC::before {
  content: "\e959";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-lock-center___qnuA8::before {
  content: "\e95a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-loop___mXJLV::before {
  content: "\e95b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-mail___rVYKz::before {
  content: "\e95c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-medal___sTc0l::before {
  content: "\e95d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-mic___jAZOQ::before {
  content: "\e95e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-mobile___gDhwo::before {
  content: "\e95f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-move___h5esr::before {
  content: "\e960";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-new___K80Wc::before {
  content: "\e961";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-next___pn-qv::before {
  content: "\e962";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-no-camera___BMVwT::before {
  content: "\e963";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-numbered-list___1LaSx::before {
  content: "\e964";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-package-download___PGXxY::before {
  content: "\e965";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-pagebreak___1ACOS::before {
  content: "\e966";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-palette___NhvbC::before {
  content: "\e967";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-phone___xueby::before {
  content: "\e968";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-play___irEli::before {
  content: "\e969";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-plus___ghGyr::before {
  content: "\e96a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-prev___F4xky::before {
  content: "\e96b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-price-tag___4IJ4R::before {
  content: "\e96c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-printer___Aloy3::before {
  content: "\e96d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-projector___wjvAA::before {
  content: "\e96e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-puzzle___Ppj8h::before {
  content: "\e96f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-qrcode___W69vg::before {
  content: "\e970";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-question___7hHyx::before {
  content: "\e971";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-quill___I3XYW::before {
  content: "\e972";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-redo___IpMOo::before {
  content: "\e973";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-remove___npmft::before {
  content: "\e974";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-rulers___c4\+Fd::before {
  content: "\e975";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-search___3JMaw::before {
  content: "\e976";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-settings___c3gtD::before {
  content: "\e977";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-seven-segment9___Eejab::before {
  content: "\e978";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-shield___lr4QO::before {
  content: "\e979";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-shrink___QPv6p::before {
  content: "\e97a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-sort___u2jvU::before {
  content: "\e97b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-sort-alpha-asc___VHws8::before {
  content: "\e97c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-sort-alpha-desc___mcLLZ::before {
  content: "\e97d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-split___Zam5v::before {
  content: "\e97e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-stack___RN940::before {
  content: "\e97f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-stack-minus___4qm7B::before {
  content: "\e980";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-stack-plus___o3LS-::before {
  content: "\e981";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-stack-text___fVRbp::before {
  content: "\e982";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-star___uxYCw::before {
  content: "\e983";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-star-empty___7c6m3::before {
  content: "\e984";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-stop___GQspy::before {
  content: "\e985";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-switchoff___xFqxi::before {
  content: "\e986";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-switchon___q1REk::before {
  content: "\e987";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-tag___Fkw6J::before {
  content: "\e988";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-text-color___Ktvrr::before {
  content: "\e989";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-textarea___GqwOG::before {
  content: "\e98a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-textfield___mwXiF::before {
  content: "\e98b";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-ticket___Q97gm::before {
  content: "\e98c";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-tilde___mR5j3::before {
  content: "\e98d";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-time___hdcI1::before {
  content: "\e98e";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-transmission___GMEg7::before {
  content: "\e98f";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-type___o34WT::before {
  content: "\e990";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-undo___kc5e8::before {
  content: "\e991";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-unlocked___rT80j::before,
._-web-client-js-react-components-pictures-___Picture-module__icon-protection-public___sqpKH::before {
  content: "\e992";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-upload___4DE-p::before {
  content: "\e993";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-user___UT4H5::before {
  content: "\e994";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-user-block___6LqaL::before {
  content: "\e995";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-user-chairperson___zC2Vq::before {
  content: "\e996";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-user-check___XuVKP::before {
  content: "\e997";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-user-reading___tHHYp::before {
  content: "\e998";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-users___3Hrf4::before {
  content: "\e999";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-warning___Kevou::before {
  content: "\e99a";
}

._-web-client-js-react-components-pictures-___Picture-module__icon-wrench___rs1OF::before {
  content: "\e99b";
}

/* animated spinner icon */
._-web-client-js-react-components-pictures-___Picture-module__icon-spinner___zqgWS::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
._-web-client-js-react-components-pictures-___Picture-module__icon-none___18mA5::before {
  content: " ";
}

._-web-client-js-react-components-pictures-___Picture-module__disabled___NvF1M ._-web-client-js-react-components-pictures-___Picture-module__icon-spinner___zqgWS::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
._-web-client-js-react-components-pictures-___Picture-module__icon-protection-public___sqpKH::before {
  color: #00c851;
}

._-web-client-js-react-components-pictures-___Picture-module__icon-protection-self___qJbiC::before {
  color: #f91f1f;
}

._-web-client-js-react-components-pictures-___Picture-module__icon-unlisted-event___AU0h6::before {
  color: #f91f1f;
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

._-web-client-js-react-components-pictures-___Picture-module__dropzone-area___m7816 .ui.segment {
  border: 2px dashed #007cac !important;
}
._-web-client-js-react-components-pictures-___Picture-module__dropzone-area___m7816 ._-web-client-js-react-components-pictures-___Picture-module__picture-card___IEaJm ._-web-client-js-react-components-pictures-___Picture-module__action___l0uiP {
  position: absolute;
  top: 3px;
  cursor: pointer;
  right: -1px;
  background-color: white;
}
._-web-client-js-react-components-pictures-___Picture-module__dropzone-area___m7816 ._-web-client-js-react-components-pictures-___Picture-module__picture-card___IEaJm .ui.progress {
  margin: 0;
}
._-web-client-js-react-components-pictures-___Picture-module__dropzone-area___m7816 ._-web-client-js-react-components-pictures-___Picture-module__picture-selection-btn___4XWJt {
  max-width: none !important;
  margin-right: auto !important;
}
._-web-client-js-react-components-pictures-___Picture-module__dropzone-area___m7816 ._-web-client-js-react-components-pictures-___Picture-module__last-picture-selection-btn___Fe56G {
  margin-left: auto !important;
  transform: translateX(-33%);
}

._-web-client-js-react-components-pictures-___Picture-module__picture-outer-div___QF2A6 {
  width: 100%;
  background-color: #444;
  border-radius: 3px;
}
._-web-client-js-react-components-pictures-___Picture-module__picture-outer-div___QF2A6 ._-web-client-js-react-components-pictures-___Picture-module__picture-inner-div___RS554 {
  color: #f9f9f9;
  width: 100%;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: cell;
}
._-web-client-js-react-components-pictures-___Picture-module__picture-outer-div___QF2A6 ._-web-client-js-react-components-pictures-___Picture-module__back___-6to0 {
  position: absolute;
  top: 25px;
  cursor: pointer;
  left: 30px;
}
._-web-client-js-react-components-pictures-___Picture-module__picture-outer-div___QF2A6 ._-web-client-js-react-components-pictures-___Picture-module__cropper-inner-div___IshQF {
  height: 90%;
}
._-web-client-js-react-components-pictures-___Picture-module__picture-outer-div___QF2A6 ._-web-client-js-react-components-pictures-___Picture-module__cropper-action-btn___FNGy\+ {
  margin-top: 30px !important;
  border-radius: 6px !important;
  max-width: none !important;
}
._-web-client-js-react-components-pictures-___Picture-module__picture-outer-div___QF2A6 ._-web-client-js-react-components-pictures-___Picture-module__cropper-action-btn___FNGy\+:last-of-type {
  margin-left: 20px !important;
}

._-web-client-js-react-components-pictures-___Picture-module__loading-overlay___2eUfY {
  position: absolute;
  top: 50%;
  left: 45%;
}

._-web-client-js-react-components-pictures-___Picture-module__hidden___HqO9e {
  display: none;
}

._-web-client-js-react-components-pictures-___Picture-module__show___6GZP0 {
  display: block;
}

._-web-client-js-react-components-pictures-___Picture-module__trigger___8bPwL {
  font-size: 120%;
}

._-web-client-js-react-components-pictures-___Picture-module__capture-controls___VkQOr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 1em;
}
/*!
 * Cropper.js v1.6.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2023-09-17T03:44:17.565Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cropper-container img {
    backface-visibility: hidden;
    display: block;
    height: 100%;
    image-orientation: 0deg;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%;
  }

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: calc(100% / 3);
    left: 0;
    top: calc(100% / 3);
    width: 100%;
  }

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: calc(100% / 3);
    top: 0;
    width: calc(100% / 3);
  }

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
  .cropper-center::after {
    background-color: #eee;
    content: ' ';
    display: block;
    position: absolute;
  }

.cropper-center::before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px;
  }

.cropper-center::after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px;
  }

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px;
  }

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px;
  }

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px;
  }

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0;
  }

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%;
  }

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px;
  }

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%;
  }

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px;
  }

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px;
  }

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px;
  }

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px;
  }

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px;
  }

@media (min-width: 768px) {

.cropper-point.point-se {
      height: 15px;
      width: 15px;
  }
    }

@media (min-width: 992px) {

.cropper-point.point-se {
      height: 10px;
      width: 10px;
  }
    }

@media (min-width: 1200px) {

.cropper-point.point-se {
      height: 5px;
      opacity: 0.75;
      width: 5px;
  }
    }

.cropper-point.point-se::before {
    background-color: #39f;
    bottom: -50%;
    content: ' ';
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%;
  }

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

._-web-client-js-react-components-___RadioButton-module__inactive___PDS7-[class^=icon-]::before,
._-web-client-js-react-components-___RadioButton-module__inactive___PDS7-[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
._-web-client-js-react-components-___RadioButton-module__icon-agreement___tnOOY::before {
  content: "\e900";
}

._-web-client-js-react-components-___RadioButton-module__icon-alarm___Eb3eM::before {
  content: "\e901";
}

._-web-client-js-react-components-___RadioButton-module__icon-arrow-down___zAJau::before {
  content: "\e902";
}

._-web-client-js-react-components-___RadioButton-module__icon-arrow-left___NEPzG::before {
  content: "\e903";
}

._-web-client-js-react-components-___RadioButton-module__icon-arrow-right-sparse___jYJ9f::before {
  content: "\e904";
}

._-web-client-js-react-components-___RadioButton-module__icon-arrow-up___qU1cH::before {
  content: "\e905";
}

._-web-client-js-react-components-___RadioButton-module__icon-arrows-vert___RL9fV::before {
  content: "\e906";
}

._-web-client-js-react-components-___RadioButton-module__icon-attachment___KoiGh::before {
  content: "\e907";
}

._-web-client-js-react-components-___RadioButton-module__icon-bell___J4WUT::before {
  content: "\e908";
}

._-web-client-js-react-components-___RadioButton-module__icon-bold___VJx0H::before {
  content: "\e909";
}

._-web-client-js-react-components-___RadioButton-module__icon-book___OXyV6::before {
  content: "\e90a";
}

._-web-client-js-react-components-___RadioButton-module__icon-bookmark___aTHQG::before {
  content: "\e90b";
}

._-web-client-js-react-components-___RadioButton-module__icon-broadcast___eYT49::before {
  content: "\e90c";
}

._-web-client-js-react-components-___RadioButton-module__icon-bubble-quote___3vpua::before {
  content: "\e90d";
}

._-web-client-js-react-components-___RadioButton-module__icon-bullhorn___O4rOt::before {
  content: "\e90e";
}

._-web-client-js-react-components-___RadioButton-module__icon-calendar___9V-PR::before {
  content: "\e90f";
}

._-web-client-js-react-components-___RadioButton-module__icon-calendar-day___j8G8O::before {
  content: "\ea65";
}

._-web-client-js-react-components-___RadioButton-module__icon-camera___ozNck::before {
  content: "\e910";
}

._-web-client-js-react-components-___RadioButton-module__icon-chart___uKLw-::before {
  content: "\e911";
}

._-web-client-js-react-components-___RadioButton-module__icon-checkbox-checked___o9Qyb::before {
  content: "\e912";
}

._-web-client-js-react-components-___RadioButton-module__icon-checkbox-unchecked___-K7Ms::before {
  content: "\e913";
}

._-web-client-js-react-components-___RadioButton-module__icon-checkmark___UHBFn::before {
  content: "\e914";
}

._-web-client-js-react-components-___RadioButton-module__icon-circle-small___hLgG6::before {
  content: "\e915";
}

._-web-client-js-react-components-___RadioButton-module__icon-clipboard___uukQH::before {
  content: "\e916";
}

._-web-client-js-react-components-___RadioButton-module__icon-close___00GP4::before {
  content: "\e917";
}

._-web-client-js-react-components-___RadioButton-module__icon-cloud2___wzXyI::before {
  content: "\e918";
}

._-web-client-js-react-components-___RadioButton-module__icon-code___ZYk4W::before {
  content: "\e919";
}

._-web-client-js-react-components-___RadioButton-module__icon-coins___f4ADp::before {
  content: "\e91a";
}

._-web-client-js-react-components-___RadioButton-module__icon-collapse___uGTXv::before {
  content: "\e91b";
}

._-web-client-js-react-components-___RadioButton-module__icon-compass2___tCpuk::before {
  content: "\e91c";
}

._-web-client-js-react-components-___RadioButton-module__icon-copy___YOuX4::before {
  content: "\e91d";
}

._-web-client-js-react-components-___RadioButton-module__icon-copy1___6hZoJ::before {
  content: "\e91e";
}

._-web-client-js-react-components-___RadioButton-module__icon-cross___1DGyG::before {
  content: "\e91f";
}

._-web-client-js-react-components-___RadioButton-module__icon-disable___5UBxX::before {
  content: "\e920";
}

._-web-client-js-react-components-___RadioButton-module__icon-drag-indicator___lXilW::before {
  content: "\e99c";
}

._-web-client-js-react-components-___RadioButton-module__icon-dropmenu___c7no6::before {
  content: "\e921";
}

._-web-client-js-react-components-___RadioButton-module__icon-earth___UsMU-::before {
  content: "\e922";
}

._-web-client-js-react-components-___RadioButton-module__icon-edit___C-TAl::before {
  content: "\e923";
}

._-web-client-js-react-components-___RadioButton-module__icon-enlarge___7JHQU::before {
  content: "\e924";
}

._-web-client-js-react-components-___RadioButton-module__icon-enter___R9WS5::before {
  content: "\e925";
}

._-web-client-js-react-components-___RadioButton-module__icon-equalizer___9pP0p::before {
  content: "\e926";
}

._-web-client-js-react-components-___RadioButton-module__icon-exit___GKh\+E::before {
  content: "\e927";
}

._-web-client-js-react-components-___RadioButton-module__icon-expand___jBTXl::before {
  content: "\e928";
}

._-web-client-js-react-components-___RadioButton-module__icon-eye___dvQl3::before {
  content: "\e929";
}

._-web-client-js-react-components-___RadioButton-module__icon-eye-blocked___emUBK::before,
._-web-client-js-react-components-___RadioButton-module__icon-unlisted-event___\+-bov::before {
  content: "\e92a";
}

._-web-client-js-react-components-___RadioButton-module__icon-file___d57n8::before {
  content: "\e92b";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-check___Rbzdv::before {
  content: "\e92c";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-content___O3R4o::before {
  content: "\e92d";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-css___3BoBa::before {
  content: "\e92e";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-download___SBte1::before {
  content: "\e92f";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-excel___J3VmD::before {
  content: "\e930";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-eye___n\+kOp::before {
  content: "\e931";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-filled___EiaJ-::before {
  content: "\e932";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-image___mMJVb::before {
  content: "\e933";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-music___pQB6G::before {
  content: "\e934";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-openoffice___h7HUe::before {
  content: "\e935";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-pdf___ero5e::before {
  content: "\e936";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-play___\+HAeS::before {
  content: "\e937";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-presentation___gKdni::before {
  content: "\e938";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-spreadsheet___NOAUP::before {
  content: "\e939";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-text___rG9cB::before {
  content: "\e93a";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-video___t5htR::before {
  content: "\e93b";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-word___vIx3i::before {
  content: "\e93c";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-xml___JEi9E::before {
  content: "\e93d";
}

._-web-client-js-react-components-___RadioButton-module__icon-file-zip___cEHNO::before {
  content: "\e93e";
}

._-web-client-js-react-components-___RadioButton-module__icon-filter___4FFGv::before {
  content: "\e93f";
}

._-web-client-js-react-components-___RadioButton-module__icon-first___TGkQC::before {
  content: "\e940";
}

._-web-client-js-react-components-___RadioButton-module__icon-floppy___GETqC::before {
  content: "\e941";
}

._-web-client-js-react-components-___RadioButton-module__icon-folder___6SrTn::before {
  content: "\e942";
}

._-web-client-js-react-components-___RadioButton-module__icon-folder-open___wayER::before {
  content: "\e943";
}

._-web-client-js-react-components-___RadioButton-module__icon-folder-plus___q6Ca2::before {
  content: "\e944";
}

._-web-client-js-react-components-___RadioButton-module__icon-font-size___EZluK::before {
  content: "\e945";
}

._-web-client-js-react-components-___RadioButton-module__icon-grid___XlcXz::before {
  content: "\e946";
}

._-web-client-js-react-components-___RadioButton-module__icon-grid2___2puW1::before {
  content: "\e947";
}

._-web-client-js-react-components-___RadioButton-module__icon-hammer___XzS71::before {
  content: "\e948";
}

._-web-client-js-react-components-___RadioButton-module__icon-handle___zLXl9::before {
  content: "\e949";
}

._-web-client-js-react-components-___RadioButton-module__icon-home___s6lyI::before {
  content: "\e94a";
}

._-web-client-js-react-components-___RadioButton-module__icon-hour-glass2___2Jgtz::before {
  content: "\e94b";
}

._-web-client-js-react-components-___RadioButton-module__icon-id-badge___mP9JG::before {
  content: "\e99d";
}

._-web-client-js-react-components-___RadioButton-module__icon-image___WWcdr::before {
  content: "\e94c";
}

._-web-client-js-react-components-___RadioButton-module__icon-import___THt\+8::before {
  content: "\e94d";
}

._-web-client-js-react-components-___RadioButton-module__icon-info___lsD3u::before {
  content: "\e94e";
}

._-web-client-js-react-components-___RadioButton-module__icon-italic___Csa5u::before {
  content: "\e94f";
}

._-web-client-js-react-components-___RadioButton-module__icon-key___Jie7c::before {
  content: "\e950";
}

._-web-client-js-react-components-___RadioButton-module__icon-key-a___eHxPt::before {
  content: "\e951";
}

._-web-client-js-react-components-___RadioButton-module__icon-lamp___3IESe::before {
  content: "\e952";
}

._-web-client-js-react-components-___RadioButton-module__icon-lan___MJt5k::before {
  content: "\e953";
}

._-web-client-js-react-components-___RadioButton-module__icon-last___77d0u::before {
  content: "\e954";
}

._-web-client-js-react-components-___RadioButton-module__icon-layout___Ncg0s::before {
  content: "\e955";
}

._-web-client-js-react-components-___RadioButton-module__icon-link___YmGoa::before {
  content: "\e956";
}

._-web-client-js-react-components-___RadioButton-module__icon-list___vJMNs::before {
  content: "\e957";
}

._-web-client-js-react-components-___RadioButton-module__icon-location___hLpxU::before {
  content: "\e958";
}

._-web-client-js-react-components-___RadioButton-module__icon-lock___uu1n5::before,
._-web-client-js-react-components-___RadioButton-module__icon-protection-self___XZ8h7::before {
  content: "\e959";
}

._-web-client-js-react-components-___RadioButton-module__icon-lock-center___TozDG::before {
  content: "\e95a";
}

._-web-client-js-react-components-___RadioButton-module__icon-loop___deATI::before {
  content: "\e95b";
}

._-web-client-js-react-components-___RadioButton-module__icon-mail___XF98j::before {
  content: "\e95c";
}

._-web-client-js-react-components-___RadioButton-module__icon-medal___Cy0TK::before {
  content: "\e95d";
}

._-web-client-js-react-components-___RadioButton-module__icon-mic___iWSPa::before {
  content: "\e95e";
}

._-web-client-js-react-components-___RadioButton-module__icon-mobile___b3JBu::before {
  content: "\e95f";
}

._-web-client-js-react-components-___RadioButton-module__icon-move___\+kSvC::before {
  content: "\e960";
}

._-web-client-js-react-components-___RadioButton-module__icon-new___z2kfm::before {
  content: "\e961";
}

._-web-client-js-react-components-___RadioButton-module__icon-next___tZYiG::before {
  content: "\e962";
}

._-web-client-js-react-components-___RadioButton-module__icon-no-camera___C9mun::before {
  content: "\e963";
}

._-web-client-js-react-components-___RadioButton-module__icon-numbered-list___fF5xD::before {
  content: "\e964";
}

._-web-client-js-react-components-___RadioButton-module__icon-package-download___NTRBK::before {
  content: "\e965";
}

._-web-client-js-react-components-___RadioButton-module__icon-pagebreak___l2lwm::before {
  content: "\e966";
}

._-web-client-js-react-components-___RadioButton-module__icon-palette___A30D-::before {
  content: "\e967";
}

._-web-client-js-react-components-___RadioButton-module__icon-phone___hT8hR::before {
  content: "\e968";
}

._-web-client-js-react-components-___RadioButton-module__icon-play___N3epM::before {
  content: "\e969";
}

._-web-client-js-react-components-___RadioButton-module__icon-plus___RDJ0v::before {
  content: "\e96a";
}

._-web-client-js-react-components-___RadioButton-module__icon-prev___RTzlR::before {
  content: "\e96b";
}

._-web-client-js-react-components-___RadioButton-module__icon-price-tag___vAjoy::before {
  content: "\e96c";
}

._-web-client-js-react-components-___RadioButton-module__icon-printer___ZiR5L::before {
  content: "\e96d";
}

._-web-client-js-react-components-___RadioButton-module__icon-projector___z4HO\+::before {
  content: "\e96e";
}

._-web-client-js-react-components-___RadioButton-module__icon-puzzle___Q4lkX::before {
  content: "\e96f";
}

._-web-client-js-react-components-___RadioButton-module__icon-qrcode___\+AJAd::before {
  content: "\e970";
}

._-web-client-js-react-components-___RadioButton-module__icon-question___piY6S::before {
  content: "\e971";
}

._-web-client-js-react-components-___RadioButton-module__icon-quill___lI9P2::before {
  content: "\e972";
}

._-web-client-js-react-components-___RadioButton-module__icon-redo___vEssC::before {
  content: "\e973";
}

._-web-client-js-react-components-___RadioButton-module__icon-remove___xcWTp::before {
  content: "\e974";
}

._-web-client-js-react-components-___RadioButton-module__icon-rulers___0eDN7::before {
  content: "\e975";
}

._-web-client-js-react-components-___RadioButton-module__icon-search___qG1jA::before {
  content: "\e976";
}

._-web-client-js-react-components-___RadioButton-module__icon-settings___n-YNA::before {
  content: "\e977";
}

._-web-client-js-react-components-___RadioButton-module__icon-seven-segment9___ir4I8::before {
  content: "\e978";
}

._-web-client-js-react-components-___RadioButton-module__icon-shield___Xvbvr::before {
  content: "\e979";
}

._-web-client-js-react-components-___RadioButton-module__icon-shrink___usK42::before {
  content: "\e97a";
}

._-web-client-js-react-components-___RadioButton-module__icon-sort___55WMO::before {
  content: "\e97b";
}

._-web-client-js-react-components-___RadioButton-module__icon-sort-alpha-asc___Y7Mgn::before {
  content: "\e97c";
}

._-web-client-js-react-components-___RadioButton-module__icon-sort-alpha-desc___ZjIWf::before {
  content: "\e97d";
}

._-web-client-js-react-components-___RadioButton-module__icon-split___GhE4O::before {
  content: "\e97e";
}

._-web-client-js-react-components-___RadioButton-module__icon-stack___RYQHs::before {
  content: "\e97f";
}

._-web-client-js-react-components-___RadioButton-module__icon-stack-minus___\+mmPS::before {
  content: "\e980";
}

._-web-client-js-react-components-___RadioButton-module__icon-stack-plus___z2Ekw::before {
  content: "\e981";
}

._-web-client-js-react-components-___RadioButton-module__icon-stack-text___AqvqI::before {
  content: "\e982";
}

._-web-client-js-react-components-___RadioButton-module__icon-star___MW5Hn::before {
  content: "\e983";
}

._-web-client-js-react-components-___RadioButton-module__icon-star-empty___zVPE4::before {
  content: "\e984";
}

._-web-client-js-react-components-___RadioButton-module__icon-stop___I7rrl::before {
  content: "\e985";
}

._-web-client-js-react-components-___RadioButton-module__icon-switchoff___jE817::before {
  content: "\e986";
}

._-web-client-js-react-components-___RadioButton-module__icon-switchon___GtqXx::before {
  content: "\e987";
}

._-web-client-js-react-components-___RadioButton-module__icon-tag___\+B6u2::before {
  content: "\e988";
}

._-web-client-js-react-components-___RadioButton-module__icon-text-color___9\+5zD::before {
  content: "\e989";
}

._-web-client-js-react-components-___RadioButton-module__icon-textarea___m7qjr::before {
  content: "\e98a";
}

._-web-client-js-react-components-___RadioButton-module__icon-textfield___r0Eki::before {
  content: "\e98b";
}

._-web-client-js-react-components-___RadioButton-module__icon-ticket___zb5C2::before {
  content: "\e98c";
}

._-web-client-js-react-components-___RadioButton-module__icon-tilde___W1PXe::before {
  content: "\e98d";
}

._-web-client-js-react-components-___RadioButton-module__icon-time___vSjQ7::before {
  content: "\e98e";
}

._-web-client-js-react-components-___RadioButton-module__icon-transmission___Jdeco::before {
  content: "\e98f";
}

._-web-client-js-react-components-___RadioButton-module__icon-type___4C-Mc::before {
  content: "\e990";
}

._-web-client-js-react-components-___RadioButton-module__icon-undo___j-j5l::before {
  content: "\e991";
}

._-web-client-js-react-components-___RadioButton-module__icon-unlocked___OMwAE::before,
._-web-client-js-react-components-___RadioButton-module__icon-protection-public___vjw-S::before {
  content: "\e992";
}

._-web-client-js-react-components-___RadioButton-module__icon-upload___OLzaZ::before {
  content: "\e993";
}

._-web-client-js-react-components-___RadioButton-module__icon-user___MBy7y::before {
  content: "\e994";
}

._-web-client-js-react-components-___RadioButton-module__icon-user-block___lEMcm::before {
  content: "\e995";
}

._-web-client-js-react-components-___RadioButton-module__icon-user-chairperson___9qHKJ::before {
  content: "\e996";
}

._-web-client-js-react-components-___RadioButton-module__icon-user-check___MnSul::before {
  content: "\e997";
}

._-web-client-js-react-components-___RadioButton-module__icon-user-reading___6ivpW::before {
  content: "\e998";
}

._-web-client-js-react-components-___RadioButton-module__icon-users___S0Yct::before {
  content: "\e999";
}

._-web-client-js-react-components-___RadioButton-module__icon-warning___Iy6U\+::before {
  content: "\e99a";
}

._-web-client-js-react-components-___RadioButton-module__icon-wrench___UGwSs::before {
  content: "\e99b";
}

/* animated spinner icon */
._-web-client-js-react-components-___RadioButton-module__icon-spinner___hm4tz::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
._-web-client-js-react-components-___RadioButton-module__icon-none___9Why\+::before {
  content: " ";
}

._-web-client-js-react-components-___RadioButton-module__disabled___9uoFy ._-web-client-js-react-components-___RadioButton-module__icon-spinner___hm4tz::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
._-web-client-js-react-components-___RadioButton-module__icon-protection-public___vjw-S::before {
  color: #00c851;
}

._-web-client-js-react-components-___RadioButton-module__icon-protection-self___XZ8h7::before {
  color: #f91f1f;
}

._-web-client-js-react-components-___RadioButton-module__icon-unlisted-event___\+-bov::before {
  color: #f91f1f;
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

._-web-client-js-react-components-___RadioButton-module__radio-label___wtdzt {
  display: inline-flex;
  gap: var(--content-gap-normal);
  align-items: center;
}

._-web-client-js-react-components-___RadioButton-module__radio___\+LkES {
  --radio-size: 1.2em;
  flex: none;
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--radio-size);
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 50%;
}
._-web-client-js-react-components-___RadioButton-module__radio___\+LkES:disabled {
  border: 1px solid rgba(34, 36, 38, 0.15);
}
._-web-client-js-react-components-___RadioButton-module__radio___\+LkES:focus {
  border: 1px solid #85b7d9;
}
._-web-client-js-react-components-___RadioButton-module__radio___\+LkES::before {
  content: "";
  display: inline-block;
  width: calc(0.5 * var(--radio-size));
  aspect-ratio: 1;
  border-radius: 50%;
}
._-web-client-js-react-components-___RadioButton-module__radio___\+LkES:checked::before {
  background-color: currentcolor;
}
._-web-client-js-react-components-___RadioButton-module__radio___\+LkES:disabled:checked::before {
  background-color: rgba(34, 36, 38, 0.15);
}
._-web-client-js-react-components-___ReviewRating-module__rating-field___vt7ye {
  display: flex;
  align-items: center;
}
._-web-client-js-react-components-___ReviewRating-module__rating-field___vt7ye .active.icon::before,
._-web-client-js-react-components-___ReviewRating-module__rating-field___vt7ye .selected.icon::before {
  color: #09c;
}
._-web-client-js-react-components-___ReviewRating-module__rating-field___vt7ye ._-web-client-js-react-components-___ReviewRating-module__rating-value___plN2U {
  margin-left: 5px;
  text-align: center;
  min-width: 15px;
}
._-web-client-js-react-components-___MarkdownEditor-module__markdown-editor___o1Nw7 .rc-md-editor .editor-container .sec-md .input {
  font-family: "Liberation Mono", monospace;
  max-height: 100%;
}
._-web-client-js-react-components-___MarkdownEditor-module__markdown-editor___o1Nw7 .custom-html-style ul {
  margin: 0;
}
._-web-client-js-react-components-___MarkdownEditor-module__markdown-editor___o1Nw7 .custom-html-style li {
  margin-bottom: 0;
}
.tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:2px solid #eee;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:2px solid #eee;border-radius:10px;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(0,101,216,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.08);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#c00}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#c00}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#527530}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#eee;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #006ce7,0 0 0 3px rgba(0,108,231,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#7daee4;background-image:none;border-color:#7daee4;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked[disabled]{background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:rgba(34,47,62,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:rgba(34,47,62,.18);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,.3)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#e3e3e3;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#fcfcfc;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#fff;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active{background-color:#cce2fa}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#cce2fa}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#cce2fa;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(34,47,62,.7);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#222f3e}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #e3e3e3;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#cce2fa}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#fff;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,.7)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}.tox .tox-dialog{background-color:#fff;border-color:#eee;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #006ce7;color:#006ce7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#006ce7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#003c81;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #006ce7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#00244e;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#222f3e}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #626262}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #eee;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #eee;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #eee}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:0 2px 2px -2px rgba(34,47,62,.1),0 8px 8px -4px rgba(34,47,62,.07);padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #e3e3e3;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#222f3e}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#eee;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(0,108,231,.5);border-color:rgba(0,108,231,.5)}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#fff;border:1px solid transparent;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn--active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}.tox .tox-notification--success p{color:#222f3e}.tox .tox-notification--success a{color:#517342}.tox .tox-notification--success svg{fill:#222f3e}.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}.tox .tox-notification--error p{color:#222f3e}.tox .tox-notification--error a{color:#77181f}.tox .tox-notification--error svg{fill:#222f3e}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}.tox .tox-notification--info p{color:#222f3e}.tox .tox-notification--info a{color:#2a64a6}.tox .tox-notification--info svg{fill:#222f3e}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#eee transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #eee transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #eee transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #eee;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#fff;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #eee;border-radius:6px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #e3e3e3;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#dee0e2;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px #dee0e2}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#222f3e}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#cce2fa;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:42px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:#f7f7f7;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#cce2fa}.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#cce2fa;color:#222f3e}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button{background:#f7f7f7;color:#222f3e;height:28px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#cce2fa}.tox .tox-number-input button:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:hover svg{fill:#222f3e}.tox .tox-number-input button:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:active svg{fill:#222f3e}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#cce2fa}.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--bespoke{background:#f7f7f7}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:4px}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:6px 1px 5px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #cce2fa inset}.tox .tox-split-button:focus{background:#cce2fa;box-shadow:none;color:#222f3e}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#fff}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#e3e3e3 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:6px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}.tox .tox-tree .tox-trbtn:focus{background:#cce2fa;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #eee;border-radius:6px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #eee;border-radius:6px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #eee;border-radius:6px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}

/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	/* This background color was intended by the author of this theme. */
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

._-web-client-js-react-components-notes-___ConflictModal-module__conflict-content___0ve6d {
  height: 50vh;
  max-height: 50vh;
  overflow-y: auto;
}

._-web-client-js-react-components-notes-___ConflictModal-module__revision-deleted___DolBf {
  height: 52.5vh;
}

._-web-client-js-react-components-notes-___ConflictModal-module__column-divider___CD2D1 {
  box-shadow: none !important;
  border-left: 1px solid #d4d4d5;
}

._-web-client-js-react-components-notes-___ConflictModal-module__last-modified-text___2fnqA {
  border-bottom: 1px dotted;
}

._-web-client-js-react-components-notes-___ConflictModal-module__action-button-icons___HeTXF .icon::before {
  margin-right: 0.25em;
}

._-web-client-js-react-components-notes-___ConflictModal-module__action-button-text___zk0S9 {
  margin: 0 0.25em;
}
._-web-client-js-react-components-___WTFPrincipalListField-module__opaque___gawbB {
  background-color: #f9f9f9;
  padding: 15px !important;
}
._-web-client-js-react-components-___WTFPrincipalField-module__fixed-width___hi1iT {
  width: 400px;
}
._-web-client-js-react-components-___WTFSearchDropdown-module__dropdown___0aBak.ui.multiple.search.dropdown input[type="text"].search {
  margin: 0 0.64285714em;
  height: 2em;
}
._-web-client-js-react-components-___WTFSearchDropdown-module__dropdown___0aBak.ui.multiple.search.dropdown a.label {
  cursor: default;
}
._-web-client-js-react-components-___ICSCalendarLink-module__height-full___k4w1E {
  height: 100%;
}

._-web-client-js-react-components-___ICSCalendarLink-module__export-header___j34XM.ui.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

._-web-client-js-react-components-___ICSCalendarLink-module__export-header___j34XM.ui.header:first-child {
  margin-top: 0.5em;
}

._-web-client-js-react-components-___ICSCalendarLink-module__export-header___j34XM .ui.left.labeled.button {
  cursor: initial;
}

._-web-client-js-react-components-___ICSCalendarLink-module__export-event-series___dLo1J {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

._-web-client-js-react-components-___ICSCalendarLink-module__export-option___5zu94 {
  display: block;
  text-align: center;
  margin: 1rem 0 0.5rem 0;
}

._-web-client-js-react-components-___ICSCalendarLink-module__export-option___5zu94::before,
._-web-client-js-react-components-___ICSCalendarLink-module__export-option___5zu94::after {
  box-shadow: 1px 1px 1px #f9f9f9;
  background-color: #dfdfdf;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 10%;
  margin: 0 0.5rem;
}

._-web-client-js-react-components-___ICSCalendarLink-module__download-button___smVhJ.ui.icon.button {
  display: flex;
  align-items: center;
  margin: 0 0 0 0.5rem;
  height: 2.125rem;
}

._-web-client-js-react-components-___ICSCalendarLink-module__download-option___KUmz0 {
  display: flex;
  align-items: center;
}

._-web-client-js-react-components-___ICSCalendarLink-module__popup___G4hXJ.ui.wide.popup {
  display: inline-flex;
  min-width: 350px;
  max-width: unset;
}

._-web-client-js-react-components-___ICSCalendarLink-module__popup___G4hXJ ._-web-client-js-react-components-___ICSCalendarLink-module__content___uiKlY {
  width: 0;
  min-width: 100%;
}

._-web-client-js-react-components-___ICSCalendarLink-module__button-group___5kQs1 .ui.labeled.button button.ui.button:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
._-web-client-js-react-components-___PersonDetailsModal-module__email-buttons___1LdGQ {
  text-align: right;
  margin-top: 1em;
}
._-web-client-js-react-components-___PersonDetailsModal-module__email-buttons___1LdGQ button {
  float: unset;
}
@charset "UTF-8";
body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

.ui.form .field > ._-web-client-js-react-components-___Captcha-module__captcha-answer___zypbP {
  --flex-gap: var(--content-gap-normal);
  display: flex;
  flex-direction: column;
  gap: var(--flex-gap);
}

._-web-client-js-react-components-___Captcha-module__captcha-control___JMU5C > span:first-child {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

._-web-client-js-react-components-___Captcha-module__inactive___wF99S[class^=icon-]::before,
._-web-client-js-react-components-___Captcha-module__inactive___wF99S[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
._-web-client-js-react-components-___Captcha-module__icon-agreement___n3tIw::before {
  content: "\e900";
}

._-web-client-js-react-components-___Captcha-module__icon-alarm___HkF9b::before {
  content: "\e901";
}

._-web-client-js-react-components-___Captcha-module__icon-arrow-down___ds21E::before {
  content: "\e902";
}

._-web-client-js-react-components-___Captcha-module__icon-arrow-left___JAPYF::before {
  content: "\e903";
}

._-web-client-js-react-components-___Captcha-module__icon-arrow-right-sparse___OyChc::before {
  content: "\e904";
}

._-web-client-js-react-components-___Captcha-module__icon-arrow-up___hF6SA::before {
  content: "\e905";
}

._-web-client-js-react-components-___Captcha-module__icon-arrows-vert___MILH8::before {
  content: "\e906";
}

._-web-client-js-react-components-___Captcha-module__icon-attachment___o3gnE::before {
  content: "\e907";
}

._-web-client-js-react-components-___Captcha-module__icon-bell___4znx1::before {
  content: "\e908";
}

._-web-client-js-react-components-___Captcha-module__icon-bold___7WYqb::before {
  content: "\e909";
}

._-web-client-js-react-components-___Captcha-module__icon-book___bk4mv::before {
  content: "\e90a";
}

._-web-client-js-react-components-___Captcha-module__icon-bookmark___eGHOU::before {
  content: "\e90b";
}

._-web-client-js-react-components-___Captcha-module__icon-broadcast___9ugn0::before {
  content: "\e90c";
}

._-web-client-js-react-components-___Captcha-module__icon-bubble-quote___q1QF\+::before {
  content: "\e90d";
}

._-web-client-js-react-components-___Captcha-module__icon-bullhorn___5oD8\+::before {
  content: "\e90e";
}

._-web-client-js-react-components-___Captcha-module__icon-calendar___xNJsL::before {
  content: "\e90f";
}

._-web-client-js-react-components-___Captcha-module__icon-calendar-day___5R0ai::before {
  content: "\ea65";
}

._-web-client-js-react-components-___Captcha-module__icon-camera___o245U::before {
  content: "\e910";
}

._-web-client-js-react-components-___Captcha-module__icon-chart___MQJpS::before {
  content: "\e911";
}

._-web-client-js-react-components-___Captcha-module__icon-checkbox-checked___9Cmzh::before {
  content: "\e912";
}

._-web-client-js-react-components-___Captcha-module__icon-checkbox-unchecked___LTSj9::before {
  content: "\e913";
}

._-web-client-js-react-components-___Captcha-module__icon-checkmark___r5tQS::before {
  content: "\e914";
}

._-web-client-js-react-components-___Captcha-module__icon-circle-small___lxPQb::before {
  content: "\e915";
}

._-web-client-js-react-components-___Captcha-module__icon-clipboard___mHLej::before {
  content: "\e916";
}

._-web-client-js-react-components-___Captcha-module__icon-close___ZpW-n::before {
  content: "\e917";
}

._-web-client-js-react-components-___Captcha-module__icon-cloud2___VSA0L::before {
  content: "\e918";
}

._-web-client-js-react-components-___Captcha-module__icon-code___\+qs2k::before {
  content: "\e919";
}

._-web-client-js-react-components-___Captcha-module__icon-coins___3uaxs::before {
  content: "\e91a";
}

._-web-client-js-react-components-___Captcha-module__icon-collapse___ly9Hr::before {
  content: "\e91b";
}

._-web-client-js-react-components-___Captcha-module__icon-compass2___rAU9E::before {
  content: "\e91c";
}

._-web-client-js-react-components-___Captcha-module__icon-copy___AVjuS::before {
  content: "\e91d";
}

._-web-client-js-react-components-___Captcha-module__icon-copy1___G6jUh::before {
  content: "\e91e";
}

._-web-client-js-react-components-___Captcha-module__icon-cross___212Hd::before {
  content: "\e91f";
}

._-web-client-js-react-components-___Captcha-module__icon-disable___u-qgy::before {
  content: "\e920";
}

._-web-client-js-react-components-___Captcha-module__icon-drag-indicator___cc6c3::before {
  content: "\e99c";
}

._-web-client-js-react-components-___Captcha-module__icon-dropmenu___3PzBI::before {
  content: "\e921";
}

._-web-client-js-react-components-___Captcha-module__icon-earth___Fnh8s::before {
  content: "\e922";
}

._-web-client-js-react-components-___Captcha-module__icon-edit___R37M4::before {
  content: "\e923";
}

._-web-client-js-react-components-___Captcha-module__icon-enlarge___bYpBM::before {
  content: "\e924";
}

._-web-client-js-react-components-___Captcha-module__icon-enter___Yc2wV::before {
  content: "\e925";
}

._-web-client-js-react-components-___Captcha-module__icon-equalizer___DxDYt::before {
  content: "\e926";
}

._-web-client-js-react-components-___Captcha-module__icon-exit___-Oo83::before {
  content: "\e927";
}

._-web-client-js-react-components-___Captcha-module__icon-expand___T48UK::before {
  content: "\e928";
}

._-web-client-js-react-components-___Captcha-module__icon-eye___lkM1\+::before {
  content: "\e929";
}

._-web-client-js-react-components-___Captcha-module__icon-eye-blocked___L79Ed::before,
._-web-client-js-react-components-___Captcha-module__icon-unlisted-event___f6oh-::before {
  content: "\e92a";
}

._-web-client-js-react-components-___Captcha-module__icon-file___93sV1::before {
  content: "\e92b";
}

._-web-client-js-react-components-___Captcha-module__icon-file-check___8NjmB::before {
  content: "\e92c";
}

._-web-client-js-react-components-___Captcha-module__icon-file-content___omiNu::before {
  content: "\e92d";
}

._-web-client-js-react-components-___Captcha-module__icon-file-css___x6KZg::before {
  content: "\e92e";
}

._-web-client-js-react-components-___Captcha-module__icon-file-download___a-bQC::before {
  content: "\e92f";
}

._-web-client-js-react-components-___Captcha-module__icon-file-excel___\+93Hr::before {
  content: "\e930";
}

._-web-client-js-react-components-___Captcha-module__icon-file-eye___fEY4-::before {
  content: "\e931";
}

._-web-client-js-react-components-___Captcha-module__icon-file-filled___pJ9sS::before {
  content: "\e932";
}

._-web-client-js-react-components-___Captcha-module__icon-file-image___JjrRF::before {
  content: "\e933";
}

._-web-client-js-react-components-___Captcha-module__icon-file-music___WkzD1::before {
  content: "\e934";
}

._-web-client-js-react-components-___Captcha-module__icon-file-openoffice___HRazW::before {
  content: "\e935";
}

._-web-client-js-react-components-___Captcha-module__icon-file-pdf___NcAOF::before {
  content: "\e936";
}

._-web-client-js-react-components-___Captcha-module__icon-file-play___zT-sF::before {
  content: "\e937";
}

._-web-client-js-react-components-___Captcha-module__icon-file-presentation___aSGIp::before {
  content: "\e938";
}

._-web-client-js-react-components-___Captcha-module__icon-file-spreadsheet___-1ufT::before {
  content: "\e939";
}

._-web-client-js-react-components-___Captcha-module__icon-file-text___N-uJA::before {
  content: "\e93a";
}

._-web-client-js-react-components-___Captcha-module__icon-file-video___J\+fyD::before {
  content: "\e93b";
}

._-web-client-js-react-components-___Captcha-module__icon-file-word___5bGF1::before {
  content: "\e93c";
}

._-web-client-js-react-components-___Captcha-module__icon-file-xml___GUquV::before {
  content: "\e93d";
}

._-web-client-js-react-components-___Captcha-module__icon-file-zip___IoXfo::before {
  content: "\e93e";
}

._-web-client-js-react-components-___Captcha-module__icon-filter___ITicJ::before {
  content: "\e93f";
}

._-web-client-js-react-components-___Captcha-module__icon-first___1C-Qo::before {
  content: "\e940";
}

._-web-client-js-react-components-___Captcha-module__icon-floppy___EmMw9::before {
  content: "\e941";
}

._-web-client-js-react-components-___Captcha-module__icon-folder___fyQ6-::before {
  content: "\e942";
}

._-web-client-js-react-components-___Captcha-module__icon-folder-open___jnWKv::before {
  content: "\e943";
}

._-web-client-js-react-components-___Captcha-module__icon-folder-plus___9M4wV::before {
  content: "\e944";
}

._-web-client-js-react-components-___Captcha-module__icon-font-size___5\+7l1::before {
  content: "\e945";
}

._-web-client-js-react-components-___Captcha-module__icon-grid___Rt9vP::before {
  content: "\e946";
}

._-web-client-js-react-components-___Captcha-module__icon-grid2___Nabm9::before {
  content: "\e947";
}

._-web-client-js-react-components-___Captcha-module__icon-hammer___E9xje::before {
  content: "\e948";
}

._-web-client-js-react-components-___Captcha-module__icon-handle___XQ6kr::before {
  content: "\e949";
}

._-web-client-js-react-components-___Captcha-module__icon-home___AcQOm::before {
  content: "\e94a";
}

._-web-client-js-react-components-___Captcha-module__icon-hour-glass2___-xURX::before {
  content: "\e94b";
}

._-web-client-js-react-components-___Captcha-module__icon-id-badge___ER7fZ::before {
  content: "\e99d";
}

._-web-client-js-react-components-___Captcha-module__icon-image___vMFGo::before {
  content: "\e94c";
}

._-web-client-js-react-components-___Captcha-module__icon-import___6YcMn::before {
  content: "\e94d";
}

._-web-client-js-react-components-___Captcha-module__icon-info___OkTEo::before {
  content: "\e94e";
}

._-web-client-js-react-components-___Captcha-module__icon-italic___hMFTk::before {
  content: "\e94f";
}

._-web-client-js-react-components-___Captcha-module__icon-key___24i87::before {
  content: "\e950";
}

._-web-client-js-react-components-___Captcha-module__icon-key-a___eAMM-::before {
  content: "\e951";
}

._-web-client-js-react-components-___Captcha-module__icon-lamp___NHNdZ::before {
  content: "\e952";
}

._-web-client-js-react-components-___Captcha-module__icon-lan___pEb98::before {
  content: "\e953";
}

._-web-client-js-react-components-___Captcha-module__icon-last___-mC47::before {
  content: "\e954";
}

._-web-client-js-react-components-___Captcha-module__icon-layout___OasM6::before {
  content: "\e955";
}

._-web-client-js-react-components-___Captcha-module__icon-link___VloqI::before {
  content: "\e956";
}

._-web-client-js-react-components-___Captcha-module__icon-list___N4zTO::before {
  content: "\e957";
}

._-web-client-js-react-components-___Captcha-module__icon-location___flbht::before {
  content: "\e958";
}

._-web-client-js-react-components-___Captcha-module__icon-lock___7mKDt::before,
._-web-client-js-react-components-___Captcha-module__icon-protection-self___oFFur::before {
  content: "\e959";
}

._-web-client-js-react-components-___Captcha-module__icon-lock-center___svzwM::before {
  content: "\e95a";
}

._-web-client-js-react-components-___Captcha-module__icon-loop___Curfi::before {
  content: "\e95b";
}

._-web-client-js-react-components-___Captcha-module__icon-mail___7HB4m::before {
  content: "\e95c";
}

._-web-client-js-react-components-___Captcha-module__icon-medal___EMDpR::before {
  content: "\e95d";
}

._-web-client-js-react-components-___Captcha-module__icon-mic___NkkDh::before {
  content: "\e95e";
}

._-web-client-js-react-components-___Captcha-module__icon-mobile___Bl2pB::before {
  content: "\e95f";
}

._-web-client-js-react-components-___Captcha-module__icon-move___A8fIH::before {
  content: "\e960";
}

._-web-client-js-react-components-___Captcha-module__icon-new___xFVEj::before {
  content: "\e961";
}

._-web-client-js-react-components-___Captcha-module__icon-next___-1RBi::before {
  content: "\e962";
}

._-web-client-js-react-components-___Captcha-module__icon-no-camera___fWToR::before {
  content: "\e963";
}

._-web-client-js-react-components-___Captcha-module__icon-numbered-list___gcOdk::before {
  content: "\e964";
}

._-web-client-js-react-components-___Captcha-module__icon-package-download___0-vzO::before {
  content: "\e965";
}

._-web-client-js-react-components-___Captcha-module__icon-pagebreak___vBNzY::before {
  content: "\e966";
}

._-web-client-js-react-components-___Captcha-module__icon-palette___iZfSC::before {
  content: "\e967";
}

._-web-client-js-react-components-___Captcha-module__icon-phone___0fu7-::before {
  content: "\e968";
}

._-web-client-js-react-components-___Captcha-module__icon-play___O3PNP::before {
  content: "\e969";
}

._-web-client-js-react-components-___Captcha-module__icon-plus___\+ayvp::before {
  content: "\e96a";
}

._-web-client-js-react-components-___Captcha-module__icon-prev___FIDIJ::before {
  content: "\e96b";
}

._-web-client-js-react-components-___Captcha-module__icon-price-tag___Mz-8u::before {
  content: "\e96c";
}

._-web-client-js-react-components-___Captcha-module__icon-printer___c6hYb::before {
  content: "\e96d";
}

._-web-client-js-react-components-___Captcha-module__icon-projector___Xet8N::before {
  content: "\e96e";
}

._-web-client-js-react-components-___Captcha-module__icon-puzzle___ietks::before {
  content: "\e96f";
}

._-web-client-js-react-components-___Captcha-module__icon-qrcode___msXWq::before {
  content: "\e970";
}

._-web-client-js-react-components-___Captcha-module__icon-question___eOHEi::before {
  content: "\e971";
}

._-web-client-js-react-components-___Captcha-module__icon-quill___4ODPL::before {
  content: "\e972";
}

._-web-client-js-react-components-___Captcha-module__icon-redo___\+NRi0::before {
  content: "\e973";
}

._-web-client-js-react-components-___Captcha-module__icon-remove___I-THm::before {
  content: "\e974";
}

._-web-client-js-react-components-___Captcha-module__icon-rulers___5qKus::before {
  content: "\e975";
}

._-web-client-js-react-components-___Captcha-module__icon-search___5kjI4::before {
  content: "\e976";
}

._-web-client-js-react-components-___Captcha-module__icon-settings___489se::before {
  content: "\e977";
}

._-web-client-js-react-components-___Captcha-module__icon-seven-segment9___v\+\+ER::before {
  content: "\e978";
}

._-web-client-js-react-components-___Captcha-module__icon-shield___rkrsY::before {
  content: "\e979";
}

._-web-client-js-react-components-___Captcha-module__icon-shrink___3DAOT::before {
  content: "\e97a";
}

._-web-client-js-react-components-___Captcha-module__icon-sort___clHJW::before {
  content: "\e97b";
}

._-web-client-js-react-components-___Captcha-module__icon-sort-alpha-asc___v81qT::before {
  content: "\e97c";
}

._-web-client-js-react-components-___Captcha-module__icon-sort-alpha-desc___yVWk6::before {
  content: "\e97d";
}

._-web-client-js-react-components-___Captcha-module__icon-split___mPqfl::before {
  content: "\e97e";
}

._-web-client-js-react-components-___Captcha-module__icon-stack___iENGx::before {
  content: "\e97f";
}

._-web-client-js-react-components-___Captcha-module__icon-stack-minus___nBLup::before {
  content: "\e980";
}

._-web-client-js-react-components-___Captcha-module__icon-stack-plus___XmsCv::before {
  content: "\e981";
}

._-web-client-js-react-components-___Captcha-module__icon-stack-text___Rwwzi::before {
  content: "\e982";
}

._-web-client-js-react-components-___Captcha-module__icon-star___FlmJa::before {
  content: "\e983";
}

._-web-client-js-react-components-___Captcha-module__icon-star-empty___zOlnQ::before {
  content: "\e984";
}

._-web-client-js-react-components-___Captcha-module__icon-stop___85MJC::before {
  content: "\e985";
}

._-web-client-js-react-components-___Captcha-module__icon-switchoff___ZfEvu::before {
  content: "\e986";
}

._-web-client-js-react-components-___Captcha-module__icon-switchon___zdHW9::before {
  content: "\e987";
}

._-web-client-js-react-components-___Captcha-module__icon-tag___K6xiA::before {
  content: "\e988";
}

._-web-client-js-react-components-___Captcha-module__icon-text-color___YDVds::before {
  content: "\e989";
}

._-web-client-js-react-components-___Captcha-module__icon-textarea___qkG9G::before {
  content: "\e98a";
}

._-web-client-js-react-components-___Captcha-module__icon-textfield___zFHe2::before {
  content: "\e98b";
}

._-web-client-js-react-components-___Captcha-module__icon-ticket___wdt-c::before {
  content: "\e98c";
}

._-web-client-js-react-components-___Captcha-module__icon-tilde___Kaw3s::before {
  content: "\e98d";
}

._-web-client-js-react-components-___Captcha-module__icon-time___9Aqlz::before {
  content: "\e98e";
}

._-web-client-js-react-components-___Captcha-module__icon-transmission___4ah\+c::before {
  content: "\e98f";
}

._-web-client-js-react-components-___Captcha-module__icon-type___nggHX::before {
  content: "\e990";
}

._-web-client-js-react-components-___Captcha-module__icon-undo___dJwgK::before {
  content: "\e991";
}

._-web-client-js-react-components-___Captcha-module__icon-unlocked___jiOXa::before,
._-web-client-js-react-components-___Captcha-module__icon-protection-public___tisMQ::before {
  content: "\e992";
}

._-web-client-js-react-components-___Captcha-module__icon-upload___WU1cd::before {
  content: "\e993";
}

._-web-client-js-react-components-___Captcha-module__icon-user___URsa9::before {
  content: "\e994";
}

._-web-client-js-react-components-___Captcha-module__icon-user-block___hm6St::before {
  content: "\e995";
}

._-web-client-js-react-components-___Captcha-module__icon-user-chairperson___5bDZL::before {
  content: "\e996";
}

._-web-client-js-react-components-___Captcha-module__icon-user-check___0gDZS::before {
  content: "\e997";
}

._-web-client-js-react-components-___Captcha-module__icon-user-reading___kvOyO::before {
  content: "\e998";
}

._-web-client-js-react-components-___Captcha-module__icon-users___aIuO6::before {
  content: "\e999";
}

._-web-client-js-react-components-___Captcha-module__icon-warning___KzT8I::before {
  content: "\e99a";
}

._-web-client-js-react-components-___Captcha-module__icon-wrench___9fixP::before {
  content: "\e99b";
}

/* animated spinner icon */
._-web-client-js-react-components-___Captcha-module__icon-spinner___7q6-\+::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
._-web-client-js-react-components-___Captcha-module__icon-none___txD-p::before {
  content: " ";
}

._-web-client-js-react-components-___Captcha-module__disabled___mDBqt ._-web-client-js-react-components-___Captcha-module__icon-spinner___7q6-\+::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
._-web-client-js-react-components-___Captcha-module__icon-protection-public___tisMQ::before {
  color: #00c851;
}

._-web-client-js-react-components-___Captcha-module__icon-protection-self___oFFur::before {
  color: #f91f1f;
}

._-web-client-js-react-components-___Captcha-module__icon-unlisted-event___f6oh-::before {
  color: #f91f1f;
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

._-web-client-js-react-components-___Captcha-module__captcha___e4UpS {
  display: flex;
  align-items: center;
  margin-top: 2em;
  gap: 2em;
}

._-web-client-js-react-components-___Captcha-module__captcha-form___u4rTV {
  margin-top: 2em;
}

._-web-client-js-react-components-___Captcha-module__error___AZzl8 {
  display: flex;
  align-items: center;
  gap: 1em;
}
._-web-client-js-react-components-___Captcha-module__error___AZzl8 .ui.error.message {
  margin-bottom: 0;
}
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ input[readonly],
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ textarea[readonly],
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ div.dropdown.disabled {
  background: repeating-linear-gradient(-40deg, #d6d6d6, #d6d6d6 10px, #dddddd 10px, #dddddd 20px) !important;
  font-style: italic;
  color: #777 !important;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ input[readonly]::-webkit-input-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ textarea[readonly]::-webkit-input-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ div.dropdown.disabled::-webkit-input-placeholder {
  color: #777;
}
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ input[readonly]::-moz-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ textarea[readonly]::-moz-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ div.dropdown.disabled::-moz-placeholder {
  color: #777;
}
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ input[readonly]:-ms-input-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ textarea[readonly]:-ms-input-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ div.dropdown.disabled:-ms-input-placeholder {
  color: #777;
}
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ input[readonly]:-moz-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ textarea[readonly]:-moz-placeholder,
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ div.dropdown.disabled:-moz-placeholder {
  color: #777;
}
._-web-client-js-react-components-___syncedInputs-module__syncable___7IGW\+ div.dropdown.disabled {
  opacity: unset;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__outer-dropzone___yvPQ1 {
  margin-top: auto;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__dropzone___kreFr {
  width: 100%;
  border: 2px dashed #bbb;
  border-radius: 3px;
  text-align: center;
  padding: 0.5em;
  cursor: pointer;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__dropzone___kreFr:hover {
  opacity: 0.5;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__dropzone___kreFr.active {
  opacity: 0.5;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager-wrapper___vCNoq {
  display: flex;
  flex-direction: column;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager___DYWxj {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9em;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager___DYWxj .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-type___GkGuz {
  display: flex;
  flex-direction: column;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 1em;
  width: 31%;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager___DYWxj .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-type___GkGuz .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-requirements___O7Osv {
  font-style: italic;
  color: #bbb;
  margin: 0.2em 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager___DYWxj .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-type___GkGuz .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__box-list___Ui3Cf {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager___DYWxj .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-type___GkGuz .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__box-list___Ui3Cf .ui.message {
  margin: 0;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-manager___DYWxj .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-type___GkGuz h3 {
  margin-bottom: 0;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-list___sYPVy, .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__uploading-file-list___mb1s4 {
  list-style-type: none;
  padding: 0;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-list___sYPVy .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-row___p41EH, .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__uploading-file-list___mb1s4 .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-row___p41EH {
  display: flex;
  justify-content: space-between;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__delete-icon___0ECoV {
  color: #f91f1f;
  cursor: pointer;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__delete-icon___0ECoV:hover {
  color: #c00;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__undo-icon___1H0UG {
  color: #09c;
  cursor: pointer;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__undo-icon___1H0UG:hover {
  color: #007cac;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__exchange-icon___U82d8 {
  color: #999;
  cursor: pointer;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__exchange-icon___U82d8:hover {
  color: #777;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-state___lY9jV {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 4;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-state___lY9jV.added {
  color: #00c851;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-state___lY9jV.modified {
  color: #cb6d04;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-state___lY9jV.deleted {
  text-decoration: line-through;
  color: #c00;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-state___lY9jV.uploading {
  color: #bbb;
}
.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__file-state___lY9jV.error {
  color: #c00;
}

.events-editing-client-js-editing-timeline-FileManager-___FileManager-module__uploading-file-list___mb1s4 .events-editing-client-js-editing-timeline-FileManager-___FileManager-module__uploading-file-row___vfFyo {
  display: flex;
}
@charset "UTF-8";
/*
Important: When adding new icons, read the guide below.
Do not ediy any specific icons in here manually, the rules are generated
using the `bin/maintenance/generate_icons.py` script.
*/
@font-face {
  font-family: "icomoon-ultimate";
  src: url(/https/indico.un.org/fonts/icomoon/icomoon__v63f4b83c.svg#icomoon-ultimate) format("svg"), url(/https/indico.un.org/fonts/icomoon/icomoon__vbaef3c4b.woff) format("woff"), url(/https/indico.un.org/fonts/icomoon/icomoon__v0ba32768.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]::before {
  font-family: "icomoon-ultimate";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "icomoon-ultimate";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

i[class^=icon-]::before {
  cursor: default;
}

.search-client-js-components-___SearchBox-module__inactive___tmbYH[class^=icon-]::before,
.search-client-js-components-___SearchBox-module__inactive___tmbYH[class*=" icon-"]::before {
  opacity: 0.15;
}

/* How to add icons
 *
 *  1. Login into icomoon app https://icomoon.io/app/
 *  2. Remove any existing project (Top-left hamburger icon, "Manage projects", "Remove" button)
 *  3. Import "selection.json" from Indico repository (Top-left hamburger icon, "Import project",
 *     choose 'indico/web/static/fonts/icomoon/selection.json'
 *  4. Load the project (it should be named "Untitled Project")
 *  5. Deselect all icons (Top-left hamburger icon, "Clear selection")
 *  6. Add the IcoMoon Ultimate pack (Click on "Library" button then on "Add")
 *  7. Search for the icon you want to add using the search box
 *  8. Select the icons to add with the selection tool
 *  9. Add the new icons to our set (Click the hamburger icon to the right of our set that
 *     should be displayed as "icomoon" and select "Move selection here")
 * 10. Clear the search box
 * 11. Remove all icons sets except ours (Click the hamburger icon to the right of the set to remove
 *     and choose "Remove set")
 * 12. Reorder the icons in alphabetical order:
 *      - Click the hamburger icon to the right of our project
 *      - Choose "Select all".
 *      - Click that hamburger icon again and choose "Rearrange icons".
 *      - Choose "Order by name" and "Rearrange"
 * 13. Click on the "Generate font" tab at the bottom of the screen
 * 14. Click on "Download" at the bottom right of the screen
 * 15. Copy files:
 *      - icomoon.zip/fonts/icommon.{svg,ttf,woff} to indico/web/static/fonts/icomoon/
 *      - icomoon.zip/selection.json to indico/web/static/fonts/icomoon/
 * 16. Run the update script: `./bin/maintenance/generate_icons.py`
 */
.search-client-js-components-___SearchBox-module__icon-agreement___VPig8::before {
  content: "\e900";
}

.search-client-js-components-___SearchBox-module__icon-alarm___5srvN::before {
  content: "\e901";
}

.search-client-js-components-___SearchBox-module__icon-arrow-down___wf826::before {
  content: "\e902";
}

.search-client-js-components-___SearchBox-module__icon-arrow-left___0tHNy::before {
  content: "\e903";
}

.search-client-js-components-___SearchBox-module__icon-arrow-right-sparse___t-1RN::before {
  content: "\e904";
}

.search-client-js-components-___SearchBox-module__icon-arrow-up___xVuWZ::before {
  content: "\e905";
}

.search-client-js-components-___SearchBox-module__icon-arrows-vert___8Jnn1::before {
  content: "\e906";
}

.search-client-js-components-___SearchBox-module__icon-attachment___-uWAm::before {
  content: "\e907";
}

.search-client-js-components-___SearchBox-module__icon-bell___74DnX::before {
  content: "\e908";
}

.search-client-js-components-___SearchBox-module__icon-bold___VzR3K::before {
  content: "\e909";
}

.search-client-js-components-___SearchBox-module__icon-book___LZw2P::before {
  content: "\e90a";
}

.search-client-js-components-___SearchBox-module__icon-bookmark___m4idk::before {
  content: "\e90b";
}

.search-client-js-components-___SearchBox-module__icon-broadcast___Ya6\+H::before {
  content: "\e90c";
}

.search-client-js-components-___SearchBox-module__icon-bubble-quote___4djaR::before {
  content: "\e90d";
}

.search-client-js-components-___SearchBox-module__icon-bullhorn___3c54E::before {
  content: "\e90e";
}

.search-client-js-components-___SearchBox-module__icon-calendar___VtzsL::before {
  content: "\e90f";
}

.search-client-js-components-___SearchBox-module__icon-calendar-day___\+d7F8::before {
  content: "\ea65";
}

.search-client-js-components-___SearchBox-module__icon-camera___sIeYk::before {
  content: "\e910";
}

.search-client-js-components-___SearchBox-module__icon-chart___Fdsz0::before {
  content: "\e911";
}

.search-client-js-components-___SearchBox-module__icon-checkbox-checked___l5LVk::before {
  content: "\e912";
}

.search-client-js-components-___SearchBox-module__icon-checkbox-unchecked___dWmC6::before {
  content: "\e913";
}

.search-client-js-components-___SearchBox-module__icon-checkmark___LHErh::before {
  content: "\e914";
}

.search-client-js-components-___SearchBox-module__icon-circle-small___EPE1Q::before {
  content: "\e915";
}

.search-client-js-components-___SearchBox-module__icon-clipboard___N6u4e::before {
  content: "\e916";
}

.search-client-js-components-___SearchBox-module__icon-close___YmdSY::before {
  content: "\e917";
}

.search-client-js-components-___SearchBox-module__icon-cloud2___AZHHz::before {
  content: "\e918";
}

.search-client-js-components-___SearchBox-module__icon-code___VqGfP::before {
  content: "\e919";
}

.search-client-js-components-___SearchBox-module__icon-coins___7tC7J::before {
  content: "\e91a";
}

.search-client-js-components-___SearchBox-module__icon-collapse___iLdA\+::before {
  content: "\e91b";
}

.search-client-js-components-___SearchBox-module__icon-compass2___QebBl::before {
  content: "\e91c";
}

.search-client-js-components-___SearchBox-module__icon-copy___Y3qhn::before {
  content: "\e91d";
}

.search-client-js-components-___SearchBox-module__icon-copy1___6hhBP::before {
  content: "\e91e";
}

.search-client-js-components-___SearchBox-module__icon-cross___Tl68t::before {
  content: "\e91f";
}

.search-client-js-components-___SearchBox-module__icon-disable___7mDsb::before {
  content: "\e920";
}

.search-client-js-components-___SearchBox-module__icon-drag-indicator___zrcGI::before {
  content: "\e99c";
}

.search-client-js-components-___SearchBox-module__icon-dropmenu___\+xriI::before {
  content: "\e921";
}

.search-client-js-components-___SearchBox-module__icon-earth___prLpq::before {
  content: "\e922";
}

.search-client-js-components-___SearchBox-module__icon-edit___rrYi0::before {
  content: "\e923";
}

.search-client-js-components-___SearchBox-module__icon-enlarge___36p3l::before {
  content: "\e924";
}

.search-client-js-components-___SearchBox-module__icon-enter___hXuB2::before {
  content: "\e925";
}

.search-client-js-components-___SearchBox-module__icon-equalizer___E\+cf4::before {
  content: "\e926";
}

.search-client-js-components-___SearchBox-module__icon-exit___-Okqh::before {
  content: "\e927";
}

.search-client-js-components-___SearchBox-module__icon-expand___rY-CN::before {
  content: "\e928";
}

.search-client-js-components-___SearchBox-module__icon-eye___t9XQL::before {
  content: "\e929";
}

.search-client-js-components-___SearchBox-module__icon-eye-blocked___RnVkk::before,
.search-client-js-components-___SearchBox-module__icon-unlisted-event___6jmgR::before {
  content: "\e92a";
}

.search-client-js-components-___SearchBox-module__icon-file___j6kLx::before {
  content: "\e92b";
}

.search-client-js-components-___SearchBox-module__icon-file-check___Bmcp5::before {
  content: "\e92c";
}

.search-client-js-components-___SearchBox-module__icon-file-content___MZp\+-::before {
  content: "\e92d";
}

.search-client-js-components-___SearchBox-module__icon-file-css___ImKBI::before {
  content: "\e92e";
}

.search-client-js-components-___SearchBox-module__icon-file-download___qHtez::before {
  content: "\e92f";
}

.search-client-js-components-___SearchBox-module__icon-file-excel___jIfgX::before {
  content: "\e930";
}

.search-client-js-components-___SearchBox-module__icon-file-eye___aahVH::before {
  content: "\e931";
}

.search-client-js-components-___SearchBox-module__icon-file-filled___UGpgC::before {
  content: "\e932";
}

.search-client-js-components-___SearchBox-module__icon-file-image___OiR3j::before {
  content: "\e933";
}

.search-client-js-components-___SearchBox-module__icon-file-music___7pSWS::before {
  content: "\e934";
}

.search-client-js-components-___SearchBox-module__icon-file-openoffice___Qbo3K::before {
  content: "\e935";
}

.search-client-js-components-___SearchBox-module__icon-file-pdf___jmkGG::before {
  content: "\e936";
}

.search-client-js-components-___SearchBox-module__icon-file-play___Gf3ib::before {
  content: "\e937";
}

.search-client-js-components-___SearchBox-module__icon-file-presentation___iJ489::before {
  content: "\e938";
}

.search-client-js-components-___SearchBox-module__icon-file-spreadsheet___I8tKi::before {
  content: "\e939";
}

.search-client-js-components-___SearchBox-module__icon-file-text___90Tnd::before {
  content: "\e93a";
}

.search-client-js-components-___SearchBox-module__icon-file-video___\+-b7u::before {
  content: "\e93b";
}

.search-client-js-components-___SearchBox-module__icon-file-word___OmmO-::before {
  content: "\e93c";
}

.search-client-js-components-___SearchBox-module__icon-file-xml___SjzOV::before {
  content: "\e93d";
}

.search-client-js-components-___SearchBox-module__icon-file-zip___GYpMA::before {
  content: "\e93e";
}

.search-client-js-components-___SearchBox-module__icon-filter___xfGKM::before {
  content: "\e93f";
}

.search-client-js-components-___SearchBox-module__icon-first___1Dk-D::before {
  content: "\e940";
}

.search-client-js-components-___SearchBox-module__icon-floppy___mmugN::before {
  content: "\e941";
}

.search-client-js-components-___SearchBox-module__icon-folder___EvXUl::before {
  content: "\e942";
}

.search-client-js-components-___SearchBox-module__icon-folder-open___aQGZr::before {
  content: "\e943";
}

.search-client-js-components-___SearchBox-module__icon-folder-plus___\+BlHe::before {
  content: "\e944";
}

.search-client-js-components-___SearchBox-module__icon-font-size___\+hHJD::before {
  content: "\e945";
}

.search-client-js-components-___SearchBox-module__icon-grid___Apdzq::before {
  content: "\e946";
}

.search-client-js-components-___SearchBox-module__icon-grid2___yF9iH::before {
  content: "\e947";
}

.search-client-js-components-___SearchBox-module__icon-hammer___\+AdYd::before {
  content: "\e948";
}

.search-client-js-components-___SearchBox-module__icon-handle___Vq\+sv::before {
  content: "\e949";
}

.search-client-js-components-___SearchBox-module__icon-home___2v0jD::before {
  content: "\e94a";
}

.search-client-js-components-___SearchBox-module__icon-hour-glass2___RcbSC::before {
  content: "\e94b";
}

.search-client-js-components-___SearchBox-module__icon-id-badge___3q3UW::before {
  content: "\e99d";
}

.search-client-js-components-___SearchBox-module__icon-image___a2swu::before {
  content: "\e94c";
}

.search-client-js-components-___SearchBox-module__icon-import___xIknA::before {
  content: "\e94d";
}

.search-client-js-components-___SearchBox-module__icon-info___rn4fl::before {
  content: "\e94e";
}

.search-client-js-components-___SearchBox-module__icon-italic___F7P5z::before {
  content: "\e94f";
}

.search-client-js-components-___SearchBox-module__icon-key___kZJ-y::before {
  content: "\e950";
}

.search-client-js-components-___SearchBox-module__icon-key-a___rdQVH::before {
  content: "\e951";
}

.search-client-js-components-___SearchBox-module__icon-lamp___Uplpm::before {
  content: "\e952";
}

.search-client-js-components-___SearchBox-module__icon-lan___Awzpx::before {
  content: "\e953";
}

.search-client-js-components-___SearchBox-module__icon-last___MqlYW::before {
  content: "\e954";
}

.search-client-js-components-___SearchBox-module__icon-layout___mYWZg::before {
  content: "\e955";
}

.search-client-js-components-___SearchBox-module__icon-link___u\+8hX::before {
  content: "\e956";
}

.search-client-js-components-___SearchBox-module__icon-list___iwL7h::before {
  content: "\e957";
}

.search-client-js-components-___SearchBox-module__icon-location___VL4VU::before {
  content: "\e958";
}

.search-client-js-components-___SearchBox-module__icon-lock___t\+TLD::before,
.search-client-js-components-___SearchBox-module__icon-protection-self___Unznt::before {
  content: "\e959";
}

.search-client-js-components-___SearchBox-module__icon-lock-center___0pRhI::before {
  content: "\e95a";
}

.search-client-js-components-___SearchBox-module__icon-loop___SIEJY::before {
  content: "\e95b";
}

.search-client-js-components-___SearchBox-module__icon-mail___-6I-d::before {
  content: "\e95c";
}

.search-client-js-components-___SearchBox-module__icon-medal___NVdbf::before {
  content: "\e95d";
}

.search-client-js-components-___SearchBox-module__icon-mic___m35g9::before {
  content: "\e95e";
}

.search-client-js-components-___SearchBox-module__icon-mobile___NL91q::before {
  content: "\e95f";
}

.search-client-js-components-___SearchBox-module__icon-move___jEf9K::before {
  content: "\e960";
}

.search-client-js-components-___SearchBox-module__icon-new___ABbcf::before {
  content: "\e961";
}

.search-client-js-components-___SearchBox-module__icon-next___IpM0r::before {
  content: "\e962";
}

.search-client-js-components-___SearchBox-module__icon-no-camera___QhRhJ::before {
  content: "\e963";
}

.search-client-js-components-___SearchBox-module__icon-numbered-list___PdOGG::before {
  content: "\e964";
}

.search-client-js-components-___SearchBox-module__icon-package-download___\+FVuF::before {
  content: "\e965";
}

.search-client-js-components-___SearchBox-module__icon-pagebreak___kCycE::before {
  content: "\e966";
}

.search-client-js-components-___SearchBox-module__icon-palette___-Zw6\+::before {
  content: "\e967";
}

.search-client-js-components-___SearchBox-module__icon-phone___TWvxg::before {
  content: "\e968";
}

.search-client-js-components-___SearchBox-module__icon-play___Aturl::before {
  content: "\e969";
}

.search-client-js-components-___SearchBox-module__icon-plus___cDWC6::before {
  content: "\e96a";
}

.search-client-js-components-___SearchBox-module__icon-prev___3XCU-::before {
  content: "\e96b";
}

.search-client-js-components-___SearchBox-module__icon-price-tag___Ku0NC::before {
  content: "\e96c";
}

.search-client-js-components-___SearchBox-module__icon-printer___y1mWU::before {
  content: "\e96d";
}

.search-client-js-components-___SearchBox-module__icon-projector___YTcuj::before {
  content: "\e96e";
}

.search-client-js-components-___SearchBox-module__icon-puzzle___lyGMn::before {
  content: "\e96f";
}

.search-client-js-components-___SearchBox-module__icon-qrcode___iAt\+Q::before {
  content: "\e970";
}

.search-client-js-components-___SearchBox-module__icon-question___r2z\+D::before {
  content: "\e971";
}

.search-client-js-components-___SearchBox-module__icon-quill___N8AKC::before {
  content: "\e972";
}

.search-client-js-components-___SearchBox-module__icon-redo___uFmDh::before {
  content: "\e973";
}

.search-client-js-components-___SearchBox-module__icon-remove___kdi5X::before {
  content: "\e974";
}

.search-client-js-components-___SearchBox-module__icon-rulers___LOeao::before {
  content: "\e975";
}

.search-client-js-components-___SearchBox-module__icon-search___f8Ptp::before {
  content: "\e976";
}

.search-client-js-components-___SearchBox-module__icon-settings___4OuNz::before {
  content: "\e977";
}

.search-client-js-components-___SearchBox-module__icon-seven-segment9___GukJe::before {
  content: "\e978";
}

.search-client-js-components-___SearchBox-module__icon-shield___5KHNN::before {
  content: "\e979";
}

.search-client-js-components-___SearchBox-module__icon-shrink___K-4Ar::before {
  content: "\e97a";
}

.search-client-js-components-___SearchBox-module__icon-sort___YbFgB::before {
  content: "\e97b";
}

.search-client-js-components-___SearchBox-module__icon-sort-alpha-asc___lzKKB::before {
  content: "\e97c";
}

.search-client-js-components-___SearchBox-module__icon-sort-alpha-desc___ARgzD::before {
  content: "\e97d";
}

.search-client-js-components-___SearchBox-module__icon-split___Wl3It::before {
  content: "\e97e";
}

.search-client-js-components-___SearchBox-module__icon-stack___PwgkE::before {
  content: "\e97f";
}

.search-client-js-components-___SearchBox-module__icon-stack-minus___H5jc-::before {
  content: "\e980";
}

.search-client-js-components-___SearchBox-module__icon-stack-plus___h8zAF::before {
  content: "\e981";
}

.search-client-js-components-___SearchBox-module__icon-stack-text___F1rEw::before {
  content: "\e982";
}

.search-client-js-components-___SearchBox-module__icon-star___oIWbn::before {
  content: "\e983";
}

.search-client-js-components-___SearchBox-module__icon-star-empty___xBSth::before {
  content: "\e984";
}

.search-client-js-components-___SearchBox-module__icon-stop___0dPEv::before {
  content: "\e985";
}

.search-client-js-components-___SearchBox-module__icon-switchoff___Qejkb::before {
  content: "\e986";
}

.search-client-js-components-___SearchBox-module__icon-switchon___ht6AS::before {
  content: "\e987";
}

.search-client-js-components-___SearchBox-module__icon-tag___mSM1A::before {
  content: "\e988";
}

.search-client-js-components-___SearchBox-module__icon-text-color___VX8xg::before {
  content: "\e989";
}

.search-client-js-components-___SearchBox-module__icon-textarea___KNqaK::before {
  content: "\e98a";
}

.search-client-js-components-___SearchBox-module__icon-textfield___e-bfN::before {
  content: "\e98b";
}

.search-client-js-components-___SearchBox-module__icon-ticket___9G3Ao::before {
  content: "\e98c";
}

.search-client-js-components-___SearchBox-module__icon-tilde___yGBVW::before {
  content: "\e98d";
}

.search-client-js-components-___SearchBox-module__icon-time___dzc3g::before {
  content: "\e98e";
}

.search-client-js-components-___SearchBox-module__icon-transmission___uU7\+d::before {
  content: "\e98f";
}

.search-client-js-components-___SearchBox-module__icon-type___h137A::before {
  content: "\e990";
}

.search-client-js-components-___SearchBox-module__icon-undo___vQ-7c::before {
  content: "\e991";
}

.search-client-js-components-___SearchBox-module__icon-unlocked___ouKCw::before,
.search-client-js-components-___SearchBox-module__icon-protection-public___9t6xn::before {
  content: "\e992";
}

.search-client-js-components-___SearchBox-module__icon-upload___ZZRph::before {
  content: "\e993";
}

.search-client-js-components-___SearchBox-module__icon-user___AmUX4::before {
  content: "\e994";
}

.search-client-js-components-___SearchBox-module__icon-user-block___dvwLX::before {
  content: "\e995";
}

.search-client-js-components-___SearchBox-module__icon-user-chairperson___yyWei::before {
  content: "\e996";
}

.search-client-js-components-___SearchBox-module__icon-user-check___9U5q\+::before {
  content: "\e997";
}

.search-client-js-components-___SearchBox-module__icon-user-reading___XcDoL::before {
  content: "\e998";
}

.search-client-js-components-___SearchBox-module__icon-users___S14ni::before {
  content: "\e999";
}

.search-client-js-components-___SearchBox-module__icon-warning___2K90R::before {
  content: "\e99a";
}

.search-client-js-components-___SearchBox-module__icon-wrench___AfG\+S::before {
  content: "\e99b";
}

/* animated spinner icon */
.search-client-js-components-___SearchBox-module__icon-spinner___bzMwn::before {
  content: "";
  display: inline-block;
  min-width: 1.2em;
  min-height: 1.2em;
  height: 100%;
  background-image: url(/https/indico.un.org/images/loading__v7b977607.gif);
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  vertical-align: middle !important;
  opacity: 0.6;
}

/* Custom "empty" icon to have a space equivalent to an icon */
.search-client-js-components-___SearchBox-module__icon-none___Ts7Nc::before {
  content: " ";
}

.search-client-js-components-___SearchBox-module__disabled___N38b5 .search-client-js-components-___SearchBox-module__icon-spinner___bzMwn::before {
  opacity: 0.4;
}

/* Customized icons for specific purposes */
.search-client-js-components-___SearchBox-module__icon-protection-public___9t6xn::before {
  color: #00c851;
}

.search-client-js-components-___SearchBox-module__icon-protection-self___Unznt::before {
  color: #f91f1f;
}

.search-client-js-components-___SearchBox-module__icon-unlisted-event___6jmgR::before {
  color: #f91f1f;
}

.search-client-js-components-___SearchBox-module__ellipsis___soHpG {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body {
  --text-color: #333;
  --text-inverse-color: #fff;
  --text-disabled-color: #999;
  --text-secondary-color: #6e6e6e;
  --background-primary: #fff;
  --background-secondary: #f7f7f7;
  --surface-default: #e8e8e8;
  --surface-inverse-color: #555;
  --surface-accent-color: var(--accent-color);
  --surface-accent-secondary-color: #cee8f5;
  --surface-highlight-color: #c4c4c4;
  --surface-highlight-inverse-color: var(--text-secondary-color);
  --surface-disabled-color: #f9f9f9;
  --surface-disabled-inverse-color: #757575;
  --border-default-color: #5a5a5a;
  --border-disabled-color: #c4c4c4;
  --accent-color: #0075a3;
  --accent-secondary-color: #b35905;
  --accent-highlight-color: #035e81;
  --accent-border-color: #05425b;
  --active-color: #db1a1a;
  --visited-color: #5c079b;
  --protected-color: #cc6300;
  --highlight-color: #fff9b8;
  --attention-color: #fd0;
  --text-red-color: #db1a1a;
  --text-green-color: #216901;
  --text-blue-color: #0164c1;
  --text-brown-color: #60331f;
  --text-orange-color: #b73701;
  --control-border-color: var(--border-default-color);
  --control-text-color: var(--text-color);
  --control-clickable-surface-color: var(--surface-default);
  --control-clickable-surface-focus-color: var(--surface-highlight-color);
  --control-clickable-border-color: var(--control-border-color);
  --control-alt-text-color: var(--text-inverse-color);
  --control-alt-clickable-surface-color: var(--accent-color);
  --control-alt-clickable-surface-focus-color: var(--accent-highlight-color);
  --control-alt-border-color: var(--accent-border-color);
  --control-disabled-text-color: var(--text-disabled-color);
  --control-disabled-clickable-surface-color: var(--surface-disabled-color);
  --control-disabled-border-color: var(--surface-disabled-color);
  --control-indented-bg-color: var(--surface-disabled-color);
  --control-disabled-indented-bg-color: var(--text-disabled-color);
  --control-disabled-inset-indented-color: var(--text-disabled-color);
  --control-border-width: 1px;
  --control-border-radius: 0.3em;
  --control-border: var(--control-border-width) solid var(--control-border-color);
  --control-padding: 0.5em 1em;
  --control-internal-gap: 0.2em;
  --control-raised-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
  --clickable-text-color: var(--accent-color);
  --clickable-text-highlight-color: var(--accent-secondary-color);
  --clickable-text-active-color: var(--active-color);
  --clickable-text-used-color: var(--visited-color);
  --clickable-text-disabled-color: var(--text-disabled-color);
  --table-border-color: var(--control-border-color);
  --table-border-width: 1px;
  --table-header-border-color: var(--control-border-color);
  --table-header-border-width: 2px;
  --container-padding: 1em;
  --container-narrow-padding: 1em 0.5em;
  --container-element-spacing: 0.5em;
  --container-separator-color: #d0d0d0;
  --content-gap-within-inline: 0.2em;
  --content-gap-normal: 0.5em;
  --content-gap-between-groups: 1em;
  --content-gap-between-sections: 2em;
  --content-max-readable-width: 40em;
  --message-important-surface-color: var(--highlight-color);
  --message-important-text-color: var(--text-color);
  --text-size-rel-xs: 75%;
  --text-size-rel-s: 87.5%;
  --text-size-rel-n: 100%;
  --text-size-rel-l: 120%;
  --text-size-rel-xl: 150%;
  --text-size-rel-xxl: 200%;
  --text-size-abs-s: 0.875rem;
  --text-size-abs-n: 1rem;
  --text-size-abs-l: 1.2rem;
  --text-size-abs-xl: 1.5rem;
  --text-size-abs-xxl: 2rem;
  --text-size-global-adjust: 1.14;
  --transition-quick: 0.2s;
  --tag-generic-color: var(--accent-color);
  --tag-disabled-color: var(--surface-disabled-inverse-color);
  --modal-control-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.3);
}

.search-client-js-components-___SearchBox-module__search-type-option___ayJQl {
  --flex-gap: var(--content-gap-normal);
  --flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: var(--flex-gap);
  flex-wrap: var(--flex-wrap);
}

.search-client-js-components-___SearchBox-module__search-field___5cNNC > span {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body {
  --msgbox-alert-key-color: #c00;
  --msgbox-alert-sub-color: #fff6f6;
  --msgbox-alert-text-color: var(--text-color);
}

.search-client-js-components-___SearchBox-module__search-type-option___ayJQl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-client-js-components-___SearchBox-module__search-type-option___ayJQl span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95em;
  color: #999;
  width: 50%;
}

.search-client-js-components-___SearchBox-module__checkbox-admin-search___OeEpx.ui.checkbox {
  display: flex;
  justify-content: space-between;
}
.search-client-js-components-___SearchBox-module__checkbox-admin-search___OeEpx.ui.checkbox label {
  font-size: 0.8rem;
  font-weight: bold;
  color: #999;
}

.ui.search > .results > .result.cursor-default {
  cursor: default;
}
.receipts-client-js-printing-___EventImageSelectField-module__image-select-field___puZVP {
  align-items: last baseline;
}
.receipts-client-js-printing-___EventImageSelectField-module__image-select-field___puZVP .ui.selection.dropdown .menu > .item {
  padding: 0 !important;
}
.receipts-client-js-printing-___EventImageSelectField-module__image-select-field___puZVP .ui.selection.dropdown .menu > .item .receipts-client-js-printing-___EventImageSelectField-module__option-header___t-Pjo {
  font-size: 0.9em;
  display: flex;
}
.receipts-client-js-printing-___EventImageSelectField-module__image-select-field___puZVP .ui.selection.dropdown .menu > .item .receipts-client-js-printing-___EventImageSelectField-module__preview___wd05\+ {
  display: flex;
  width: 4.5em;
  height: 4.5em;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background: no-repeat center/cover #f9f9f9;
}
.receipts-client-js-printing-___EventImageSelectField-module__image-select-field___puZVP .ui.selection.dropdown .menu > .item .content {
  padding: 1em;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 55em;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy.receipts-client-js-templates-___Previewer-module__loading___7ETgj {
  opacity: 0.5;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy .ui.pagination.menu.receipts-client-js-templates-___Previewer-module__pagination___tITo2 {
  margin-top: 1.4em;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy .react-pdf__Document {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy .react-pdf__Page {
  max-width: calc(100% - 2em);
  border: 1px solid #dfdfdf;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  margin: 1em 0 0 0;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy .react-pdf__Page canvas {
  max-width: 100%;
  height: auto !important;
}
.receipts-client-js-templates-___Previewer-module__previewer___dqCAy .textLayer {
  display: none;
}

/*# sourceMappingURL=common.537012a0.css.map*/