.wrapper em {
    color: unset;
  }
  
  .text_editor a {
    color: var(--text-blue) !important;
  }
  
  .text_editor a * {
    color: var(--text-blue) !important;
  }
  
  .text_editor p {
      font-size: 1.125rem;
  }
  
  .text_editor ul li {
      padding-bottom: 0.3rem;
  }
  
  .text_editor > table:only-child {
      /*height: 100%;*/
  }
  
  .text_editor table{
      width: 100%;
  }

  .text_editor img {
    height: fit-content;
    width: fit-content;
  }

.text_editor span{
	font-size: unset;
}

  /* Цветовые темы */

  /* Белый фон черный текст */

  .text_editor--white {
    background: #FFF;
    padding: 1.25rem;
  }
  .text_editor--white p {
    color: var(--text);
  }

  /* Белый фон синий текст */

  .text_editor--white__text_blue {
    background: #FFF;
    padding: 1.25rem;
  }

  .text_editor--white__text_blue p{
    color: var(--text-blue);
  }

  /* Голубой фон синий текст */
  
  .text_editor--light_blue {
      background: #D9E8FF;
      padding: 1.25rem;
  }

  .text_editor--light_blue p{
      color: var(--text-blue);
  }

  /* Голубой фон черный текст */
  
  .text_editor--light_blue__text_black {
      background: #D9E8FF;
      padding: 1.25rem;
  }

  .text_editor--light_blue__text_black {
      color: var(--text);
  }


  /* Синий фон белый текст */

  .text_editor--blue{
      background: #4370B7;
      padding: 1.25rem;
  }

  .text_editor--blue p{
      color: var(--text-white) !important;
  }

  /* Синий фон чёрный текст */

  .text_editor--blue__text_black {
      background: #4370B7;
      padding: 1.25rem;
  }

  .text_editor--blue p{
      color: var(--text);
  }



  
  .text_editor--round{
      border-radius: 0.9375rem;
  }

  .text_editor table{
    border-style: unset !important;
  }
