/* stylelint-disable selector-class-pattern */
.guns-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: inherit;
  font-style: normal;
  vertical-align: -2px;
  outline: none;
  stroke: currentcolor;
}
.guns-icon.guns-icon--loading,
.guns-icon.guns-icon--spin {
  animation: guns-loading-circle 1s infinite linear;
}
@keyframes guns-loading-circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.guns-drawer {
  position: fixed;
  inset: 0;
  z-index: 1024;
  transition: all 0.3s;
}
.guns-drawer .guns-drawer__mask {
  position: absolute;
  inset: 0;
  background: #0006;
  transition: opacity 0.3s;
}
.guns-drawer--other-el {
  position: absolute;
  z-index: unset;
  overflow: hidden;
}
.guns-drawer--other-el .guns-drawer--main {
  z-index: unset;
}
.guns-drawer__focus {
  width: 0;
  height: 0;
}
.guns-drawer__focus:focus-within {
  outline: none;
}
.guns-drawer--shadow {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
}
.guns-drawer--main {
  position: absolute;
  inset: 0;
  background-color: var(--bgColor1);
  transition: transform 0.3s;
  word-break: break-all;
}
.guns-drawer--main .guns-drawer__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.guns-drawer--main .guns-drawer__close {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 2px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 4px;
  color: rgba(var(--gray), 0.48);
  background: none;
  transition: all 0.2s;
  cursor: pointer;
}
.guns-drawer--main .guns-drawer__close:hover {
  color: rgb(var(--gray));
  background-color: rgba(var(--gray), 0.08);
}
.guns-drawer--main .guns-drawer__close svg {
  width: 16px;
  height: 16px;
}
.guns-drawer--main .guns-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(var(--gray), 0.08);
}
.guns-drawer--main .guns-drawer__header:empty {
  padding: unset;
  border-bottom: unset;
}
.guns-drawer--main .guns-drawer__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.guns-drawer--main .guns-drawer__content {
  overflow: auto;
  padding: 16px;
  font-size: 14px;
  line-height: 1.57;
  flex-grow: 1;
}
.guns-drawer--main .guns-drawer__footer {
  display: flex;
  justify-content: end;
  padding: 12px;
  border-top: 1px solid var(--bgColor4);
}
.guns-drawer--main .guns-drawer__footer:empty {
  padding: unset;
  border-top: unset;
}
.guns-drawer--right {
  left: unset;
}
.guns-drawer--left {
  right: unset;
}
.guns-drawer--top {
  bottom: unset;
}
.guns-drawer--bottom {
  top: unset;
}
.mask-enter-from,
.mask-appear-from,
.mask-leave-to {
  opacity: 0;
}
.mask-enter-to,
.mask-appear-to,
.mask-leave-from {
  opacity: 1;
}
.right-drawer-enter-from,
.right-drawer-appear-from,
.right-drawer-leave-to {
  transform: translateX(100%);
}
.right-drawer-enter-to,
.right-drawer-appear-to,
.right-drawer-leave-from {
  transform: translateX(0);
}
.left-drawer-enter-from,
.left-drawer-appear-from,
.left-drawer-leave-to {
  transform: translateX(-100%);
}
.left-drawer-enter-to,
.left-drawer-appear-to,
.left-drawer-leave-from {
  transform: translateX(0);
}
.top-drawer-enter-from,
.top-drawer-appear-from,
.top-drawer-leave-to {
  transform: translateY(-100%);
}
.top-drawer-enter-to,
.top-drawer-appear-to,
.top-drawer-leave-from {
  transform: translateY(0);
}
.bottom-drawer-enter-from,
.bottom-drawer-appear-from,
.bottom-drawer-leave-to {
  transform: translateY(100%);
}
.bottom-drawer-enter-to,
.bottom-drawer-appear-to,
.bottom-drawer-leave-from {
  transform: translateY(0);
}
