.writeboard_layer_onscreen_canvas_kWJIP {
  position: absolute;
  touch-action: none;
  user-select: none;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  transition: opacity 200ms;
  outline: none;
}

.writeboard_text_editor_nWT80 {
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  box-sizing: border-box;
  outline: none;
  border: none;
  resize: none;
  padding: 0px;
  margin: 0px;
  transition: none;
  opacity: 0%;
}
.g_cp_edit_panel {
  position: absolute;
  align-self: stretch;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 0px;
  background: white;
  opacity: 0px;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.0666666667);
  z-index: 1;
  transition: width 300ms, opacity 255ms;
  overflow: hidden;
}

.g_cp_edit_panel .section_title {
  padding: 5px;
  font-size: 16px;
}
.g_cp_main_view {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  background-image: url(../../assets/img/bg.jpg);
  background-size: 100% 100%;
}

.g_cp_main_view .g_cp_blackboard {
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.0666666667);
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 40%;
  background: white;
  touch-action: none;
  outline: none;
}

.g_cp_main_view .g_cp_content_zone {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.g_cp_main_view .g_cp_content_bottom_row {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
  bottom: 32px;
  display: grid;
  grid-template-columns: 48px 48px 48px 48px 48px 48px;
  grid-template-rows: 48px 48px;
  gap: 10px;
}

.g_cp_main_view .g_cp_content_bottom_row button {
  padding: 5px;
}

.g_cp_main_view .g_cp_content_bottom_row button:first-child {
  margin-left: 0px;
}
.g_button {
  user-select: none;
  cursor: pointer;
  text-align: center;
  transition: all 200ms;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.g_button:hover {
  background: rgba(0, 0, 0, 0.2666666667);
}

.g_button_small {
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 5px;
  font-size: 14px;
}

.g_button_middle {
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 5px;
  font-size: 14px;
}

.g_button_large {
  min-width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 5px;
  font-size: 24px;
}

.g_button_checked {
  background: rgba(0, 0, 0, 0.1333333333);
}
.g_menu {
  border-radius: 5px;
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: stretch;
  background: white;
  border-radius: 5px;
  user-select: none;
  transition: opacity 200ms;
  overflow: hidden;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1333333333);
}

.g_menu_item_divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.0666666667);
}

.g_menu_item_normal {
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  transition: background-color 200ms, color 200ms;
}

.g_menu_item_danger {
  background-color: red;
  color: white;
}

.g_menu_item_normal:hover {
  background-color: rgba(0, 0, 0, 0.0666666667);
}

.g_menu_item_danger:hover {
  background-color: #ff5555;
}
html,
body {
  margin: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}

*::-webkit-scrollbar-track {
  border-radius: 4px;
}

*::-webkit-scrollbar-track:hover {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
}

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

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

button {
  background-color: transparent;
  border: none;
}

.tool_bar {
  display: flex;
  flex-direction: column;
  background-color: #333333;
}

.tool_button {
  position: relative;
  color: #999999;
  background-color: transparent;
  font-size: 16px;
  /* width           : 24px;
  height             : 24px;
  min-width          : 24px;
  min-height         : 24px;
  max-width          : 24px;
  max-height         : 24px;
  padding            : 0px; */
}

.tool_button:hover {
  color: white;
}

.root {
  display: flex;
  overflow: hidden;
  align-items: stretch;
  height: 100%;
}

.blackboard {
  position: relative;
  overflow: auto;
  flex: 1;
  background: rgb(30, 30, 30);
}

.layer_row {
  display: flex;
}