html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
hd,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
hd,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 10px;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after {
  content: '';
  content: none;
}
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: 'Rubik', sans-serif;
  color: #fff;
  background: #111;
}
a {
  text-decoration: none;
  color: #64a964;
  cursor: pointer;
  transition: all 0.1s ease;
}
input {
  padding: 0;
}
[data-lang="en"] {
  font-family: 'Rubik', sans-serif;
}
.en_only {
  font-family: 'Rubik', sans-serif;
}
.scroll_frame {
  height: 100%;
  overflow: scroll;
}
#text-loading {
  color: #fff;
  font-size: 20px;
  position: fixed;
  padding: 10px;
  z-index: 0;
  top: 10px;
  left: 10px;
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.app {
  position: relative;
}
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
.alerts {
  position: fixed;
  z-index: 65536;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(255,217,154,0.9);
  color: #333;
  font-size: 18px;
  padding: 10px;
}
.hd {
  position: fixed;
  z-index: 65536;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(to right, #fff, #eaffea);
  color: #333;
  border-bottom: 1px solid #ddd;
}
.hd-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1100px;
  height: 100%;
  margin: 0 auto;
}
.hd-sitename {
  height: 100%;
  padding-left: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.hd-sitename a {
  transition: all 0.1s ease;
}
.hd-sitename a:hover {
  opacity: 0.7;
}
.hd-sitename span {
  color: #aaa;
  padding-left: 10px;
  font-size: 13px;
  text-transform: capitalize;
  word-break: break-all;
}
@media only screen and (max-width: 1000px) {
  .hd-sitename span {
    display: none;
  }
}
.hd-sitename .logo {
  height: 88%;
  width: auto;
}
.sns-icon {
  height: 20px;
}
.sns-icon + .sns-icon {
  margin-left: 8px;
}
.hd-info {
  font-size: 13px;
  display: flex;
  align-items: center;
}
.hd-info-item {
  transition: all 0.1s ease;
  line-height: 1.2;
}
.hd-info-item + .hd-info-item {
  margin-left: 15px;
}
.hd-info-item.sns {
  display: flex;
  align-items: flex-start;
  margin-right: 30px;
}
.hd-info-item.sign-in {
  color: #3bb13b;
  border: 1px solid #3bb13b;
  border-radius: 3px;
  padding: 4px 10px;
  background: #fff;
  font-size: 16px;
}
.hd-info-item.sign-up {
  color: #9c7d61;
  border: 1px solid #9c7d61;
  border-radius: 2px;
  padding: 4px 10px;
  background: #ffda9a;
  font-size: 16px;
}
.hd-info-item.mail {
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
.hd-info-item.mail:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 8px;
  background-color: transparent;
  border-style: solid;
  border-width: 3px;
  border-color: transparent #ffb73c #ffb73c transparent;
  transform: translateY(-2px) rotate(33deg);
}
a.hd-info-item:hover {
  opacity: 0.7;
}
.hd-info-selector {
  display: flex;
  cursor: pointer;
  position: relative;
  border-left: 1px solid #888;
  border-right: 1px solid #888;
}
.hd_info_selector_candidate {
  font-size: 16px;
  padding: 0 6px;
  transition: all 0.2s ease;
  position: relative;
}
.hd_info_selector_candidate.selected {
  font-weight: bold;
  cursor: default;
}
.hd_info_selector_candidate.selected:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70%;
  height: 2px;
  content: "";
  background: #333;
  transform: translate(-50%, 3px);
}
.hd_info_selector_candidate:not(.selected) {
  color: #64a964;
}
.hd_info_selector_candidate:not(.selected):hover {
  opacity: 0.7;
}
.ft {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}
.ft-inner {
  text-align: center;
}
.wrapper {
  display: flex;
  flex-direction: column;
  width: 1100px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}
.desc {
  order: 90;
  font-size: 16px;
  color: #333;
  background: #fff;
  padding: 20px;
  border-radius: 3px;
  position: relative;
}
.desc:after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  content: "";
  width: 98.25px;
  height: 77px;
  background: url("/bear.png");
  background-size: cover;
}
.desc-group:not(:first-child) {
  margin-top: 30px;
}
.desc-group .remarkable {
  background: #f8ffbf;
  padding: 10px;
}
.desc-group dl:not(:last-child) {
  margin-bottom: 15px;
}
.desc-group dt {
  color: #888;
  margin-bottom: 2px;
}
.desc-hd {
  position: relative;
  padding-left: 20px;
}
.desc-hd:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  background: #da2c2c;
  border-radius: 2px;
}
.desc-hd:not(:last-child) {
  margin-bottom: 10px;
}
.desc-contents a {
  transition: all 0.1s ease;
}
.desc-contents a:hover {
  opacity: 0.7;
}
.ad {
  order: 7;
  width: 768px;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 1000px) {
  .ad {
    width: 100%;
  }
}
.ad-02 {
  margin: 0 10px;
}
.meta_nav {
  order: 18;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}
.meta_nav_column {
  display: flex;
  align-items: center;
}
.meta_nav_column + .meta_nav_column {
  margin-left: 50px;
}
.meta_nav_button {
  font-size: 16px;
  padding: 0 20px;
  line-height: 32px;
  height: 32px;
  color: #9be69a;
  cursor: pointer;
  transition: all 0.1s ease;
  position: relative;
}
.meta_nav_button:not(.off):hover {
  color: #fff;
}
.meta_nav_button.off {
  cursor: default;
  color: #aaa;
}
.meta_nav_label {
  font-size: 16px;
  color: #333;
  background: #fff;
  padding: 0 20px;
  line-height: 32px;
  height: 32px;
  position: relative;
}
.meta_nav_label:before {
  position: absolute;
  right: -32px;
  top: 0;
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 16px;
  border-color: transparent transparent #fff #fff;
}
.nav {
  order: 20;
  display: flex;
  align-items: center;
}
.nav-col {
  display: flex;
  flex-direction: column;
}
.nav-col.wide {
  flex-grow: 1;
}
.nav-col+.nav-col {
  padding-left: 15px;
  border-left: 1px solid #888;
  margin-left: 15px;
}
.nav-group {
  display: flex;
  justify-content: space-between;
}
.nav-col > .nav-group:not(:first-child) {
  margin-top: 10px;
}
.nav_item {
  display: flex;
}
.nav_item:not(:first-child) {
  margin-left: 30px;
}
.button {
  padding: 0 10px;
  min-width: 70px;
  text-align: center;
  font-size: 15px;
  color: #333;
  line-height: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.1s ease;
  position: relative;
}
.button span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  text-align: center;
  width: 100%;
}
.button:first-letter {
  text-transform: capitalize;
}
.button.play {
  background: #9be69a;
  height: 50px;
}
.button.play:not(.off):hover {
  background: #d3fbd3;
}
.button.play:before {
  position: absolute;
  top: 5px;
  left: 28px;
  content: "";
  border-style: solid;
  border-color: transparent transparent #275026 #275026;
  border-width: 5px 9px;
}
.button.play:after {
  position: absolute;
  top: 15px;
  left: 28px;
  content: "";
  border-style: solid;
  border-color: #275026 transparent transparent #275026;
  border-width: 5px 9px;
}
.button.sub {
  background: #484848;
  color: #9be69a;
}
.button.bare {
  color: #9be69a;
}
.button.delete {
  color: #ff7272;
}
.button.sub:not(.off):hover,
.button.bare:not(.off):hover,
.button.delete:not(.off):hover {
  color: #fff;
}
.button.cancel {
  background: #ddd;
  color: #888;
}
.button.cancel:not(.off):hover {
  background: #f2f2f2;
}
.button.pause {
  background: #9ab4e6;
  height: 50px;
}
.button.pause:not(.off):hover {
  background: #ccd8f1;
}
.button.pause:before {
  position: absolute;
  top: 7px;
  left: 26px;
  content: "";
  border-radius: 2px;
  width: 7px;
  height: 17px;
  background: #263d50;
}
.button.pause:after {
  position: absolute;
  top: 7px;
  left: 35px;
  content: "";
  border-radius: 2px;
  width: 7px;
  height: 17px;
  background: #263d50;
}
.button.confirm,
.button.sign-in {
  background: #9be69a;
}
.button.confirm:not(.off):hover,
.button.sign-in:not(.off):hover {
  background: #cdf1cd;
}
.button.sign-up {
  background: #ffda9a;
}
.button.sign-up:not(.off):hover {
  background: #ffe8c0;
}
.button.off {
  cursor: default;
  color: #aaa;
}
.button.big {
  padding: 0 30px;
  height: 30px;
  line-height: 30px;
}
.button + .button {
  margin-left: 20px;
}
.locked-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  z-index: 256;
  background: rgba(210,210,210,0.8);
  font-size: 16px;
  text-align: left;
  color: #da2c2c;
  cursor: default;
}
.locked-layer:before {
  position: absolute;
  top: 2px;
  left: 10px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  content: '';
  background: #da2c2c;
  z-index: 259;
}
.locked-layer:after {
  position: absolute;
  top: 9px;
  left: 13px;
  width: 13px;
  height: 5px;
  content: '';
  background: #fff;
  z-index: 261;
}
.meta_nav_button .locked-layer:before {
  top: 7px;
}
.meta_nav_button .locked-layer:after {
  top: 14px;
}
.label {
  font-weight: bold;
  font-size: 15px;
  line-height: 24px;
  padding-right: 10px;
  text-transform: capitalize;
}
.label.small {
  font-size: 14px;
  line-height: 18px;
}
.value {
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  line-height: 24px;
  width: 50px;
  text-align: center;
  color: #333;
  background: #fff;
  padding: 0 10px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.9);
}
.value.small {
  width: 30px;
  padding: 0;
  font-size: 13px;
  box-shadow: none;
  line-height: 18px;
}
.cursor {
  display: inline-block;
  width: 24px;
  position: relative;
  transition: all 0.1s ease;
  cursor: pointer;
}
.cursor.small {
  width: 18px;
}
.cursor:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: #9be69a transparent transparent #9be69a;
}
.cursor:not(.off):hover:before {
  border-color: #fff transparent transparent #fff;
}
.cursor.l:before {
  transform: translateX(2px) translateY(-50%) rotate(-45deg);
}
.cursor.r:before {
  transform: translateX(-15px) translateY(-50%) rotate(135deg);
}
.cursor.small.l:before {
  transform: translateX(-2px) translateY(-50%) rotate(-45deg) scale(0.7);
}
.cursor.small.r:before {
  transform: translateX(-12px) translateY(-50%) rotate(135deg) scale(0.7);
}
.cursor.off {
  cursor: default;
}
.cursor.off:before {
  display: none;
}
.view {
  position: relative;
  order: 30;
  margin: 20px 0;
  max-width: 1100px;
}
.view-inner {
  position: relative;
  display: flex;
}
.view-params {
  margin-bottom: 10px;
  display: flex;
}
.parts {
  width: 310px;
  position: relative;
  flex-shrink: 0;
}
.parts.isLoadingPart:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
  content: "";
  z-index: 512;
}
.parts_item_frame {
  position: relative;
  border-radius: 3px 0 0 3px;
  padding: 3px 0;
}
.parts_item_frame.deleted {
  display: none;
}
.parts_item_frame.licenseBlocked {
  background: #421c1c;
}
.parts_item_frame.current {
  background: #3c3d46;
}
.parts_item_frame.current:after {
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateX(9px) translateY(-50%) rotate(-135deg);
  content: "";
  border-width: 8px;
  border-style: solid;
  border-color: #e0e2ef #e0e2ef transparent transparent;
}
.parts_item_frame:not(.current):before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.1s ease;
}
.parts_item_frame:not(.current):hover:before {
  opacity: 0.5;
}
.parts_item {
  position: relative;
  padding: 0 5px 0 45px;
  font-size: 16px;
  line-height: 30px;
  transition: all 0.1s ease;
  cursor: pointer;
}
.parts_item:not(:last-child) {
  margin-bottom: 10px;
}
.current .parts_item.instrument {
  color: #9be69a;
}
.parts_item.add {
  padding: 0;
  text-align: center;
  border-radius: 2px;
  margin: 10px 20px 0;
  color: #9be69a;
  background-color: #484848;
}
.parts_item.note {
  padding: 0;
  text-align: right;
  border-radius: 0;
  margin: 10px 20px 0;
  font-size: 12px;
  background-color: transparent;
  color: #aaa;
  line-height: 1.2;
  cursor: default;
}
.parts_item.add:hover,
.current .parts_item.instrument:hover {
  color: #fff;
}
.parts_item:not(.add):not(.note):before {
  position: absolute;
  top: 50%;
  left: 2px;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #616161;
  transform: translate(0, -50%);
  border: 1px solid #666;
  border-radius: 5px;
}
[data-type="scalable"] .parts_item:before {
  background: url("/symbol-scalable.png");
  background-size: cover;
}
[data-type="percussive"] .parts_item:before {
  background: url("/symbol-percussive.png");
  background-size: cover;
}
.parts_item_attr {
  padding: 3px 30px 3px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}
.parts_item_attr.current {
  background: #3c3d46;
}
.parts_item_attr_chunk {
  display: flex;
}
.parts_ad {
  margin: 20px 5px 0 5px;
}
.icon-licenseBlocked {
  display: none;
}
.licenseBlocked .icon-licenseBlocked {
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  height: 26px;
  line-height: 26px;
  width: 26px;
  text-align: center;
  border-radius: 50%;
  background: #da2c2c;
}
.editor {
  width: 100%;
  border-left: 1px solid #e0e2ef;
  border-radius: 0 3px 3px 0;
  background: #3c3d46;
}
.drums-editor {
  padding-bottom: 10px;
}
.beat-scale {
  margin: 10px 10px 0 120px;
  padding: 8px 0;
  display: flex;
  justify-content: space-around;
}
.beat {
  font-size: 16px;
  width: 18px;
  display: inline-block;
  text-align: center;
}
.beat:nth-child(4n-3) {
  font-weight: bold;
}
.beat-row {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}
.beat-label {
  width: 110px;
  padding: 0 5px;
  line-height: 24px;
  height: 24px;
  text-align: right;
  text-transform: capitalize;
  font-size: 16px;
  background-color: #fff;
  color: #333;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 2px 0 0 2px;
}
.beat-label:hover {
  background-color: #d3f9d3;
}
.beat-panels {
  display: flex;
  flex-grow: 1;
  justify-content: space-around;
  align-items: center;
}
.beat_panel {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: all 0.1s ease;
  cursor: pointer;
}
.beat_panel.on,
.beat_panel:nth-child(4n-3).on {
  background: #da2c2c;
  border-color: #da2c2c;
}
.beat_panel:hover {
  border-color: #da2c2c;
}
.beat_panel.on:hover {
  border-color: #fff;
}
.beat_panel:nth-child(4n-3) {
  background: rgba(255,255,255,0.4);
}
.measures {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #888;
}
.measures-label {
  width: 80px;
  text-align: left;
  text-transform: capitalize;
  font-size: 13px;
}
.measure {
  text-align: center;
  height: 20px;
  line-height: 20px;
  padding: 0 12px;
  font-size: 15px;
  color: #9be69a;
}
.measure.on {
  color: #9aa3e6;
  background: #e0e2ef;
  font-weight: bold;
  border-radius: 3px;
}
.measure.off.off {
  color: #aaa;
  cursor: default;
}
.measure:not(.on) {
  cursor: pointer;
}
.measure:not(.on):hover {
  color: #fff;
}
.measure.off.off:hover {
  color: #aaa;
}
.small_button {
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.small_button.mute {
  color: #9be69a;
  border: 1px solid #999;
}
.small_button:hover {
  color: #fff;
}
.small_button.on {
  color: #333;
  background: #ccd8f1;
}
.small_button.delete {
  color: #ff7272;
  background-color: #616161;
}
.small_button.delete:hover {
  color: #fff;
}
.modal_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 65541;
  display: none;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
}
.modal_wrapper.visible {
  display: block;
}
.modal_layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 65543;
  background: rgba(0,0,0,0.7);
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.modal_content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  color: #333;
  min-width: 600px;
  padding: 20px;
  border-radius: 3px;
  cursor: default;
  z-index: 65549;
}
.modal_hd {
  position: relative;
  padding-bottom: 4px;
  font-size: 18px;
  margin-bottom: 20px;
}
.modal_hd:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  content: "";
  display: block;
}
.modal_text {
  font-size: 16px;
}
.modal_text a {
  color: #333;
  text-decoration: underline;
}
.modal_text em {
  color: #d4911c;
}
.modal_error {
  color: #da2c2c;
}
.modal_row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal_row:not(:first-child) {
  margin-top: 20px;
}
.modal_input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 16px;
  line-height: 28px;
  height: 28px;
  width: 100%;
  padding-left: 5px;
  background-color: #ebffea;
}
.modal_input_label {
  min-width: 100px;
}
.modal_input_column {
  display: block;
  width: calc(100% - 200px - 20px);
}
.modal_label_column {
  width: 120px;
  text-align: right;
  margin-right: 20px;
  font-size: 16px;
}
.common_modal {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 65547;
  background: rgba(255,255,255,0.9);
  width: 1100px;
  height: auto;
  padding: 20px;
  color: #333;
  border-radius: 3px;
}
.common_modal.compact {
  width: 480px;
}
.object_list {
  display: flex;
  flex-wrap: wrap;
}
.object_list_frame {
  overflow: scroll;
  flex-grow: 1;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  background: #fff;
  max-height: 300px;
}
.object {
  font-size: 14px;
  width: 24%;
}
.object:empty {
  display: none;
}
.col2 .object {
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .object {
    width: 100%;
  }
  .object:nth-child(n+2) {
    margin-top: 8px;
  }
}
.object:nth-child(n+5) {
  margin-top: 10px;
}
@media only screen and (max-width: 1000px) {
  .object:nth-child(n+5) {
    margin-top: 8px;
  }
}
.object a {
  color: #333;
  transition: all 0.1s ease;
}
.object a:hover {
  color: #11b711;
}
.object-inner {
  display: flex;
  align-items: center;
}
.object_figure {
  position: relative;
  background: #fff;
}
.object_figure:hover img {
  opacity: 0.7;
}
.object_figure figure {
  margin: 0 3px;
}
.object_figure figure img {
  width: 100%;
  height: auto;
  transition: all 0.1s ease;
  vertical-align: top;
}
.object_figure figcaption {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,0.9);
  padding: 2px;
  color: #333;
  transition: all 0.1s ease;
}
.object_figure:hover {
  opacity: 0.7;
}
.object_figure:hover figcaption {
  color: #11b711;
}
.not_permitted {
  color: #aaa;
  cursor: default;
}
.free:after {
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f00;
  vertical-align: middle;
}
.sound_button {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.1s ease;
}
.sound_button:hover {
  opacity: 0.7;
}
.sound_button:before {
  position: absolute;
  top: 3px;
  left: 1px;
  transform: rotate(-45deg);
  content: "";
  width: 0;
  height: 0;
  border-width: 4px;
  border-color: transparent #1a9acb #1a9acb transparent;
  border-style: solid;
}
.common_modal_cancel {
  position: absolute;
  z-index: 8199;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  transition: all 0.1s ease;
  text-transform: capitalize;
  font-size: 14px;
  cursor: pointer;
}
.common_modal_cancel:before,
.common_modal_cancel:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 2px;
  content: "";
  background-color: #333;
}
.common_modal_cancel:before {
  transform: rotate(45deg);
}
.common_modal_cancel:after {
  transform: rotate(-45deg);
}
.common_modal_cancel:hover:before,
.common_modal_cancel:hover:after {
  background-color: #11b711;
}
.checkbox_list {
  display: flex;
  flex-wrap: wrap;
}
.checkbox_list:not(:first-child) {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #aaa;
}
.checkbox {
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.1s ease;
  padding-left: 25px;
  margin-right: 20px;
  margin-top: 2px;
  margin-bottom: 2px;
  text-transform: capitalize;
}
.checkbox:hover {
  opacity: 0.7;
}
.checkbox i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid #aaa;
}
.checkbox.checked i:before {
  position: absolute;
  top: -3px;
  left: 3px;
  content: "";
  width: 3px;
  height: 8px;
  border-color: transparent #22b4d6 #22b4d6 transparent;
  border-width: 3px;
  border-style: solid;
  transform: rotate(40deg);
}
.radio {
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.1s ease;
  padding-left: 25px;
  margin-right: 20px;
  margin-top: 6px;
  margin-bottom: 2px;
}
.radio:hover {
  opacity: 0.7;
}
.radio i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid #aaa;
  border-radius: 50%;
}
.radio.selected i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22b4d6;
}
.sound_checkbox_wrapper {
  margin-bottom: 20px;
}
.modal-text {
  font-size: 16px;
}
.keys {
  padding: 10px;
  position: relative;
}
.key {
  height: 10px;
  margin-bottom: 1px;
  display: flex;
}
.key.thick {
  height: 20px;
}
.key-name {
  font-size: 9px;
  width: 110px;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: inline-block;
  background-color: #fff;
  border-radius: 2px 0 0 2px;
}
.thick .key-name {
  font-size: 13px;
}
.key-name:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  z-index: 512;
  transition: all 0.1s ease;
  border-radius: 0 2px 2px 0;
}
.key-name:after {
  position: absolute;
  top: 0;
  right: 3px;
  content: attr(data-label);
  color: #333;
  transition: all 0.1s ease;
  z-index: 515;
}
.thick .key-name:after {
  top: 2px;
}
.key-name[data-scale="2"]:before,
.key-name[data-scale="4"]:before,
.key-name[data-scale="7"]:before,
.key-name[data-scale="9"]:before,
.key-name[data-scale="11"]:before {
  background: #000;
  width: calc(100% - 15px);
  border-radius: 2px 0 0 2px;
}
.key-name[data-scale="2"]:after,
.key-name[data-scale="4"]:after,
.key-name[data-scale="7"]:after,
.key-name[data-scale="9"]:after,
.key-name[data-scale="11"]:after {
  color: #fff;
  right: 18px;
}
.key-name:hover:before {
  background: #d3f9d3;
}
.key-name[data-scale="2"]:hover:before,
.key-name[data-scale="4"]:hover:before,
.key-name[data-scale="7"]:hover:before,
.key-name[data-scale="9"]:hover:before,
.key-name[data-scale="11"]:hover:before {
  background: #044a0a;
}
.key-name.trigger:hover:before {
  background-color: #fff;
}
.key-name.trigger:hover:after {
  color: #9be69a;
}
.key-panels {
  display: flex;
  flex-grow: 1;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}
.key_panel {
  display: inline-block;
  width: 40px;
  height: 10px;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.3);
  transition: all 0.1s ease;
  cursor: pointer;
  position: relative;
}
.thick .key_panel {
  height: 20px;
}
.key_panel.on,
.key_panel.composing_key {
  border-radius: 3px;
}
.key_panel.on,
.key_panel:nth-child(4n-3).on {
  background: #da2c2c;
  border-color: #da2c2c;
}
.thick .key_panel.on,
.thick .key_panel:nth-child(4n-3).on,
.key_panel.composing_key {
  background: #da842c;
  border-color: #da842c;
}
.key_panel:hover {
  border-color: #da2c2c;
}
.thick .key_panel:hover {
  border-color: #da842c;
}
.key_panel.on:hover {
  border-color: #fff;
}
.key_panel:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  height: 3px;
  background: #da2c2c;
  border-radius: 0 2px 2px 0;
}
.key_panel.on:after {
  content: "";
}
.thick .key_panel.on:after {
  background: #da842c;
}
.key_panel:nth-child(4n-3):not(.composing_key):not(.on) {
  background: rgba(255,255,255,0.4);
}
.key:nth-child(12n-10) .key_panel:not(.composing_key):not(.on),
.key:nth-child(12n-8) .key_panel:not(.composing_key):not(.on),
.key:nth-child(12n-6) .key_panel:not(.composing_key):not(.on),
.key:nth-child(12n-3) .key_panel:not(.composing_key):not(.on),
.key:nth-child(12n-1) .key_panel:not(.composing_key):not(.on) {
  background: rgba(255,255,255,0.1);
}
.key:nth-child(12n-10) .key_panel:nth-child(4n-3):not(.composing_key):not(.on),
.key:nth-child(12n-8) .key_panel:nth-child(4n-3):not(.composing_key):not(.on),
.key:nth-child(12n-6) .key_panel:nth-child(4n-3):not(.composing_key):not(.on),
.key:nth-child(12n-3) .key_panel:nth-child(4n-3):not(.composing_key):not(.on),
.key:nth-child(12n-1) .key_panel:nth-child(4n-3):not(.composing_key):not(.on) {
  background: rgba(255,255,255,0.2);
}
[data-length="1"].on:after {
  width: 20px;
}
[data-length="2"].on:after {
  width: 60px;
}
[data-length="3"].on:after {
  width: 100px;
}
[data-length="4"].on:after {
  width: 140px;
}
[data-length="5"].on:after {
  width: 180px;
}
[data-length="6"].on:after {
  width: 220px;
}
[data-length="7"].on:after {
  width: 260px;
}
[data-length="8"].on:after {
  width: 300px;
}
[data-length="9"].on:after {
  width: 340px;
}
[data-length="10"].on:after {
  width: 380px;
}
[data-length="11"].on:after {
  width: 420px;
}
[data-length="12"].on:after {
  width: 460px;
}
[data-length="13"].on:after {
  width: 500px;
}
[data-length="14"].on:after {
  width: 540px;
}
[data-length="15"].on:after {
  width: 580px;
}
[data-length="16"].on:after {
  width: 620px;
}
[data-length="17"].on:after {
  width: 660px;
}
[data-length="18"].on:after {
  width: 700px;
}
[data-length="19"].on:after {
  width: 740px;
}
[data-length="20"].on:after {
  width: 780px;
}
[data-length="21"].on:after {
  width: 820px;
}
[data-length="22"].on:after {
  width: 860px;
}
[data-length="23"].on:after {
  width: 900px;
}
[data-length="24"].on:after {
  width: 940px;
}
[data-length="25"].on:after {
  width: 980px;
}
[data-length="26"].on:after {
  width: 1020px;
}
[data-length="27"].on:after {
  width: 1060px;
}
[data-length="28"].on:after {
  width: 1100px;
}
[data-length="29"].on:after {
  width: 1140px;
}
[data-length="30"].on:after {
  width: 1180px;
}
[data-length="31"].on:after {
  width: 1220px;
}
[data-length="32"].on:after {
  width: 1260px;
}
[data-length="33"].on:after {
  width: 1300px;
}
[data-length="34"].on:after {
  width: 1340px;
}
[data-length="35"].on:after {
  width: 1380px;
}
[data-length="36"].on:after {
  width: 1420px;
}
[data-length="37"].on:after {
  width: 1460px;
}
[data-length="38"].on:after {
  width: 1500px;
}
[data-length="39"].on:after {
  width: 1540px;
}
[data-length="40"].on:after {
  width: 1580px;
}
[data-length="41"].on:after {
  width: 1620px;
}
[data-length="42"].on:after {
  width: 1660px;
}
[data-length="43"].on:after {
  width: 1700px;
}
[data-length="44"].on:after {
  width: 1740px;
}
[data-length="45"].on:after {
  width: 1780px;
}
[data-length="46"].on:after {
  width: 1820px;
}
[data-length="47"].on:after {
  width: 1860px;
}
[data-length="48"].on:after {
  width: 1900px;
}
[data-length="49"].on:after {
  width: 1940px;
}
[data-length="50"].on:after {
  width: 1980px;
}
[data-length="51"].on:after {
  width: 2020px;
}
[data-length="52"].on:after {
  width: 2060px;
}
[data-length="53"].on:after {
  width: 2100px;
}
[data-length="54"].on:after {
  width: 2140px;
}
[data-length="55"].on:after {
  width: 2180px;
}
[data-length="56"].on:after {
  width: 2220px;
}
[data-length="57"].on:after {
  width: 2260px;
}
[data-length="58"].on:after {
  width: 2300px;
}
[data-length="59"].on:after {
  width: 2340px;
}
[data-length="60"].on:after {
  width: 2380px;
}
[data-length="61"].on:after {
  width: 2420px;
}
[data-length="62"].on:after {
  width: 2460px;
}
[data-length="63"].on:after {
  width: 2500px;
}
[data-length="64"].on:after {
  width: 2540px;
}
.dropzone {
  width: 100%;
  height: 180px;
  background: #ffda9a;
  border: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
  z-index: 8195;
  transition: all 0.2s ease;
  cursor: -webkit-grab;
  cursor: grab;
}
.dropzone:not(:first-child) {
  margin-top: 10px;
}
.dropzone:hover {
  opacity: 0.7;
}
.dropzone:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  transform: translate(-50%, -50%) scale(0.95);
  border: 1px dashed #aaa;
}
.dz-preview {
  display: none;
}
.dropzone-custom-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 15px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.dropzone-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.dropzone-note {
  color: #888;
  font-size: 14px;
}
.licenses {
  display: flex;
  justify-content: space-between;
}
.license-col {
  padding: 15px 30px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  width: 49%;
}
.license-col.pro {
  border-color: #ffda9a;
}
.license-hd {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.suggest {
  position: relative;
}
.suggest:before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  padding: 4px;
  width: 130px;
  border-radius: 3px;
  content: "Requring Ongaq JS Pro License";
  background: #ffda9a;
  text-align: center;
  font-weight: bold;
  color: #666;
  opacity: 0;
  display: none;
  transition: all 0.1s ease;
  transition-delay: 0.2s;
  font-size: 12px;
  line-height: 1.1;
  z-index: 65561;
}
.suggest:hover:before {
  opacity: 1;
  display: block;
}
.suggest:after {
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background: #ffda9a;
  content: "";
  width: 7px;
  height: 7px;
  opacity: 0;
  z-index: 65599;
}
.suggest:hover:after {
  opacity: 1;
}
[data-lang="en"] .suggest_free:before {
  content: "Requiring to sign in";
}
[data-lang="ja"] .suggest_free:before {
  content: "ログインが必要です";
}
.suggest_free:before,
.suggest_free:after {
  background: #ffda9a;
  font-weight: normal;
}
.fatal-error {
  background: #fff;
  color: #333;
  font-size: 13px;
  padding: 10px;
  border-radius: 3px;
}
.confirm-module {
  position: fixed;
  z-index: 65535;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 10px;
  line-height: 1.3;
  color: #333;
  background: rgba(255,255,255,0.8);
  padding: 4px 0;
}
.confirm-module-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 1100px;
}
.confirm-module-inner a {
  padding-left: 10px;
}
.waiting-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 65999;
}
.waiting-layer-message {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  background: #000;
  border-radius: 3px;
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes loading {
  0% {
    color: #fff;
  }
  33% {
    color: #9a9ce6;
  }
  66% {
    color: #e69ad9;
  }
  90% {
    color: #fff;
  }
}
@keyframes loading {
  0% {
    color: #fff;
  }
  33% {
    color: #9a9ce6;
  }
  66% {
    color: #e69ad9;
  }
  90% {
    color: #fff;
  }
}

