* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
}

#jsmind_container {
	width: 100vw;
	height: 100vh;
}

#tool-bar-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 3px #8d8d8d;
  padding: 0 10px;
  height: 50px;
  /* width: 90px; */
  border-radius: 5px;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}

.hide-module-toolbar {
	display: none;
}

.tool-bar-images-container img {
  width: 24px;
}

#tool-bar-container button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

#btn-back-form {
	display: flex;	
}


.pointer-active {
  pointer-events: none;
}

@keyframes loading-spin {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 25px;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 3;
}

.loader::after {
  content: '';
  width: 70px;
  height: 70px;
  border: 11px solid #ececec;
  border-top: 11px solid #ee3c3c;
  border-radius: 50%;
  animation: loading-spin 900ms ease infinite;
}

.loader span {
  color: #ffffff;
  order: 1;
  font-family: Arial, Helvetica, sans-serif;
}

