.modal:before {
  content: "";
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
}
.modal.opened:before {
  display: block;
  z-index: 2000000000;
}
.modal .modal-footer,
.modal .modal-header {
  line-height: 40px;
  z-index: 2;
}
.modal .modal-body {
  flex: 0 1 100%;
  overflow: auto;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.modal .modal-container {
  transform: translateY(-50%);
  top: 45%;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  text-align: center;
  width: calc(100% - 20px);
  padding: 10px;
}
.modal .modal-container h4 {
  padding: 2px;
  margin: 2px;
}
.modal .modal-container ul {
  margin-top: 2px;
}
.modal .modal-header {
  background-color: #f2f2f2;
  color: #969696;
  font-size: 20px;
}
.modal .modal-header .sub-header {
  font-size: 14px;
  line-height: 20px;
  color: #444;
  padding: 5px;
}
.modal .modal-header > div {
  padding-left: 10px !important;
}
.modal .modal-footer {
  text-align: right;
}
.modal .modal-footer .modal-button {
  color: #fff;
  padding: 6px 12px;
  border: 1px solid transparent;
  margin: 5px;
  cursor: pointer;
  font-weight: 700;
}
.modal .modal-footer .modal-button.ok-button {
  background-color: #428bca;
}
.modal .modal-footer .modal-button.cancel-button {
  background-color: #d24836;
}
.opened .modal-dialog {
  z-index: 2000000001;
  transform: translate(0);
  top: 20%;
}
.modal-dialog {
  background: #fefefe;
  border: 0 solid #333;
  position: fixed;
  left: 25%;
  top: -100%;
  z-index: 16;
  width: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-25%);
  transition: transform 0.3s ease-out;
  height: 50%;
  display: flex;
  flex-direction: column;
}
.modal-dialog.mini {
  height: 30%;
}

.switch-container {
  display: inline-block;
  height: 16px;
  line-height: 16px;
  font-size: 14px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  vertical-align: sub;
  margin: 0;
}
.switch.mini {
  width: 30px;
  height: 15px;
  vertical-align: bottom;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-label {
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
}
.slider.mini:before {
  height: 7px;
  width: 7px;
  left: 3px;
  bottom: 4px;
}
input:checked + .slider {
  background-color: #007bff;
}
input:focus + .slider {
  box-shadow: 0 0 1px #007bff;
}
input:checked + .slider:before {
  transform: translateX(17px);
}
.slider.round {
  border-radius: 10px;
}
.slider.round:before {
  border-radius: 50%;
}

.grid-toolbox {
  background-color: #fff;
  position: absolute;
  bottom: 22px;
  right: 25px;
  width: 180px;
  padding: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
.grid-toolbox .switch-container {
  font-size: 11px;
}
.grid-toolbox .gs {
  display: inline-block;
  width: 12%;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: 5px;
}
.grid-toolbox .gs.active {
  cursor: default;
  font-weight: 700;
  text-decoration: none;
}

.layers-container {
  position: absolute;
  top: 50px;
  left: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  background-color: #fff;
  padding: 11px 10px;
  width: 240px;
  z-index: 1;
}
.layers-container .layers-header {
  font-weight: 700;
  cursor: pointer;
}
.layers-container .layers {
  margin-top: 3px;
  padding-top: 5px;
  border-top: 1px solid #dfdddd;
}
.layers-container .layers .layer .layer-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  padding: 3px 3px 3px 5px;
  cursor: pointer;
  opacity: 0.2;
  fill: grey;
}
.layers-container .layers .layer .layer-icon.active {
  opacity: 1;
}
.layers-container .layers .layer .layer-name {
  vertical-align: super;
  padding-left: 10px;
}

.picker-container {
  position: relative;
  outline: none;
  cursor: pointer;
  width: 57%;
  height: 30px;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 0 1px #fff;
  display: inline-block;
  vertical-align: middle;
}
.picker-container .swatch {
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-block;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.picker-container .swatch.unknown:before {
  content: "?";
  position: absolute;
  color: #8b0000;
  font-weight: 700;
  font-size: 25px;
  margin-left: 15px;
}
.picker-container .default {
  opacity: 0.4;
}
.picker-container .picker-dropdown {
  display: none;
  border-radius: 3px;
  position: absolute;
  background-color: #fff;
  z-index: 2;
  padding: 5px;
  margin-top: 4px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
  right: -10%;
  width: 87px;
}
.picker-container .picker-dropdown.visible {
  display: block;
}
.picker-container .picker-dropdown .colors-container {
  padding: 2px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.picker-container .picker-dropdown .colors-container .color-input {
  width: 70px;
  margin: 1px;
  vertical-align: top;
  padding: 4px;
  font-size: 11px;
}
.picker-container .picker-dropdown .colors-container > div {
  border: 1px solid transparent;
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-left: 2px;
  margin-right: 2px;
  text-align: center;
}
.picker-container .picker-dropdown .colors-container > div.empty {
  border: 1px solid red;
}
.picker-container .picker-dropdown .colors-container > div.current {
  box-shadow: 0 0 0 2px #000;
  opacity: 0.9;
}

.style-editor.container {
  position: absolute;
  top: 50px;
  right: 25px;
  padding: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  width: 220px;
  background-color: #fff;
}
.style-editor.body {
  text-align: left;
  margin-top: 5px;
  vertical-align: super;
}
.style-editor table {
  width: 100%;
}
.style-editor table tr > :first-child {
  width: 60%;
}
.style-editor table tr > :last-child {
  position: relative;
}
.style-editor table img {
  position: absolute;
  right: 2px;
  width: 20px;
  top: 6px;
  cursor: pointer;
}
.style-editor input {
  width: 42%;
  padding: 5px;
  font-size: inherit;
}
.style-editor select {
  width: 100%;
  padding: 5px;
}

.groupbutton-header {
  padding-right: 2px;
}
.groupbutton-header:hover {
  background-color: #ebebeb;
}
.groupbutton-container,
.groupbutton-header {
  display: inline-block;
}
.groupbutton-container .badge,
.groupbutton-header .badge {
  display: inline-block;
  margin-left: -4px;
  vertical-align: super;
}
.groupbutton-container.disabled .badge,
.groupbutton-header.disabled .badge {
  opacity: 0.2;
}
.groupbutton-container {
  border-right: 1px solid #000;
}
.groupbutton-container:not(.disabled):hover .groupbutton-list {
  display: block;
}
.groupbutton-item {
  padding: 3px;
}
.groupbutton-list {
  position: absolute;
  z-index: 100;
  display: none;
  background-color: #f5f5f5;
}
.groupbutton-list.visible {
  display: initial;
}

.top-buttons {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 30px;
  background-color: #fff;
  padding: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
.top-buttons.right {
  right: 20px;
  left: auto;
  padding: 0;
}
.top-buttons.right button {
  padding: 2px 2px 0;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
.top-buttons.right button img {
  filter: invert(100%);
  height: 35px;
}
.top-buttons .flip-hor {
  transform: scaleX(-1);
}
.top-buttons .flip-ver {
  transform: scaleY(-1);
}
.top-buttons .rotate90 {
  transform: rotate(90deg);
}
.top-buttons .rotate-90 {
  transform: rotate(-90deg);
}
.top-buttons .toolbox-button {
  border: none;
  width: 30px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
}
.top-buttons .toolbox-button:disabled {
  opacity: 0.2;
}
.top-buttons .toolbox-button:hover {
  background: #e9e8e8;
}
.top-buttons .toolbox-button.active {
  background-color: #d7d7d7;
  cursor: default;
}
.top-buttons .toolbox-button.hidden {
  display: none;
}
.top-buttons .toolbox-button:focus {
  padding: 5px;
}
.top-buttons .toolbox-button img {
  height: 20px;
  width: 20px;
  filter: invert(100%);
}
.top-buttons .toolbox-button.right {
  position: absolute;
  right: 8px;
  top: 3px;
}
.top-buttons .toolbox-button.separated {
  border-right: 1px solid #000;
}

#toast-container {
  position: absolute;
  z-index: 1;
  left: 120px;
  bottom: 15px;
}
#toast-container .toast-item {
  opacity: 0;
  background-color: #2dc268;
  color: #fff;
  padding: 10px;
  box-shadow: 0 5px 6px 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  margin: 5px;
}
#toast-container .toast-item.show {
  opacity: 1;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
#toast-container .toast-item.show.error {
  background-color: #e5175c;
}

.drawing-toolbox {
  position: absolute;
  top: 95px;
  left: 5px;
  width: 60px;
  padding: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  background-color: #fff;
  bottom: 20px;
  overflow-y: scroll;
}
.drawing-toolbox .upload {
  cursor: pointer;
}
.drawing-toolbox .separator {
  height: 1px;
  background-color: #000;
  margin-bottom: 2px;
  margin-top: 2px;
}
.drawing-toolbox .item {
  cursor: pointer;
  height: 40px;
  padding: 3px;
  position: relative;
}
.drawing-toolbox .item .draggable {
  cursor: move;
  width: 50px;
  height: 48px;
}
.drawing-toolbox .item .svg-button {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.drawing-toolbox .item.current {
  background-color: #ccc;
}

.edit-text-component.container {
  position: absolute;
  top: 50px;
  right: 260px;
  width: 220px;
  background-color: #fff;
  padding: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
.edit-text-component .fonts-row {
  margin-bottom: 3px;
}
.edit-text-component .fonts-row select {
  padding: 5px;
  width: 83%;
}
.edit-text-component .fonts-row .toolbox-button {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
  vertical-align: middle;
}
.edit-text-component .fonts-row .toolbox-button img {
  height: 20px;
  width: 20px;
  filter: invert(100%);
}
.edit-text-component .setting-row {
  margin-bottom: 3px;
}
.edit-text-component .setting-row .booth-text {
  width: 64%;
}
.edit-text-component .setting-row .booth-font-size {
  width: 46px;
}

.scroll-container {
  position: absolute;
  overflow-y: visible;
  background-color: transparent;
  overflow-x: auto;
  z-index: 1999999999!important;
}
.scroll-container.right {
  width: 19px;
  right: 0;
  top: 0;
  bottom: 20px;
}
.scroll-container.bottom {
  height: 19px;
  left: 0;
  right: 20px;
  bottom: 0;
}
.scroll-container .scroller.right {
  width: 100%;
  height: 5000%;
}
.scroll-container .scroller.bottom {
  width: 5000%;
  height: 100%;
}

.zoom {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  left: 80px;
  text-align: center;
  color: #777;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  font-size: 30px;
}
.zoom:hover {
  color: #000;
}
.zoom.zoom-in {
  bottom: 64px;
}
.zoom.zoom-in:before {
  content: "\002B";
}
.zoom.zoom-out {
  bottom: 20px;
}
.zoom.zoom-out:before {
  content: "\002D";
}

.setting-header {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #f4eded;
  margin: 0 0 3px;
}
.setting-header .toolbox-button .right {
  position: absolute;
  right: 0;
  top: -2px;
}
.svg-editor-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.svg-editor-container .svg-element {
  outline: none;
  width: 100%;
  height: 100%;
}
.svg-editor-container .svg-element .highlight,
.svg-editor-container .svg-element .selection {
  fill: #000;
  fill-opacity: 0.1;
  stroke-width: 0;
}
.svg-editor-container .svg-element .highlight {
  fill-opacity: 0.7;
}
.svg-editor-container .svg-element .size-tooltip {
  stroke-width: 0;
  fill: #000;
  fill-opacity: 1;
}
.svg-editor-container .svg-element .select-box-rectangle {
  fill-opacity: 0;
  fill: none;
  stroke: #000;
}
.svg-editor-container .svg-element .select-box-rotate-cap {
  fill-opacity: 1;
  fill: #fb254e;
  stroke-width: 0px;
  cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFAAAA////pdmf3QAAAAJ0Uk5T/wDltzBKAAAAUElEQVR42uSTQQoAIAgEp/9/OoKgCFcTb7WnpAF1t2iBeA9gSAPz7kBwT3uB6Is5LHkAyeeA5QO1FrBZSmS5WBNcJy8S8NIsvIdv/oWlLsAAwjEDwzEB/csAAAAASUVORK5CYII=") 15 15, auto;
}
.svg-editor-container .svg-element .select-box-scale-cap {
  fill-opacity: 1;
  fill: #000;
  stroke-width: 0px;
}
.svg-editor-container .svg-element .select-box-scale-cap.nwse {
  cursor: nwse-resize;
}
.svg-editor-container .svg-element .select-box-scale-cap.nesw {
  cursor: nesw-resize;
}
.svg-editor-container .svg-element .select-box-scale-cap.ns {
  cursor: ns-resize;
}
.svg-editor-container .svg-element .select-box-scale-cap.w {
  cursor: w-resize;
}
.svg-editor-container .svg-element .clone-booth-add-new {
  fill-opacity: 1;
  fill: #fff;
  cursor: pointer;
  opacity: 0.1;
}
.svg-editor-container .svg-element .clone-booth-add-new:hover {
  opacity: 0.8;
}
.svg-editor-container .svg-element .select-control-point {
  cursor: move;
  fill: #f08409;
  stroke-width: 0px;
}
.svg-editor-container .svg-element .select-control-point.start {
  fill: #ff4500;
}
.svg-editor-container .svg-element .select-control-point.bezier {
  fill: #00f;
}
.svg-editor-container .svg-element.transformation .booths-data-group,
.svg-editor-container .svg-element.transformation .select-box-rectangle,
.svg-editor-container .svg-element.transformation .select-box-rotate-cap,
.svg-editor-container .svg-element.transformation .select-box-scale-cap,
.svg-editor-container .svg-element.transformation .select-control-point {
  opacity: 0;
}
.svg-editor-container .svg-element [data-tagname=line] {
  stroke-linecap: round !important;
}
.svg-editor-container .svg-element [data-temp="1"] {
  opacity: 0.1 !important;
}
.svg-editor-container .svg-element [data-type=selection-wrapper] {
  opacity: 0.8;
}
.svg-editor-container .svg-element [data-type=selection-wrapper]:not([stroke-width]) {
  stroke-width: 0.2px !important;
  stroke: #29b6f2 !important;
}
.svg-editor-container .svg-element [data-type=selection-wrapper][data-tagname=ptext] {
  stroke-width: 0.2 !important;
}
.toolbox-label {
  text-align: left;
  margin-bottom: 2px;
  display: block;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}

.error-container {
  text-align: center;
  width: calc(100% - 20px);
  padding: 10px;
}
.error-container svg {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9%;
}
.error-container label,
.error-container svg {
  display: block;
}
.error-container label {
  margin-top: 20px;
}

.limit-error-container {
  transform: translateY(-50%);
  top: 45%;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
}

.convert-booth-button {
  position: absolute;
  padding: 5px;
  font-size: 16px;
  font-weight: 100;
  color: #514e4e;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  width: 230px;
  cursor: pointer;
}

.top-buttons.custom {
  top: 50px;
  left: 270px;
}
.top-buttons .button-viewbox {
  vertical-align: bottom;
  padding: 4px;
  cursor: pointer;
}

.drawing-toolbox.custom {
  top: 95px;
  left: 85px;
  overflow-y: auto;
  bottom: auto;
}

.add-new-container {
  display: inline-block;
  position: relative;
}
.add-new-label {
  padding: 0;
  border: 2px solid #786de4;
  display: inline-block;
  width: 13px;
  height: 13px;
  text-align: center;
  border-radius: 50%;
  color: #786de4;
  font-size: 11px;
  margin-left: 5px;
  cursor: pointer;
}
.add-new-form {
  position: absolute;
  display: none;
  width: 209px;
  padding: 10px;
  background-color: #eee;
  top: 24px;
  z-index: 2000000000;
  right: -11px;
  border: 1px solid grey;
  border-radius: 5px;
  box-shadow: 1px 2px 10px grey;
  transition: opacity 2s;
  opacity: 0;
}
.add-new-form.visible {
  -webkit-animation: fadein 0.5s forwards;
  animation: fadein 0.5s forwards;
  display: unset;
}
.add-new-form:before {
  content: "";
  position: absolute;
  background: #eee;
  right: 14px;
  top: -6px;
  width: 8px;
  height: 8px;
  z-index: -1;
  transform: rotate(45deg);
  border-top: 1px solid grey;
  border-left: 1px solid grey;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    margin-top: 20px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    margin-top: 20px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
.add-new-form-input {
  padding: 5px;
  width: 73%;
  border: 1px solid #d3d3d3;
}
.add-new-form-input.withError {
  background-color: pink;
}
.add-new-form-button {
  padding: 4px;
  margin-left: 8px;
  color: #fff;
  background-color: #d6176b;
  border: 0;
  cursor: pointer;
}
.add-new-form-button:disabled {
  opacity: 0.5;
}

.expo-fp-properties-panel.container {
  position: absolute;
  top: 50px;
  right: 25px;
  padding: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  width: 220px;
  background-color: #fff;
}
@media (max-height: 700px) {
  .expo-fp-properties-panel.container {
    overflow-y: auto;
    bottom: 100px;
  }
}
.expo-fp-properties-panel .button-right {
  width: 30px;
  height: 30px;
  float: right;
  cursor: pointer;
}
.expo-fp-properties-panel input,
.expo-fp-properties-panel select {
  font-size: inherit;
  font-family: inherit;
}
.expo-fp-properties-panel .custom {
  background-color: #ff0;
}
.expo-fp-properties-panel table {
  border-collapse: collapse;
}
.expo-fp-properties-panel .table {
  width: 100%;
}
.expo-fp-properties-panel .table tr > :first-child {
  width: 60%;
}
.expo-fp-properties-panel .table tr > :last-child {
  position: relative;
}
.expo-fp-properties-panel .table img {
  position: absolute;
  right: 2px;
  width: 20px;
  top: 6px;
  cursor: pointer;
}
.expo-fp-properties-panel select {
  width: 100%;
  padding: 5px;
}

.editor-container {
  min-height: 100%;
  height: 100%;
}
.editor-container .quill {
  height: 100%;
  position: relative;
}
.editor-container .quill .ql-toolbar {
  position: absolute;
  width: 100%;
  z-index: 100;
}
.editor-container .quill .ql-container {
  min-height: 100%;
  padding-top: 40px;
}
.editor-container .quill .ql-flip {
  left: 5px!important;
  z-index: 101;
}

.history-list {
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
.history-list .icon {
  vertical-align: bottom;
  width: 15px;
  top: -2px;
  position: relative;
  cursor: pointer;
}
.history-list-body {
  position: absolute;
  background: #dedede;
  right: 0;
  top: 25px;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.5);
  width: 190px;
  text-align: center;
  max-height: 800px;
  overflow-y: auto;
  z-index: 2000000001;
}
.history-list-body-item {
  color: #000;
  padding: 10px;
  margin: 0;
}
.history-list-body-item:hover {
  background-color: #c0ceda;
  cursor: pointer;
}
.history-list-body-item.current {
  background-color: #786de4;
}

.toolbox-button {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
}
.toolbox-button:disabled {
  opacity: 0.2;
}
.toolbox-button:hover {
  background: #e9e8e8;
}
.toolbox-button.active {
  background-color: #d7d7d7;
  cursor: default;
}
.toolbox-button.hidden {
  display: none;
}
.toolbox-button:focus {
  padding: 5px;
}
.toolbox-button img {
  height: 20px;
  width: 20px;
  filter: invert(100%);
}
.toolbox-button.right img {
  height: 18px;
  width: 18px;
  filter: invert(100%);
}
.toolbox-button.right:hover {
  background: none;
}
.toolbox-button.right {
  position: absolute;
  right: 0;
  top: -3px;
}
.toolbox-button.separated {
  border-right: 1px solid #000;
}
.toolbox .header {
  text-align: center;
  display: inline-block;
  padding: 2px 5px 5px;
  font-weight: 300;
  font-size: 16px;
  color: #230762;
  margin: 0 0 10px;
}
.toolbox .header.w-100 {
  width: 100%;
  padding: 3px;
}
.toolbox .header.underline {
  border-bottom: 2px solid #786de4;
  display: block;
}
.toolbox .header.header-logo {
  width: 135px;
  vertical-align: middle;
  position: relative;
  top: 4px;
}
.toolbox .toolbox-input {
  margin: 7px;
  padding: 5px;
  top: -4px;
  position: relative;
  width: 100px;
}
.toolbox .figures {
  max-height: 90%;
}
.toolbox .upload-custom-icon {
  padding: 6px;
  margin: 2px;
  border: 1px solid #bfbdbd;
  width: 70px;
}
.mouse-position {
  display: none;
  position: absolute;
  bottom: 18px;
  left: 102px;
  padding: 5px;
  font-size: 12px;
  background-color: #fff;
  width: 100px;
  opacity: 1;
  z-index: 3;
}
.toolbox-buttons {
  display: inline-block;
}
.current-button {
  opacity: 1 !important;
}
.svg-button {
  width: 40px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.svg-button.mini {
  width: 20px;
  height: 20px;
}
.svg-button.midi {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.button {
  border: none;
  border-radius: 2px;
  text-transform: uppercase;
  padding: 5px;
  cursor: pointer;
}
.switcher {
  display: inline-block;
  margin-right: 5px;
}
.switcher .item {
  padding: 3px 8px;
  cursor: pointer;
  background-color: #e4e4e4;
}
.switcher .item.active {
  cursor: default;
  color: #fff;
  background-color: #007bff;
}
.switcher .item.active.middle {
  background-color: #d5176c;
}
.switcher .first {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.switcher .last {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.gray {
  background-color: #9e9e9e;
}
.pink {
  background: linear-gradient(90deg, #e5175c, #5c17e5);
  color: #fff !important;
  border-radius: 20px;
  width: 100px;
  margin-right: 11px;
}
.color {
  background-color: #786de4;
}
.right-button {
  float: right;
}
.right-panel {
  vertical-align: super;
  position: absolute;
  right: 62px;
  top: 5px;
  padding: 7px;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
.aligned-right {
  margin-bottom: 11px;
  text-align: right;
}
.aligned-top {
  margin-top: 5px;
}
.link {
  cursor: pointer;
  margin-right: 10px;
}
.link:hover {
  text-decoration: underline;
}
hr {
  margin: 1px;
  color: #fff;
}
.selection {
  display: block;
  text-align: left;
  margin: 10px;
  line-height: 25px;
}
.bg,
.booth {
  display: block;
  margin: auto;
  max-width: 100px;
  cursor: pointer;
  background-color: #aaa;
  border: 1px solid #fff;
  width: 100px;
  height: 30px;
  color: #000;
  font-size: 10px;
  text-transform: uppercase;
}
.bg {
  background-color: #bfbfc0;
  border: none;
}
.toolbox-link {
  font-size: 12px;
  color: #4c4c4c;
  font-weight: 400;
  margin-left: 5px;
}
.toolbox-link:visited {
  color: #4c4c4c;
}
.top-10 {
  margin-top: 10px;
}
.viewbox-button {
  padding: 5px;
  text-align: center;
  display: block;
  margin: 5px auto;
  width: 100%;
}
.viewbox-message {
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}
.add-new-wrapp {
  display: inline-block;
}
.toolbox-editor a {
  display: inline-block;
}
.booth-name {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 2px;
  display: block;
  width: 97%;
}
.booth-name.select {
  width: 160px;
  display: inline-block;
}
.booth-text {
  padding: 5px 0 5px 5px;
  width: 118px;
}
.booth-font-size {
  padding: 5px;
  width: 50px;
  margin-left: 3px;
}
.size {
  padding: 6px;
  width: 80%;
  border: 0.2px solid #000;
}
.size.right {
  float: right;
}
.size:disabled {
  opacity: 0.8;
}
.search {
  width: 120px;
  padding: 3px;
  margin-right: -8px;
  border: 1px solid #c1c1c1;
}
.search-icon {
  position: relative;
  right: 13px;
  top: 5px;
  background-color: #fff;
}
.scale-container {
  display: inline-block;
  width: 160px;
  border-bottom: 1px solid #000;
  text-align: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  position: relative;
  height: 5px;
  top: 4px;
  margin-left: 2px;
}
.scale-container.one {
  width: 30px;
}
.scale-container .scale-label {
  top: -9px;
  position: absolute;
  font-size: 12px;
  transform: translate(-50%);
  left: 50%;
}
.flip-hor {
  transform: scaleX(-1);
}
.flip-ver {
  transform: scaleY(-1);
}
.rotate90 {
  transform: rotate(90deg);
}
.rotate-90 {
  transform: rotate(-90deg);
}
.question-body {
  display: none;
  line-height: 160%;
}
.question {
  display: inline-block;
  background-color: #000;
  color: #fff;
  width: 10px;
  height: 10px;
  text-align: center;
  padding: 2px 3px 2px 2px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 8px;
  cursor: help;
  vertical-align: bottom;
}
.question:hover + .question-body {
  display: block;
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #fff;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.5);
  padding: 5px;
}
.backlight {
  background-color: #5e5e5e;
  border-radius: 3px;
  color: #fff;
  padding: 3px 5px;
  font-size: 12px;
}
.draggable {
  cursor: move;
  width: 50px;
  height: 48px;
}
.draggable-1 {
  background-color: #7bd341;
}
.draggable-2 {
  background-color: #ffcd38;
}
.special-section.hidden {
  display: none;
}
.regular-section.hidden {
  display: none;
}
.users-container {
  display: inline-block;
}
.users-container .user-icon {
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 5px;
  border-radius: 50%;
  width: 17px;
  text-align: center;
  height: 16px;
  margin-left: 2px;
  font-size: 13px;
}
.users-container :last-child {
  margin-right: 7px;
}

