.template-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
}
.template-wrapper .template-block li {
  padding: 10px 20px;
  border: 1px dashed lightgrey;
  border-radius: 10px;
  background-color: white;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: pre-wrap;
  word-break: break-word;
}
.template-wrapper .template-block li label {
  width: 100%;
  margin: -10px -20px;
  padding: 10px 20px;
  cursor: pointer;
}
.template-wrapper .template-block li input[type=radio] {
  margin-right: 20px;
}
.template-wrapper .template-block li div {
  white-space: nowrap;
  margin-left: 20px;
}
.template-wrapper .template-block li span {
  color: black;
}
.template-wrapper .template-block > div {
  margin-top: 20px;
  text-align: center;
}
.template-wrapper .help-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.template-wrapper .help-block textarea {
  font-size: 1.1rem;
  width: 100%;
}
.template-wrapper .add-block {
  width: 100px;
}
.template-wrapper .add-block button {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .template-wrapper {
    flex-wrap: wrap;
  }
}
.emo-button {
  position: relative;
}
.block-emodzi > .emo-button > .emoji-wrapper {
  margin: 0;
  position: absolute;
  top: 15px;
  left: 25px;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 530px;
}
.block-emodzi .emoji-list,
.emoji-paragraph {
  display: flex;
  justify-content: start;
  width: 500px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  user-select: none;
  cursor: pointer;
  font-size: 1.3rem;
  list-style-type: none;
}
.block-emodzi .emoji-list li,
.emoji-paragraph li {
  padding: 2px;
  margin: 0;
}
.emoji-paragraph {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 6px;
}
.emoji-paragraph li {
  font-size: 0.7rem;
  font-weight: bold;
}
.emoji-paragraph li.active {
  border-bottom: 3px solid #f58220;
}
.emoji-list > li:hover {
  transition: 0.1s;
  transform: scale(1.5);
  z-index: 1;
}
.emodzi-caution {
  overflow: hidden;
  width: 100%;
}
.emodzi-caution span {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  animation-name: caution-animation;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: reverse;
  animation-fill-mode: forwards;
}
@keyframes caution-animation {
  from {
    margin-left: -200%;
  }
  to {
    margin-left: 100%;
  }
}
.counter-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 1rem;
  white-space: nowrap;
  gap: 15px;
  align-items: center;
}
.counter-wrapper .block-count {
  font-size: 1rem;
  display: flex;
  justify-content: start;
  gap: 15px;
}
.counter-wrapper .block-count .text1 {
  color: #000000;
  font-weight: bold;
  margin-right: 5px;
}
.counter-wrapper .block-count .text2 {
  color: #868686;
}
.counter-wrapper button {
  width: 48px;
  height: 30px;
  box-shadow: 2px 3px 4px 1px rgba(71, 70, 68, 0.17);
  background-color: #ffffff;
  margin: 0;
  border: none;
  transition: 0.2s;
  outline: none;
}
.counter-wrapper button.active {
  background-color: #e8e8e8;
  box-shadow: none;
  font-family: Play-Bold, sans-serif;
}
.addwidget-blank {
  cursor: pointer;
  margin: auto;
  color: white;
  height: 50px;
  width: 400px;
  font-weight: bold;
  border-radius: 15px;
  padding: 10px;
  background-color: rgba(126, 179, 54, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 3px 4px 1px rgba(71, 70, 68, 0.17);
  transition: 0.5s;
}
.addwidget-blank:hover {
  background-color: #7eb336;
}
/*# sourceMappingURL=dashboard.css.map */