@font-face {
  font-family: 'Montserrat';
  src: url("/static/fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
}

/* The Modal (background) */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.53);
}

dialog {
  border: none;
  border-radius: 8px;
  min-width: 40%;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.04);
  /* Modal Content/Box */
  /* The Close Button */
}

dialog .modal-content {
  padding: 64px;
  background: #FFFFFF;
  border-radius: 8px;
  color: #263238;
}

dialog .modal-header {
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 20px;
}

dialog .modal-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

dialog .modal-footer .dismis {
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  /* Color A2 */
  color: #F52871;
}

dialog .form label {
  display: block;
  margin-bottom: 0.7rem;
}

dialog .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

dialog .close:hover,
dialog .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#perms-project-modal {
  width: 60%;
  height: 90%;
}

#perms-project-modal p {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

#perms-project-modal .box {
  height: 32px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #f0f0f0;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
}

#perms-project-modal .box.active {
  background: rgba(73, 188, 167, 0.4);
}

#perms-project-modal .box:hover {
  cursor: pointer;
}

#new-version-modal .material-box {
  width: 100%;
}

#perms-user-modal {
  width: 50%;
  height: 80%;
}

#perms-user-modal td:first-child {
  width: 10%;
}

#perms-user-modal td:last-child {
  width: 20%;
}

#perms-user-modal label {
  font-size: 14px;
  margin-bottom: 1rem;
}

#configure-material-modal .ui-datepicker-trigger {
  position: absolute;
  top: 30px;
  left: 8px;
}

#configure-material-modal .hasDatepicker {
  padding-left: 38px;
}

#configure-material-modal label {
  font-size: 12px;
}

#add-user-to-group-modal {
  height: 60%;
}

#add-user-to-group-modal .modal-body {
  min-height: 200px;
}

#avatar-user-modal .modal-body {
  display: flex;
  justify-content: center;
}

#avatar-user-modal #crop-container {
  width: 400px;
  height: 400px;
  margin-bottom: 20px;
  display: none;
}

#avatar-user-modal #crop-container #image {
  max-width: 400px;
  max-height: 400px;
}

#avatar-user-modal #preview {
  align-self: center;
  margin-left: 35px;
}

:root {
  --drag-box-size: 12px;
  --text-darker-color: #AAA;
  --light-bg-color: #999;
  --nav-bg-color: #666;
}

.error {
  outline: 2px solid var(--error-color);
}

.sequence_input {
  position: relative;
}

.sequence_input input {
  min-width: 150px;
}

.sequence_input button {
  position: absolute;
  right: 16px;
  width: 24px;
  height: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.sequence_input button svg {
  position: absolute;
  left: 0;
}

.sequence_input #add_frame_start, .sequence_input #add_frame_end {
  top: 10px;
}

.sequence_input #add_frame_start svg, .sequence_input #add_frame_end svg {
  top: -7px;
}

.sequence_input #subtract_frame_start, .sequence_input #subtract_frame_end {
  bottom: 10px;
}

.sequence_input #subtract_frame_start svg, .sequence_input #subtract_frame_end svg {
  top: -3px;
}

.player a:not(.create_comment) {
  padding: 15px;
  border-width: 1px;
  background-color: transparent;
}

.player #draw_rect[disabled="disabled"] {
  color: var(--grey-color);
  border-color: var(--grey-color);
}

.player #video-frames {
  position: absolute;
  display: flex;
  height: 62px;
  width: 100%;
  overflow: hidden;
}

.player #video-frames canvas {
  height: 62px;
  width: 10%;
}

.player #video-frames img {
  width: 100%;
}

.player #sequence_container {
  position: relative;
  display: flex;
  height: 62px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.player #sequence_container .left-grey, .player #sequence_container .right-grey {
  height: 100%;
  top: 0;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
}

.player #sequence_container .left-grey {
  right: 0;
}

.player #sequence_container .right-grey {
  left: 0;
}

.player #sequence_container #video-selector {
  top: 0;
  left: 0;
  right: 0;
  position: relative;
  border-left: 2px solid var(--pure-white);
  border-right: 2px solid var(--pure-white);
  box-sizing: border-box;
}

.player #sequence_container .left-drag, .player #sequence_container .right-drag {
  background: var(--pure-white);
  height: 100%;
  position: absolute;
  cursor: ew-resize;
  user-select: none;
}

.player #sequence_container .left-drag {
  right: 0;
}

.player #sequence_container .left-drag .box {
  right: calc(-0.5*var(--drag-box-size) - 1px);
}

.player #sequence_container .right-drag .box {
  left: calc(-0.5*var(--drag-box-size) - 1px);
}

.player #sequence_container .box {
  z-index: 3;
  position: absolute;
  top: 12px;
  bottom: 12px;
  box-sizing: border-box;
  border-radius: 100px;
  background: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--pure-white);
  font-size: 2rem;
  font-weight: 700;
  width: var(--drag-box-size);
  gap: 4px;
}

.player #sequence_container .box .drag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--breadcrumb-color);
}

.player #sequence_container .center-drag {
  display: none;
  position: relative;
  height: var(--drag-box-size);
  top: 100%;
  width: 3rem;
  left: calc(50% - 1.5rem);
  border-radius: 8px;
  background: var(--light-bg-color);
  color: var(--text-default-color);
  cursor: ew-resize;
  user-select: none;
  z-index: 2;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
}

.player #sequence_container .center-drag > div {
  margin-top: -5px;
}

.player .player-bg {
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  margin-left: 78px;
  margin-right: 0;
}

.player .player-bg video {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.player #video_container {
  display: flex;
  position: relative;
  min-height: 60vh;
}

.player #video_container video {
  flex: 1;
}

.player #video_container .loader {
  display: none;
}

.player #video_container.disabled .loader {
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
}

.player #video_container .comment_rect {
  border-style: solid;
  position: absolute;
  cursor: grab;
  border-radius: 4px;
  box-sizing: border-box;
  border-color: lime;
}

.player #video_container .comment_rect.disabled {
  cursor: default;
}

.player #video_container .position-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 2;
  cursor: move;
}

.player #video_container .disable_events {
  pointer-events: none;
}

.player #video_container .remove_rect {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--pure-white);
  width: 24px;
  height: 24px;
  padding: 0;
  display: none;
  border: unset;
  border-radius: 0 0 0 8px;
  cursor: pointer;
}

.player #video_container .remove_rect:focus {
  outline: none;
}

.player #video_container .pick_color {
  border: none;
  border-radius: 0 0 8px 0;
  padding: 0;
  color: var(--pure-white);
  cursor: pointer;
  display: none;
  width: 24px;
  height: 24px;
}

.player #video_container .pick_color input {
  width: 0;
  height: 0;
  padding: 0;
  border: none;
  visibility: hidden;
}

.player #video_container:hover .position-circle {
  background-color: white;
  border: 1px solid black;
}

.player #video_container:hover .remove_rect, .player #video_container:hover .pick_color {
  display: flex;
}

.player #video_container.disabled, .player #sequence_container.disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: .25;
}

.player #videospeeds {
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
}

.player #player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player #player-controls button {
  border: none;
  border-radius: 8px;
  background-color: var(--light-bg-color);
  color: var(--text-darker-color);
}

.player #player-controls button.round-button {
  border-radius: 50%;
  padding: 0;
  height: 32px;
  width: 32px;
}

.player #player-controls button.round-button svg {
  width: 100%;
  height: 100%;
}

.player #player-controls .transport-buttons {
  align-items: center;
}

.player #player-controls #btn_play_pause {
  height: 60px;
  width: 60px;
  margin-left: 10px;
  margin-right: 10px;
}

.player #player-controls .player_widget {
  flex: 1;
  display: flex;
  justify-content: end;
}

.player #player-controls .player_widget .player_content > div {
  gap: 8px;
}

.player #player-controls .player_widget .icon-button {
  --button-size: 48px;
}

.player #player-controls .sequence-input {
  display: flex;
  position: relative;
}

.player #player-controls .sequence-input + span {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.player #player-controls .sequence-input button {
  height: 50%;
  position: absolute;
  right: 5px;
  top: 0;
  color: var(--text-darker-color);
}

.player #player-controls .sequence-input button + button {
  top: 50%;
}

.player .timebubble {
  opacity: 0;
  transition: .25s all;
}

.player .timebubble .arrow-down {
  border-top: 5px solid #000;
}

.player .timebubble .bubble {
  position: absolute;
  background: #000;
  top: -1.4rem;
  left: -1.5rem;
  padding: .1rem .25rem;
  font-size: .6rem;
  color: white;
  border-radius: .5rem;
}

.player .timetick {
  position: absolute;
  z-index: 2;
  height: 100%;
  background: var(--error-color);
  width: 2px;
}

.player .current_time_container {
  position: absolute;
  top: -24px;
  left: 40px;
}

.player .current_time_container .player_current_time {
  position: relative;
  left: -50%;
  font-family: monospace;
  font-size: 18px;
}

.player .sound-icon-internal {
  margin-left: 4px;
  cursor: pointer;
}

.player #sound_widget {
  width: 200px;
  height: 24px;
  margin-left: 4px;
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.player #sound_widget .slider {
  -webkit-appearance: none;
  width: 100%;
  background: unset;
  outline: none;
  position: relative;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.player #sound_widget .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--praimary-color);
  border-color: transparent;
  outline: none;
  cursor: pointer;
  z-index: 100;
  filter: drop-shadow(0px 1px 2px var(--main-bg-color));
}

.player #sound_widget .slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--praimary-color);
  border-color: transparent;
  outline: none;
  cursor: pointer;
  z-index: 100;
  filter: drop-shadow(0px 1px 2px var(--main-bg-color));
}

.player #sound_widget .slidecontainer {
  width: 100%;
  position: relative;
}

.player #sound_widget .timeline {
  width: calc(100% - 48px);
  background-clip: content-box;
  background-color: var(--light-bg-color);
  margin-left: 4px;
  margin-right: 4px;
  border-radius: 8px;
  position: absolute;
  height: .5rem;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
}

.player #sound_widget .progress {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 4px;
  display: flex;
  width: 50%;
  height: .5rem;
  border-radius: 8px;
  z-index: 2;
  background: var(--praimary-color);
}

.player .player_timer {
  display: none;
}

.player #timeline_widget {
  height: 2px;
  background-color: var(--grey-color);
  padding-top: 6px;
  padding-bottom: 6px;
  margin-top: 2px;
  margin-bottom: 2px;
  background-clip: content-box;
  position: relative;
}

.player #timeline_widget .progress {
  height: 2px;
  width: 0;
  background-color: var(--blackish-color);
}

.player #timeline_widget .timeline-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--breadcrumb-color);
  border-radius: 100%;
  top: -0.5px;
  border: 2px solid var(--background-color);
  z-index: 1;
  color: var(--pure-white);
  font-size: 10px;
  text-align: center;
  cursor: pointer;
}

.player #timeline_widget .timeline-dot.has-current {
  background-color: var(--praimary-color);
}

.player #timeline_widget .timeline-dot .dot-popup {
  display: none;
}

.player #timeline_widget .timeline-dot:hover .dot-popup {
  text-align: initial;
  display: flex;
  flex-direction: column;
  position: absolute;
  overflow: hidden;
  bottom: 20px;
  left: 0;
  background-color: var(--background-color);
  color: black;
  width: 400px;
  height: unset;
  border-radius: 8px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
}

.player #timeline_widget .timeline-dot:hover .dot-popup .body {
  width: 100%;
}

.player #timeline_widget .timeline-mark {
  position: absolute;
  top: -20px;
  --offset-left: 10px;
  z-index: 0;
}

.player #timeline_widget .timeline-mark svg.timeline-mark-flag {
  width: 20px;
  height: 28px;
}

.player #timeline_widget .timeline-mark svg.timeline-mark-plus {
  position: absolute;
  color: var(--pure-white);
  left: -2px;
}

.player #timeline_widget .timeline-mark svg.timeline-mark-trash {
  display: none;
}

.player #timeline_widget .timeline-mark.active {
  --offset-left: 15px;
  top: -33px;
}

.player #timeline_widget .timeline-mark.active svg.timeline-mark-flag {
  width: 30px;
  height: 42px;
}

.player #timeline_widget .timeline-mark.active svg.timeline-mark-plus {
  left: 3px;
  top: 4px;
}

.player #timeline_widget .timeline-mark.active svg.timeline-mark-trash {
  position: absolute;
  display: block;
  color: var(--pure-white);
  background-color: var(--error-color);
  left: 20px;
  top: -9px;
  padding: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
}

.player #timeline_widget .timeline-mark .comments-actions {
  position: absolute;
  width: 510px;
  height: 191px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--background-color);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
  bottom: 60px;
}

.player #timeline_widget .timeline-mark .comments-actions .fake-textarea {
  height: calc(5 * var(--line-height));
}

.player #first_frame, .player #last_frame {
  border-radius: 50%;
  padding: 7px;
  background-color: var(--nav-color);
}

.player #btn_play_pause {
  border-radius: 50%;
  background-color: var(--nav-color);
  padding: 0;
}

.player #btn_play_pause svg {
  width: 56px;
  height: 56px;
}

.player .btn-inverted {
  color: var(--pure-white);
  background-color: var(--praimary-color) !important;
}

.player #player_controls {
  position: relative;
}

:fullscreen #sequence_container {
  display: none;
}

:fullscreen #timeline_widget, :fullscreen #player_controls {
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 24px;
}

:fullscreen #fullscreen-comment {
  display: flex;
}

:fullscreen #video_container {
  max-height: calc(100% - 125px);
}

:fullscreen #video_container video {
  border-radius: 0;
}

:fullscreen #bottom-right-player-buttons {
  position: relative;
}

:fullscreen #bottom-right-player-buttons .comments-actions {
  position: absolute;
  width: 510px;
  height: 191px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--background-color);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
  bottom: 80px;
  right: 0;
}

:fullscreen #bottom-right-player-buttons .comments-actions .fake-textarea {
  height: calc(5 * var(--line-height));
}

:fullscreen .current_time_container {
  top: -25px;
}

.dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-smaller);
  position: relative;
}

.dropdown .dropdown-toggle {
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--text-darker-color);
  cursor: pointer;
}

.dropdown .dropdown-toggle.underlineblue {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--nav-color);
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--pure-white);
  color: var(--blackish-color);
  border-radius: 8px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.6));
  border-bottom: 1px solid var(--lighter-bg-color);
  white-space: nowrap;
}

.dropdown .dropdown-item {
  display: flex;
  align-items: center;
  --saved-default: var(--text-default-color);
}

.dropdown .dropdown-item a {
  --text-default-color: var(--text-darker-color);
  text-decoration: none;
  color: var(--text-default-color);
  font-weight: 700;
  padding: 10px 24px;
}

.dropdown .dropdown-item a:visited {
  color: var(--text-default-color);
}

.dropdown .dropdown-item a.active {
  color: var(--saved-default);
}

.dropdown .dropdown-item + .dropdown-item {
  border-top: 1px solid var(--lighter-bg-color);
}

.dropdown button.dropdown-button {
  border: none;
  padding: 10px 24px;
  color: var(--nav-color);
  font-weight: 700;
  width: 100%;
  background-color: inherit;
  cursor: pointer;
}

.dropdown .dropdown-link {
  display: flex;
  padding: 16px 32px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.dropdown .dropdown-link a {
  color: #524781;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
}

.dropdown .dropdown-version {
  display: flex;
  flex-direction: column;
  padding: 8px 32px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.dropdown .dropdown-version a {
  color: #524781;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
}

.dropdown .dropdown-version span {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}

.dropdown .dropdown-version.active {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--state-color);
}

.dropdown .dropdown-groups-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 8px 32px;
  color: #524781;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.dropdown .dropdown-groups-box a {
  text-decoration: none;
}

.dialog-toggle {
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-smaller);
  cursor: pointer;
}

.dialog-toggle[disabled] {
  filter: grayscale(0.9) contrast(0.7);
  cursor: not-allowed;
}

.dropdown.active .dropdown-content {
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.dropdown.active .dropdown-toggle {
  color: var(--text-default-color);
}

.dropdown.active .dropdown-toggle svg {
  color: var(--text-default-color);
}

.dropdown.active-dropup .dropdown-content {
  top: unset;
  bottom: calc(100% + 4px);
}

.dropdown.active.dropleft .dropdown-content {
  top: unset;
  bottom: unset;
  right: calc(100% + 4px);
}

.dropdown.active.dropright-up .dropdown-content {
  top: unset;
  right: unset;
  bottom: calc(100% + 4px);
  left: 0;
}

#dashboard {
  margin-bottom: 70px;
}

#dashboard .inline-checkbox {
  font-size: 14px;
  line-height: 16px;
}

#dashboard h2 {
  margin-right: 24px;
  font-size: 32px;
  font-weight: 700;
}

#dashboard .load-more-form {
  margin-top: 24px;
}

#dashboard .content-box {
  padding-top: 54px;
  padding-bottom: 54px;
  box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.04);
}

#dashboard .content-box .subsection {
  width: 100%;
}

#dashboard .content-box .subsection .subsection-title {
  background-color: var(--background-color);
  color: var(--breadcrumb-color);
  font-size: 20px;
  line-height: 32px;
  padding: 24px 40px;
  margin-bottom: 24px;
  border-radius: 8px;
}

#dashboard .dashboard-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  column-gap: 26px;
  row-gap: 30px;
}

#dashboard .dashboard-tiles .tile {
  width: 520px;
  height: 150px;
  margin-left: 24px;
}

#dashboard .dashboard-tiles .tile a {
  display: flex;
  flex-direction: row;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px 0 0 0;
  color: var(--nav-color);
}

#dashboard .dashboard-tiles .tile a:visited {
  color: var(--nav-color);
}

#dashboard .dashboard-tiles .tile a .state {
  position: absolute;
  padding: 8px 16px;
  max-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--pure-white);
  /* Color B2 */
  background: var(--breadcrumb-color);
  border-radius: 8px 0px;
  max-width: 120px;
}

#dashboard .dashboard-tiles .tile a .state.active {
  background: var(--state-color);
}

#dashboard .dashboard-tiles .tile a .state.failed {
  background: var(--error-color);
}

#dashboard .dashboard-tiles .tile a .state.processing {
  background: var(--info-color);
}

#dashboard .dashboard-tiles .tile a .state.final {
  background: var(--success-color);
}

#dashboard .dashboard-tiles .tile img {
  width: 215px;
}

#dashboard .dashboard-tiles .tile .tile-info {
  display: flex;
  justify-content: space-around;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

#dashboard .dashboard-tiles .tile .tile-info > div:first-child {
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

#dashboard .dashboard-tiles .tile .tile-info > div + div {
  color: var(--breadcrumb-color);
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#dashboard .dashboard-list .item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 18px;
}

#dashboard .dashboard-list .item .avatar {
  height: 48px;
  width: 48px;
  background: var(--background-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dashboard .dashboard-list .item .dashboard-comment {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: calc(100% - 48px - 16px);
}

#dashboard .dashboard-list .item .dashboard-comment a {
  text-decoration: none;
  color: var(--nav-color);
  font-weight: 550;
  word-break: break-word;
}

#dashboard .dashboard-list .item .dashboard-comment a:visited {
  color: var(--nav-color);
}

#dashboard .dashboard-list .item .dashboard-comment-content {
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

#dashboard .dashboard-list .item .dashboard-comment-time {
  color: var(--breadcrumb-color);
}

#dashboard .dashboard-list .state-label {
  padding: 8px 16px;
  max-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--pure-white);
  /* Color B2 */
  background: var(--breadcrumb-color);
  border-radius: 8px 0px;
  border-radius: 8px;
  width: 100px;
}

#dashboard .dashboard-list .state-label.active {
  background: var(--state-color);
}

#dashboard .dashboard-list .state-label.failed {
  background: var(--error-color);
}

#dashboard .dashboard-list .state-label.processing {
  background: var(--info-color);
}

#dashboard .dashboard-list .state-label.final {
  background: var(--success-color);
}

#dashboard textarea {
  padding: 16px;
  text-indent: 0;
  font-family: "Montserrat";
  resize: none;
  color: var(--blackish-color);
  border-radius: 8px;
  border: 1px solid var(--grey-color);
  width: calc(100% - 32px);
}

.tasklist-material-column {
  max-width: 30vw;
  word-wrap: break-word;
}

#mass_mailing_form .content-box {
  padding: 40px;
  min-width: 200px;
}

.mailing-tabs {
  margin-top: 40px;
  margin-bottom: 40px;
}

textarea:read-only {
  background-color: var(--background-color);
  cursor: default;
}

#tab-recipients td:first-child {
  padding-right: 32px;
}

#tab-recipients .nowrap {
  white-space: nowrap;
}

#tab-recipients .retry-mailing {
  padding-left: 16px;
  cursor: pointer;
}

#tab-recipients .state-label, #mass_mailing_table .state-label {
  display: flex;
  height: 32px;
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--pure-white);
}

#tab-recipients .state-label-sent, #mass_mailing_table .state-label-sent {
  background: var(--state-color);
}

#tab-recipients .state-label-error, #mass_mailing_table .state-label-error {
  background: var(--error-color);
}

#tab-recipients .state-label-waiting, #mass_mailing_table .state-label-waiting {
  background: var(--grey-color);
}

.fake-textarea {
  --line-height: 18px;
  background-color: var(--pure-white);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--grey-color);
  color: var(--blackish-color);
  font-size: 14px;
  line-height: var(--line-height);
  white-space: pre-wrap;
  min-height: calc(2 * var(--line-height));
  max-height: calc(5 * var(--line-height));
  overflow: auto;
}

[contenteditable=true]:empty:before {
  content: attr(placeholder);
  pointer-events: none;
  display: block;
  color: var(--breadcrumb-color);
}

.minicolors {
  position: relative;
}

.minicolors-sprite {
  background-image: url("/static/images/jquery.minicolors.png");
}

.minicolors-swatch {
  position: absolute;
  vertical-align: middle;
  background-position: -80px 0;
  cursor: text;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.minicolors-swatch::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.minicolors-swatch-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.minicolors input[type=hidden] + .minicolors-swatch {
  width: 28px;
  position: static;
  cursor: pointer;
}

.minicolors input[type=hidden][disabled] + .minicolors-swatch {
  cursor: default;
}

/* Panel */
.minicolors-panel {
  position: absolute;
  width: 173px;
  background: white;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  box-sizing: content-box;
  display: none;
  touch-action: none;
}

.minicolors-panel.minicolors-visible {
  display: block;
}

/* Panel positioning */
.minicolors-position-top .minicolors-panel {
  top: -154px;
}

.minicolors-position-right .minicolors-panel {
  right: 0;
}

.minicolors-position-bottom .minicolors-panel {
  top: auto;
}

.minicolors-position-left .minicolors-panel {
  left: 0;
}

.minicolors-with-opacity .minicolors-panel {
  width: 194px;
}

.minicolors .minicolors-grid {
  position: relative;
  top: 1px;
  left: 1px;
  /* LTR */
  width: 150px;
  height: 150px;
  margin-bottom: 2px;
  background-position: -120px 0;
  cursor: crosshair;
}

[dir=rtl] .minicolors .minicolors-grid {
  right: 1px;
}

.minicolors .minicolors-grid-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
}

.minicolors-slider-saturation .minicolors-grid {
  background-position: -420px 0;
}

.minicolors-slider-saturation .minicolors-grid-inner {
  background-position: -270px 0;
  background-image: inherit;
}

.minicolors-slider-brightness .minicolors-grid {
  background-position: -570px 0;
}

.minicolors-slider-brightness .minicolors-grid-inner {
  background-color: black;
}

.minicolors-slider-wheel .minicolors-grid {
  background-position: -720px 0;
}

.minicolors-slider,
.minicolors-opacity-slider {
  position: absolute;
  top: 1px;
  left: 152px;
  /* LTR */
  width: 20px;
  height: 150px;
  background-color: white;
  background-position: 0 0;
  cursor: row-resize;
}

[dir=rtl] .minicolors-slider,
[dir=rtl] .minicolors-opacity-slider {
  right: 152px;
}

.minicolors-slider-saturation .minicolors-slider {
  background-position: -60px 0;
}

.minicolors-slider-brightness .minicolors-slider {
  background-position: -20px 0;
}

.minicolors-slider-wheel .minicolors-slider {
  background-position: -20px 0;
}

.minicolors-opacity-slider {
  left: 173px;
  /* LTR */
  background-position: -40px 0;
  display: none;
}

[dir=rtl] .minicolors-opacity-slider {
  right: 173px;
}

.minicolors-with-opacity .minicolors-opacity-slider {
  display: block;
}

/* Pickers */
.minicolors-grid .minicolors-picker {
  position: absolute;
  top: 70px;
  left: 70px;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin-top: -6px;
  margin-left: -6px;
  background: none;
}

.minicolors-grid .minicolors-picker > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border: solid 2px white;
  box-sizing: content-box;
}

.minicolors-picker {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 3px;
  background: white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  margin-top: -2px;
  margin-left: 1px;
  box-sizing: content-box;
}

/* Swatches */
.minicolors-swatches,
.minicolors-swatches li {
  margin: 5px 0 3px 5px;
  /* LTR */
  padding: 0;
  list-style: none;
  overflow: hidden;
}

[dir=rtl] .minicolors-swatches,
[dir=rtl] .minicolors-swatches li {
  margin: 5px 5px 3px 0;
}

.minicolors-swatches .minicolors-swatch {
  position: relative;
  float: left;
  /* LTR */
  cursor: pointer;
  margin: 0 4px 0 0;
  /* LTR */
}

[dir=rtl] .minicolors-swatches .minicolors-swatch {
  float: right;
  margin: 0 0 0 4px;
}

.minicolors-with-opacity .minicolors-swatches .minicolors-swatch {
  margin-right: 7px;
  /* LTR */
}

[dir=rtl] .minicolors-with-opacity .minicolors-swatches .minicolors-swatch {
  margin-right: 0;
  margin-left: 7px;
}

.minicolors-swatch.selected {
  border-color: #000;
}

/* Inline controls */
.minicolors-inline {
  display: inline-block;
}

.minicolors-inline .minicolors-input {
  display: none !important;
}

.minicolors-inline .minicolors-panel {
  position: relative;
  top: auto;
  left: auto;
  /* LTR */
  box-shadow: none;
  z-index: auto;
  display: inline-block;
}

[dir=rtl] .minicolors-inline .minicolors-panel {
  right: auto;
}

/* Default theme */
.minicolors-theme-default .minicolors-swatch {
  top: 5px;
  left: 5px;
  /* LTR */
  width: 18px;
  height: 18px;
}

[dir=rtl] .minicolors-theme-default .minicolors-swatch {
  right: 5px;
}

.minicolors-theme-default .minicolors-swatches .minicolors-swatch {
  margin-bottom: 2px;
  top: 0;
  left: 0;
  /* LTR */
  width: 18px;
  height: 18px;
}

[dir=rtl] .minicolors-theme-default .minicolors-swatches .minicolors-swatch {
  right: 0;
}

.minicolors-theme-default.minicolors-position-right .minicolors-swatch {
  left: auto;
  /* LTR */
  right: 5px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-swatch {
  right: auto;
  left: 5px;
}

.minicolors-theme-default.minicolors {
  width: auto;
  display: inline-block;
}

.minicolors-theme-default .minicolors-input {
  height: 20px;
  width: auto;
  display: inline-block;
  padding-left: 26px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-default .minicolors-input {
  text-align: right;
  unicode-bidi: plaintext;
  padding-left: 1px;
  padding-right: 26px;
}

.minicolors-theme-default.minicolors-position-right .minicolors-input {
  padding-right: 26px;
  /* LTR */
  padding-left: inherit;
  /* LTR */
}

[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-input {
  padding-right: inherit;
  padding-left: 26px;
}

/* Bootstrap theme */
.minicolors-theme-bootstrap .minicolors-swatch {
  z-index: 2;
  top: 12px;
  left: 8px;
  /* LTR */
  width: 28px;
  height: 28px;
  border-radius: 2px;
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatch {
  right: 3px;
}

.minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch {
  margin-bottom: 2px;
  top: 0;
  left: 0;
  /* LTR */
  width: 20px;
  height: 20px;
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch {
  right: 0;
}

.minicolors-theme-bootstrap .minicolors-swatch-color {
  border-radius: inherit;
}

.minicolors-theme-bootstrap.minicolors-position-right > .minicolors-swatch {
  left: auto;
  /* LTR */
  right: 3px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left > .minicolors-swatch {
  right: auto;
  left: 3px;
}

.minicolors-theme-bootstrap .minicolors-input {
  float: none;
  padding-left: 44px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-input {
  text-align: right;
  unicode-bidi: plaintext;
  padding-left: 12px;
  padding-right: 44px;
}

.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input {
  padding-right: 44px;
  /* LTR */
  padding-left: 12px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left .minicolors-input {
  padding-right: 12px;
  padding-left: 44px;
}

.minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch {
  top: 4px;
  left: 4px;
  /* LTR */
  width: 37px;
  height: 37px;
  border-radius: 5px;
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch {
  right: 4px;
}

.minicolors-theme-bootstrap .minicolors-input.input-sm + .minicolors-swatch {
  width: 24px;
  height: 24px;
}

.minicolors-theme-bootstrap .minicolors-input.input-xs + .minicolors-swatch {
  width: 18px;
  height: 18px;
}

.input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input {
  border-top-left-radius: 0;
  /* LTR */
  border-bottom-left-radius: 0;
  /* LTR */
}

[dir=rtl] .input-group .minicolors-theme-bootstrap .minicolors-input {
  border-radius: 4px;
}

[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:last-child) .minicolors-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* bootstrap input-group rtl override */
[dir=rtl] .input-group .form-control,
[dir=rtl] .input-group-addon,
[dir=rtl] .input-group-btn > .btn,
[dir=rtl] .input-group-btn > .btn-group > .btn,
[dir=rtl] .input-group-btn > .dropdown-toggle {
  border: 1px solid #ccc;
  border-radius: 4px;
}

[dir=rtl] .input-group .form-control:first-child,
[dir=rtl] .input-group-addon:first-child,
[dir=rtl] .input-group-btn:first-child > .btn,
[dir=rtl] .input-group-btn:first-child > .btn-group > .btn,
[dir=rtl] .input-group-btn:first-child > .dropdown-toggle,
[dir=rtl] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
[dir=rtl] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

[dir=rtl] .input-group .form-control:last-child,
[dir=rtl] .input-group-addon:last-child,
[dir=rtl] .input-group-btn:last-child > .btn,
[dir=rtl] .input-group-btn:last-child > .btn-group > .btn,
[dir=rtl] .input-group-btn:last-child > .dropdown-toggle,
[dir=rtl] .input-group-btn:first-child > .btn:not(:first-child),
[dir=rtl] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Semantic Ui theme */
.minicolors-theme-semanticui .minicolors-swatch {
  top: 0;
  left: 0;
  /* LTR */
  padding: 18px;
  padding: 18px;
}

[dir=rtl] .minicolors-theme-semanticui .minicolors-swatch {
  right: 0;
}

.minicolors-theme-semanticui input {
  text-indent: 30px;
}

:root {
  --pure-white: #FFFFFF;
  --praimary-color: #F52871;
  --nav-color: #524781;
  --grey-color: #C5C5C5;
  --blackish-color: #263238;
  --breadcrumb-color: #7C7C7C;
  --background-color: #F0F0F0;
  --state-color: #49BCA7;
  --success-color: #88B20F;
  --info-color: #0c5460;
  --warning-color: #856404;
  --error-color: #D20B0B;
}

body {
  font-family: Montserrat;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

svg {
  fill: none;
  width: 24px;
  height: 24px;
}

hr {
  border: 1px solid var(--grey-color);
  margin-bottom: 34px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
}

.select2 {
  padding: 10px;
  border: 1px solid var(--grey-color);
  border-radius: 8px;
}

.select2 .select2-selection {
  display: flex;
  align-items: center;
}

.select2-container .select2-selection--single {
  border: none;
}

.select2-container .select2-selection--multiple {
  border: none !important;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
  padding: 6px 24px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--state-color);
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 12px;
  border: none;
  display: flex;
}

.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  font-size: 20px;
  line-height: 16px;
  color: var(--breadcrumb-color);
}

.select2-container .select2-search__field {
  padding: 10px;
}

.select2-container .select2-results__option {
  padding-left: 12px;
}

.select2-container .select2-selection__clear {
  font-weight: 700;
  font-size: 24px;
  padding: 0px 6px;
}

.select2-container .select2-selection__arrow {
  background-image: url("/static/images/select-arrow.svg");
  background-color: transparent;
  background-size: 24px 24px;
  margin: 10px 8px;
}

.select2-container .select2-selection__arrow b {
  display: none;
}

.select2-container.select2-container--disabled {
  background: var(--gray-1, #F0F0F0);
}

.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg) !important;
}

.selectmultiple + .select2-container {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.selectmultiple + .select2-container .select2-search__field[placeholder]:not([placeholder=""]) {
  margin-top: 0 !important;
}

input:read-only {
  background: var(--gray-1, #F0F0F0);
  cursor: default;
}

.body-gradient {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--state-color);
  display: flex;
}

.image-container {
  background-image: url("/static/images/background.jpeg");
  background-size: cover;
  mix-blend-mode: multiply;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  margin: auto;
}

.site-above-box {
  font-weight: 700;
  font-size: 48px;
  align-self: end;
  margin-bottom: 1.5rem;
}

.site-above-box a {
  color: var(--pure-white);
  text-decoration: none;
}

.site-above-box .change-lang-box {
  justify-content: end;
  display: flex;
  font-size: 18px;
}

.inline-checkbox {
  margin: 10px 0px;
}

.inline-checkbox label {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: max-content;
}

.inline-checkbox input {
  padding: 4px;
  gap: 10px;
  width: 20px;
  height: 20px;
  /* Pure white */
  background: var(--pure-white);
  /* Gray 2 */
  border: 1px solid var(--grey-color);
  border-radius: 4px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

input[type='checkbox'] {
  accent-color: var(--praimary-color);
}

.content-box {
  background-image: unset;
  background: var(--pure-white);
  /* Box shadow */
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 64px;
  min-width: 640px;
}

.content-box .title {
  font-weight: 700;
  font-size: 32px;
  padding-bottom: 24px;
}

.content-box form {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.content-box form button {
  width: 100%;
}

.content-box form a {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-decoration-line: underline;
  color: var(--praimary-color);
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 46px;
  gap: 8px;
  /* Color A2 */
  border-radius: 8px;
  text-decoration-line: none;
  cursor: pointer;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
}

.btn.small {
  padding: 8px 24px;
}

button.btn {
  border: none;
}

.btn-primary {
  background: var(--praimary-color);
  color: var(--pure-white);
}

.btn-default, button.btn-default {
  background: var(--pure-white);
  color: var(--praimary-color);
  border: 1px solid var(--praimary-color);
}

.btn-simple {
  background: var(--pure-white);
  color: var(--praimary-color);
}

.btn-grey {
  color: var(--breadcrumb-color);
  border-width: 2px;
  border-style: solid;
  border-color: var(--state-color);
}

.btn-grey.active {
  background: var(--state-color);
  color: var(--pure-white);
}

.btn-tab {
  padding: 13px 50px;
  line-height: 26px;
}

.btn-left {
  border-radius: 8px 0px 0px 8px;
  border-width: 2px 0px 2px 2px;
}

.btn-right {
  border-radius: 0px 8px 8px 0px;
  border-width: 2px 2px 2px 0px;
}

.btn-middle {
  border-radius: 0px;
  border-width: 2px;
}

.icon-button {
  padding: 0;
  border: 0;
  background-color: inherit;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
}

.inline-checkbox .form-group {
  margin-bottom: 0;
}

.form-control {
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  width: 100%;
  /* Pure white */
  background: var(--pure-white);
  /* Gray 2 */
  border: 1px solid var(--grey-color);
  border-radius: 8px;
}

.input-icons {
  width: 100%;
  margin-bottom: 10px;
  padding-top: 10px;
}

.input-icons svg {
  position: absolute;
  padding-left: 8px;
  padding-top: 30px;
}

.input-icons input {
  padding-left: 40px;
}

.navbar {
  /* Auto layout */
  width: 100%;
  height: 74px;
  font-weight: 700;
  padding: 10px MIN(78px, 5vw);
  gap: 10px;
  box-sizing: border-box;
}

.navbar .dropdown-toggle {
  color: var(--pure-white);
}

.navbar-left {
  gap: 12px;
  flex: 1;
}

.navbar-left > .nav-link:only-child {
  margin-right: auto;
  margin-left: 24px;
}

.navbar-right {
  gap: 8px;
}

.nav-front {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}

.nav-front a:not(.btn) {
  color: var(--praimary-color);
  text-decoration: none;
}

.nav-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  background: var(--nav-color);
  border: 1px solid var(--nav-color);
  border-radius: 70px;
}

.nav-circle .dropdown-toggle {
  color: var(--pure-white);
}

.nav-circle svg {
  pointer-events: none;
}

.dropdown.active .dropdown-toggle .nav-circle {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--nav-color);
}

.usr-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 64px;
  min-width: 64px;
  height: 64px;
  background: #F0F0F0;
  border-radius: 70px;
}

.nav-search {
  display: flex;
  flex-direction: column;
}

.nav-search input {
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 24px;
  gap: 4px;
  width: 400px;
  height: 48px;
  color: var(--pure-white);
  background: var(--nav-color);
  border: 1px solid var(--nav-color);
  border-radius: 70px;
}

.nav-search input:focus {
  outline: none;
}

.nav-search svg {
  position: absolute;
  top: 13px;
  right: 13px;
}

.nav-quick-notes {
  padding: 32px;
}

.nav-quick-notes p {
  color: var(--black, #263238);
  font-size: 14px;
  line-height: 18px;
}

.nav-quick-notes textarea {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--gray-2, #C5C5C5);
  background: var(--pure-white, #FFF);
  color: var(--blackish-color);
  text-indent: 0;
  font-family: "Montserrat";
}

.nav-notifications {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--pure-white, #FFF);
  /* Box shadow */
  box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.04);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--black, #263238);
  width: 400px;
}

.nav-notifications .item {
  max-width: 400px;
}

.nav-notifications .item .item-rest {
  overflow: hidden;
}

.nav-notifications .btn-default {
  color: var(--praimary-color);
  border: 1px solid var(--praimary-color);
  font-weight: 700;
}

.nav-notifications .avatar {
  height: 48px;
  width: 48px;
  background: var(--background-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-notifications .body {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  row-gap: 0px;
}

.nav-notifications .body a {
  color: var(--color-c-2, #524781);
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-notifications .time {
  color: var(--gray-3, #7C7C7C);
}

.navbar-brand {
  font-size: 32px;
  line-height: 39px;
  display: flex;
  align-items: center;
}

#navbar-search-results {
  min-width: 400px;
  box-sizing: border-box;
}

#navbar-search-results .search-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  max-height: 60vh;
  overflow-y: auto;
}

#navbar-search-results .search-content .no-results {
  align-self: center;
  font-weight: 400;
  font-style: italic;
}

#navbar-search-results .search-content a {
  color: var(--nav-color);
  font-weight: 400;
  display: flex;
  gap: 16px;
}

#navbar-search-results .search-content a img {
  height: 56px;
  border-radius: 8px;
  background-color: var(--background-color);
}

#navbar-search-results .search-content a .project-box {
  width: 100px;
  height: 56px;
  background-color: var(--background-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#navbar-search-results .search-content a .search-result-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  line-height: 18px;
}

#navbar-search-results .search-content a .search-result-data .highlight {
  text-shadow: 0px 0px 1px var(--nav-color);
}

#navbar-search-results .search-content a .search-result-data .search-result-title {
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

#navbar-search-results .search-content a .search-result-data .search-result-date {
  color: var(--breadcrumb-color);
}

.background-dark {
  /* Color C3 */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--nav-color);
  /* Box shadow */
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.04);
  color: var(--pure-white);
}

.background-dark a {
  color: var(--pure-white);
  text-decoration: none;
}

.filter-form {
  display: none;
  position: relative;
}

.filter-form .field .select2 {
  background: var(--pure-white);
  margin-top: 0.5rem;
}

.filter-form .field .dateinput {
  padding-left: 38px;
  background: var(--pure-white);
}

.filter-form .field img.ui-datepicker-trigger {
  position: absolute;
  top: 18px;
  left: 8px;
}

.filter-form .field #div_id_date_from, .filter-form .field #div_id_date_to {
  position: relative;
}

.filter-form .field input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem !important;
}

.filter-form .clear-filters {
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: 46px;
}

.datepicker-container .controls {
  position: relative;
}

.datepicker-container .controls img.ui-datepicker-trigger {
  position: absolute;
  top: 12px;
  left: 12px;
}

.datepicker-container .controls input:not([disabled]) {
  text-indent: 26px;
}

.datepicker-container .datepicker-clear-button {
  position: absolute;
  top: 12px;
  right: 12px;
  background: unset;
  border: none;
  color: var(--blackish-color);
}

.container {
  padding: 2% 4%;
  background: #F0F0F0;
  min-height: 75vh;
}

.container.material {
  padding: 2% 1%;
}

.container .player {
  flex: 2;
  min-width: 600px;
}

.container .player-width-adjust {
  width: 3px;
  min-width: 3px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: var(--grey-color);
  background-clip: content-box;
  position: relative;
  margin-left: 6px;
  margin-right: 6px;
  cursor: ew-resize;
}

.container .player-width-adjust svg {
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  color: var(--grey-color);
}

.container .comments {
  flex: 1;
  max-width: calc(100% - 623px);
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.75rem;
}

.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  line-height: 15px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  color: var(--breadcrumb-color);
  content: "/";
}

.breadcrumb a {
  color: var(--breadcrumb-color);
  text-decoration: none;
}

.breadcrumb svg {
  height: 24px;
  width: 24px;
}

.pink {
  color: var(--praimary-color);
}

.bold-pink-link {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  text-decoration-line: underline;
  color: var(--praimary-color);
}

.navigation .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 59px;
  max-width: 68%;
}

.navigation .title .filename {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}

.navigation .actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.navigation .state {
  padding: 8px 16px;
  max-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--pure-white);
  /* Color B2 */
  background: var(--breadcrumb-color);
  border-radius: 8px 0px;
  max-width: unset;
  border-radius: 4px;
}

.navigation .state.active {
  background: var(--state-color);
}

.navigation .state.failed {
  background: var(--error-color);
}

.navigation .state.processing {
  background: var(--info-color);
}

.navigation .state.final {
  background: var(--success-color);
}

.original-project {
  font-size: 18px;
  color: var(--breadcrumb-color);
}

.d-flex {
  display: flex;
}

.flex-space {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.flex-space-around {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.flex-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.flex-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.self-right {
  align-self: end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.break-word {
  word-wrap: break-word;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-list {
  flex: 1;
  padding: 1%;
  padding-left: 0;
  font-size: 12px;
  line-height: 16px;
  max-width: 20vw;
  min-width: 250px;
  color: var(--pure-white);
}

.project-list .project-nav {
  background: var(--nav-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 12px 0px;
}

.project-list .project-nav .search {
  display: flex;
  flex-direction: column;
}

.project-list .project-nav .search svg {
  align-self: end;
  position: absolute;
  padding: 14px 16px;
}

.project-list .project-nav input {
  padding: 16px 24px;
  color: var(--pure-white);
  background: var(--nav-color);
  border: 1px solid var(--nav-color);
  border-radius: 70px;
}

.project-list .project-nav input:focus {
  outline: none;
}

.project-list .project-nav ::placeholder {
  color: var(--pure-white);
  opacity: 50%;
}

.project-list .project-nav .section .nav-section-item {
  padding: 6px 0px;
}

.project-list .project-nav .section .nav-section-item a {
  text-decoration: none;
  color: var(--text-default-color);
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-list .project-nav .section .nav-section-item a:visited {
  color: var(--text-default-color);
}

.project-list .project-nav .section .projects {
  overflow: hidden;
}

.project-list .project-nav .section .projects svg {
  width: 30px;
  min-width: 30px;
}

.project-list .project-nav .section .projects span {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: calc(100% - 32px);
  z-index: 1;
}

.project-list .project-nav .section .projects .active > .flex-space {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--nav-color);
  border-radius: 8px;
  position: relative;
}

.project-list .project-nav .section .projects .active > .flex-space::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -300px;
  right: -300px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--nav-color);
  border-radius: 8px;
}

.project-list .project-nav .section .projects .active.nav-section-child > .flex-space::before {
  top: 0px;
}

.project-list .project-nav .section .projects .flex-space:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--nav-color);
  border-radius: 8px;
  position: relative;
}

.project-list .project-nav .section .projects .flex-space:hover::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -300px;
  right: -300px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--nav-color);
  border-radius: 8px;
}

.project-list .project-nav .section .projects .nav-section-child > .flex-space:hover::before {
  top: 0px;
}

.project-list .project-nav .section .projects .nav-section-item:hover .video {
  display: none;
}

.project-list .project-nav .section .projects .nav-section-child {
  padding: 0px 0px 6px 70px;
  display: none;
}

.project-list .project-nav .section .projects .nav-section-child .has_children {
  position: relative;
  left: -30px;
}

.project-list .project-nav .section .projects .nav-section-child .counter {
  display: block !important;
}

.project-list .project-nav .section .projects .nav-section-child .nav-section-child {
  padding: 0px 0px 6px 30px;
}

.project-list .project-nav .section .projects .nav-section-child svg {
  padding-left: 0px;
  padding-right: 0px;
  width: 30px;
}

.project-list .project-nav .section .projects .nav-section-child .flex-space {
  padding-top: 6px;
}

.project-list .project-nav .section .projects .nav-section-child.open {
  display: block;
}

.project-list .project-nav .section .projects .open .nav-section-child {
  display: block;
}

.project-list .project-nav .section .projects .open .plus {
  display: none;
}

.project-list .project-nav .section .projects .open .minus {
  display: block;
}

.project-list .project-nav .section .projects .close .nav-section-child {
  display: none;
}

.project-list .project-nav .section .projects .close .plus {
  display: block;
}

.project-list .project-nav .section .projects .close .minus {
  display: none;
}

.project-list .project-nav .section .projects .counter {
  padding-right: 18px;
}

.project-list .project-nav .section .name {
  opacity: 50%;
}

.project-list .project-nav .section hr {
  width: 100%;
  border: 1px solid var(--pure-white);
  opacity: 50%;
  margin-bottom: auto;
  margin-top: auto;
  margin-left: 5%;
  margin-right: 5%;
}

.project-list .project-nav .section svg {
  opacity: 50%;
  padding-left: 16px;
  padding-right: 5px;
  width: 48px;
}

.project-list .project-nav .section.open .minus-section {
  display: block;
}

.project-list .project-nav .section.open .plus-section {
  display: none;
}

.project-list .project-nav .section.close .minus-section {
  display: none;
}

.project-list .project-nav .section.close .plus-section {
  display: block;
}

.project-list .project-nav .section.close .projects {
  display: none;
}

.project-list .btn-defaut {
  color: var(--nav-color);
  border: 1px solid var(--nav-color);
}

.project-details {
  flex: 4;
  padding: 1% 0;
  min-width: 650px;
}

.project-details .header {
  background: var(--pure-white);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  margin-bottom: 20px;
}

.project-details .header .state {
  padding: 8px 16px;
  max-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--pure-white);
  /* Color B2 */
  background: var(--breadcrumb-color);
  border-radius: 8px 0px;
}

.project-details .header .state.active {
  background: var(--state-color);
}

.project-details .header .state.failed {
  background: var(--error-color);
}

.project-details .header .state.processing {
  background: var(--info-color);
}

.project-details .header .state.final {
  background: var(--success-color);
}

.project-details .header .favorite {
  padding: 4px 8px;
  max-width: 24px;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  color: var(--pure-white);
  /* Color B2 */
  background: var(--breadcrumb-color);
  border-radius: 0px 0px 8px 8px;
  display: flex;
  position: relative;
  top: -32px;
  left: 100px;
}

.project-details .header .favorite.active {
  background: var(--state-color);
}

.project-details .header .content {
  padding: 0px 64px 54px;
}

.project-details .header .title {
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  word-wrap: break-word;
  overflow: hidden;
}

.project-details .header .description {
  line-height: 28px;
  padding-top: 24px;
  word-wrap: break-word;
}

.project-details .header .actions {
  gap: 16px;
}

.project-details .header .share {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

.project-details .header .share a {
  color: var(--nav-color);
}

.project-details .header .info {
  font-size: 14px;
  line-height: 18px;
  color: var(--breadcrumb-color);
}

.project-details .header .project-header-chats {
  margin-bottom: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.project-details .header .project-header-chats > .green-box {
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-details .header #edit_chats + .select2 {
  width: 100% !important;
}

.project-details .header .prj-form {
  margin-bottom: 24px;
}

.project-details .filters {
  margin-top: 10px;
}

.project-details .filters .title {
  font-size: 24px;
  line-height: 29px;
}

.project-details .filters .actions {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

.project-details .filters .actions .box {
  background: var(--nav-color);
  border: 1px solid var(--nav-color);
  font-size: 12px;
  border-radius: 4px;
  padding: 4px 12px;
  color: white;
  display: none;
}

.project-details .filters .filter-form {
  border: 1px solid var(--grey-color);
  border-radius: 8px;
  padding: 40px;
  column-width: 260px;
}

.project-details .filters .filter-form .field {
  break-inside: avoid;
}

.project-details .filters .filter-form label {
  font-size: 14px;
  line-height: 18px;
}

.project-details .filters .filter-form input {
  margin-top: 0.5rem;
}

.project-details .filters .filter-form .btn {
  height: 17px;
  margin-top: 0.5rem;
}

.project-details .filters .filter-form#projects-filter-form {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: 16px;
}

.project-details .filters .filter-form#projects-filter-form[style*="display: block"] {
  display: grid !important;
}

.project-details .filters .filter-form#projects-filter-form .clear-filters {
  position: relative;
  bottom: -16px;
  right: 4px;
}

.project-details .materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  grid-column-gap: 24px;
}

.project-details .materials .material-box {
  width: unset;
  margin-bottom: 0;
}

.project-details .materials .pagination {
  grid-column: 1 / -1;
}

.pagination {
  width: 100%;
  font-size: 14px;
  line-height: 18px;
}

.pagination .info {
  color: var(--breadcrumb-color);
}

.pagination .pages a {
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  width: 54px;
  height: 44px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 500px;
  border: 1px solid var(--grey-color);
  color: var(--praimary-color);
}

.pagination .pages a.active {
  color: var(--pure-white);
  background: var(--praimary-color);
}

.pagination .select2 {
  padding: 8px 24px;
  border-radius: 500px;
}

.pagination .select2 .select2-selection--single {
  background-color: unset;
}

.pagination .select2 .select2-selection__rendered {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--praimary-color);
}

.material-box {
  width: 380px;
  min-height: 300px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 8px;
}

.material-box.empty {
  background: unset;
}

.material-box a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.material-box.new {
  min-height: 316px;
  border: 2px dashed #F52871;
  background: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--praimary-color);
  justify-content: center;
  font-size: 20px;
  line-height: 32px;
}

.material-box.new .small {
  font-size: 14px;
  line-height: 18px;
  color: var(--breadcrumb-color);
  text-align: center;
}

.material-box.upload_in_progress {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
  line-height: 18px;
  color: var(--breadcrumb-color);
  text-align: center;
  gap: 6px;
  overflow-wrap: anywhere;
  padding: 4px 24px;
  box-sizing: border-box;
}

.material-box.upload_in_progress .progress {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  width: 60%;
  height: 1rem;
  background: #D9D9D9;
  border-radius: 10px;
}

.material-box.upload_in_progress .progress .progress-bar {
  background: #88B30F;
  border-radius: 10px;
  height: 1rem;
}

.material-box.upload_in_progress svg {
  padding: 0px 8px;
}

.material-box.upload_in_progress .play {
  display: initial;
}

.material-box.upload_in_progress .pause {
  display: none;
}

.material-box.upload_in_progress.active .play {
  display: none;
}

.material-box.upload_in_progress.active .pause {
  display: initial;
}

.material-box.upload_in_progress:hover {
  cursor: unset;
}

.material-box.upload_in_progress:hover svg {
  cursor: pointer;
}

.material-box .state {
  padding: 8px 16px;
  max-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--pure-white);
  /* Color B2 */
  background: var(--breadcrumb-color);
  border-radius: 8px 0px;
  position: absolute;
  line-height: 15px;
  z-index: 1;
  max-width: 120px;
}

.material-box .state.active {
  background: var(--state-color);
}

.material-box .state.failed {
  background: var(--error-color);
}

.material-box .state.processing {
  background: var(--info-color);
}

.material-box .state.final {
  background: var(--success-color);
}

.material-box .disabled-comment {
  margin-top: 30px;
  padding: 4px 8px;
  color: var(--error-color);
  position: absolute;
}

.material-box img {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
}

.material-box .info {
  padding: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  /* Gray 3 */
  color: var(--breadcrumb-color);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.material-box .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  /* Color C2 */
  color: var(--nav-color);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}

.material-box:hover {
  cursor: pointer;
}

.material-box:hover .title {
  color: var(--state-color);
}

.material-box:hover img {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.odd {
  background: rgba(240, 240, 240, 0.5);
}

.watermark-box {
  width: 680px;
  margin-bottom: 20px;
  border-radius: 8px;
  min-height: 316px;
  border: 2px dashed #F52871;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--praimary-color);
  justify-content: center;
  font-size: 20px;
  line-height: 32px;
}

.watermark-box .small {
  font-size: 14px;
  line-height: 18px;
  color: var(--breadcrumb-color);
  text-align: center;
}

#imagePreview {
  position: absolute;
  display: grid;
  width: calc(100% - 128px);
  height: calc(100% - 108px);
}

#imagePreview.center {
  justify-items: center;
  align-content: center;
}

#imagePreview.top_left {
  padding-top: 5px;
  padding-left: 5px;
}

#imagePreview.top_right {
  padding-top: 5px;
  padding-right: 5px;
  justify-items: end;
}

#imagePreview.bottom_left {
  padding-bottom: 5px;
  padding-left: 5px;
  align-content: end;
}

#imagePreview.bottom_right {
  padding-bottom: 5px;
  padding-right: 5px;
  justify-items: end;
  align-content: end;
}

table {
  width: 100%;
  background: var(--pure-white);
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 8px;
}

table input[type='checkbox'] {
  width: 20px;
  height: 20px;
}

table.ui-datepicker-calendar td {
  height: unset;
}

table th {
  height: 92px;
  box-sizing: border-box;
  text-align: left;
}

table td {
  height: 92px;
  box-sizing: border-box;
}

table tr {
  box-sizing: border-box;
  border-width: 1px 0px;
  border-style: solid;
  border-color: #F0F0F0;
}

table tr:hover, table tr.active {
  border-style: double;
  border-color: #C5C5C5 !important;
}

table td:first-child, table th:first-child {
  padding-left: 24px;
}

table td:last-child, table th:last-child {
  padding-right: 24px;
}

table .tab-header {
  font-weight: 700;
  color: var(--blackish-color);
  border-bottom: 2px solid #C5C5C5 !important;
}

table .tab-header td {
  height: 64px;
}

table .tab-header td:first-child {
  padding-left: 64px;
}

table .email {
  color: var(--nav-color);
}

table .group-box {
  padding: 8px 30px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--state-color);
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 12px;
  text-wrap: nowrap;
}

table .btn {
  padding: 12px 36px;
}

#downloadDonfigurationTable th {
  height: 48px;
}

#downloadDonfigurationTable td {
  height: 48px;
}

#perms-table td:last-child {
  width: 10%;
}

#perms-table td:last-child .trash {
  max-width: 108px;
  box-sizing: border-box;
}

.user-company-box .btn {
  padding: 12px 46px;
  line-height: 26px;
}

.user-company-box .company-box .delete {
  display: none;
}

.user-company-box .group-add-form {
  display: none;
}

.user-company-box.active-edit .group-add-form {
  display: flex;
}

.user-company-box.active-edit .company-box .delete {
  display: none;
}

.user-company-box.active-edit .company-box:hover {
  cursor: default;
}

.user-company-box.active-edit .company-box:hover .svg-icon {
  cursor: pointer;
}

.user-company-box.active-edit .company-box:hover .user {
  display: none;
}

.user-company-box.active-edit .company-box:hover .delete {
  display: unset;
}

.comments-header {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--blackish-color);
}

.comments-header hr {
  margin: 16px 2px 2px;
}

.comments-header .quick {
  border-top: 1px solid #C5C5C5;
}

.comments-header .search {
  color: var(--breadcrumb-color);
}

.comments-header .search svg {
  position: absolute;
  padding: 12px 6px;
}

.comments-header .search input {
  padding: 16px 34px;
  background: #F0F0F0;
  border: none;
  outline: none;
}

.comments-header .toggle-filters, .comments-header .chat-select-dropdown {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--nav-color);
}

.comments-header .toggle-filters svg, .comments-header .chat-select-dropdown svg {
  min-width: 24px;
}

.comments-header .toggle-filters .box, .comments-header .chat-select-dropdown .box {
  background: var(--nav-color);
  border: 1px solid var(--nav-color);
  font-size: 12px;
  border-radius: 4px;
  padding: 4px 12px;
  color: white;
  display: none;
}

.comments-header .toggle-filters .box.active, .comments-header .chat-select-dropdown .box.active {
  display: block;
}

.comments-header .dropdown-content {
  padding: 8px 26px;
}

.comments-header .select2-selection--single {
  background-color: unset;
}

.reply-form {
  display: none;
  padding: 8px 0px;
}

.reply-form .fake-textarea {
  width: 80%;
  margin: 8px auto;
}

.comment-mention {
  font-weight: 550;
  color: var(--nav-color);
}

.comments-list, .comments-list-secondary {
  height: 480px;
  /* Pure white */
  background: #FFFFFF;
  /* Box shadow */
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  overflow-y: scroll;
}

.comments-list::-webkit-scrollbar, .comments-list-secondary::-webkit-scrollbar {
  display: none;
}

.comments-list .comment, .comments-list-secondary .comment {
  padding: 10px;
}

.comments-list .comment .avatar, .comments-list-secondary .comment .avatar {
  height: 48px;
  width: 48px;
  align-self: flex-start;
  background: #F0F0F0;
  border-radius: 70px;
}

.comments-list .comment .header, .comments-list-secondary .comment .header {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  height: 12px;
}

.comments-list .comment .header svg, .comments-list-secondary .comment .header svg {
  height: 16px;
  width: 16px;
}

.comments-list .comment .header .created, .comments-list-secondary .comment .header .created {
  color: var(--breadcrumb-color);
}

.comments-list .comment .header .user, .comments-list-secondary .comment .header .user {
  color: var(--nav-color);
  font-weight: 700;
}

.comments-list .comment .header .box, .comments-list-secondary .comment .header .box {
  padding: 6px 12px;
  background: #F0F0F0;
  border-radius: 4px;
  color: var(--breadcrumb-color);
  font-weight: 700;
}

.comments-list .comment .body, .comments-list-secondary .comment .body {
  min-width: 80%;
  flex: 1;
  margin-left: 12px;
  margin-right: 12px;
  align-self: normal;
  display: flex;
  flex-direction: column;
}

.comments-list .comment .body > div:last-child, .comments-list-secondary .comment .body > div:last-child {
  flex: 1;
  align-items: end;
}

.comments-list .comment .body .actions svg, .comments-list-secondary .comment .body .actions svg {
  height: 18px;
  width: 18px;
}

.comments-list .comment .body .actions .dialog-toggle, .comments-list-secondary .comment .body .actions .dialog-toggle {
  color: black;
}

.comments-list .comment .edit-form .fake-textarea, .comments-list-secondary .comment .edit-form .fake-textarea {
  margin-top: 8px;
  margin-bottom: 8px;
}

.comments-list .comment .content, .comments-list-secondary .comment .content {
  padding: 6px 0px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  word-wrap: break-word;
}

.comments-list .comment .content .highlight, .comments-list-secondary .comment .content .highlight {
  color: var(--praimary-color);
  font-weight: 600;
}

.comments-list .comment .right, .comments-list-secondary .comment .right {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 24px;
  color: var(--grey-color);
}

.comments-list .comment .timecode, .comments-list-secondary .comment .timecode {
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), #49BCA7;
  border-radius: 4px;
  padding: 4px 12px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
}

.comments-list .comment .timecode .svg-icon, .comments-list-secondary .comment .timecode .svg-icon {
  height: 14px;
  width: 14px;
}

.comments-list .comment .timecode:hover, .comments-list-secondary .comment .timecode:hover {
  cursor: pointer;
}

.comments-list .comment .subcomments, .comments-list-secondary .comment .subcomments {
  box-sizing: border-box;
  padding: 4px 12px;
  color: #49BCA7;
  border: 1px solid #49BCA7;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
}

.comments-list .comment .subcomments:hover, .comments-list-secondary .comment .subcomments:hover {
  cursor: pointer;
}

.comments-list .comment .subcomments.new-subcomments, .comments-list-secondary .comment .subcomments.new-subcomments {
  color: var(--praimary-color);
  border: 1px solid var(--praimary-color);
}

.comments-list .comment .subcomments .svg-icon, .comments-list-secondary .comment .subcomments .svg-icon {
  height: 14px;
  width: 14px;
}

.comments-list .comment svg:hover, .comments-list-secondary .comment svg:hover {
  cursor: pointer;
}

.comments-list .childs, .comments-list-secondary .childs {
  padding-left: 54px;
  display: none;
}

.comments-list .childs .comment + .comment, .comments-list-secondary .childs .comment + .comment {
  border-top: 1px solid #e6e6e6;
}

.comments-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.comments-actions .fake-textarea {
  height: calc(5 * var(--line-height));
}

.comments-actions .user {
  right: calc(1% + 10px);
  padding-top: 40px;
}

.new-comment {
  border-left: 3px var(--praimary-color) solid;
}

.new-comment > .comment {
  margin-left: -3px;
}

.active-user {
  fill: var(--nav-color);
  color: var(--nav-color);
}

.active-flag {
  fill: var(--error-color);
  color: var(--error-color);
}

.flag {
  cursor: pointer;
}

.tabs .tab {
  display: none;
}

.tabs .tab.active {
  display: block;
}

.tabs .box {
  display: flex;
  padding: 54px 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--pure-white, #FFF);
  /* Box shadow */
  box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.04);
}

.tabs .box .title {
  font-size: 32px;
  font-weight: 700;
}

.tabs .box label {
  display: block;
  margin-bottom: 0.7rem;
}

.tabs .box .form-group {
  width: 100%;
}

.tabs .box .company-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(73, 188, 167, 0.4);
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
}

.tabs .box.change-password {
  gap: 8px;
}

.tabs .box.change-password .form-group {
  margin-bottom: 0;
}

.version-box {
  padding: 4px 12px;
  gap: 4px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--state-color);
  color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  text-wrap: nowrap;
}

.material-box .tags {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  gap: 4px;
}

.actions .tags {
  gap: 4px;
  display: flex;
  flex-direction: row;
  align-self: flex-start;
}

.tag-box {
  padding: 3px 9px;
  gap: 3px;
  color: var(--pure-white);
  border-radius: 4px;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  white-space: nowrap;
}

.tag-box.tag1 {
  background: var(--nav-color);
}

.tag-box.tag2 {
  background: var(--praimary-color);
}

.unstyle-link {
  text-decoration: none;
  color: var(--text-default-color);
}

.unstyle-link:visited {
  color: var(--text-default-color);
}

.material_created {
  font-size: 12px;
  line-height: 15px;
  color: var(--breadcrumb-color);
  position: absolute;
  align-self: start;
  margin-top: -20px;
  right: 1%;
}

.deadline-info {
  font-size: 12px;
  color: var(--breadcrumb-color);
  line-height: 16px;
}

.tick-active {
  color: var(--pure-white);
  fill: var(--success-color);
}

.like-active {
  color: var(--nav-color);
}

.bold {
  font-weight: 700;
}

.gap4 {
  gap: 4px;
}

.gap8 {
  gap: 8px;
}

.gap12 {
  gap: 12px;
}

.gap16 {
  gap: 16px;
}

.gap24 {
  gap: 24px;
}

.gap48 {
  gap: 48px;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.w100 {
  width: 100%;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.h3 {
  color: var(--blackish-color);
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-container {
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: end;
}

.footer {
  font-size: 12px;
  line-height: 16px;
  padding: 10px 78px;
}

.has-error .help-block {
  color: var(--error-color);
}

.relative {
  position: relative;
}

.nowrap {
  text-wrap: nowrap;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 30px auto;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert svg {
  width: 40px;
}

.alert-primary {
  color: var(--praimary-color);
  border-radius: 8px;
  font-weight: 700;
  border: none;
  background: none;
}

.alert-success {
  color: var(--success-color);
  border-radius: 8px;
  border: 1px solid #22AA5F;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), #22AA5F;
}

.alert-info {
  color: var(--info-color);
  border-radius: 8px;
  border: 1px solid var(--info-color);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), var(--info-color);
}

.alert-warning {
  color: var(--warning-color);
}

.alert-danger {
  color: var(--error-color);
  border-radius: 8px;
  border: 1px solid #FF314A;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), #FF314A;
}

.alert-error {
  color: var(--error-color);
  border-radius: 8px;
  border: 1px solid #FF314A;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), #FF314A;
}

.hidden {
  display: none;
}

.asteriskField {
  display: none;
}

.dataTables_paginate .pagination {
  list-style-type: none;
  display: flex;
  gap: 8px;
}

.dataTables_paginate .pagination a {
  text-decoration: none;
}

table.dataTable th {
  height: 52px;
  box-sizing: border-box;
  padding-left: 4px;
}

table.dataTable th + th {
  border-left: 1px solid var(--background-color);
}

table.dataTable td {
  height: 52px;
  box-sizing: border-box;
  padding-left: 4px;
}

table.dataTable td.dataTables_empty {
  vertical-align: middle;
}

.ui-autocomplete {
  border-radius: 8px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  font-family: "Montserrat";
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  background-color: var(--nav-color);
  border-color: var(--nav-color);
}

.index-page {
  background: var(--pure-white);
}

.index-page #sec0 {
  padding: 1% 8% 1%;
}

.index-page #sec1 {
  padding: 0 8%;
}

.index-page #sec2 {
  padding: 2% 8%;
}

.index-page #sec3 {
  background: var(--background-color);
  padding: 5% 0%;
}

.index-page #sec4 {
  height: 380px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--state-color);
  justify-content: center;
  color: var(--pure-white);
}

.index-page #sec4 .back-image {
  background-image: url(/static/images/background.jpeg);
  background-size: cover;
  mix-blend-mode: multiply;
  width: 100%;
  height: 380px;
  position: absolute;
}

.index-page #sec4 .h3 {
  margin-bottom: 20px;
  color: var(--pure-white);
}

.index-page #sec4 p {
  margin: 0;
  color: var(--pure-white);
}

.index-page .function-row {
  gap: 64px;
  padding: 20px 0;
}

.index-page .function-box {
  width: 420px;
  gap: 8px;
}

.index-page .function-box .function-title {
  color: var(--blackish-color);
  text-align: center;
  font-feature-settings: 'clig' off, 'liga' off;
  /* P3/P3 B */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  /* 168.75% */
}

.index-page .function-box .function-desc {
  align-self: stretch;
  color: var(--breadcrumb-color);
  text-align: justify;
  font-feature-settings: 'clig' off, 'liga' off;
  /* P2/P2 */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
}

.index-page .function-box .function-desc span {
  display: list-item;
}

.index-page .function-box .svg-icon {
  width: 86px;
  height: 52px;
}

.index-page p {
  color: var(--blackish-color);
  font-feature-settings: 'clig' off, 'liga' off;
  /* P3/P3 */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
}

a:hover .svg-icon, button:hover .svg-icon, .dropdown-toggle:hover .svg-icon {
  filter: drop-shadow(0px 0px 1px color-mix(in srgb, currentColor 50%, transparent));
}

.comments .timecode:hover .svg-icon, .comments .subcomments:hover .svg-icon, .comments .svg-icon.edit:hover, .comments .svg-icon.reply:hover, .comments .svg-icon.tick:hover, .comments .svg-icon.like:hover, .comments .svg-icon.flag:hover, .comments .svg-icon.copy:hover {
  filter: drop-shadow(0px 0px 1px color-mix(in srgb, currentColor 50%, transparent));
}

.green-box {
  padding: 8px 30px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--state-color);
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 12px;
  text-wrap: nowrap;
}

.chat-currently-selected {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#new-chat-modal, #edit-chat-modal {
  overflow: visible;
}

#user_detail .user-data-box {
  min-width: 500px;
  max-width: calc(100% - 600px);
}

#user_detail .user-description {
  word-break: break-word;
  max-width: 100%;
}

#tab-history table td.limit-width {
  max-width: 20vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

#tab-user table td {
  height: unset;
  min-height: 92px;
}

#tab-user table td.date-joined {
  padding-left: 8px;
  min-width: 180px;
}

#confirm-modal .modal-footer {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.user_avatar {
  max-width: 100%;
  max-height: 100%;
  border-radius: 300px;
}
