.badwords-div {
  position: absolute;
  bottom: 60px;
  left: -20px;
  display: none;
  background-image: linear-gradient(to right, rgb(209, 36, 225), rgb(54, 54, 54));
  padding: 1px 0px 0px 1px;
  border-radius: 8px;
  box-shadow: 10px 10px 30px rgb(0, 0, 0);
  animation: vanish 0.15s;
}

.badwords-div-inner {
  color: white;
  background-image: linear-gradient(to right, black);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 55px;
  gap: 15px;
  border-radius: 8px;
}

.badwords-div-inner span {
  color: white;
  background-image: linear-gradient(to right, black);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px white;
  border-radius: 8px;
  padding: 0 8px;
}

.js-badwords-div-visible {
  display: flex;
  animation: appear 0.15s ease-in;
}


/* styles for the closing shell check  */


.closing-shell-check {
  background-image: linear-gradient(to left, rgb(209, 36, 225), rgb(54, 54, 54));
  position: absolute;
  top: 40px;
  right: -20px;
  display: none;
  height: 50px;
  padding: 1px 1px 0px 0px;
  border-radius: 8px;
  box-shadow: -15px 10px 30px rgb(0, 0, 0);
  animation: vanish 0.15s;
}

.closing-shell-check-inner {
  color: white;
  background-image: linear-gradient(to right, black);
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 8px;
}

.js-closing-shell-check-visible {
  display: flex;
  animation: appear 0.15s ease-in;
}


@keyframes appear {
  from {
    display: none;
    opacity: 0;
  }

  to {
    display: flex;
    opacity: 1;
  }
}

@keyframes vanish {
  from {
    display: flex;
    opacity: 1;
  }

  to {
    display: none;
    opacity: 0;
  }
}