.richText {
    position: relative;
    width: 100%;
    border-radius: 7px;
  
    .richText-form {
      font-family: Calibri, Verdana, Helvetica, sans-serif;
  
      label {
        display: block;
        padding: 10px 15px;
      }
  
      input {
        &[type="text"], &[type="file"], &[type="number"] {
          padding: 10px 15px;
          border: #{$border} solid 1px;
          min-width: 200px;
          width: 100%;
          border-radius: 5px;
          outline: 0;
        }
      }
  
      select {
        padding: 10px 15px;
        border: #{$border} solid 1px;
        min-width: 200px;
        width: 100%;
        border-radius: 5px;
        outline: 0;
        cursor: pointer;
      }
  
      button {
        margin: 10px 0;
        padding: 0.375rem 0.75rem;
        background-color: #{$primary};
        border: none;
        color: #{$default-color};
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
      }
    }
  
    .richText-toolbar {
      min-height: 20px;
      border-block-end: 0;
  
      ul {
        margin-block-end: 0;
        padding-inline-start: 0;
        border-block-end: #{$border} solid 1px;
  
        li {
          float: $float-start;
          display: block;
          list-style: none;
  
          a {
            display: block;
            padding: 10px 15px;
            cursor: pointer;
            -webkit-transition: background-color 0.4s;
            -moz-transition: background-color 0.4s;
            transition: background-color 0.4s;
            color: #{$default-color};
  
            .fe, .fa, .fas, .far, svg {
              pointer-events: none;
            }
  
            .richText-dropdown-outer {
              display: none;
              position: absolute;
              inset-block-start: 0;
              inset-inline-start: 0;
              inset-inline-end: 0;
              inset-block-end: 0;
              background-color: #{$bg-hover};
              cursor: default;
  
              .richText-dropdown {
                position: relative;
                display: block;
                margin: 3% auto 0;
                background-color: rgb($white);
                border: #{$border} solid 1px;
                min-width: 100px;
                width: 300px;
                max-width: 90%;
                border-radius: 5px;
                -webkit-box-shadow: 0px 16px 18px #{$shadow-color};
                -moz-box-shadow: 0px 16px 18px #{$shadow-color};
                box-shadow: 0px 16px 18px #{$shadow-color};
  
                .richText-dropdown-close {
                  position: absolute;
                  inset-block-start: 10px;
                  inset-inline-end: 10px;
                  background: rgb($white)0;
                  color: #{$color};
                  cursor: pointer;
                  font-size: 16px;
                  text-align: center;
                  width: 25px;
                  border-radius: 5px;
                }
              }
  
              ul.richText-dropdown {
                list-style: none;
  
                li {
                  display: block;
                  float: none;
                  font-family: Calibri, Verdana, Helvetica, sans-serif;
  
                  a {
                    display: block;
                    padding: 10px 15px;
                    border-block-end: #{$border} solid 1px;
  
                    &:hover {
                      background-color: rgb($white);
                    }
                  }
  
                  &.inline {
                    margin: 5px;
                    float: $float-start;
                    padding: 6px;
  
                    a {
                      display: block;
                      padding: 0;
                      margin: 0;
                      border: none;
                      -webkit-border-radius: 50%;
                      -moz-border-radius: 50%;
                      border-radius: 50%;
                      -webkit-box-shadow: 0 0 10px 0 #999;
                      -moz-box-shadow: 0 0 10px 0 #999;
                      box-shadow: 0 0 10px 0 #999;
  
                      span {
                        display: block;
                        height: 30px;
                        width: 30px;
                        -webkit-border-radius: 50%;
                        -moz-border-radius: 50%;
                        border-radius: 50%;
                      }
                    }
                  }
                }
              }
  
              div.richText-dropdown {
                padding: 10px 15px;
              }
            }
  
            &:hover {
              background-color: rgb($white);
            }
          }
  
          &[data-disable="true"] {
            opacity: 0.1;
  
            a {
              cursor: default;
            }
          }
  
          &:not([data-disable="true"]).is-selected .richText-dropdown-outer {
            display: block;
          }
        }
  
        &:after {
          display: block;
          content: "";
          clear: both;
        }
      }
  
      &:last-child {
        font-size: 12px;
      }
  
      &:after {
        display: block;
        clear: both;
        content: "";
      }
    }
  
    .richText-editor {
      padding: 20px;
      background-color: rgb($white);
      border-inline-start: rgb($white) solid 2px;
      font-family: Calibri, Verdana, Helvetica, sans-serif;
      height: 300px;
      outline: none;
      overflow-y: scroll;
      overflow-x: auto;
  
      ul, ol {
        margin: 10px 25px;
      }
  
      table {
        margin: 10px 0;
        border-spacing: 0;
        width: 100%;
  
        td, th {
          padding: 10px;
          border: #{$border} solid 1px;
        }
      }
  
      &:focus {
        border-inline-start: transparent solid 2px;
      }
    }
  
    .richText-initial {
      margin-block-end: -4px;
      padding: 10px;
      background-color: #2a2e3f;
      border: none !important;
      color: #38cab3;
      font-family: Monospace, Calibri, Verdana, Helvetica, sans-serif;
      max-width: 100%;
      min-width: 100%;
      width: 100%;
      min-height: 400px;
      height: 400px;
      outline: none;
    }
  
    .richText-help {
      float: $float-end;
      display: block;
      padding: 10px 15px;
      cursor: pointer;
    }
  
    .richText-undo, .richText-redo {
      float: $float-end;
      display: block;
      padding: 10px 15px;
      border-inline-end: #{$border} solid 1px;
      cursor: pointer;
    }
  
    .richText-undo.is-disabled, .richText-redo.is-disabled {
      opacity: 0.4;
    }
  
    .richText-help-popup {
      a {
        color: #3498db;
        text-decoration: underline;
      }
  
      hr {
        margin: 10px auto 5px;
        border: none;
        border-block-start: #{$border} solid 1px;
      }
    }
  
    .richText-list.list-rightclick {
      position: absolute;
      background-color: #{$default-color};
      border-inline-end: #{$border} solid 1px;
      border-block-end: #{$border} solid 1px;
  
      li {
        padding: 5px 7px;
        cursor: pointer;
        list-style: none;
      }
    }
  
    border: #{$border} solid 1px;
    background-color: rgb($white) !important;
  
    .richText-toolbar ul li a {
      border-inline-end: rgba(156, 162, 161, 0.2) solid 1px;
    }
  }