@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #fe9f99;
  --secondary-color: #1e1e1e;
  --tertiary-color: #060606;
  --body: #1c1c1e;
  --dark-gray: #252527;
  --white: #ffffff;
  --red-caution: #dd0000;
  --success: #55aa00;
  --cancel: #ffe600cf;
  --gray: #868686;
  --pagination-border: #616161;
}

body {
  background-color: var(--body);
  color: #35384d;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
  background: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
  background: var(--secondary-color) !important;
}

.text-tertiary {
  color: var(--tertiary-color);
}

.bg-tertiary {
  background-color: var(--tertiary-color);
  background: var(--tertiary-color) !important;
}

.text-gray {
  color: var(--gray);
}

.bg-gray {
  background-color: var(--gray);
  background: var(--gray) !important;
}

.bg-dark-gray {
  background-color: var(--dark-gray);
  background: var(--dark-gray) !important;
}

input.form,
select.form {
  min-width: 250px;
  width: 100%;
  height: 40px !important;
  border-radius: 5px;
  border: 1px solid #c6c6c6;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 6px;
  transition: ease-in-out;
  transition-duration: 300ms;
}

textarea.form {
  min-width: 250px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #c6c6c6;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: ease-in-out;
  transition-duration: 300ms;
}

.dark-form input.form,
.dark-form select.form {
  background: #1c1c1e;
  border-color: #676767;
  color: rgba(255, 255, 255, 1);
  height: 34px !important;
}

.dark-form input.form::placeholder,
.dark-form textarea.form::placeholder,
.dark-form select.form::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.choices {
  position: relative;
}

.choices .choices__input {
  background-color: #1c1c1e;
  margin-bottom: 0px;
}

.choices .choices__inner {
  background-color: #1c1c1e;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  min-height: 34px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.choices input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.choices .choices__list--multiple .choices__item {
  background-color: #2a2a2e;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  margin-top: 3px;
  padding: 2px 10px;
}

.choices .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices
  .choices__list[aria-expanded]
  .choices__item--selectable.is-highlighted {
  background-color: rgba(255, 255, 255, 0.2);
}

.choices .choices__list--dropdown,
.choices .choices__list[aria-expanded] {
  background-color: #1c1c1e;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.global-lang-switch .localized-fields-widget.tabs {
  display: none;
}

.answer-form textarea.form {
  margin-bottom: 16px;
  min-width: auto;
  height: 80px;
}

input[type="checkbox"].form {
  min-width: 0px;
  width: fit-content;
  height: auto !important;
}

.menu-item {
  display: flex;
  align-items: center;
  transition: ease-in-out;
  transition-duration: 100ms;
  padding: 8px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  border-radius: 7px;
  margin-bottom: 8px;
}

.menu-item > svg {
  margin-right: 14px;
}

.menu-item > svg path {
  fill: #fff;
  transition: all ease-in-out 100ms;
}

.menu-item:hover,
.menu-item.active {
  background-color: #2e2e2e;
}

.submenu-item {
  display: block;
  padding: 6px 0 6px 13px;
  font-size: 12px;
  color: #a4a4a4;
  border-radius: 7px;
  transition: background-color 0.2s, color 0.2s;
  position: relative;
}

.submenu-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -2px;
  bottom: -2px;
  width: 1px;
  background-color: #a4a4a4;
}

.submenu-item:first-child:before {
  top: 2px;
}

.submenu-item:last-child:before {
  bottom: 2px;
}

.submenu-item:hover,
.submenu-item.active {
  background-color: #222222;
}

.toggle-arrow {
  transition: all ease-in-out 100ms;
  transform: rotate(180deg);
}

.toggle-arrow.rotate {
  transform: rotate(0deg);
}

.menu-toggle {
  transition: transform 0.2s ease-in-out;
}

.menu-toggle.open {
  transform: rotate(180deg);
}

#toggle-button:not(.toggle-button-opened) {
  left: 0px;
}

.top-menu-item {
  display: flex;
  align-items: center;
  transition: ease-in-out;
  transition-duration: 100ms;
  padding: 5px 6px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--secondary-color);
  border-radius: 21px;
  margin-bottom: 8px;
}

.card {
  background-color: #252527;
  border-radius: 14px;
  padding: 20px;
  transition: all ease-in-out 100ms;
  cursor: pointer;
}

.card:not(.card-no-hover):hover {
  background-color: var(--tertiary-color);
}

.card-no-hover {
  cursor: default;
}

#table_length,
#students-table_length,
.custom-table .dataTables_length,
#students-invite-table_length,
#invite-table_length {
  display: none;
}

#students-table_filter,
#students-invite-table_filter {
  position: absolute;
  right: 0;
  top: -11.5rem;
}

.dataTables_filter {
  position: absolute;
  right: 0;
  top: -6.5rem;
}

.action-table-wrapper .dataTables_filter {
  top: -9.5rem;
}

#invite-table_wrapper .dataTables_filter {
  top: -6.5rem;
}

.action-table-wrapper.no-add-button .dataTables_filter,
#quizzes-table_wrapper .dataTables_filter,
#contracts-table_wrapper .dataTables_filter,
#imdb-table_wrapper .dataTables_filter,
#certificates-table_wrapper .dataTables_filter,
#productions-table_wrapper .dataTables_filter,
#professions-table_wrapper .dataTables_filter {
  top: -5.5rem;
}

#templates-table_wrapper .dataTables_filter,
.search-filter-table .dataTables_filter {
  top: initial;
  left: 17px;
  right: 20px;
  bottom: calc(100% + 18px);
}

.search-filter-table .dataTables_filter input,
#templates-table_wrapper .dataTables_filter input {
  width: 100%;
  font-size: 14px;
}

#days-table_wrapper .dataTables_filter {
  top: -11rem;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: none !important;
}

.dataTables_filter input {
  background-color: var(--body) !important;
  border: none !important;
  border-radius: 12px !important;
  color: var(--gray) !important;
  padding: 10px 16px !important;
  padding-left: 32px !important;
  position: relative !important;
}

.dataTables_filter::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/search.png") no-repeat;
  z-index: 10;
  top: 12px;
  left: 12px;
}

.dataTables_filter input:focus {
  outline: none;
}

.dataTables_filter input::placeholder {
  color: var(--gray);
}

table.dataTable thead {
  border-bottom: none !important;
}

table.dataTable thead th {
  color: var(--gray);
  text-transform: uppercase;
  font-size: 10px;
  padding: 3px 10px;
  border: none !important;
  font-weight: 500;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable tbody tr.odd,
.odd-rows:nth-child(odd) {
  background-color: var(--body) !important;
}

table.dataTable.no-footer {
  border: none !important;
}

table.dataTable tbody tr {
  background-color: #252527 !important;
  transition: all ease-in-out 300ms;
}

table.dataTable tbody tr.duplicated-row {
  background-color: #fff !important;
}

table.dataTable tbody tr.table-row-even {
  background-color: #252527 !important;
}

table.dataTable tbody tr.table-row-odd {
  background-color: var(--body) !important;
}

table.dataTable.action-table tbody tr.duplicated-row td,
table.dataTable.action-table
  tbody
  tr.duplicated-row
  td
  .action-table-row-container,
table.dataTable.action-table
  tbody
  tr.duplicated-row
  td
  .action-table-row-container
  a {
  color: var(--secondary-color) !important;
}

table.dataTable tbody tr.duplicated-row {
  background-color: #fff !important;
}

table.dataTable.action-table tbody tr.duplicated-row td,
table.dataTable.action-table
  tbody
  tr.duplicated-row
  td
  .action-table-row-container,
table.dataTable.action-table
  tbody
  tr.duplicated-row
  td
  .action-table-row-container
  a {
  color: var(--secondary-color) !important;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable tbody th,
table.dataTable tbody td {
  border: none !important;
}

.dataTables_wrapper .dataTables_paginate {
  float: none;
  padding-top: 20px;
  clear: both;
  margin: 0 auto;
  text-align: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 5px 10px;
  margin-left: 0;
  cursor: pointer;
  background: none !important;
  box-shadow: none !important;
  color: var(--white) !important;
  border-top: 1px solid var(--pagination-border) !important;
  border-bottom: 1px solid var(--pagination-border) !important;
  border-radius: 0 !important;
  border: none;
  font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
  border: 1px solid var(--pagination-border) !important;
  border-top-left-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding-left: 30px !important;
  position: relative;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: none;
}

.paginate_button.previous::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/previous.png") no-repeat;
  z-index: 10;
  top: 6.5px;
  left: 8px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next {
  border: 1px solid var(--pagination-border) !important;
  border-top-right-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding-right: 30px !important;
  position: relative;
}

.paginate_button.next::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/next.png") no-repeat;
  z-index: 10;
  top: 6.5px;
  right: 8px;
}

.paginate_button.previous.disabled,
.paginate_button.next.disabled {
  color: var(--pagination-border) !important;
}

.paginate_button.previous.disabled::before,
.paginate_button.next.disabled::before {
  opacity: 0.5;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 1px solid var(--pagination-border) !important;
  background: none !important;
  border-radius: 0 !important;
  color: var(--pagination-border) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: var(--pagination-border) !important;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 10px 10px;
}

table.dataTable.action-table tbody td {
  padding: 8px 10px;
}

.status-beginner,
.status-failed,
.status-rejected,
.reorder-error {
  border: 1px solid #dd0000;
  background-color: rgba(221, 0, 0, 0.2);
  color: #dd0000;
  padding: 3px 12px;
  border-radius: 12px;
}

.status-not_started,
.status-opened {
  border: 1px solid var(--primary-color);
  background-color: rgba(255, 26, 12, 0.2);
  color: var(--primary-color);
  padding: 3px 12px;
  border-radius: 12px;
}

.close-modal {
  border: 1px solid rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  padding: 3px 12px;
  border-radius: 12px;
}

.status-professional,
.status-started,
.status-draft,
.status-pending {
  border: 1px solid #e79f13;
  background-color: rgba(255, 234, 41, 0.2);
  color: #e79f13;
  padding: 3px 12px;
  border-radius: 12px;
}

.status-student {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  padding: 3px 12px;
  border-radius: 12px;
}

.status-verified,
.status-approved,
.status-published,
.status-finished,
.reorder-success {
  border: 1px solid rgba(63, 196, 0, 1);
  background-color: rgba(63, 196, 0, 0.2);
  color: rgba(63, 196, 0, 1);
  padding: 3px 12px;
  border-radius: 12px;
}

.success-message {
  color: rgba(63, 196, 0, 1);
}

.error-message {
  color: #dd0000;
}

.checkmark {
  width: 20px;
  height: 20px;
}

.checkmark path {
  fill: rgba(63, 196, 0, 1);
}

.confirm-modal .button {
  transition: ease-out;
  transition-duration: 150ms;
  border: solid 1px var(--white);
  color: #1e1e1e;
  background-color: var(--white);
  border-radius: 24px;
  padding: 8px 32px;
  font-size: 12px;
}

.confirm-modal .button:hover {
  background-color: transparent;
  color: var(--white);
  opacity: 85%;
}

.confirm-modal .delete-button {
  border: solid 1px var(--red-caution);
  background-color: var(--red-caution);
  color: var(--white);
}

.confirm-modal .delete-button:hover {
  background-color: transparent;
  color: var(--red-caution);
}

input[type="file"] {
  padding-left: 0;
  border: none;
  color: #fff;
  height: auto !important;
}

.actions-toggle {
  text-align: right;
  display: inline-block;
  margin-right: 11px;
}

.message-input textarea {
  width: 100%;
  border-radius: 14px;
  min-height: 60px;
  margin-bottom: 8px;
  padding: 5px 10px;
}

.checked-radio {
  background-color: yellow;
  border-color: yellow;
}

.disabled-radio {
  cursor: not-allowed;
}

.answer-row {
  background-color: #393939;
  border-radius: 14px;
  padding: 10px;
}

.answer-row.correct {
  border: 1px solid var(--success);
  color: var(--success);
}

.answer-row.wrong {
  border: 1px solid var(--red-caution);
  color: var(--red-caution);
}

.answer-radio {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(97, 97, 97, 1);
  background: rgba(36, 36, 36, 1);
  position: relative;
}

.answer-row.correct .answer-radio::before,
.answer-row.wrong .answer-radio::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  z-index: 10;
  top: 2px;
  left: 2px;
  background-color: rgba(97, 97, 97, 1);
}

.form label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

select.form.select-multiple-form {
  height: 110px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.draggable-statement .localized-fields-widget {
  width: 100%;
}

.draggable-statement .localized-fields-widget > div {
  height: 35px;
}

.draggable-statement .localized-fields-widget textarea {
  height: 35px;
  overflow-y: hidden;
  padding-top: 5px;
  padding-bottom: 5px;
}

.changelog-description ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.changelog-description li {
  color: #ffffff;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.action-table-row:hover .action-table-row-container {
  opacity: 1;
}

#side-bar.collapsed {
  width: 0px !important;
  overflow-x: hidden;
}

#side-bar.collapsed .menu-item {
  display: none !important;
}

#content-wrapper {
  transition: margin-left 0.3s ease-in-out;
}

.keyword-btn::after {
  content: "|";
  position: absolute;
  color: #777778;
  z-index: 10;
  top: 50%;
  right: -72px;
  transform: translateY(-50%);
}

.keyword-btn:last-child:after {
  display: none;
}

.keyword-tag {
  color: #fe9f99;
  display: inline-flex;
  font-weight: 500;
  gap: 5px;
  align-items: center;
}

.keyword-remove-button {
  background: #d9d9d9;
  color: #1c1b1f;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  user-select: none;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.keyword-remove-button svg {
  width: 10px;
  height: 10px;
}

.keyword-remove-button:hover {
  background: #ff4d4d;
}

.ck-editor__editable.ck-editor__editable_inline[data-name*="name"] {
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 8px 12px !important;
  border: 1px solid #676767 !important;
  border-radius: 5px !important;
  background: #1c1c1e !important;
  color: white !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  overflow: hidden !important;
}

.ck-editor__editable.ck-editor__editable_inline[data-name*="name"]:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(254, 159, 153, 0.2) !important;
}

.ck-editor__editable[data-name*="name"] {
  min-height: 40px !important;
  max-height: 40px !important;
  height: 40px !important;
  border: 1px solid #676767 !important;
  border-radius: 5px !important;
  background: #1c1c1e !important;
  color: white !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  overflow: hidden !important;
}

.ck-editor__editable[data-name*="name"]:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(254, 159, 153, 0.2) !important;
}

.ck-editor[data-name*="name"] .ck-toolbar {
  display: none !important;
}

.ck-editor__editable[data-name*="name"] > :last-child,
.ck-editor__editable.ck-editor__editable_inline[data-name*="name"]
  > :last-child {
  margin-bottom: 0 !important;
}

.ck-editor__editable[data-name*="name"] > :first-child,
.ck-editor__editable.ck-editor__editable_inline[data-name*="name"]
  > :first-child {
  margin-top: 0 !important;
}

.ck-editor__editable {
  background: #1c1c1e !important;
  color: white !important;
  border: 1px solid #676767 !important;
  border-radius: 5px !important;
}

.ck-editor__editable:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(254, 159, 153, 0.2) !important;
}

.ck-toolbar {
  background: #2c2c2e !important;
  border: 1px solid #676767 !important;
  border-bottom: none !important;
  border-radius: 5px 5px 0 0 !important;
}

.ck-button {
  color: white !important;
}

.ck-button:hover {
  background: #3a3a3c !important;
}

.ck-button.ck-on {
  background: var(--primary-color) !important;
  color: #1c1c1e !important;
}

.ui-datepicker {
  background: #1c1c1e !important;
  border: 1px solid #676767 !important;
  border-radius: 8px !important;
  padding: 10px !important;
  z-index: 1000 !important;
  width: auto !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5) !important;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  background: #2c2c2e !important;
  border: 1px solid #676767 !important;
  border-radius: 6px !important;
  color: white !important;
  padding: 8px 12px !important;
  margin-bottom: 10px !important;
  position: relative !important;
}

.ui-datepicker .ui-datepicker-title {
  color: white !important;
  font-weight: 500 !important;
  text-align: center !important;
  line-height: 1.4 !important;
}

.ui-datepicker .ui-datepicker-title select {
  background: #1c1c1e !important;
  border: 1px solid #676767 !important;
  color: white !important;
  border-radius: 4px !important;
  padding: 2px 4px !important;
  margin: 0 2px !important;
  font-size: 13px !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background: #3c3c3e !important;
  border: 1px solid #676767 !important;
  border-radius: 4px !important;
  color: white !important;
  width: 24px !important;
  height: 24px !important;
  text-align: center !important;
  line-height: 22px !important;
  font-size: 12px !important;
  position: absolute !important;
  top: 8px !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 8px !important;
}

.ui-datepicker .ui-datepicker-next {
  right: 8px !important;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: none !important;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "‹" !important;
  font-size: 16px !important;
  font-weight: bold !important;
}

.ui-datepicker .ui-datepicker-next:before {
  content: "›" !important;
  font-size: 16px !important;
  font-weight: bold !important;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background: #4c4c4e !important;
  color: white !important;
}

.ui-datepicker table {
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 2px !important;
}

.ui-datepicker th {
  background: #2c2c2e !important;
  color: #999 !important;
  border: none !important;
  padding: 6px 4px !important;
  text-align: center !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
}

.ui-datepicker td {
  border: none !important;
  padding: 1px !important;
}

.ui-datepicker td a {
  background: transparent !important;
  border: 1px solid transparent !important;
  color: white !important;
  text-align: center !important;
  padding: 0 !important;
  border-radius: 4px !important;
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.ui-datepicker td a:hover {
  background: #3c3c3e !important;
  border-color: #676767 !important;
  color: white !important;
}

.ui-datepicker td.ui-datepicker-today a {
  background: #007aff !important;
  color: white !important;
  border-color: #007aff !important;
}

.ui-datepicker td.ui-datepicker-current-day a,
.ui-datepicker td.ui-state-active a {
  background: white !important;
  color: #1c1c1e !important;
  border-color: white !important;
}

.ui-datepicker td.ui-datepicker-other-month a {
  color: #666 !important;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background: transparent !important;
  border: none !important;
  margin-top: 10px !important;
  text-align: center !important;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  background: #3c3c3e !important;
  border: 1px solid #676767 !important;
  color: white !important;
  padding: 6px 12px !important;
  border-radius: 4px !important;
  margin: 0 4px !important;
  font-size: 12px !important;
}

.ui-datepicker .ui-datepicker-buttonpane button:hover {
  background: #4c4c4e !important;
}

.date-picker-wrapper {
  position: relative;
}

.date-picker-wrapper .form.datepicker {
  cursor: pointer;
  background-color: #1c1c1e;
}

.keyword-input {
  min-width: 0 !important;
}

.mc-add-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px;
  z-index: 1000;
}

.mc-add-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 12px 8px;
  padding-bottom: 6px;
}

.mc-add-dropdown ul li {
  border-radius: 80px;
  margin-bottom: 8px;
  transition: background-color 0.2s;
  background-color: #fff;
}

.mc-add-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #1c1c1e;
  text-decoration: none;
  font-size: 12px;
}

.mc-add-dropdown li:hover {
  background-color: #d5d5d5;
}

.mc-add-dropdown.hidden {
  display: none;
}

#mc-templates-modal .action-table-wrapper {
  width: 384px;
  min-height: 300px;
}

#templates-table {
  width: 384px !important;
  table-layout: fixed;
}

#templates-table th,
#templates-table td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#templates-table th:first-child,
#templates-table td:first-child {
  width: 320px;
  padding-left: 20px;
  padding-right: 0;
}

#templates-table th:last-child,
#templates-table td:last-child {
  width: 24px;
  text-align: center;
}

.draggable-statement .ck.ck-sticky-panel {
  display: none !important;
}

.travi-scroll-container::-webkit-scrollbar {
  width: 8px;
}

.travi-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.travi-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.travi-scroll-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
