.em-fm {
  /* ==== ITEM ==== */
}
.em-fm__controller {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}
.em-fm__control {
  font-size: 20px;
  cursor: pointer;
  padding: 3px;
  margin-right: 10px;
}
.em-fm__control--home {
  margin-left: 0;
}
.em-fm__control.disabled {
  background-color: rgba(0, 0, 0, 0.07);
}
.em-fm__controls {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.em-fm__path {
  display: flex;
  align-items: center;
  position: relative;
}
.em-fm__path__folder:hover {
  text-decoration: underline;
  cursor: pointer;
}
.em-fm__path p, .em-fm__path h5 {
  margin: 0;
}
.em-fm__path h5 {
  margin-right: 5px;
}
.em-fm__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .em-fm__actions--settings {
    padding: 10px;
  }
}
.em-fm__folder-content {
  display: grid;
  align-items: start;
  align-content: start;
  min-height: 300px;
  max-height: 80vh;
  overflow: auto;
}
.em-fm__folder-content--thumb {
  grid-template-columns: repeat(auto-fit, 124px);
}
.em-fm__folder-content--empty {
  background-color: rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
}
.em-fm__settings__body > *:not(:last-child) {
  margin-bottom: 20px;
}
.em-fm__settings--view label {
  margin-bottom: 5px;
}
.em-fm__item {
  display: flex;
  position: relative;
  /* ==== ITEM - details ==== */
  /* ==== ITEM - thumnb ==== */
}
.em-fm__item.cut {
  opacity: 0.4;
}
.em-fm__item.selected {
  background-color: rgba(0, 184, 255, 0.3);
}
.em-fm__folder-content--details .em-fm__item {
  flex-direction: row;
  align-items: center;
  padding: 4px 10px;
  border-radius: 5px;
}
.em-fm__folder-content--details .em-fm__item__image {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  object-fit: contain;
}
.em-fm__folder-content--details .em-fm__item__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}
.em-fm__folder-content--details .em-fm__item__name {
  word-break: break-all;
  height: 1.6em;
  overflow: hidden;
}
.em-fm__folder-content--details .em-fm__item__actions {
  margin-left: auto;
  margin-right: 10px;
}
.em-fm__folder-content--details .em-fm__item:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.03);
}
.em-fm__folder-content--details .em-fm__item.selected {
  background-color: rgba(0, 184, 255, 0.3);
}
.em-fm__folder-content--details .em-fm__item__info {
  font-weight: 200;
  font-size: 12px;
  margin-top: -2px;
  font-style: italic;
}
.em-fm__folder-content--details .em-fm__item__info > *:not(:last-child) {
  margin-right: 5px;
}
.em-fm__folder-content--details .em-fm__item__info > i {
  font-size: 16px;
}
.em-fm__folder-content--thumb .em-fm__item {
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 10px;
  border-radius: 5px;
  height: fit-content;
}
.em-fm__folder-content--thumb .em-fm__item__image {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.em-fm__folder-content--thumb .em-fm__item__info {
  display: none;
}
.em-fm__folder-content--thumb .em-fm__item__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}
.em-fm__folder-content--thumb .em-fm__item__name {
  text-align: center;
  word-break: break-all;
}
.em-fm__folder-content--thumb .em-fm__item__actions {
  display: none;
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border-radius: 5px;
  padding: 5px;
}
.em-fm__folder-content--thumb .em-fm__item.selected .em-fm__item__actions {
  display: block;
}
.em-fm__rename {
  border-radius: 20px 20px 0 0;
}
.em-fm__rename__input-action {
  position: relative;
}
.em-fm__rename__input-action__clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 0;
  line-height: 0;
}
.em-fm__mb-hidden {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .em-fm__small-btn {
    padding: 2px 7px;
  }
  .btn .em-fm__mb-hidden {
    display: none;
  }
}

.menus__menu {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 10px;
}
.menus__menu__submenus > .menus__menu::after {
  content: "";
  position: absolute;
  left: -25px;
  top: -5px;
  height: calc(100% + 20px);
  width: 1px;
  background-color: var(--bs-primary);
}
.menus__menu__submenus > .menus__menu:last-child::after {
  height: 33px;
}
.menus__menu__submenus > .menus__menu::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -25px;
  height: 1px;
  width: 25px;
  background-color: var(--bs-primary);
}
.menus__menu__info {
  background-color: var(--bs-secondary);
  padding: 16px;
  display: inline-block;
  width: 500px;
  height: 60px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.menus__menu__info:hover, .menus__menu__info--selected {
  background-color: var(--bs-primary);
}
.menus__menu__info:hover .menus__menu__info__actions {
  display: block;
}
.menus__menu__info__actions {
  display: none;
}
.menus__menu__submenus {
  display: none;
  padding-left: 50px;
  margin-top: 15px;
}
.menus__menu--active > .menus__menu__submenus {
  display: block;
}
.menus__menu__dropper {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
  height: 30px;
  width: 500px;
}
.menus__menu__dropper--top {
  top: -5px;
  bottom: unset;
}
.menus__menu__drop-area {
  height: 60px;
  width: 500px;
  border: 1px dotted var(--bs-primary);
  margin-top: 10px;
}
.menus__menu__drop-area--top {
  margin-bottom: 10px;
  margin-top: 0;
}
.menus__menu__drop-area--child {
  margin-left: 50px;
}

.pb__fm {
  height: 100vh;
}
.pb__editor {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  width: 430px;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
}
.pb__editor .note-editable {
  background-color: white;
}
.pb__editor.hidden {
  display: none;
}
.pb__editor__header {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  color: #222;
  background-color: var(--bs-primary);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  cursor: grab;
}
.pb__editor__header__title {
  font-size: 18px;
  margin: 0;
}
.pb__editor__header__close {
  border: 0;
  background-color: transparent;
}
.pb__editor__body {
  position: relative;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
  overflow: auto;
  padding: 15px;
  border-left: 4px solid var(--bs-primary);
  border-right: 4px solid var(--bs-primary);
  background-color: var(--bs-body);
}
.pb__editor__actions {
  display: flex;
}
.pb__editor__actions__btn {
  width: 100%;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: white;
}
.pb__editor__actions__btn--save {
  border-bottom-left-radius: 7px;
}
.pb__editor__actions__btn--delete {
  border-bottom-right-radius: 7px;
}
.pb__placeholder {
  position: relative;
  margin: 0;
}
.pb__placeholder__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #87a2fd;
  z-index: 1;
}
.pb__placeholder__actions {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  z-index: 200;
}
.pb__placeholder__actions__item {
  position: relative;
}
.pb__placeholder__actions__item:not(:first-child) {
  margin-left: 5px;
}
.pb__placeholder__actions__item:hover .pb__placeholder__actions__item__popover {
  transform: translateX(-50%) scale(1);
  transition-delay: 0s;
}
.pb__placeholder__actions__item__popover {
  display: flex;
  position: absolute;
  bottom: 118%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background-color: #87a2fd;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 0.1s;
  transition-delay: 0.3s;
}
.pb__placeholder__actions__item__popover::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #87a2fd;
  clear: both;
}
.pb__placeholder__actions__item__popover--overflow-right {
  left: -10px;
}
.pb__placeholder__actions__item__popover--overflow-right::after {
  left: unset;
  right: 3px;
}
.pb__placeholder__actions__item__popover--overflow-left {
  left: 39px;
}
.pb__placeholder__actions__item__popover--overflow-left::after {
  left: 15px;
}
.pb__placeholder__actions__item__popover--bottom {
  bottom: auto;
  top: 118%;
}
.pb__placeholder__actions__item__popover--bottom::after {
  bottom: auto;
  top: -10px;
  border-top: none;
  border-bottom: 6px solid #87a2fd;
}
.pb__placeholder__actions__item__btn {
  padding: 4px 7px;
  border-radius: 5px;
  background-color: #87a2fd;
  color: #fff;
  cursor: pointer;
}
.pb__placeholder__actions__item__btn--move {
  cursor: grab;
}
.pb__placeholder__actions__item__btn:not(:last-child):not(.pb__widget__actions__item__btn--move):not(.pb__placeholder__actions__item__btn--move) {
  margin-right: 5px;
}
.pb__placeholder__actions__item__btn:hover {
  background-color: #567cfa;
}
.pb__widget {
  position: relative;
  margin: 0;
}
.pb__widget__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #b779ff;
  z-index: 1;
}
.pb__widget__actions {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  z-index: 200;
}
.pb__widget__actions__item {
  position: relative;
}
.pb__widget__actions__item:not(:first-child) {
  margin-left: 5px;
}
.pb__widget__actions__item:hover .pb__widget__actions__item__popover {
  transform: translateX(-50%) scale(1);
  transition-delay: 0s;
}
.pb__widget__actions__item__popover {
  display: flex;
  position: absolute;
  bottom: 118%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background-color: #b779ff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 0.1s;
  transition-delay: 0.3s;
}
.pb__widget__actions__item__popover::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #b779ff;
  clear: both;
}
.pb__widget__actions__item__popover--overflow-right {
  left: -10px;
}
.pb__widget__actions__item__popover--overflow-right::after {
  left: unset;
  right: 3px;
}
.pb__widget__actions__item__popover--overflow-left {
  left: 39px;
}
.pb__widget__actions__item__popover--overflow-left::after {
  left: 15px;
}
.pb__widget__actions__item__popover--bottom {
  bottom: auto;
  top: 118%;
}
.pb__widget__actions__item__popover--bottom::after {
  bottom: auto;
  top: -10px;
  border-top: none;
  border-bottom: 6px solid #b779ff;
}
.pb__widget__actions__item__btn {
  padding: 4px 7px;
  border-radius: 5px;
  background-color: #b779ff;
  color: #fff;
  cursor: pointer;
}
.pb__widget__actions__item__btn--move {
  cursor: grab;
}
.pb__widget__actions__item__btn:not(:last-child):not(.pb__widget__actions__item__btn--move):not(.pb__placeholder__actions__item__btn--move) {
  margin-right: 5px;
}
.pb__widget__actions__item__btn:hover {
  background-color: #9639ff;
}
.pb__sibling {
  position: relative;
  width: 100%;
  height: 0;
  transition: height linear 0.3s;
  background-color: #b879ff89;
}
.pb__sibling--placeholder {
  background-color: #87dffdb8;
}
.pb__sibling.dragover {
  height: 20px;
}
.pb__sibling.dragover ~ .pb__sibling__dropper {
  height: 80px;
}
.pb__sibling__dropper {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: transparent;
  z-index: 100;
}
.pb__sibling__dropper--placeholder {
  bottom: -30px;
}
.pb__sibling__dropper--placeholder--upper {
  bottom: unset;
  top: -30px;
}
.pb__sibling__dropper--upper {
  bottom: unset;
  top: 0;
}
.dragging .pb__sibling__dropper {
  height: 60px;
}
.dragging .pb__sibling__dropper--placeholder {
  height: 50px;
}
.pb__fragments {
  list-style: none;
  padding: 0;
  margin: 0 -16px;
}
.pb__fragments__item {
  padding: 10px 20px;
  position: relative;
  cursor: move;
}
.pb__fragments__item:hover {
  color: white;
}
.pb__fragments__item:hover::before {
  transform: scaleX(1);
}
.pb__fragments__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bs-primary);
  color: white;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.pb__fragments__item__toggler {
  position: relative;
}
.pb__fragments__item__toggler a {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
}
.pb__fragments__item__toggler a:hover {
  color: white !important;
}
.pb__fragments__item__toggler a:hover::before {
  transform: scaleX(1);
}
.pb__fragments__item__toggler a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bs-primary);
  color: white;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.pb__fragments__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}
.pb__structure {
  position: relative;
  /* margin: 10px 0; */
}
.pb__structure__item {
  height: 20px;
  background-color: #87a2fd;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.pb__structure__item__action {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5px;
}
.pb__structure__item__action:hover {
  background-color: #567cfa;
}
.pb__element {
  min-height: 40px;
}
.pb__inactive {
  opacity: 0.6;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pb__inactive span {
  background-color: black;
  color: white;
  padding: 10px;
}

/*# sourceMappingURL=cms.css.map */
