@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200';
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
.myBTN {
  padding: 15px 20px;
  border: 0;
  border-radius: 15px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0)";
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.myBTN, .myBTN * {
  font-size: 14px;
  color: #333;
}
.myBTN:hover {
  background-color: #f7f305;
  background-image: -moz-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f305), to(#e0ce00));
  background-image: -webkit-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -o-linear-gradient(top, #f7f305, #e0ce00);
  background-image: linear-gradient(to bottom, #f7f305, #e0ce00);
  background-repeat: repeat-x;
  filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffef80', endColorstr='#ffffea00', GradientType=0)";
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

[data-placeholder][contenteditable] {
  position: relative;
  z-index: 0;
}
[data-placeholder][contenteditable]::after {
  content: "";
  position: relative;
  display: none;
  z-index: -1;
}
[data-placeholder][contenteditable]:empty {
  color: rgba(0, 0, 0, 0.5);
}
[data-placeholder][contenteditable]:empty::after {
  content: attr(data-placeholder);
  display: inline;
}
[data-placeholder][contenteditable]:focus::after, [data-placeholder][contenteditable]:active::after {
  display: none;
  content: "";
}

/* анимация загрузки */
.loading::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  border-radius: inherit;
  background-image: url("/img/loading.png");
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  animation: myloading 2s linear infinite;
  -webkit-animation: myloading 2s linear infinite;
}
.darkScheme.loading::after {
  opacity: 0.3;
  mix-blend-mode: overlay;
  filter: invert(1);
  -webkit-filter: invert(1);
}
.loading:not(.darkScheme)::after {
  opacity: 0.1;
}
@-webkit-keyframes myloading {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 71.99999999px 0;
  }
}
@-moz-keyframes myloading {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 71.99999999px 0;
  }
}
@-ms-keyframes myloading {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 71.99999999px 0;
  }
}
@keyframes myloading {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 71.99999999px 0;
  }
}

/* для psuedo */
.addico::before {
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

/* выпадающие списки */
.selectCont {
  flex: 1;
}
.selectCont:not(.minimal) {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.selectCont select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  margin: 0;
  border: 0;
  background-color: transparent;
  background-image: url(/img/unfold_more.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  cursor: pointer;
  font-size: 14px;
  text-overflow: ellipsis;
  color: inherit;
}
.selectCont select.minimal {
  padding: 0 20px 0 0;
  background-position: 100% center;
}
.selectCont select:not(.minimal) {
  padding: 12px 30px 12px 15px;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  border-radius: inherit;
  background-position: calc(100% - 10px) center;
}
[data-theme=dark] .selectCont:not(.minimal) {
  background: #253534;
  background: -moz-linear-gradient(top, #253534 0%, #192322 100%);
  background: -webkit-linear-gradient(top, #253534 0%, #192322 100%);
  background: linear-gradient(to bottom, #253534 0%, #192322 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#253534', endColorstr='#192322',GradientType=0)";
  color: #a29d9d;
}
[data-theme=dark] .selectCont:not(.minimal):hover {
  background-color: #f7f305;
  background-image: -moz-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f305), to(#e0ce00));
  background-image: -webkit-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -o-linear-gradient(top, #f7f305, #e0ce00);
  background-image: linear-gradient(to bottom, #f7f305, #e0ce00);
  background-repeat: repeat-x;
  filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffef80', endColorstr='#ffffea00', GradientType=0)";
  color: #333;
}
[data-theme]:not([data-theme=dark]) .selectCont:not(.minimal) {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0)";
}
[data-theme]:not([data-theme=dark]) .selectCont:not(.minimal):hover {
  background-color: #f7f305;
  background-image: -moz-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f305), to(#e0ce00));
  background-image: -webkit-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -o-linear-gradient(top, #f7f305, #e0ce00);
  background-image: linear-gradient(to bottom, #f7f305, #e0ce00);
  background-repeat: repeat-x;
  filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffef80', endColorstr='#ffffea00', GradientType=0)";
}

.material-icons {
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes err {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  20% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  40% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
  60% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-moz-keyframes err {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  20% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  40% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
  60% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-ms-keyframes err {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  20% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  40% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
  60% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes err {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  20% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  40% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
  60% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
::-webkit-scrollbar {
  width: 5px;
  height: 100%;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border: 0;
}

* {
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  scroll-behavior: smooth;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #f6f6f6;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

[contenteditable] {
  flex: 1;
  cursor: text;
}

.formCont .selectCont {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0)";
}

.btn {
  position: relative;
  padding: 10px 15px;
  border: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-align: center;
}
#workarea > section:not([data-theme]) .red.btn, [data-theme] .red.btn, [data-theme=light] .red.btn, [data-theme=dark] .red.btn {
  background: rgb(255, 0, 0);
  background: -moz-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(193, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(193, 0, 0) 100%);
  background: linear-gradient(to bottom, rgb(255, 0, 0) 0%, rgb(193, 0, 0) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#c10000',GradientType=0)";
  color: #fff;
}
#workarea > section:not([data-theme]) .red.btn::after, [data-theme] .red.btn::after, [data-theme=light] .red.btn::after, [data-theme=dark] .red.btn::after {
  opacity: 0.3;
}
[data-theme=dark] .btn:not(.red) {
  background: #253534;
  background: -moz-linear-gradient(top, #253534 0%, #192322 100%);
  background: -webkit-linear-gradient(top, #253534 0%, #192322 100%);
  background: linear-gradient(to bottom, #253534 0%, #192322 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#253534', endColorstr='#192322',GradientType=0)";
  -webkit-box-shadow: 0 1px 1px #000;
  -moz-box-shadow: 0 1px 1px #000;
  -ms-box-shadow: 0 1px 1px #000;
  box-shadow: 0 1px 1px #000;
  color: #a29d9d;
}
[data-theme=dark] .btn:not(.red):hover {
  background-color: #f7f305;
  background-image: -moz-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f305), to(#e0ce00));
  background-image: -webkit-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -o-linear-gradient(top, #f7f305, #e0ce00);
  background-image: linear-gradient(to bottom, #f7f305, #e0ce00);
  background-repeat: repeat-x;
  filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffef80', endColorstr='#ffffea00', GradientType=0)";
  color: #000;
}
#workarea > section:not([data-theme]) .btn:not(.red), [data-theme]:not([data-theme=dark]) .btn:not(.red) {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(234, 234, 234) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0)";
}
#workarea > section:not([data-theme]) .btn:not(.red):disabled, [data-theme]:not([data-theme=dark]) .btn:not(.red):disabled {
  color: #555;
}
#workarea > section:not([data-theme]) .btn:not(.red):hover, [data-theme]:not([data-theme=dark]) .btn:not(.red):hover {
  background-color: #f7f305;
  background-image: -moz-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f305), to(#e0ce00));
  background-image: -webkit-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -o-linear-gradient(top, #f7f305, #e0ce00);
  background-image: linear-gradient(to bottom, #f7f305, #e0ce00);
  background-repeat: repeat-x;
  filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffef80', endColorstr='#ffffea00', GradientType=0)";
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
.btn:not(.red).loading {
  background-color: #f7f305;
  background-image: -moz-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f305), to(#e0ce00));
  background-image: -webkit-linear-gradient(top, #f7f305, #e0ce00);
  background-image: -o-linear-gradient(top, #f7f305, #e0ce00);
  background-image: linear-gradient(to bottom, #f7f305, #e0ce00);
  background-repeat: repeat-x;
  filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffef80', endColorstr='#ffffea00', GradientType=0)";
}

.addico {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 7px;
}
.myItem {
  position: relative;
}
.myItem .trash {
  font-size: 20px;
  padding: 2px 0 0 0;
  cursor: pointer;
  color: #9d70fd;
}
.myItem .trash:hover {
  color: #5000ff;
}
.myItem.sortingElem {
  background: #cac000;
  color: #fff;
}
.myItem.sortingElem .trash {
  color: rgba(255, 255, 255, 0.5);
}
.myItem .msg {
  left: auto;
  right: 35px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  background: #5000ff;
  font-size: 12px;
  color: #fff;
}
.myItem .msg[data-status="1"] {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.mb {
  margin-bottom: 21px;
}

body {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

#app-content {
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#app-content::-webkit-scrollbar {
  width: 3px;
  height: 0px;
}
#app-content::-webkit-scrollbar-track {
  background: #ccc;
}
#app-content::-webkit-scrollbar-thumb {
  background: #333;
  border: 0;
}

#script {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 3px;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 700px;
  padding: 30px 0;
}
@media screen and (max-width: 750px) {
  #script {
    width: calc(100% - 50px);
  }
}
#script > [data-type] {
  position: relative;
  left: 0;
}
#script > [data-type].answered {
  width: 100%;
}
#script > [data-type][data-limit]::after {
  content: "Осталось: " attr(data-limit) " сек.";
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  margin: 10px 0 0 0;
  color: #555;
}

#app-promo {
  border-top: 1px solid #e2e2e2;
}
#app-promo .ct {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 700px;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #999;
}
#app-promo.show-policy .ct {
  justify-content: space-between;
}
#app-promo:not(.show-policy) .ct {
  justify-content: center;
}
#app-promo:not(.show-policy) .policy {
  display: none;
}
#app-promo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
  font-size: 12px;
  color: inherit;
}
#app-promo a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: #9d70fd;
  color: #5000ff;
}
#app-promo a:hover img {
  filter: hue-rotate(180deg);
  -webkit-filter: hue-rotate(180deg);
}
@media screen and (max-width: 400px) {
  #app-promo a.policy {
    text-align: right;
  }
}
#app-promo img {
  height: 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#app-promo span {
  font-size: inherit;
  text-decoration: inherit;
  color: inherit;
}