@charset "UTF-8";
.p_m_jc_sb {
  justify-content: space-between;
}

.p_m_wrap {
  flex-wrap: wrap;
}

#p_m_overlay {
  display: none;
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: rgba(34, 34, 34, 0.64);
  overflow: hidden;
  overflow-y: auto;
  padding: 32px 16px;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 100000;
}
#p_m_overlay * {
  box-sizing: border-box;
}

#p_m_preview_wrap {
  background: #fff;
  padding: 24px 8px;
  max-width: 600px;
  margin: 0 auto 30px;
}

#p_m_preview {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.p_m_content {
  min-height: 42px;
}

#p_m_operation {
  max-width: 600px;
  margin: 0 auto;
  z-index: 100001;
}

#p_m_modal {
  margin: 0 auto;
  padding: 1.9em 2em;
  max-width: 550px;
  text-align: justify;
  text-justify: inter-ideograph;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.p_m_hedding {
  display: block;
  margin-bottom: 2px;
}

.p_m_close_button {
  right: 0;
  top: -16px;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  background: #f1f1f1;
  border: none;
  transition: all 0.8s;
  cursor: pointer;
}
.p_m_close_button svg {
  width: 32px;
  height: 32px;
  fill: #585755;
}
.p_m_close_button:hover {
  background: #ff3636;
}
.p_m_close_button:hover svg {
  fill: #fff;
}

.p_m_w100 {
  width: 100%;
}

#p_m_icons_list_label {
  display: none;
}

#p_m_icons_list_box {
  display: none;
}

input#p_m_icons_list_open:checked ~ #p_m_icons_list_box {
  display: block;
  position: fixed;
  z-index: 100002;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

#p_m_icons_list_label {
  display: block;
  z-index: 100003;
  width: 100vw;
  height: 100vh;
}

#p_m_icons_list {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100004;
  width: 90%;
  max-width: 530px;
  max-height: 100%;
  padding: 8px;
  border-radius: 8px;
  margin: 0 auto;
  background: #fff;
  overflow-y: scroll;
}

.p_m_icons_list_wrap {
  border: 2px solid #ccc;
  margin: 3px;
  background: #eee;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
.p_m_icons_list_wrap:hover {
  border-color: #444;
}

.p_m_select_icon {
  border: 2px solid #ccc;
  margin: 8px;
  background: #eee;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
.p_m_select_icon:hover {
  border-color: #444;
}

#point_maker_submit {
  background: #007cba;
  border: none;
  border-radius: 8px;
  margin: 32px auto 0;
  padding: 4px 8px;
}
#point_maker_submit:hover {
  background: #00669b;
}

input#qt_content_point_maker {
  font-family: "PointMaker";
}

.p_m_checkbox {
  position: relative;
  
  margin: 0;
}
.p_m_checkbox label {
  width: 36px;
  height: 18px;
  background: #c4c4c4;
  position: relative;
  display: inline-block;
  -moz-border-radius: 46px;
  -webkit-border-radius: 46px;
  border-radius: 46px;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.25);
}
.p_m_checkbox label:after, .p_m_checkbox label:before {
  content: "";
  
  position: absolute;
  width: 20px;
  height: 20px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  left: 0;
  top: -2px;
  background: #fff;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.p_m_checkbox label:before {
  content: "\f00f";
  font-family: "WordBalloon";
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #b4b9be;
  z-index: 1;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p_m_checkbox input {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.p_m_checkbox input:checked + label {
  background: #4bd763;
  color: #4bd763;
  
}
.p_m_checkbox input:checked + label:after, .p_m_checkbox input:checked + label:before {
  content: "\f00e";
  
  color: #4bd763;
  left: 18px;
  border: 1px solid #4bd763;
}
.p_m_checkbox input:checked + label:after {
  content: "";
}

.p_m_list svg {
  flex: 0 0 auto;
}

.p_m_dn {
  display: none;
}

#p_m_pop_up_message {
  opacity: 0;
  position: fixed;
  bottom: 0;
  padding: 16px;
  background-color: #222;
  color: #fff;
  transition: all 0.25s cubic-bezier(0, 0, 0.2, 1) 0s;
  z-index: 9999999;
  box-sizing: border-box;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  margin-bottom: 8px;
  border-radius: 2px;
}
#p_m_pop_up_message.active {
  transform: translateY(0%) translateX(-50%);
  opacity: 1;
}
#p_m_pop_up_message.inactive {
  transform: translateY(100%) translateX(-50%);
  opacity: 0;
  transition: 0.1s;
}




.block-editor-block-list__block .p_m_wrap ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.p_m_block_icon_ul {
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 4px 12px;
  justify-content: center;
}
.p_m_block_icon_ul li {
  margin: 2px;
}

.p_m_block_icon_li {
  background: #fff;
  border: 1px solid #ccc;
  height: 32px;
  width: 32px;
  transform: scale(1);
  transition: all 0.1s ease;
  position: relative;
  z-index: 1;
}
.p_m_block_icon_li.active {
  border: 3px solid #007cba;
}
.p_m_block_icon_li:hover {
  transform: scale(1.4);
  z-index: 2;
}

.p_m_block_wrap {
  padding: 26px 0;
}
.p_m_block_wrap.p_m_side_icon .p_m_content {
  padding: 24px;
  padding-left: 102px;
}
.p_m_block_wrap.p_m_side_icon .p_m_title {
  text-align: center;
}
.p_m_block_wrap.p_m_side_icon .p_m_just_title_before_icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}