@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;
}