:root {
  --body_background: #f5f5f9;
  --top_bar_background: #0d0f14;
  --top_bar_hover: #232835;
  --main_color: #4c2ab6;
  --main_lighten: #633dd3;
  --main_darken: #3f1f9c;
  --main_text: #666;
  --padding_top_main: 60px;
  --global_box_shadow: 0 .125rem .375rem 0 rgba(161,172,184,.12);
  --side_menu_width: 220px;
  --side_menu_width_contracted: 45px;
  --side_menu_background: #fff;
  --side_menu_color: #3f3f47;
  --side_menu_sub_color: #3f3f47;
  --side_menu_sub_hover: #333339;
  --side_menu_separator_border: none;
  --side_menu_selected_parent_bg: #e7e0ff;
  --side_menu_selected_parent_color: #696cff;
  --side_menu_selected_subitems_background: #f2f2f2;
  --side_menu_current_subitem_bg: #f5f5f9;
  --side_menu_current_subitem_bg_hover: #e4e4ff;
  --side_menu_contracted_color: #222;
  --widget_title_color: #42454a;
  --widget_title_background: #fff;
  --widget_hover_background: #f0f0f0;
  --font_body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font_heading:var(--font_body);
}

/** Paths */
/** Brands */
@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-o-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes newFolder {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "footable";
  src: url("../fonts/footable.eot");
  src: url("../fonts/footable.eot?#iefix") format("embedded-opentype"), url("../fonts/footable.woff") format("woff"), url("../fonts/footable.ttf") format("truetype"), url("../fonts/footable.svg#footable") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "footable";
    src: url("../fonts/footable.svg#footable") format("svg");
    font-weight: normal;
    font-style: normal;
  }
}
.footable {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1em;
  color: #444444;
  background: #ffffff;
  margin: 10px auto 15px;
  border-radius: 8px;
  box-shadow: var(--global_box_shadow);
}

.footable > tfoot > tr > td {
  padding: 20px 0 !important;
}

.footable > thead > tr > th,
.footable > thead > tr > td,
.footable > thead > th.active {
  font-size: 0.7rem;
  text-transform: uppercase;
  vertical-align: middle;
  color: #444444;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.footable > thead > tr > th a,
.footable > thead > tr > td a {
  display: inline-block;
  color: #222;
  text-decoration: none;
}

.footable > thead > tr > th.footable-sorted-asc > span.footable-sort-indicator:before {
  content: "\e013";
}

.footable > thead > tr > th.footable-sorted,
.footable > thead > tr > th.footable-sorted-asc,
.footable > thead > tr > th.footable-sorted-desc {
  background-color: var(--side_menu_selected_parent_bg) !important;
  color: var(--side_menu_selected_parent_color) !important;
}

.footable-sorted a, .footable-sorted-asc a, .footable-sorted-desc a {
  color: var(--side_menu_selected_parent_color) !important;
}

.footable > thead > tr > th.footable-first-column, .footable > thead > tr > td.footable-first-column {
  border-left: none;
}

.footable.breakpoint > tbody > tr.footable-row-detail {
  background: #fff;
}

.footable-row-detail-inner {
  width: 100%;
  max-width: 400px;
}

.footable.breakpoint > tbody > tr.footable-row-detail > .footable-row-detail-cell {
  padding: 15px;
}

.footable-row-detail-name, .footable-row-detail-value {
  padding: 5px 0;
  border-bottom: 1px solid #dedede;
}

.footable > tbody img {
  vertical-align: middle;
}

.footable > tbody > tr:hover > td {
  background: #fbf8e9 !important;
}

.footable > tbody > tr > td {
  padding: 7px 4px;
  text-align: left;
  vertical-align: middle;
}

.footable .pagination {
  margin: 20px 0;
}

.footable .pagination > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  box-shadow: none;
  background-color: #ffffff;
}

.footable .pagination > ul > li {
  display: inline;
}

.footable .pagination > ul > li > a, .footable .pagination > ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  border: 1px solid #cccccc;
  border-left-width: 0;
}

.footable .pagination > ul > li:first-child > a, .footable .pagination > ul > li:first-child > span {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-left-width: 1px;
}

.footable .pagination > ul > li:last-child > a, .footable .pagination > ul > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.footable .pagination > ul > li > a:hover, .footable .pagination > ul > li > a:focus, .footable .pagination > ul > .active > a, .footable .pagination > ul > .active > span {
  background-color: #eeeeee;
}

.footable .pagination > ul > .active > a, .footable .pagination > ul > .active > span {
  color: #444444;
  cursor: default;
}

.footable .pagination > ul > .disabled > span, .footable .pagination > ul > .disabled > a, .footable .pagination > ul > .disabled > a:hover, .footable .pagination > ul > .disabled > a:focus {
  color: #cccccc;
  cursor: default;
  background-color: #ebf3fc;
}

.footable .pagination.pagination-centered {
  text-align: center;
}

.footable .pagination.pagination-right {
  text-align: center;
}

.footable-odd {
  background-color: #f7f7f7;
}

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

.btn-primary {
  background-color: var(--main_color);
  border-color: var(--main_color);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: white;
  background-color: var(--main_lighten) !important;
}

.btn-pslight {
  background-color: #ddd;
}
.btn-pslight:hover {
  background-color: #ccc !important;
}

.btn {
  white-space: normal;
}

.btn-wide {
  padding: 4px 20px !important;
}

.form-horizontal .control-label {
  text-align: left;
}

label input[type=checkbox] {
  cursor: pointer;
}

.checkbox label {
  line-height: 20px;
}

span.label {
  font-size: 12px;
}

.text-warning {
  color: #cc800e !important;
}

.tagify {
  border-radius: 5px;
  width: 95%;
  margin: 0 auto;
  padding: 0.5rem;
}
.tagify tag > div {
  border: 1px solid #bcd8f3;
  background: #e5f1fc;
  color: #666;
  font-size: 0.95rem;
}
.tagify x {
  color: #666;
}

.CodeMirror {
  font-size: 12px;
  line-height: 17px;
  border: 1px solid #dedede;
}

.plupload_header {
  display: none;
}

.plupload_filelist_header,
.plupload_filelist_footer {
  background: #e2e5e9;
}

.plupload_filelist_footer {
  height: auto;
}

.plupload_button {
  color: white;
  background: var(--main_color);
  margin-right: 4px;
  padding: 4px 30px;
  font-family: var(--font_body);
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #004380;
  border-radius: 4px;
}
.plupload_button:hover {
  color: white;
  background: var(--main_lighten);
}
.plupload_button:focus, .plupload_button:active {
  color: white;
}

.plupload_wrapper {
  font-family: var(--font_body);
  font-size: 1.15em;
  line-height: 1.2em;
  box-shadow: 3px 3px 5px, #dedede;
}

.plupload_container {
  padding: 1px;
}

a.plupload_start {
  display: none;
}

.message_uploading {
  display: none;
}

#toast-container > div {
  opacity: 1;
}

.datapick-field {
  cursor: pointer !important;
}

.ck-editor__editable_inline {
  min-height: 110px;
}

p {
  margin-bottom: 1.2em;
  line-height: 1.5em;
}

a img {
  border: none;
}

.external_link:before {
  content: "\f08e";
  font: normal normal normal 14px/1 FontAwesome;
  margin-right: 3px;
  line-height: 1px;
  color: black;
}

.clear {
  clear: both;
}

html,
body {
  background: var(--body_background);
  color: var(--main_text);
  font-size: 0.95rem;
  line-height: 1.2rem;
  height: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}

body {
  padding-top: 4.5rem;
}

.none {
  display: none;
}

a {
  color: var(--main_color);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--main_lighten);
  text-decoration: none;
}

.clear {
  clear: both;
}

.backend .system_msg {
  padding: 10px;
  background: #FFFBE4;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
}
.backend .system_msg p {
  margin: 0;
}
.backend .branding_unlogged {
  text-align: center;
  margin: 20px auto;
}
.backend .branding_unlogged img, .backend .branding_unlogged svg {
  height: auto;
  width: 100%;
  max-width: 250px;
}
.backend #install_form {
  margin-top: 30px;
}
.backend #install_extra {
  margin-top: 30px;
  font-weight: bold;
  font-size: 11px;
  color: #0099CC;
}
.backend .white-box {
  background-color: white;
  box-shadow: var(--global_box_shadow);
  border-radius: 8px;
}
.backend .white-box .white-box-interior {
  padding: 15px;
}
.backend .file_status_visible, .backend .account_status_active {
  color: #639822 !important;
  font-weight: bold;
}
.backend .file_status_hidden, .backend .account_status_inactive {
  color: #D24244 !important;
  font-weight: bold;
}
.backend .form-group {
  margin-bottom: 1rem;
}
.backend .form-group label.error {
  font-size: 0.85rem;
  color: #B94A48;
  background: #F2DEDE;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid #EED3D7;
  position: relative;
  display: block;
  border-radius: 0 0 3px 3px;
}
.backend .readonly-not-grayed {
  background-color: white !important;
}
.backend .button_label {
  display: none;
}
.backend .td_checkbox {
  width: 50px;
}
.backend #uploaded_files_tbl {
  margin-bottom: 70px;
}
.backend th.select_buttons {
  width: 220px;
}
.backend .membership_toggle {
  margin-right: 10px;
}
.backend .membership_toggle .toggle-group {
  transition: left 0.1s;
  -webkit-transition: left 0.1s;
}

form .alert {
  margin-top: 2em;
}

.required {
  background: url(../img/req-text.png) no-repeat right -2px;
  padding-right: 50px;
}

.btn_generate_password {
  margin-top: 5px;
}

#otp_request_new_container {
  text-align: center;
  border: 1px solid #dedede;
  padding: 10px;
  margin-top: 20px;
}
#otp_request_new_container h4 {
  padding: 0;
  margin: 0 0 10px;
}

.form_actions_right {
  display: block;
  float: right;
}

.form_actions,
.form_actions_limit_results {
  padding: 0;
  margin-bottom: 5px;
}

.form_actions_count {
  text-align: left;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.2em;
  overflow: hidden;
  border-top: 1px dotted #ccc;
}

.form_actions .form_actions_submit select {
  width: 140px;
}
.form_actions .form_actions_submit select.large_select {
  width: 320px !important;
}

.form_actions_submit label {
  font-size: 14px;
  margin-right: 15px;
  font-weight: normal;
}

.after_form_buttons {
  margin-top: 50px;
  text-align: center;
}

.inside_form_buttons {
  margin-top: 25px;
  text-align: center;
  display: block;
}

.alert .alert-title {
  padding-bottom: 0;
  margin-bottom: 8px;
  border: none;
  font-weight: bold;
  font-size: 17px;
}

.file_name {
  font-weight: bold;
}
.file_name small {
  font-weight: 400;
}
.file_name a {
  text-decoration: underline;
}

.thumbnail {
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.public_link_copy {
  padding: 5px;
  margin: 10px 0 10px auto !important;
}

.format_url {
  word-break: break-all;
}

#browser_encrypt_data {
  margin-top: 2rem;
}
#browser_encrypt_data #keys_list {
  background-color: mediumturquoise;
}
#browser_encrypt_data #keys_list #keys {
  list-style: none;
}

.copy_text {
  cursor: pointer;
  margin-left: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: var(--font_heading);
}

h1 {
  color: white;
  font-size: 32px;
  line-height: 32px;
  margin: 15px 0;
}

h2 {
  color: #333333;
  font-size: 27px;
  line-height: 29px;
  margin: 0 0 35px;
  letter-spacing: -1px;
}

h3 {
  font-size: 17px;
  line-height: 19px;
  padding: 0;
  font-weight: 900 !important;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h4 {
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 18px;
}

h5 {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 18px;
}
h5 i {
  margin-right: 8px;
}

.field_note {
  margin: 4px 0 15px 0;
  font-size: 0.9rem;
  line-height: 1.2rem;
  padding-left: 6px;
  font-weight: 300;
  border-left: 3px solid #eee;
}
.field_note a {
  color: #0094bb;
  text-decoration: underline;
}
.box-reset-password .field_note {
  margin-left: 0;
}

.form-control[readonly] {
  background-color: #e9ecef;
}

optgroup {
  padding: 1em;
  border: dotted #999;
  border-width: 1px 0 0 0;
}

input[type=number].number_small {
  width: 80px;
}

.checkbox_options {
  width: auto !important;
}

.options_divide {
  clear: both;
  overflow: hidden;
  margin: 25px 0;
}

.options_column {
  overflow: hidden;
}

textarea.textarea_medium {
  min-height: 150px;
}

textarea.textarea_high {
  min-height: 200px;
}

.options_col_left {
  width: 47%;
  float: left;
}

.options_col_right {
  width: 47%;
  float: right;
}

.preview_button {
  margin-top: 25px;
  text-align: center;
}
.preview_button button {
  margin-bottom: 10px;
}

.select_control_buttons {
  margin: 10px 0 30px;
  padding: 0;
}
.select_control_buttons a {
  margin-right: 5px;
}
.select_control_buttons a:last-child {
  margin-right: 0;
}

#side_modal_cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.25s linear, z-index 0.25s linear;
  z-index: -1;
}
#side_modal_cover.visible {
  opacity: 1;
  z-index: 1030;
}

#side_modal {
  position: fixed;
  top: 0;
  right: 0;
  background: #f4f4f4;
  z-index: 1040;
  border-color: #f4f4f4;
  border-left: 1px ridge #eee;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition: opacity 0.5s linear, right 0.5s linear;
  width: 100%;
  max-width: 850px;
  height: 100%;
  transform: none;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  #side_modal {
    border-left: none;
    width: calc(100% - 30px);
    /*
    height: calc(100% - 30px);
    right: 15px;
    top: 15px;
    */
    height: 100%;
    top: 0;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
#side_modal.hidden {
  right: -100%;
  visibility: hidden;
  opacity: 0;
}
#side_modal #side_modal_internal {
  position: relative;
  height: 100%;
}
#side_modal #sm_header {
  text-align: left;
  padding: 20px;
  position: relative;
  height: 80px;
}
@media (max-width: 767px) {
  #side_modal #sm_header {
    padding: 10px;
  }
}
#side_modal #sm_header .title {
  margin-right: 80px;
}
#side_modal #sm_header .title h5 {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 1rem 0 0;
}
@media (max-width: 767px) {
  #side_modal #sm_header .title h5 {
    font-size: 1rem;
  }
}
#side_modal #sm_header span.dismiss {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 0.9rem;
  display: inline-block;
  transition: 0.2s all linear;
  color: #777;
  padding: 5px;
}
@media (max-width: 767px) {
  #side_modal #sm_header span.dismiss {
    right: 1.5rem;
    top: 1.5rem;
  }
}
#side_modal #sm_header span.dismiss:hover {
  cursor: pointer;
  color: #444;
}
#side_modal .loader {
  display: none;
}
#side_modal .loader.visible {
  display: block;
}
#side_modal .contentarea {
  height: calc(100% - 80px);
  overflow: auto;
  background-color: white;
  padding-top: 30px;
}
#side_modal .contentarea .content {
  position: relative;
  height: 100%;
  padding: 0 20px 20px;
  overflow: auto;
}
@media (max-width: 767px) {
  #side_modal .contentarea .content {
    padding: 0 10px 10px;
  }
}
#side_modal .contentarea .loading_placeholder {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  vertical-align: middle;
}
#side_modal .contentarea .loading_placeholder td {
  text-align: center;
  vertical-align: middle;
  border-top: none !important;
}
#side_modal .contentarea .loading_placeholder td:hover {
  background: none;
}
#side_modal .contentarea table {
  table-layout: fixed;
  width: 100%;
}
#side_modal .contentarea table td {
  word-break: break-all;
}

button.password_toggler {
  border-color: #dedede;
}
button.password_toggler > * {
  pointer-events: none;
}

#preview_modal .modal-header .modal-title {
  display: inline-block;
  margin-bottom: 0;
}
#preview_modal .modal-body audio {
  width: 100%;
}
#preview_modal .embed-responsive {
  background: black;
}
#preview_modal div.embed-responsive iframe {
  width: 100%;
  min-height: 39em;
}

#footer {
  margin: 50px 0 10px 0;
  padding: 20px 0;
  border-top: 1px solid #dedede;
  text-align: center;
  color: #888;
}
#footer a {
  color: #666;
}
#footer .footer_links ul {
  margin: 0 auto 2em;
  padding: 0;
}
#footer .footer_links ul li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}
#footer .footer_links ul li a {
  text-decoration: underline;
}

#header a {
  transition: 0.2s all ease-in-out;
}
#header.navbar {
  background: var(--top_bar_background);
}
#header.navbar .nav > li {
  margin: 0;
  font-size: 0.9rem;
}
#header.navbar .nav > li > a {
  color: #f0f0f0;
  padding: 3px 10px;
  border-left: 1px solid #474b58;
  margin: 0;
}
#header.navbar .nav > li > a:hover, #header.navbar .nav > li > a:focus {
  color: #fff;
  background: var(--top_bar_hover);
}
#header.navbar .nav > li > a.toggle_main_menu {
  font-size: 2em;
  margin-top: 3px;
  border-left: none;
  padding: 0;
}
#header.navbar .nav > li > a.toggle_main_menu span {
  display: none;
}
#header.navbar .nav > li > a.toggle_main_menu:hover, #header.navbar .nav > li > a.toggle_main_menu:focus {
  background: none;
}
#header.navbar .nav .open > a, #header.navbar .nav .nav .open > a:focus, #header.navbar .nav .nav .open > a:hover {
  background: #333;
}
#header.navbar .nav_account > li {
  display: inline-block;
}
#header.navbar .nav_account > li > a {
  color: #f0f0f0;
}
#header.navbar .nav_account > li i {
  display: inline-block;
}
@media (max-width: 767px) {
  #header.navbar .nav_account > li span {
    display: none;
  }
}
#header .navbar-brand {
  height: 40px;
  line-height: 10px;
  color: #f0f0f0;
}
#header .navbar-brand:hover, #header .navbar-brand:active, #header .navbar-brand:focus {
  text-decoration: none;
}
#header .navbar-brand svg {
  fill: #777;
  display: inline-block;
  margin: 0 10px 0 20px;
  width: 20px;
  height: auto;
}
#header .navbar-brand svg:hover {
  fill: #fff;
}
@media (max-width: 767px) {
  #header .navbar-brand svg {
    display: none;
  }
}
#header #header_welcome {
  margin-right: 10px;
  color: #ccc;
}
@media (max-width: 767px) {
  #header #header_welcome {
    display: none;
  }
}

.main_side_menu {
  padding-top: var(--padding_top_main);
  width: var(--side_menu_width);
  background: var(--side_menu_background);
  box-shadow: var(--global_box_shadow);
  height: 100%;
  position: fixed;
  overflow-y: auto;
  top: 0px;
  left: 0px;
  z-index: 1000;
}
.main_side_menu ul {
  list-style: none;
}

.main_content {
  margin-left: var(--side_menu_width);
  padding: 0 20px;
}

.menu_contracted .main_side_menu {
  width: var(--side_menu_width_contracted);
  overflow-y: visible;
  overflow-x: visible;
}
.menu_contracted .main_content {
  margin-left: var(--side_menu_width_contracted);
}

.main_menu {
  margin: 0;
  padding: 0 0.5rem;
}
.main_menu a {
  color: var(--side_menu_color);
  font-size: 1.1em;
}
.main_menu > li {
  margin: 0;
  position: relative;
}
.main_menu > li.separator {
  border-top: 1px solid var(--side_menu_separator_border);
  margin-bottom: 15px;
}
.main_menu > li.has_dropdown::after {
  font-family: FontAwesome;
  content: "\f0d7";
  position: absolute;
  top: 1em;
  right: 1em;
  color: var(--side_menu_color);
}
.main_menu > li > a {
  display: block;
  padding: 1em 1em;
  position: relative;
  border-radius: 8px;
}
.main_menu > li > a i {
  margin-right: 1em;
}
.main_menu > li > ul {
  padding: 0.75em 0;
  font-size: 0.9em;
  display: none;
}
.main_menu > li > ul > li {
  position: relative;
  border-radius: 8px;
}
.main_menu > li > ul > li a {
  display: flex;
  padding: 0.7rem 0 0.7rem 3.5rem;
  color: var(--side_menu_sub_color);
  align-self: center;
}
.main_menu > li > ul > li a .submenu_label {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.main_menu > li > ul > li a .submenu_label:before {
  position: absolute;
  content: "";
  left: -1rem;
  width: 5px;
  height: 5px;
  background-color: #b4b4b4;
  border-radius: 50%;
}
.main_menu > li > ul > li.current_page {
  background: var(--side_menu_current_subitem_bg);
}
.main_menu > li > ul > li:hover {
  background: var(--side_menu_current_subitem_bg_hover);
}
.main_menu > li > ul > li:hover ::before {
  transform: scale(1.5);
}
.main_menu > li.current_page > a, .main_menu > li.current_nav > a {
  background: var(--side_menu_selected_parent_bg);
  color: var(--side_menu_selected_parent_color);
}

.menu_contracted .main_menu {
  padding: 0;
}
.menu_contracted .main_menu > li {
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}
.menu_contracted .main_menu > li.has_dropdown::after {
  display: none;
}
.menu_contracted .main_menu > li > a {
  padding: 0.5em;
  font-size: 0.8em;
  text-align: center;
}
.menu_contracted .main_menu > li > a i {
  margin: 0;
  text-align: center;
  font-size: 2.2em;
  color: var(--side_menu_contracted_color);
}
.menu_contracted .main_menu > li > a .menu_label {
  display: none;
}
.menu_contracted .main_menu > li > ul {
  background: var(--side_menu_background);
  box-shadow: var(--global_box_shadow);
  border-radius: 8px;
  position: absolute;
  left: 45px;
  top: 0px;
  width: 200px;
  z-index: 50;
  border-top: none;
  padding: 0;
  display: none;
  border: 1px solid #f0f0f0;
}
.menu_contracted .main_menu > li > ul > li {
  position: relative;
}
.menu_contracted .main_menu > li > ul > li ::before {
  display: none;
}
.menu_contracted .main_menu > li > ul > li ::after {
  display: none;
}
.menu_contracted .main_menu > li > ul > li a {
  display: block;
  padding: 1em 1em;
  color: var(--side_menu_sub_color);
  text-align: left;
}
.menu_contracted .main_menu > li > ul > li:hover a {
  color: var(--side_menu_sub_hover);
}
.menu_contracted .main_menu > li.current_page, .menu_contracted .main_menu > li.current_nav {
  border-right: none;
  background: none;
}
.menu_contracted .main_menu > li.current_page > a, .menu_contracted .main_menu > li.current_nav > a {
  background: var(--side_menu_selected_parent_bg);
  color: var(--side_menu_selected_parent_color);
}
.menu_contracted .main_menu > li.current_page > a > i, .menu_contracted .main_menu > li.current_nav > a > i {
  color: var(--side_menu_selected_parent_color);
}

@media (min-width: 768px) {
  body:not(.menu_contracted) .main_menu .current_nav .dropdown_content {
    display: block;
  }
}
@media (max-width: 767px) {
  .menu_hidden .main_side_menu {
    display: none;
  }
  .menu_hidden .main_content {
    margin-left: 0px !important;
  }
}
body.options #current_logo {
  margin: 20px auto;
  text-align: center;
  padding: 20px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  body.options #current_logo {
    text-align: center;
  }
}
body.options #current_logo_img {
  padding: 20px 0;
}
body.options #current_logo_img img, body.options #current_logo_img svg {
  height: auto;
  width: 100%;
  max-width: 300px;
}
body.options #form_upload_logo {
  padding: 30px 0 10px;
  border-top: 1px dotted #CCCCCC;
}

body.download .file_title {
  margin-bottom: 2rem;
}
body.download .file_title h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
body.download .description {
  font-size: 1.2rem;
  line-height: 1.4rem;
}
body.download .size {
  margin-top: 2rem;
  font-size: 1.2rem;
}
body.download .actions {
  margin-top: 20px;
}

.template_selector .template {
  margin-bottom: 40px;
  padding: 15px;
  background: white;
  overflow: hidden;
  position: relative;
}
.template_selector .template.current_template {
  border: 5px solid var(--main_color);
}
.template_selector .template h4 {
  font-size: 1.5em;
  color: black;
  margin-top: 25px;
}
.template_selector .template .info h5 {
  margin: 20px 0 10px;
  font-size: 1.2em;
}
.template_selector .template .images {
  position: relative;
}
.template_selector .template .images img {
  width: 100%;
  height: auto;
}
.template_selector .template .images .screenshot {
  display: block;
}
.template_selector .template .images .cover {
  -moz-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  transition: 0.3s all linear;
}
.template_selector .template:hover .images .cover {
  -moz-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
.template_selector .template .buttons {
  text-align: right;
}

.login_form_links {
  margin-top: 25px;
}
.login_form_links p {
  margin: 10px 0 0;
}

.hide_title h2 {
  display: none;
}

.login .tab-content {
  padding-top: 20px;
}

.social_login_links {
  text-align: center;
  margin: 20px auto 0;
}
.social_login_links .button_google .fa-circle {
  color: #db4437;
}
.social_login_links .button_facebook .fa-circle {
  color: #3c5a99;
}
.social_login_links .button_twitter .fa-circle {
  color: #1da1f2;
}
.social_login_links .button_windowslive .fa-circle {
  color: #f25022;
}
.social_login_links .button_yahoo .fa-circle {
  color: #410093;
}
.social_login_links .button_openid .fa-circle {
  color: #f7931e;
}

form#verify_2fa .form_info h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
form#verify_2fa #otp_inputs {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 25px auto;
}
form#verify_2fa #otp_inputs input {
  width: 48px;
  height: 48px;
  font-size: 25px;
}

body.dashboard .widget {
  background: white;
  display: block;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: var(--global_box_shadow);
}
body.dashboard .widget .widget_int {
  padding: 15px;
}
body.dashboard .widget h4 {
  text-align: left;
  padding: 13px;
  font-size: 16px;
  margin: 0 !important;
  color: var(--widget_title_color);
  background: var(--widget_title_background);
  border-bottom: 1px solid #dedede;
  border-radius: 2px 2px 0 0;
}
body.dashboard .widget:hover h4 {
  background: var(--widget_hover_background);
}
body.dashboard .widget_counters ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  body.dashboard .widget_counters ul {
    flex-wrap: wrap;
  }
}
body.dashboard .widget_counters ul li {
  flex: 1;
  background: red;
  color: white;
  padding: 20px;
  position: relative;
  border-radius: 8px;
}
@media (max-width: 767px) {
  body.dashboard .widget_counters ul li {
    flex: 1 0 20%;
    margin-bottom: 20px;
  }
}
body.dashboard .widget_counters ul li:nth-child(1) {
  background: #ffac02;
}
body.dashboard .widget_counters ul li:nth-child(2) {
  background: #7ad14c;
}
body.dashboard .widget_counters ul li:nth-child(3) {
  background: #6b6eff;
}
body.dashboard .widget_counters ul li:nth-child(4) {
  background: #e74123;
}
body.dashboard .widget_counters ul li:nth-child(5) {
  background: #03c3ec;
}
body.dashboard .widget_counters ul li h6 {
  font-weight: bold;
  font-size: 35px;
}
body.dashboard .widget_counters ul li h5 {
  font-weight: normal;
  font-size: 22px;
}
body.dashboard .widget_counters ul li i {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 100px;
  opacity: 0.2;
}
@media (max-width: 767px) {
  body.dashboard .widget_counters ul li i {
    opacity: 0.1;
  }
}
body.dashboard #widget_actions_log #log_container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.dashboard #widget_actions_log #log_container ul li {
  padding: 7px;
  border-bottom: 1px solid #dedede;
  display: flex;
}
body.dashboard #widget_actions_log #log_container ul li:nth-child(odd) {
  background: #f6f6f6;
}
body.dashboard #widget_actions_log #log_container ul li:hover {
  background: #fbf8e9;
}
body.dashboard #widget_actions_log #log_container ul li i {
  margin: 0 1em;
  color: #1ec4a7;
  text-align: center;
  font-size: 14px;
}
body.dashboard #widget_actions_log #log_container ul li .date {
  text-align: right;
}
body.dashboard #widget_actions_log #log_container ul li .date span {
  display: inline-block;
  padding: 3px 0 0 0;
  font-weight: bold;
  line-height: 1;
}
body.dashboard #widget_actions_log #log_container ul li .action {
  flex: 2;
  word-break: break-all;
}
body.dashboard #widget_actions_log #log_container ul li .action .item_part1, body.dashboard #widget_actions_log #log_container ul li .action .item_part2, body.dashboard #widget_actions_log #log_container ul li .action .item_part4 {
  color: var(--main_color);
  font-weight: bold;
}
body.dashboard .activities_log {
  padding: 0;
}
body.dashboard .activities_log li {
  padding: 7px;
  border-bottom: 1px solid #EFEFEF;
  overflow: hidden;
}
body.dashboard .activities_log li:nth-child(odd) {
  background: #fafafa;
}
body.dashboard .activities_log li:last-child {
  border-bottom: none !important;
}
body.dashboard .activities_log li .date {
  font-size: 0.9em;
  color: #999;
}
body.dashboard .activities_log li .log_ico {
  width: 45px;
  float: left;
  -moz-opacity: 0.1;
  -webkit-opacity: 0.1;
  opacity: 0.1;
}
body.dashboard .activities_log li:hover .log_ico {
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
body.dashboard .activities_log li span {
  font-weight: bold;
  color: var(--main_color);
}
body.dashboard .activities_log li span.secondary {
  color: #86AE00;
}
body.dashboard .view_full_log {
  text-align: right;
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #EFEFEF;
}
body.dashboard .home_news {
  margin: 0;
  padding: 0;
}
body.dashboard .home_news .date {
  color: #999;
  font-size: 0.9em;
}
body.dashboard .home_news h5 {
  margin: 0 0 3px;
}
body.dashboard .stats_change_days {
  margin-bottom: 1.5em;
  display: inline-block;
}
body.dashboard .graph_legend {
  float: none;
  clear: both;
  display: block;
  text-align: left;
  margin: 0 0 30px;
  padding: 0;
}
@media (min-width: 992px) {
  body.dashboard .graph_legend {
    display: inline-block;
    text-align: right;
    padding-top: 5px;
    margin: 0 0 0 auto;
    float: right;
  }
}
body.dashboard .graph_legend li {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.9em;
  padding: 4px;
}
body.dashboard .graph_legend li.legend_color {
  margin: 2px 5px 0 0;
}
body.dashboard .stats_change_data, body.dashboard .log_change_action {
  margin-bottom: 2em;
}
body.dashboard .widget_system_info .widget_int h3:first-child {
  margin-top: 0;
}
body.dashboard .widget_system_info dl {
  margin-bottom: 25px;
}
body.dashboard .widget_system_info dt {
  text-align: left;
}
body.dashboard .widget_system_info dd {
  word-break: break-all;
}
body.dashboard .loading-icon {
  text-align: center;
  margin: 30px auto;
  padding: 0;
}
body.dashboard .loading-icon svg {
  width: 100px;
  height: auto;
}
body.dashboard .widget_statistics #stats_tooltip {
  position: absolute;
  display: none;
  background: black;
  color: #FFFFFF;
  padding: 5px;
}
body.dashboard .widget_statistics #chart_container canvas {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.pagination_wrapper {
  margin: 2em auto;
}
.pagination_wrapper .pagination > .active > a,
.pagination_wrapper .pagination > .active > a:focus,
.pagination_wrapper .pagination > .active > a:hover,
.pagination_wrapper .pagination > .active > span,
.pagination_wrapper .pagination > .active > span:focus,
.pagination_wrapper .pagination > .active > span:hover {
  background: var(--main_color);
  border-color: var(--main_color);
  color: white;
}
.pagination_wrapper a {
  color: var(--main_color);
}
.pagination_wrapper a:hover {
  color: var(--main_color);
}
.pagination_wrapper .go_to_page #page_number {
  width: 3.5rem !important;
  text-align: center;
}

#donations_message {
  background: #e7e0ff;
  border-radius: 2px;
  margin: 0 0 3rem;
  padding: 30px;
  font-size: 1.1em;
  border-radius: 10px;
  box-shadow: var(--global-box-shadow);
  color: black;
}
#donations_message h3 {
  margin: 3rem 0 1.5rem 0;
  font-size: 1.75em;
  border: none;
  text-transform: none;
}
#donations_message #db_upgraded {
  color: var(--main_color);
  font-weight: bold;
}

.update_msg .buttons {
  padding: 0 0 0 25px;
  display: inline-block;
  margin-top: 3px;
}
.update_msg ul {
  text-align: right;
}
.update_msg ul li {
  display: inline-block;
  margin: 0;
  font-size: 0;
}
.update_msg ul .update_icon {
  display: inline-block;
  background: black;
  color: white;
  text-align: center;
  padding: 4px;
  font-size: 20px;
  margin: 0 2px;
  border-radius: 50%;
}
.update_msg ul .update_icon_status_0 {
  -moz-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
}

.default-template .update_msg {
  display: none !important;
}

.file_editor_wrapper {
  padding-top: 15px;
  margin-bottom: 40px;
}
.file_editor_wrapper .file_title {
  font-family: var(--font_heading);
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--main_color);
  font-size: 18px;
  display: flex;
  align-items: center;
}
.file_editor_wrapper .file_title p {
  padding: 0 15px;
  margin: 0;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 50%;
  overflow: hidden;
}
.file_editor_wrapper .file_title button {
  transform: rotate(0);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.file_editor_wrapper.collapsed {
  margin-bottom: 20px;
}
.file_editor_wrapper.collapsed .file_title button {
  transform: rotate(90deg);
}
.file_editor_wrapper.collapsed .file_editor {
  display: none;
}
.file_editor_wrapper .file_editor {
  background: white;
  padding: 30px 10px 10px;
  box-shadow: var(--global_box_shadow);
  border-radius: 8px;
}
.file_editor_wrapper .file_editor .file_data h3 {
  padding-top: 0;
  margin-top: 0;
}
@media (max-width: 767px) {
  .file_editor_wrapper .file_editor .file_data {
    background: white;
    margin-bottom: 25px;
  }
}
.file_editor_wrapper .file_editor .textarea_description {
  min-height: 10rem;
}
.file_editor_wrapper .file_editor .divider {
  margin: 40px auto;
}
.file_editor_wrapper .file_editor footer {
  border-top: 1px solid #dedede;
  padding-top: 1rem;
  margin-top: 1rem;
}
.file_editor_wrapper .file_editor footer h3 {
  margin: 0 0 0.5rem;
  padding: 0;
}

.form_results_filter {
  margin: 1.5rem 0 0;
}
.form_results_filter a {
  text-decoration: underline;
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #dedede;
}
.form_results_filter a:last-child {
  border-right: none;
}
.form_results_filter a.filter_option {
  color: #c3c3ca;
}

#folders_nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#folders_nav .folder {
  background-color: var(--main_color);
  border: 3px solid var(--main_color);
  border-radius: 8px;
  color: white;
}
#folders_nav .folder.folder_up, #folders_nav .folder.folder_root {
  font-size: 0.9rem;
  text-transform: uppercase;
}
#folders_nav .folder a {
  display: flex;
  align-items: center;
  color: white;
  padding: 1rem;
}
#folders_nav .folder i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
#folders_nav .folder.new_flash {
  animation: 0.5s newFolder 2;
}
#folders_nav .folder.dragging {
  background-color: #e8ddba;
  border-color: #e8ddba;
}
#folders_nav .folder.drop_target_active {
  background-color: #fff3cd;
  border-color: #dbcb95;
  border-style: dashed;
}
#folders_nav .folder.drop_target_active a {
  color: #222;
}
#folders_nav .folder[data-can-assign-file=false].drop_target_active {
  background-color: red;
  border-color: red;
  border-style: solid;
  opacity: 0.5;
}
#folders_nav .folder[data-can-assign-file=false].drop_target_active a {
  color: #fff;
}
#folders_nav .folder[data-can-assign-file=false].drop_target_active:hover {
  background-color: red !important;
  cursor: not-allowed;
}
#folders_nav .folder.drop_target_is_self {
  background-color: #ccc;
  border-color: #ccc;
}
#folders_nav .folder.drop_target_is_self a {
  color: #666;
}
#folders_nav .folder.drop_forbidden {
  cursor: not-allowed !important;
  background-color: red !important;
  border-color: red;
  opacity: 0.5;
}
#folders_nav .folder.drop_forbidden a {
  color: white !important;
}
#folders_nav .folder.drop_ready {
  background-color: #208537;
  border-color: #0f5720;
  border-style: dashed;
}
#folders_nav .folder.drop_ready a {
  color: white !important;
}

#files_tbl tr.file_draggable {
  cursor: grab;
}
#files_tbl tr.file_draggable.dragging {
  opacity: 0.3;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.5rem;
  margin: 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dedede;
}
.breadcrumbs .breadcrumb_item {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 0.2rem 0 0.2rem 0.7rem;
  position: relative;
}
.breadcrumbs .breadcrumb_item a:before, .breadcrumbs .breadcrumb_item span:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  color: black;
  margin: 0 0.75rem 0 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumbs .breadcrumb_item#breadcrumbs_label {
  padding-left: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
}
.breadcrumbs .breadcrumb_item#breadcrumbs_label span:before {
  display: none;
}

.context-menu-orange-theme {
  background-color: white;
  box-shadow: var(--global_box_shadow);
}
.context-menu-orange-theme hr {
  background-color: #eee;
}
.context-menu-orange-theme > *:not(hr) {
  color: #222;
}
.context-menu-orange-theme > *:not(hr):hover {
  background: #f0f0f0;
  color: var(--main_color);
}

.custom-context-menu-cls {
  width: 150px;
  font-family: "Roboto", sans-serif;
}
/*# sourceMappingURL=main.css.map */
