@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
.filerobot-Explorer-assets-picker-modal {
  z-index: 100000;
}

.filerobot-common-BaseButton {
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  outline: none;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 100ms ease-in-out;
}
.filerobot-common-BaseButton span[role=container] {
  z-index: 4;
  display: flex;
  align-items: center;
}
@media (max-width: 636px) {
  .filerobot-common-BaseButton {
    min-width: 32px;
    min-height: 28px;
    padding: 2px 6px;
  }
}
@media (max-width: 636px) {
  .filerobot-common-BaseButton span:not([role=container]) {
    display: none;
  }
}
.filerobot-common-BaseButton:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #d9dde0;
  opacity: 0;
  border-radius: 15px 2px 15px 5px;
  transition: width 0.07s ease-in-out, border-radius 0.15s ease-in-out;
}
.filerobot-common-BaseButton:not(:disabled):active {
  opacity: 1;
}
.filerobot-common-BaseButton:not(:disabled):active:before {
  opacity: 1;
  border-radius: inherit;
  width: 100%;
}
.filerobot-common-BaseButton:disabled {
  color: #bbb;
  fill: #bbb;
  cursor: not-allowed;
  opacity: 0.8;
  background: rgba(79, 98, 118, 0.7);
}
.filerobot-common-BaseButton:disabled *, .filerobot-common-BaseButton:disabled:before {
  background: none;
  fill: currentColor;
  color: currentColor;
}

.filerobot-common-BaseButton-auto:not(:disabled) :hover,
.filerobot-common-BaseButton-auto:not(:disabled) :focus {
  background: #EFF3F6;
}
.filerobot-common-BaseButton-auto:not(:disabled) :hover *,
.filerobot-common-BaseButton-auto:not(:disabled) :focus * {
  color: #5D6D7E;
  fill: #5D6D7E;
}

.filerobot-common-BaseButton-transparent {
  background: transparent;
  color: #5D6D7E;
}
.filerobot-common-BaseButton-transparent:not(:disabled):hover, .filerobot-common-BaseButton-transparent:not(:disabled):focus {
  background: #EFF3F6;
}
.filerobot-common-BaseButton-transparent:not(:disabled):hover svg *, .filerobot-common-BaseButton-transparent:not(:disabled):focus svg * {
  color: #5D6D7E;
  fill: #5D6D7E;
}
.filerobot-common-BaseButton-transparent:not(:disabled):hover *, .filerobot-common-BaseButton-transparent:not(:disabled):focus * {
  color: #5D6D7E;
}

.filerobot-common-BaseButton-primary {
  color: #fff;
  background: #4D4E4E;
}
.filerobot-common-BaseButton-primary:not(:disabled):hover {
  filter: brightness(1.1);
}

.filerobot-common-BaseButton-accent {
  color: #fff;
  background: #6879EB;
}
.filerobot-common-BaseButton-accent:not(:disabled):hover {
  filter: brightness(1.1);
}
.filerobot-common-BaseButton-accent:before {
  background: #4958BC;
}

.filerobot-common-BaseButton-secondary {
  color: #fff;
  background: #768184;
}
.filerobot-common-BaseButton-secondary:not(:disabled):hover {
  filter: brightness(1.1);
}

.filerobot-common-BaseButton-activeSecondary {
  color: #5D6D7E;
  background: #E9EEF2;
}

.filerobot-common-BaseButton-small {
  font-size: 12px;
  padding: 2px 6px;
}
.filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton img {
  min-height: 12px;
  min-width: 12px;
  max-height: 12px;
  max-width: 12px;
}
.filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton span:not([role=container]) {
  margin-left: 4px;
}

.filerobot-common-BaseButton-medium {
  font-size: 15px;
  line-height: 16px;
}
.filerobot-common-BaseButton-medium.filerobot-common-LabeledIconButton img {
  min-height: 12px;
  min-width: 12px;
  max-height: 12px;
  max-width: 12px;
}

.filerobot-common-BaseButton-large {
  font-size: 17px;
  padding: 8px 14px;
}
.filerobot-common-BaseButton-large.filerobot-common-LabeledIconButton img {
  min-height: 16px;
  min-width: 16px;
  max-height: 16px;
  max-width: 16px;
}

.filerobot-common-BaseButton-fullWidth {
  font-size: 17px;
  width: 100%;
}
.filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton svg,
.filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton img {
  min-height: 16px;
  min-width: 16px;
  max-height: 16px;
  max-width: 16px;
}
.filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton span:not([role=container]) {
  margin-left: 8px;
}

.filerobot-common-LabeledIconButton-label {
  margin-left: 4px;
}

.filerobot-common-BadgeButton {
  padding: 8px 12px;
  margin-right: 4px;
}
.filerobot-common-BadgeButton .filerobot-common-BadgeButton-badgeContent {
  border-radius: 50%;
  color: #6879EB;
  background: #fff;
  font-weight: 500;
  margin-left: 4px;
  font-size: 10px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.filerobot-common-BadgeButton-activeSecondary .filerobot-common-BadgeButton-badgeContent {
  color: #fff;
  background: #5D6D7E;
}

.filerobot-common-BackCloseButton {
  display: flex;
  align-items: center;
}

.filerobot-common-BackCloseButton-button {
  padding: 6px;
}

.filerobot-common-BackCloseButton-buttonMargin {
  margin: 0 6px;
}

.filerobot-common-BackCloseButton-divider {
  height: 22px;
}

.filerobot-common-BackdropOverlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1199;
}

.filerobot-common-verticalDivider {
  background: #DFE7ED;
  width: 1px;
}

.filerobot-common-Radio-wrapper {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  padding: 8px 0;
}
.filerobot-common-Radio-wrapper:first-child {
  padding-top: 0;
}
.filerobot-common-Radio-wrapper:last-child {
  padding-bottom: 0;
}

.filerobot-common-Radio {
  display: inline-block;
  padding-right: 8px;
}

.filerobot-common-Radio-label {
  font-size: 16px;
  line-height: 18px;
  color: #37414B;
}

.filerobot-common-FormGroup:not(:last-child) {
  margin-bottom: 16px;
}

.filerobot-common-FormControl-inline {
  display: flex;
}
.filerobot-common-FormControl-with-hint {
  margin-bottom: 0;
}
.filerobot-common-FormControl-error {
  color: #E85B46;
}
.filerobot-common-FormControl-error .filerobot-common-InputLabel,
.filerobot-common-FormControl-error .filerobot-common-FormHelperText,
.filerobot-common-FormControl-error .SfxLabel-root,
.filerobot-common-FormControl-error .SfxFormHint-root {
  color: #E85B46;
}
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root {
  color: #E85B46;
  border-color: #E85B46;
  background: #fff;
  outline-color: #E85B46;
}
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus-within, .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus, .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:hover,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea:focus-within,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea:focus,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea:hover,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select:focus-within,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select:focus,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select:hover,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input:focus-within,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input:focus,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input:hover,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus-within,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus,
.filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:hover {
  border: 1px solid #E85B46;
  outline: none;
}

.filerobot-common-InputLabel {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 400;
  color: #768184;
}

.filerobot-common-FormHelperText {
  margin-top: 3px;
  font-size: 10px;
  color: #768184;
}
.filerobot-common-FormHelperText-medium {
  font-size: 14px;
}
.filerobot-common-FormHelperText-no-margin {
  margin: 0;
}

.filerobot-common-autoSuggest {
  position: relative;
}
.filerobot-common-autoSuggest-list-wrapper {
  position: absolute;
  z-index: 11111111111111;
}

.suggestions-list {
  border: 1px solid #ddd;
  border-radius: 2px;
  list-style: none;
  margin-top: 0;
  margin-left: 125px;
  padding-left: 0;
  font-size: 14px;
  background-color: #fff;
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.suggestions-list li {
  padding: 0.5rem;
  font-size: 1rem;
}
.suggestions-tags {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.suggestions-tags li {
  position: relative;
  align-items: center;
  margin: 0 8px 8px 0;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px dashed #5D6D7E;
  background: transparent;
  color: #5D6D7E;
  display: flex;
  font-family: "Roboto";
  font-size: 14px;
  line-height: 16.4px;
  font-weight: 400;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-height: 24px;
}
.suggestions-tags li:hover .filerobot-c-icon {
  display: block;
}
.suggestions-tags li .filerobot-c-icon {
  display: none;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  color: #fff;
}
.suggestions-tags li button {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #768184;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  height: 15px;
  justify-content: center;
  line-height: 0;
  margin-left: 8px;
  padding: 0;
  transform: rotate(45deg);
  width: 15px;
}

.no-suggestions {
  color: #999;
  padding: 0.5rem;
}

.suggestions-title {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 0;
}
.suggestions-title svg {
  margin-right: 4px;
}

.post-upload-suggestion {
  margin-left: 0;
  width: 100%;
}

.suggestion-active,
.suggestions li:hover {
  cursor: pointer;
  background: #5D6D7E;
  color: #fff;
  border: 1px solid #5D6D7E;
}

.suggestion-loading {
  display: flex;
  height: 100px;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
}

.filerobot-common-Checkbox-wrapper {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.filerobot-common-Checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  max-height: 16px;
  min-width: 16px;
  max-width: 16px;
  margin-right: 12px;
  background: #F8FAFB;
  border: 1px solid #DFE7ED;
  border-radius: 1px;
  outline: none;
  text-align: center;
  cursor: pointer;
}

.filerobot-common-Checkbox-label {
  font-size: 12px;
  line-height: 14px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.filerobot-common-Tabs-wrapper {
  display: flex;
  width: 92%;
  padding-left: 12px;
}

.filerobot-common-Tabs {
  display: flex;
  border-bottom: 1px solid #DFE7ED;
  border-top: 1px solid #DFE7ED;
  background-color: #F8FAFB;
  align-items: center;
}
.filerobot-common-Tabs-panel {
  position: relative;
  margin-bottom: -1px;
  font-size: 12px;
}
.filerobot-common-Tabs-panel > input[type=radio] {
  position: absolute;
  left: -200vw;
}
.filerobot-common-Tabs-panel .bottom-line {
  display: none;
  position: absolute;
  background: #6879EB;
  bottom: 0;
  left: 7px;
  right: 7px;
  height: 1px;
}
.filerobot-common-Tabs-panel > label {
  color: #5D6D7E;
  position: relative;
  display: flex;
  padding: 7px;
  border: 1px solid transparent;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
  cursor: pointer;
}
.filerobot-common-Tabs-panel > label > svg {
  margin-right: 8px;
  height: 12px;
  width: 12px;
}
.filerobot-common-Tabs-panel:first-child > label {
  padding-left: 0;
}
.filerobot-common-Tabs-panel:first-child > label + .bottom-line {
  left: 0;
}
.filerobot-common-Tabs-panel > input:checked + label {
  color: #6879EB;
}
.filerobot-common-Tabs-panel > input:checked + label + .bottom-line {
  display: block;
}
.filerobot-common-Tabs .subtabs-wrapper {
  padding: 12px 0;
}

.filerobot-common-inputAndLabel {
  margin-bottom: 16px;
}
.filerobot-common-inputAndLabel-form-group {
  margin-bottom: 19px;
}
.filerobot-common-inputAndLabel-input-header {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 3px;
}
.filerobot-common-inputAndLabel-header-links-label {
  display: flex;
  align-items: center;
  color: #768A9F;
}
.filerobot-common-inputAndLabel-input-text-wrapper {
  position: relative;
  width: 100%;
}
.filerobot-common-inputAndLabel-input-text-wrapper input[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: block;
  width: 20px;
  height: 20px;
  z-index: 2;
  margin-top: 2px;
  cursor: pointer;
}
.filerobot-common-inputAndLabel-input-text-wrapper-disable-icon input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}
.filerobot-common-inputAndLabel-input-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 6px;
  cursor: pointer;
}
.filerobot-common-inputAndLabel-input-text {
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  padding: 10px 16px;
  background-color: #fff;
  border: 1px solid #CCD6DE;
  border-radius: 4px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  cursor: auto;
  font-family: "Roboto";
  font-weight: 400;
}
.filerobot-common-inputAndLabel-input-text:focus {
  background-color: #FFFFFF !important;
  border: 1px solid rgb(104, 121, 235);
  outline: none;
}
.filerobot-common-inputAndLabel-input-text:hover {
  background-color: rgb(239, 243, 246);
}

.filerobot-common-Spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.filerobot-common-Spinner svg {
  animation: rotating-spinner 2s linear infinite;
}

.filerobot-common-Spinner-noMargin {
  margin: 0;
}

.filerobot-common-Spinner-filledCentered {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px;
}

.filerobot-common-Spinner-spinnerContainer {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}
.filerobot-common-Spinner-spinnerContainer svg {
  width: 30px;
  height: 30px;
}
@keyframes rotating-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.filerobot-common-ItemHoverTopOptions {
  position: absolute;
  top: 4%;
  right: 3%;
  bottom: 0;
  display: flex;
  visibility: hidden;
  z-index: 3;
  width: 100%;
  justify-content: flex-end;
  padding: 2px 4px 2px 24px;
  align-items: flex-start;
  pointer-events: none;
  border-radius: inherit;
  transition: all 100ms ease-in-out;
}
.filerobot-common-ItemHoverTopOptions button {
  min-width: 12px;
  min-height: 16px;
  padding: 4px 7px;
  height: auto;
  pointer-events: auto;
  background: rgba(79, 98, 118, 0.7);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 2px;
  transition: all 100ms ease-in-out;
}
.filerobot-common-ItemHoverTopOptions button svg * {
  color: #fff;
  fill: #fff;
}
.filerobot-common-ItemHoverTopOptions button:not(:active, :disabled):hover {
  background: rgb(55, 65, 75);
}
.filerobot-common-ItemHoverTopOptions button:not(:active, :disabled):hover svg * {
  fill: #DFE7ED;
  color: #DFE7ED;
}
*:hover > .filerobot-common-ItemHoverTopOptions {
  visibility: visible;
}
.filerobot-common-ItemHoverTopOptions-disableHover {
  display: flex;
  visibility: visible;
}
.filerobot-common-ItemHoverTopOptions-disableHover:hover {
  background: none;
}

.filerobot-common-DropFilesHereHint {
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  text-align: center;
  color: #768184;
  font-size: 24px;
  line-height: 28px;
  background-color: rgba(255, 255, 255, 0.9);
}
.filerobot-common-DropFilesHereHint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  border: 1px dashed #5282DB;
  border-radius: 3px;
}
.filerobot-common-DropFilesHereHint-inner svg {
  margin-bottom: 25px;
  animation: 2s moving ease infinite;
}
@keyframes moving {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(0, -10px);
  }
}
[data-filerobot-theme=dark] .filerobot-common-DropFilesHereHint {
  color: #bbb;
  border-color: #02baf2;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%2302BAF2' fillRule='nonzero'/%3E%3C/svg%3E");
}

.filerobot-common-DropFilesTarget * {
  pointer-events: none;
}

.filerobot-common-DropFilesHereHint-visible {
  visibility: visible;
}

.filerobot-common-Search .filerobot-c-separator {
  height: 70%;
  margin: 0;
}

.filerobot-common-Search-searchButton {
  height: 100%;
  padding: 12px;
  padding-top: 10px;
  cursor: pointer;
}

.filerobot-common-Search {
  display: flex;
  position: relative;
  height: 40px;
  background: #fff;
  border: 1px solid #DFE7ED;
  border-radius: 4px;
  align-items: center;
  white-space: nowrap;
}

.filerobot-common-Search:focus-within,
.filerobot-common-Search:active {
  background-color: rgb(255, 255, 255) !important;
}
.filerobot-common-Search:focus-within .filerobot-common-Search-searchInput,
.filerobot-common-Search:active .filerobot-common-Search-searchInput {
  background-color: rgb(255, 255, 255) !important;
}

.filerobot-common-Search-searchInput {
  height: -moz-fit-content;
  height: fit-content;
  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 14px;
  outline: none;
  border: none;
  min-width: 24px;
  width: 100%;
  margin: 6px 0px;
}
.filerobot-common-Search-searchInput button {
  height: 100%;
}
.filerobot-common-Search-searchInput .filerobot-common-TopBar-input-fragment {
  display: inherit;
  height: inherit;
  width: inherit;
}
.filerobot-common-Search-searchInput:focus {
  outline: none;
}
[data-filerobot-theme=dark] .filerobot-common-Search-searchInput {
  background-color: #1f1f1f;
}
[data-filerobot-theme=dark] .filerobot-common-Search-searchInput {
  color: #fff;
}
.filerobot-common-Search-searchInput::-moz-placeholder {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #A9B6C2;
}
.filerobot-common-Search-searchInput::placeholder {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #A9B6C2;
}

.filerobot-common-Search-searchAndAppendedOptions {
  display: flex;
  align-items: center;
  height: 100%;
}

.filerobot-common-Search-searchAndFiltersInputs {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 100%;
  flex-grow: 1;
  overflow: auto hidden;
  white-space: nowrap;
  -ms-overflow-style: none;
}

.filerobot-common-PoweredBy-label {
  border: 1px solid #DFE7ED;
  border-bottom: 0;
  background-color: #F8FAFB;
  border-radius: 0;
  color: #778285;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 4px 14px;
  border-top-left-radius: 40px;
  font-size: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1001;
  margin-right: -1px;
}

.filerobot-common-secondaryTxt {
  color: #939393;
  font-size: 12px;
  line-height: 14px;
}

.filerobot-TransitionWrapper {
  --translateX: 0;
  --translateY-shown: 0;
  --translateY-hidden: -105%;
  display: none;
  position: absolute;
  top: 0;
  background: #fff;
  overflow-y: hidden;
}
.filerobot-TransitionWrapper.--applied {
  display: block;
  z-index: 1002;
  height: 100%;
  width: 100%;
}

.filerobot-transition-slideDownUp-enter {
  opacity: 0.01;
  transform: translate3d(var(--translateX), var(--translateY-hidden), 0);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.filerobot-transition-slideDownUp-enter.filerobot-transition-slideDownUp-enter-active {
  opacity: 1;
  transform: translate3d(var(--translateX), var(--translateY-shown), 0);
}

.filerobot-transition-slideDownUp-leave {
  opacity: 1;
  transform: translate3d(var(--translateX), var(--translateY-shown), 0);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.filerobot-transition-slideDownUp-leave.filerobot-transition-slideDownUp-leave-active {
  opacity: 0.01;
  transform: translate3d(var(--translateX), var(--translateY-hidden), 0);
}

.filerobot-common-datePicker {
  position: relative;
}
.filerobot-common-datePicker * {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */ /* Konqueror */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently */
}
.filerobot-common-datePicker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.filerobot-common-datePicker-input {
  overflow: hidden;
}
.filerobot-common-datePicker-input input {
  cursor: pointer;
}
.filerobot-common-datePicker-input input:focus {
  outline: none;
}
.filerobot-common-datePicker-container {
  position: absolute;
  width: 215px;
  min-height: 200px;
  max-height: 240px;
  background: #fff;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  padding: 12px 12px;
  z-index: 11111111111111;
}
.filerobot-common-datePicker-container-head {
  display: flex;
  align-items: center;
}
.filerobot-common-datePicker-container-head-body {
  float: left;
  width: 120px;
  height: 100%;
}
.filerobot-common-datePicker-container-head-body-year {
  width: 100%;
  height: 30px;
  font-size: 27px;
  color: #5D6D7E;
  font-weight: 200px;
  text-align: center;
  float: left;
}
.filerobot-common-datePicker-container-head-body-month {
  float: left;
  width: 100%;
  height: 15px;
  font-size: 13px;
  color: #5D6D7E;
  font-weight: 200px;
  text-align: center;
}
.filerobot-common-datePicker-container-head-button {
  width: 45px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
.filerobot-common-datePicker-container-head-button-inner {
  float: left;
  height: 25px;
  width: 25px;
  background: #f4f4f4;
  border-radius: 2px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -17px;
  margin-top: -17px;
}
.filerobot-common-datePicker-container-head-button-inner:hover > span {
  border-color: #555 !important;
}
.filerobot-common-datePicker-container-head-button-inner:hover {
  cursor: pointer;
  background: #eee;
}
.filerobot-common-datePicker-calendar {
  width: 100%;
  height: 100%;
}
.filerobot-common-datePicker-calendar-body, .filerobot-common-datePicker-calendar-day span, .filerobot-common-datePicker-calendar-day, .filerobot-common-datePicker-calendar-day-container {
  position: relative;
  display: block;
  float: left;
  box-sizing: border-box;
}
.filerobot-common-datePicker-calendar-body {
  height: 250px;
  width: 100%;
}
.filerobot-common-datePicker-calendar-day {
  width: 14%;
  height: 10%;
}
.filerobot-common-datePicker-calendar-day-container {
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-weight: 300;
  color: #37414B;
  text-align: center;
}
.filerobot-common-datePicker-calendar-day-container span {
  width: 25px;
  height: 25px;
  margin-top: -15px;
  margin-left: -15px;
  left: 50%;
  top: 50%;
  font-weight: 400;
  border-radius: 2px;
  line-height: 30px;
}
.filerobot-common-datePicker-calendar-day-container span:hover {
  cursor: pointer;
  background: #E9EEF2;
}
.filerobot-common-datePicker-calendar-day.disabled {
  pointer-events: none;
}
.filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
  color: #ddd;
}
.filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
  background: #fff !important;
}
.filerobot-common-datePicker-calendar-day.highlight .filerobot-common-datePicker-calendar-day-container span {
  background: #5D6D7E;
}
.filerobot-common-datePicker-calendar-day.highlight-green .filerobot-common-datePicker-calendar-day-container span {
  background: #4958BC;
  color: #fff;
}
.filerobot-common-datePicker-calendar-head {
  display: flex;
  height: 20px;
  width: 100%;
  margin-top: 2px;
  margin-bottom: 5px;
}
.filerobot-common-datePicker-calendar-head-name {
  width: 14.285%;
  height: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #5D6D7E;
  font-size: 9px;
  text-align: center;
}

.mdpchbi-right-arrows:after,
.mdpchbi-left-arrows:after,
.mdpchbi-right-arrow,
.mdpchbi-right-arrows,
.mdpchbi-left-arrow,
.mdpchbi-left-arrows {
  display: block;
  float: left;
  width: 6px;
  height: 6px;
  border-left: 2px solid #888;
  border-bottom: 2px solid #888;
  position: absolute;
}

.mdpchbi-right-arrow,
.mdpchbi-right-arrows,
.mdpchbi-left-arrow,
.mdpchbi-left-arrows {
  transform: rotate(45deg);
  left: 50%;
  top: 50%;
  margin-left: -2px;
  margin-top: -4px;
}

.mdpchbi-right-arrows,
.mdpchbi-right-arrow {
  transform: rotate(225deg);
  margin-left: -4px;
}

.mdpchbi-right-arrows:after,
.mdpchbi-left-arrows:after {
  content: "";
}

.mdpchbi-left-arrows {
  margin-left: -5px;
}

.mdpchbi-right-arrows {
  margin-left: -2px;
}

.mdpchbi-right-arrows:after,
.mdpchbi-left-arrows:after {
  left: 3px;
  top: -5px;
}

.filerobot-ProviderBrowser-layoutType--grid ul.filerobot-ProviderBrowser-list::after {
  content: "";
  flex: auto;
}
.filerobot-ProviderBrowser-layoutType--grid ul.filerobot-ProviderBrowser-list:focus {
  outline: none;
}
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-header {
  display: flex;
  align-items: center;
  font-weight: 400;
  width: 100%;
  max-width: 130px;
  padding: 0 12px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 12px;
}
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-wrapper {
  padding: 8px 24px 12px;
}
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-wrapper-list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem {
  min-width: 200px;
  position: relative;
  margin: 0;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem::before {
  content: "";
  padding-top: 88%;
  display: block;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.item-folder .filerobot-ProviderBrowserItem-folderSelectBox, .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem.item-folder:hover .filerobot-ProviderBrowserItem-folderSelectBox {
  display: flex;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.filerobot-ProviderBrowserItem--beingRenamed):hover .filerobot-Explorer-dots-menu-icon {
  display: block;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder) {
  outline: none;
  border: 4px solid transparent;
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder) {
  border: 4px solid #000;
  background-color: #4D4E4E;
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):hover *, [data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):focus * {
  color: #000;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder).no-selection .filerobot-ProviderBrowserItem-inner {
  cursor: auto;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):not(.no-selection) .filerobot-ProviderBrowserItem-inner:hover {
  background-color: #EFF3F6;
}
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-videoDuration {
  position: absolute;
  bottom: 33%;
  z-index: 2;
  background: rgba(79, 98, 118, 0.7);
  border-radius: 2px;
  left: 16px;
  padding: 2px 4px;
  text-align: center;
  font-weight: 500;
  line-height: 12px;
  font-size: 11px;
  box-shadow: 0px 1px 2px 0px rgba(77, 78, 78, 0.15);
  color: #fff !important;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-inner {
  background-color: #5D6D7E !important;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-inner * {
  fill: #fff;
  color: #fff;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.with-meta input {
  text-align: center;
  color: #000 !important;
  margin-top: 4px;
  margin-bottom: -1px;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.with-meta button.filerobot-ProviderBrowserItem-inner:focus {
  box-shadow: none !important;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-Explorer-Item-fileInfoAndButtons {
  background-color: inherit;
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview .filerobot-ProviderBrowserItem-inner {
  background-color: rgba(147, 147, 147, 0.2);
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview .filerobot-ProviderBrowserItem-inner {
  background-color: rgba(234, 234, 234, 0.2);
}
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview svg {
  fill: rgba(0, 0, 0, 0.7);
  width: 30%;
  height: 30%;
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview svg {
  fill: rgba(255, 255, 255, 0.8);
}
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner {
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0px 1px 2px 0px rgba(77, 78, 78, 0.15);
  background-color: #EFF3F6;
}
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner:focus {
  outline: none;
}
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
}
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta:focus {
  box-shadow: none;
}
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-fakeCheckbox {
  display: none;
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 8px;
}
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-folderSelectBox {
  top: 26px;
  left: 14px;
  position: absolute;
  display: none;
}

.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-fakeCheckbox {
  display: block;
}

*:hover > .filerobot-ProviderBrowserItem-fakeCheckbox {
  display: block;
}

.filerobot-Dragging-folders > *,
.filerobot-Dragging-files > * {
  pointer-events: none;
}

.filerobot-ProviderBrowser-layoutType--list,
.filerobot-ProviderBrowser-layoutType--tiles {
  background-color: #fff;
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--list,
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--tiles {
  background-color: #1f1f1f;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  flex: 0.5 0;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell-cursor-default,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-cursor-default {
  cursor: default !important;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell-icon,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon {
  max-width: 24px;
  min-width: 20px;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn {
  display: flex;
  align-items: center;
  flex: 1 0;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn input, .filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn label,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn input,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn label {
  width: 80%;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn label,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowser-list,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowser-list {
  outline: none;
}
.filerobot-ProviderBrowser-layoutType--list li.filerobot-ProviderBrowserItem,
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
  outline: none;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--list li.filerobot-ProviderBrowserItem,
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
  color: #eaeaea;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowser-body,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowser-body {
  width: 100%;
  overflow-x: auto;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.07);
  position: sticky;
  top: -1px;
  background-color: #fff;
  z-index: 11;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header:last-child,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header:last-child {
  margin-right: 0;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header .filerobot-c-icon,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header .filerobot-c-icon {
  vertical-align: middle;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-wrapper-list,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-wrapper-list {
  padding: 0;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-fakeCheckbox,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-fakeCheckbox {
  margin-right: 8px;
  vertical-align: middle;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.3;
  outline: none;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner input,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner input {
  height: 17px;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner img, .filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner svg,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner img,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner svg {
  max-width: 20px;
  max-height: 20px;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem {
  color: #4D4E4E;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem--selected,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem--selected {
  background: #5D6D7E;
  color: #fff;
  border-bottom: 1px solid #DFE7ED !important;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem--selected svg path,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem--selected svg path {
  fill: #DFE7ED;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-listHead-checkbox,
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-listHead-checkbox {
  min-width: 16px;
}

.filerobot-ProviderBrowser-layoutType--list .filerobot-common-Checkbox {
  margin-right: 8px;
}
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header .filerobot-Provider-list-cell-icon {
  display: flex;
  padding-left: 2px;
}

.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header {
  padding: 11px 12px;
}
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header .filerobot-Provider-list-cell-icon {
  display: flex;
  padding-left: 4px;
  margin-left: 4px;
}
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
  padding: 11px 12px;
}
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon {
  max-width: 36px;
  min-width: 36px;
  margin-right: 8px;
}
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon svg:not(.context-menu-icon), .filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon img {
  width: 36px;
  max-width: 36px;
  max-height: 36px;
}

.filerobot-Explorer-Details-header {
  display: flex;
  align-items: center;
  margin-left: 30px;
  font-size: 12px;
}
.filerobot-Explorer-Details-header-icon {
  margin-left: 6px;
}
.filerobot-Explorer-Details-header-title {
  margin-top: 12px;
  display: flex;
  align-items: center;
  max-width: 90%;
}
.filerobot-Explorer-Details-header-title label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.filerobot-Explorer-Details-tabs {
  display: flex;
  padding: 0 8px;
  margin-top: 8px;
  font-size: 12px;
  cursor: pointer;
}
.filerobot-Explorer-Details-tabs-details, .filerobot-Explorer-Details-tabs-comments {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 30px;
  color: #4D4E4E;
  border: 1px solid transparent;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
}
.filerobot-Explorer-Details-tabs-details label, .filerobot-Explorer-Details-tabs-comments label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.filerobot-Explorer-Details-tabs-details label:hover, .filerobot-Explorer-Details-tabs-comments label:hover {
  margin-bottom: -1px;
  border-bottom: 2px solid #6879EB;
  background-color: #F8FAFB;
  color: #6879EB;
}
.filerobot-Explorer-Details-tabs-details > input[type=radio], .filerobot-Explorer-Details-tabs-comments > input[type=radio] {
  position: absolute;
  left: -200vw;
}
.filerobot-Explorer-Details-tabs-details > input:checked + label, .filerobot-Explorer-Details-tabs-comments > input:checked + label {
  margin-bottom: -1px;
  border-bottom: 2px solid #6879EB;
  background-color: #F8FAFB;
  color: #6879EB;
}
.filerobot-Explorer-Details-icon-preview {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 21px;
}
.filerobot-Explorer-Details-file-preview {
  margin: 8px 5px 12px 8px;
  height: 146px;
  position: relative;
}
.filerobot-Explorer-Details-file-preview:hover .filerobot-Explorer-Details-thumbnailZoomOverlay {
  display: flex;
}
.filerobot-Explorer-Details-thumbnail {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.filerobot-Explorer-Details-info {
  font-size: 12px;
  margin: 0;
  padding: 0;
  margin-top: 12px;
  padding-left: 12px;
}
.filerobot-Explorer-Details-info-list {
  display: flex;
  list-style: none;
  margin-bottom: 8px;
}
.filerobot-Explorer-Details-info-list-name {
  display: flex;
  font-weight: 400;
  width: 68px;
  padding-right: 2px;
  color: #768184;
}
.filerobot-Explorer-Details-info-list-name > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.filerobot-Explorer-Details-info-list-value {
  display: inline-block;
  color: #4D4E4E;
  font-weight: 400;
  width: calc(100% - 68px);
}
.filerobot-Explorer-Details-section {
  margin-top: 8px;
  padding-top: 12px;
  margin-right: 12px;
  margin-left: 12px;
  font-size: 12px;
  border-top: 1px solid #DFE7ED;
}
.filerobot-Explorer-Details-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  padding-right: 5px;
}
.filerobot-Explorer-Details-section-header-title {
  color: #768184;
}
.filerobot-Explorer-Details-section-content-list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.filerobot-Explorer-Details-section-content-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 5px 5px 0;
  padding: 4px 6px;
  border-radius: 2px;
  color: #4D4E4E;
  background: #F8FAFB;
  font-family: "Roboto";
  font-weight: 400;
}

.filerobot-Explorer-Details-thumbnailZoomOverlay {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 111;
}

.filerobot-Explorer-Details-thumbnailZoomOverlayButton {
  width: 100%;
  height: 100%;
}
.filerobot-Explorer-Details-thumbnailZoomOverlayButton:hover {
  background: transparent !important;
}
.filerobot-Explorer-Details-thumbnailZoomOverlayButton:active:before {
  opacity: 0.5 !important;
}

.filerobot-ProviderBrowser {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  position: relative;
  background-color: #fff;
}

.filerobot-ProviderBrowser-user {
  margin: 0 8px 0 0;
  font-weight: 500;
  color: #333;
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-user {
  color: #eaeaea;
}

.filerobot-ProviderBrowser-select {
  cursor: pointer;
  line-height: 1.5;
  color: #000;
}
.filerobot-ProviderBrowser-select.--filter {
  max-width: 120px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 2px;
}
.filerobot-ProviderBrowser-select:focus {
  outline: none;
  border-color: transparent;
}

.filerobot-ProviderBrowser-user:after {
  content: "·";
  position: relative;
  left: 4px;
  color: #939393;
  font-weight: normal;
}

.filerobot-ProviderBrowser-headerBar--simple {
  text-align: center;
  display: block;
  justify-content: center;
}

.filerobot-ProviderBrowser-headerBar {
  display: flex;
  align-items: center;
  padding: 12px;
  color: #757575;
  line-height: 1.4;
  font-size: 12px;
  position: relative;
  width: 100%;
}
.filerobot-size--md .filerobot-ProviderBrowser-headerBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filerobot-size--height-md .filerobot-ProviderBrowser-headerBar {
  display: flex;
  align-items: center;
}
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-headerBar {
  border-bottom: 1px solid #333;
  background-color: #1f1f1f;
}

.filerobot-ProviderBrowser-headerBar--simple {
  text-align: center;
  display: block;
  justify-content: center;
}

.filerobot-ProviderBrowser-body {
  flex: 1;
  z-index: 1000;
  position: relative;
  display: flex;
  height: 100%;
}

.filerobot-ProviderBrowser-body-list {
  width: 100%;
  overflow-x: auto;
}

.item-folder.filerobot-ProviderBrowserItem {
  padding: 4px;
  border-radius: 7px;
  outline: none;
}
.item-folder.filerobot-ProviderBrowserItem::before {
  content: unset !important;
  display: none !important;
  padding-top: 0 !important;
}
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #DFE7ED;
  border-radius: 2px;
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  outline: none;
}
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder .filerobot-ProviderBrowserItem-folderLiIcon > * {
  width: 20px;
  height: 20px;
}
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder input {
  width: 96%;
}
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder .filerobot-Explorer-dots-menu-icon {
  display: none;
}
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder-title {
  flex-grow: 1;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  line-height: 16px;
  color: #4D4E4E;
  margin-left: 8px;
}
.item-folder.filerobot-ProviderBrowserItem button.filerobot-ProviderBrowserItem-inner-folder:hover {
  background-color: #EFF3F6;
}
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder {
  background-color: #5D6D7E !important;
  outline: none;
}
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder input {
  color: #000;
  width: 96%;
}
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder * {
  fill: #DFE7ED;
  color: #fff;
}

.filerobot-ProviderBrowserItem-inner {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.filerobot-Provider-list-cell-header-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filerobot-Provider-list-cell-header-hidableIcon {
  visibility: hidden;
}

.filerobot-Provider-list-cell-wrapper {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.filerobot-Provider-list-cell-wrapper:hover .filerobot-Provider-list-cell-header-hidableIcon {
  visibility: visible;
}

.filerobot-ProviderBrowser-mainContent {
  flex-grow: 1;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  display: flex;
  flex-direction: column;
}

.filerobot-ProviderBrowserItem--draggable-block {
  position: sticky;
  top: 0;
  width: 1px;
  height: 100%;
  cursor: col-resize;
  z-index: 100;
  background: #DFE7ED;
}

.filerobot-ProviderBrowserItem-SideNav-addNew {
  color: #5D6D7E;
  font-weight: 500;
  cursor: pointer;
}

.filerobot-ProviderBrowser-body-sideButtons {
  min-width: 40px;
  max-width: 40px;
}

.filerobot-ProviderBrowser-body-leftSideButtons {
  margin-right: 20px;
}

.filerobot-ProviderBrowser-body-leftNavigationButton {
  background: #F8FAFB;
  box-shadow: 0px 1px 4px rgba(77, 78, 78, 0.15);
  border-radius: 0px 50px 50px 0px;
  padding: 10px 14px 10px 10px;
  margin-top: 10px;
  width: 100%;
  position: sticky;
  top: 91px;
}

.filerobot-ProviderBrowser-body-rightSideButtons {
  margin-left: 20px;
}

.filerobot-ProviderBrowser-body-rightNavigationButton {
  background: #F8FAFB;
  box-shadow: 0px 1px 4px rgba(77, 78, 78, 0.15);
  border-radius: 50px 0px 0px 50px;
  padding: 10px 10px 10px 14px;
  margin-top: 10px;
  width: 100%;
  position: sticky;
  top: 91px;
}

.filerobot-Provider-LabelsListLi-selectMode,
.filerobot-Provider-LabelsListLi-selectMode * {
  cursor: pointer;
}

.filerobot-ProviderBrowserItem-ItemHoverBottomOptions {
  bottom: 4%;
  right: 3%;
  top: auto;
}
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected {
  display: flex;
  visibility: visible;
}
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button {
  background: #fff;
}
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active) svg * {
  color: #6879EB;
  fill: #6879EB;
}
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active):hover {
  background: #EFF3F6;
}
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active):hover svg * {
  fill: #606FD1;
  color: #606FD1;
}

.filerobot-Explorer-ImageOptions-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.filerobot-Explorer-ImageOptions-options-select {
  width: 60%;
  text-align: left;
  text-transform: capitalize;
}
.filerobot-Explorer-ImageOptions-options-select-fullWidth {
  width: 100%;
}
.filerobot-Explorer-ImageOptions-size-options {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 4px;
}
.filerobot-Explorer-ImageOptions-description {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.filerobot-Explorer-ImageOptions-settings {
  margin-bottom: 10px;
}
.filerobot-Explorer-ImageOptions-resize-options {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.filerobot-Explorer-ImageOptions-download-zip {
  display: flex;
  margin-top: 16px;
}

#SfxPopper {
  position: absolute;
  top: -10000px;
}

.filerobot-Explorer-TopBar-PrependedOptions {
  display: flex;
  align-items: center;
  height: 100%;
}

.filerobot-Explorer-TopBar-AppendedOptions {
  display: flex;
  align-items: center;
  float: right;
}

.filerobot-Explorer-TopBar-Search-ContextDropdown-SubList-container {
  padding: 0 !important;
  cursor: default !important;
  background: #ffffff !important;
}

#SfxPopper {
  z-index: 11111111;
}

@keyframes filerobot-Explorer-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes filerobot-Explorer-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes filerobot-Explorer-slideDownAndFadeIn {
  from {
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
}
@keyframes filerobot-Explorer-slideDownAndFadeIn--small {
  from {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes filerobot-Explorer-slideUpFadeOut {
  from {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
}
@keyframes filerobot-Explorer-slideUpFadeOut--small {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
}
.filerobot-Explorer--modal {
  z-index: 1200;
}

.filerobot-Explorer-assets-picker-modal {
  z-index: 100000;
}

.filerobot-Explorer--modal[aria-hidden=true] {
  display: none;
}

.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose > .filerobot-Explorer-inner {
  animation: filerobot-Explorer-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media only screen and (min-width: 820px) {
  .filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose > .filerobot-Explorer-inner {
    animation: filerobot-Explorer-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose > .filerobot-Explorer-overlay {
  animation: filerobot-Explorer-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose.filerobot-Explorer--isClosing > .filerobot-Explorer-inner {
  animation: filerobot-Explorer-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media only screen and (min-width: 820px) {
  .filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose.filerobot-Explorer--isClosing > .filerobot-Explorer-inner {
    animation: filerobot-Explorer-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose.filerobot-Explorer--isClosing > .filerobot-Explorer-overlay {
  animation: filerobot-Explorer-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.filerobot-Explorer--modal .filerobot-Explorer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(79, 98, 118, 0.3);
  z-index: 1002;
  outline: none;
}

.filerobot-Explorer-inner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  outline: none;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}
.filerobot-size--md .filerobot-Explorer-inner {
  min-height: auto;
}
.filerobot-Explorer--modal .filerobot-Explorer-inner {
  z-index: 1003;
}
[data-filerobot-theme=dark] .filerobot-Explorer-inner {
  background-color: #1f1f1f;
}

.filerobot-Explorer-innerWrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: 5px;
  opacity: 0;
  overflow: hidden;
  background: #fff;
}

.filerobot-Explorer-close:focus {
  outline: none;
}
.filerobot-Explorer-close::-moz-focus-inner {
  border: 0;
}
.filerobot-Explorer-close {
  display: block;
  position: absolute;
  top: -33px;
  right: -2px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 27px;
  z-index: 1005;
}
@media only screen and (min-width: 820px) {
  .filerobot-Explorer-close {
    font-size: 35px;
    top: -10px;
    right: -35px;
  }
}

.filerobot-Explorer--isInnerWrapVisible .filerobot-Explorer-innerWrap {
  opacity: 1;
}

.filerobot-Explorer--modal .filerobot-Explorer-inner {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 15px;
  border: none;
}
@media only screen and (min-width: 820px) {
  .filerobot-Explorer--modal .filerobot-Explorer-inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15);
  }
}

.filerobot-Explorer--move-informer .filerobot.filerobot-Informer {
  bottom: 80px;
}

.filerobot-Explorer-isFixed {
  overflow: hidden;
  height: 100vh;
}

.filerobot-Explorer-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.filerobot-Explorer-TopBar-leftSide {
  height: 100%;
  margin-right: 12px;
}

.filerobot-Explorer-Search-filtersInside-newFilterChip {
  margin-top: 0;
  margin-right: 8px;
  outline: none;
}
.filerobot-Explorer-Search-filtersInside-newFilterChip * {
  outline: none;
}

.filerobot-common-FormControl .SfxTagField-listWrapper {
  width: 100%;
}

.sort-menuitem.SfxMenuItem-root .SfxMenuItem-Icon.SfxMenuItem-Actions {
  display: none;
}

.filerobot-transparent-selection *::-moz-selection {
  all: inherit;
}

.filerobot-transparent-selection *::selection {
  all: inherit;
}