@charset "uft-8";

.gg-add {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid;
    border-radius: 22px;
    border-color: #E0E0E0;
    transform: scale(var(--ggs, 1));
    background-color: #E0E0E0;
    cursor: pointer;
}
.gg-add::after,
.gg-add::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 13px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 5px;
    top: 11px;
    left: 6px;
}
.gg-add::after {
    width: 3px;
    height: 13px;
    top: 6px;
    left: 11px;
}
.gg-add:hover {
  background-color: #BDBDBD;
  border-color: #BDBDBD;
}

.gg-remove {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid;
    border-radius: 22px;
    border-color: #EBC9C8;
    transform: scale(var(--ggs, 1));
    background-color: #EBC9C8;
    cursor: pointer;
}
.gg-remove::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 13px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 5px;
    top: 11px;
    left: 6px;
}

.gg-remove:hover {
    background-color: #E66B60;
    border-color: #E66B60;
}
.gg-remove.inactive {
    display: none;
}


.gg-plus,
.gg-plus::after {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  border-radius: 10px;
}
.gg-plus {
  margin-top: -2px;
  position: relative;
  transform: scale(var(--ggs, 1));
  width: 16px;
  height: 2px;
}
.gg-plus::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  top: -7px;
  left: 7px;
}
.gg-check {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}
.gg-check::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -1px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.gg-check-2 {
    scale: 3;
    color: green;
    display: -webkit-inline-box;
}

.gg-spinner {
  transform: scale(var(--ggs, 1));
}
.gg-spinner,
.gg-spinner::after,
.gg-spinner::before {
  box-sizing: border-box;
  position: relative;
  display: -webkit-inline-box;
  vertical-align: bottom;
  width: 20px;
  height: 20px;
}
.gg-spinner::after,
.gg-spinner::before {
  content: "";
  position: absolute;
  border-radius: 100px;
}
.gg-spinner::before {
  animation: spinner 1s cubic-bezier(0.6, 0, 0.4, 1) infinite;
  border: 3px solid transparent;
  border-top-color: currentColor;
}
.gg-spinner::after {
  border: 3px solid;
  opacity: 0.2;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.gg-edit-markup {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 22px;
  overflow: hidden;
  perspective: 20px;
}
.gg-edit-markup::after,
.gg-edit-markup::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
}
.gg-edit-markup::before {
  width: 0;
  height: 6px;
  border-bottom: 6px solid;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  bottom: 9px;
  left: 6px;
}
.gg-edit-markup::after {
  width: 10px;
  height: 12px;
  border: 2px solid;
  border-top: 4px solid;
  border-bottom: 0;
  bottom: 0;
  left: 4px;
  transform: rotateX(60deg);
}