.nav {
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  background: #324bfc;
  height: 100vh;
  text-align: left;
  position: absolute;
  top: 0;
  -webkit-transition: left 0.75s ease;
  transition: left 0.75s ease;
  width: 100vw;
  z-index: 1;
  left: -786px;
  padding: 100px;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}

.nav.open {
  left: 0;
}

.nav.open a {
  display: block;
}

.nav a {
  display: none;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 2rem 0;
  font-weight: bold;
  letter-spacing: 0.5rem;
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

.button {
  color: white;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 50px;
  white-space: nowrap;
}

.button img {
  width: 1.3rem;
  margin-right: 1.5rem;
}

.burger {
  position: fixed;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  top: 35px;
  left: 35px;
}

.burger:focus {
  outline: none;
}

.burger div {
  width: 20px;
  height: 2px;
  background: #324bfc;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  -webkit-transform-origin: 1px;
          transform-origin: 1px;
}

.burger.open div {
  background: white;
}

.burger div:first-child {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.burger.open div:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger div:nth-child(2) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.burger.open div:nth-child(2) {
  background: transparent;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.burger div:nth-child(3) {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.burger.open div:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.settings {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-family: MuseoSans;
  font-size: 1rem;
  color: #a8aaaf;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

  @media (max-width: 575px) {.settings {
    position: absolute;
    bottom: unset
}
  }

  @media (min-width: 768px) {.settings {
    max-height: 100vh;
    max-width: 100vw;
    padding-top: 15vh;
    align-items: flex-start
}
  }

  .settings .MuiTypography-body1 {
    font-family: MuseoSans;
  }

  .settings .card {
    position: relative;
    background: #fff;
    padding: 2rem 4rem;
    margin: auto auto;
    border-radius: 0.5rem;
    box-sizing: border-box;
  }

  @media (max-width: 767px) {

  .settings .card {
      padding: 1.5rem 1rem
  }
    }

  @media (min-width: 376px) {

  .settings .card {
      margin: 1rem;
      max-width: 600px
  }
    }

  @media (min-width: 576px) {

  .settings .card {
      min-width: 80vw
  }
    }

  @media (min-width: 992px) {

  .settings .card {
      margin: 1rem;
      min-width: 610px
  }
    }

  .settings .card .back-button {
      display: -webkit-box;
      display: flex;
      flex: 1 1;
      justify-content: flex-start;
      align-items: center;
      font-size: 1rem;
      cursor: pointer;
    }

  @media (max-width: 991px) {

  .settings .card .back-button {
        font-size: 0.875rem
    }
      }

  @media (min-width: 992px) {

  .settings .card .back-button {
        display: none
    }
      }

  .settings .card .back-arrow {
      height: 20px;
      width: 20px;
    }

  .settings .card .back-text {
      margin-left: 0.8rem;
      color: #334CFF;
    }

  @media (max-width: 599px) {

  .settings .card .back-text {
        margin-left: 0.4rem;
        margin-right: 0.4rem
    }
      }

  @media (min-width: 768px) {

  .settings .card .back-text {
        font-size: 1rem
    }
      }

  .settings .card .choices {
      display: -webkit-box;
      display: flex;
      padding: 0;
      margin: 2rem 0 1rem 0;
    }

  @media (max-width: 991px) {

  .settings .card .choices {
        flex-direction: column;
        margin: 2rem 0 2.0rem 0
    }
      }

  @media (max-width: 767px) {

  .settings .card .choices {
        margin: 2rem 0 1.5rem 0
    }
      }

  @media (min-width: 991px) {

  .settings .card .choices {
        margin: 2rem 0 1.5rem 0
    }
      }

  .settings .card .choices .choice {
        flex: 1 1;
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 2px solid #c7cce0;
        border-radius: 8px;
        padding: 2rem;
        text-align: center;
        line-height: 1.5rem;
        font-weight: 500;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
      }

  .settings .card .choices .choice:hover {
          border: 2px solid #334cff;
        }

  @media (max-width: 991px) {

  .settings .card .choices .choice {
          padding: 2rem 2rem 2rem 2rem;
          flex-direction: row;
          margin: 0.5rem 0
      }
        }

  @media (max-width: 767px) {

  .settings .card .choices .choice {
          padding: 2rem 0.5rem 2rem 1.25rem;
          flex-direction: row;
          margin: 0.5rem 0
      }
        }

  @media (max-width: 575px) {

  .settings .card .choices .choice {
          padding: 1.25rem 0.8rem 1.25rem 1.25rem;
          flex-direction: row;
          margin: 0.5rem 0;
          box-sizing: border-box
      }
        }

  @media (min-width: 992px) {

  .settings .card .choices .choice {
          margin: 0 0.5rem;
          padding: 2rem 0.8rem
      }
        }

  .settings .card .choices .choice svg {
          display: block;
          color: #a8aaaf;
        }

  @media (max-width: 767px) {

  .settings .card .choices .choice svg {
            width: 54px;
            padding: 0;
            margin: -0.8rem 1.8rem 0 0rem
        }
          }

  @media (max-width: 991px) {

  .settings .card .choices .choice svg {
            width: 54px;
            padding: 0;
            margin: -0.8rem 2.5rem 0 0.5rem
        }
          }

  @media (min-width: 992px) {

  .settings .card .choices .choice svg {
            width: 54px;
            margin: 0 0 2rem 0
        }
          }

  .settings .card .choices .choice span {
          flex: 1 1;
          display: block;
          font-size: 0.9rem;
          line-height: 1.2rem;
          text-align: left;
        }

  @media (min-width: 992px) {

  .settings .card .choices .choice span {
            text-align: center
        }
          }

  .settings .card .choices .choice.active {
          border: 2px solid #334cff;
          color: #000000;
        }

  .settings .card .choices .choice.active svg {
            color: #334cff;
          }

  .settings .card .info {
      margin: 1.5rem 0 0.8rem;
      text-align: center;
      font-size: 0.85rem;
    }

  @media (min-width: 992px) {

  .settings .card .info {
        margin-top: 2rem
    }
      }

  .settings .card .info p {
        margin: auto;
        line-height: 1.5rem;
      }

  .settings .card .action {
      text-align: center;
    }

  .settings .card .action button {
        border-radius: 8px;
        background-color: #e6ebff;
        box-shadow: none;
        padding: 0.60rem 3rem;
        font-family: MuseoSans;
        font-size: 1rem;
        text-transform: capitalize;
        line-height: normal;
      }

  .settings .card .action button:not(:disabled) {
          background-color: #334cff;
          color: white;
        }

  .settings .card .action button:not(:disabled):hover {
            box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17);
          }

  .settings .card .action button:not(:disabled):active {
            background-color: #334cff;
            color: #e6ebff;
          }

  @media (max-width: 991px) {
      .settings .card .language-grid-item {
        margin-left: 2rem;
      }
    }

  .settings .header-tabs {
    display: -webkit-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .settings .header-tabs h2 {
      margin: 0px 12px;
      padding: 0px 1rem 0.625rem 1rem;
      font-weight: normal;
      font-size: 1rem;
      border-bottom: 2px solid transparent;
      color: #334cff;
      cursor: pointer;
      white-space: nowrap;
      text-align: center;
    }

  .settings .header-tabs h2.selected {
        border-bottom-color: #334cff;
        cursor: auto;
      }

  @media (max-width: 767px) {

  .settings .header-tabs h2 {
        padding: 0px 3px
    }

        .settings .header-tabs h2 .desktop-only {
          display: none;
        }
      }

  @media (min-width: 768px) {
        .settings .header-tabs h2 .mobile-only {
          display: none;
        }
      }

  @media (max-width: 575px) {

  .settings .header-tabs h2 {
        font-size: 0.875rem
    }
      }

  .settings .switch-label {
    margin: 0px;
    align-items: flex-start;
    margin-left: 30px;
  }

  .settings .switch-label p {
      font-size: 0.9rem;
      margin: 0px;
    }

  @media (max-width: 991px) {
    .settings .switch-label {
    }

    .settings .big-switch {
      margin-left: 32px;
    }
  }

  .settings .switch-control {
    align-items: flex-start;
    margin-right: 0px;
  }

  @media (max-width: 767px) {

  .settings .switch-control {
      margin-bottom: 32px
  }
    }

  .settings .language-menu-btn {
    font-family: MuseoSans;
    text-transform: none;
    background: #E6EBFF;
    border-radius: 8px;
    padding-right: 24px;
    white-space: nowrap;
  }

  .settings .language-menu-btn img {
      width: 7px;
      height: 10px;
      margin-left: 12px;
      margin-right: 12px;
    }

  .settings .language-menu-btn span {
      font-size : 14px;
      color : #334CFF;
    }

  .settings .divider {
    height: 1px; 
    width: 100%;
    background: #C7CCE0;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .settings .close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    display: none;
  }

  @media (min-width: 992px) {

  .settings .close-btn {
      display: block
  }
    }

  .settings .close-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  @media (max-width: 767px) {
    .settings .close-btn {
      top: 0.5rem;
      right: 0.5rem;
    }

    .settings .close-icon {
      width: 1rem;
      height: 1rem;
    }
  }

  @media (min-width: 992px) {

  .settings .settings-grid {
      align-items: flex-start
  }
    }

  .settings .language-settings, .settings .language-settings p {
    line-height: normal;
    font-size: 0.9rem;
    margin: 0px 0px 6px 0px;
  }

.account .card {
    padding: 2rem 2rem 1rem 2rem;
    max-width: 720px;
  }

    @media (max-width: 599px) {.account .card {
      padding: 1rem
  }
    }

    .account .card .choices {
      justify-content: center;
    }

    @media (min-width: 768px) {

    .account .card .choices {
        margin-top: 3rem
    }
      }

    .account .account-settings.choices {
      margin-top: 2rem;
      justify-content: left;
    }

    .account .account-settings .divider {
      margin-top: 1rem;
    }

    .account .account-settings button {
      text-transform: none;
      background: #e6ebff;
      border-radius: 8px;
      padding-right: 24px;
      white-space: nowrap;
    }

    .account .account-settings button span {
        font-size: 14px;
        color: #334cff;
      }

    .account .settings-grid {
    justify-content: center;
  }

    .account .switch-label {
    margin-left: 0.5rem;
  }

    .account .feature-checkmark {
    width: 1rem;
    height: 0.75rem;
    margin-right: 0.4rem;
  }

    .account .price-heading {
    font-size: 1.3rem;
    font-weight: normal;
    color: #334cff;
    text-align: center;
  }

    .account .price-heading.free {
      display: -webkit-box;
      display: flex;
      flex: 1 1;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    @media (min-width: 600px) {
  .account .price-heading.free {
        padding-left: 2.3rem;
        text-align: left;
        justify-content: flex-end;
        align-items: flex-start;
        height: 85%
    }
      }

    .account .price-heading.pro {
      margin-bottom: 0.8rem;
    }

    .account .sub-toggle-row {
    display: -webkit-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0rem;
    padding-bottom: 0px;
  }

    @media (max-width: 599px) {
    .account .switch-control {
      margin-bottom: 0px;
    }

    .account .sub-toggle-row {
      margin-bottom: 0;
    }
  }

    .account .price-section.free {
    padding-bottom: 2rem;
  }

    @media (max-width: 599px) {
  .account .price-section.free {
      padding-left: 2rem;
      padding-right: 2rem
  }
    }

    @media (min-width: 600px) {
  .account .price-section.free {
      padding-left: unset;
      padding-right: 1rem;
      border-right: 2px solid #d9e1ff;
      padding-bottom: 4rem
  }
    }

    @media (min-width: 768px) {
  .account .price-section.free {
      padding-right: 2rem
  }
    }

    .account .price-section.pro {
    padding: 0 2rem;
  }

    @media (min-width: 600px) {
  .account .price-section.pro {
      padding: 0 1rem
  }
    }

    @media (min-width: 768px) {
  .account .price-section.pro {
      padding: 0 4rem
  }
    }

    .account .price-section.pro button {
      border-radius: 11px;
      display: block;
      padding: 0.6rem 2rem;
      line-height: normal;
      margin: 1.5rem auto auto auto;
    }

    .account .price-section.pro .feature {
      color: black;
    }

    .account .price-section .divider {
    background: #f1f3ff;
    height: 2px;
  }

    @media (min-width: 600px) {
  .account .price-heading-section {
      height: 120px
  }
    }

    .account .price-features {
    padding-left: 0.7rem;
  }

    .account .feature-section {
    margin: 0.2rem 0;
  }

    .account .feature {
    font-size: 0.875rem;
    white-space: nowrap;
  }

    .account .vertical-divider {
    width: 2px;
    background: #d9e1ff;
  }

    .account .price {
    font-size: 0.875rem;
    color: #000000;
    padding: 0.4rem 0.8rem;
    line-height: normal;
    text-align: center;
  }

    .account .price.discount {
      text-decoration: line-through;
      background: #60fc80;
    }

    .account .pricing-pro {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
  }

    .account .pricing-pro .discount {
      margin: auto;
    }

    .account #braintree-purchase-msg {
    color: red;
    font-size: 0.9rem;
  }

@font-face {
  font-family: 'MuseoSans';
  src: url(/static/media/MuseoSans_500.62c01351.otf);
  font-weight: normal;
  font-style: normal;
}

.App {
  display: -webkit-box;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  font-family: MuseoSans;
  font-size: 14px;
  line-height: 27px;
  height: 100%;
}

.editor-area {
  height: calc(100% - 60px);
  min-height: 500px;
  word-spacing: 0.5px;
}

@media (min-width: 769px) {

.editor-area {
    padding-top: 70px
}
  }

.editor-area div > span > span > span span[contenteditable='false'] {
  color: #bdc4db;
  opacity: 1 !important;
  vertical-align: baseline !important;
}

button.editor-button {
  border-radius: 8px;
  background-color: #e6ebff;
  color: #334cff;
  box-shadow: none;
  padding: 6px 20px;
  font-family: MuseoSans;
  text-transform: capitalize;
  margin-right: 15px;
}

button.editor-button:hover {
  background-color: #e6ebff;
  color: #334cff;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17);
}

button.editor-button.active {
  background-color: #334cff;
  color: #e6ebff;
}

button.editor-button > span > img {
  width: 0.7rem;
  margin-right: 8px;
}

button.editor-button > span > img.docs {
  width: 0.85rem;
  margin-right: 8px;
}

div.editor-richtext {
  padding: 5px 0 10px 0;
  margin: 0 !important;
  border: none;
  position: fixed;
  bottom: 0;
  background: #fff;
  left: calc(50% - 450px);
  width: 400px;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
}

div.editor-richtext span {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.editor-richtext span span {
  font-size: 20px;
}

.editor-title {
  color: #000;
  font-size: 21px;
  border: none;
  padding-bottom: 40px;
  padding-left: 0;
  outline: none;
  width: 100%;
  padding-top: 90px;
  height: 30px;
}

.editor-title::-webkit-input-placeholder {
  color: #bdc4db;
}

.editor-title::-moz-placeholder {
  color: #bdc4db;
}

.editor-title:-ms-input-placeholder {
  color: #bdc4db;
}

.editor-title::-ms-input-placeholder {
  color: #bdc4db;
}

.editor-title::placeholder {
  color: #bdc4db;
}

.editor-container {
  width: 640px;
  height: auto;
  padding: 50px;
  justify-content: space-between;
  flex-direction: column;
  display: -webkit-box;
  display: flex;
  box-sizing: border-box;
  align-items: flex-end;
}

.editor {
  width: 400px;
  height: 100%;
}

@media (min-width: 1440px) {
}

@media (min-width: 1140px) and (max-width: 1439px) {
}

@media (min-width: 640px) and (max-width: 1280px) {
  .editor-container {
    width: 50%;
  }
}

@media (min-width: 769px) and (max-width: 1139px) {
  .App {
    font-size: 13px !important;
    line-height: 25px !important;
  }

  button.editor-button {
    font-size: 13px !important;
  }

  div.editor-richtext {
    left: calc(50% - 380px);
    width: 330px;
  }

  div.editor-richtext span {
    width: 40px;
    height: 40px;
    margin-left: 0;
  }

  div.editor-richtext span span {
    font-size: 23px;
  }

  .editor {
    width: 330px;
  }
}

@media (max-width: 768px) {
  .App {
    font-size: 16px !important;
    line-height: 30px !important;
  }

  .editor-container {
    width: 100%;
    padding: 25px 90px 375px 115px;
  }

  .editor {
    width: 100%;
  }

  .editor-area {
    height: 100%;
    min-height: auto;
  }

  div.editor-richtext {
    left: 100px;
    width: 100%;
    top: 0;
    height: 65px;
    padding: 0;
    display: -webkit-box;
    display: flex;
    align-items: flex-end;
  }

  div.editor-richtext span {
    width: 40px;
    height: 40px;
    margin-left: 0;
    margin-right: 5px;
  }

  div.editor-richtext span span {
    font-size: 23px;
  }
}

@media (min-width: 320px) and (max-width: 576px) {
  .editor-title {
    display: none;
  }

  .editor-container {
    width: 100%;
    padding: 100px 36px 120px 36px;
  }

  .App {
    font-size: 15px !important;
  }

  div.editor-richtext {
    left: 80px;
    height: 60px;
  }

  div.editor-richtext span {
    width: calc((100% - 130px) / 9);
    height: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  div.editor-richtext span span {
    font-size: 23px;
  }
}

.placeholder {
  color: #bdc4db;
}

.annotation-underline {
  border-bottom: 2px solid #334cff;
  color: #334cff;
}

.annotation-test {
  border-bottom: 2px solid black;
  color: white;
  background: black;
}

.inline-divider {
  flex: 1 1;
  height: 2px;
  background: #b1b9dd;
}

@font-face {
  font-family: 'MuseoSans';
  src: url(/static/media/MuseoSans_500.62c01351.otf);
  font-weight: normal;
  font-style: normal;
}

.correction {
  width: 400px;
}

.correction-container {
    overflow: auto;
    width: 640px;
    border-left: 2px solid #f1f3ff;
    height: 100vh;
    padding: 50px;
    position: fixed;
    left: 50%;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }

.correction-buttons {
    padding-bottom: 90px;
    white-space: nowrap;
  }

.correction-buttons > button {
      border-radius: 8px;
      background-color: #e6ebff;
      color: #334cff;
      box-shadow: none;
      padding: 6px 20px;
      font-family: MuseoSans;
      text-transform: capitalize;
      margin-right: 15px;
    }

.correction-buttons > button:hover {
        background-color: #e6ebff;
        color: #334cff;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17);
      }

.correction-buttons > button.active {
        background-color: #334cff;
        color: #e6ebff;
      }

.correction-buttons > button > span > img {
        width: 0.7rem;
        margin-right: 8px;
      }

.correction-buttons > button > span > img.docs {
          width: 0.85rem;
          margin-right: 8px;
        }

.correction-empty {
    color: #bdbdbd;
  }

.correction-empty > img {
      width: 1.1rem;
      margin-right: 5px;
    }

.correction-nav {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: flex;
    width: 100%;
    flex: 1 0;
    justify-content: flex-start;
    margin: 0;
    height: 30px;
    padding-bottom: 40px;
  }

.correction-nav li {
      cursor: pointer;
      width: 18%;
      text-align: center;
      border-bottom: 2px solid #d9e1ff;
      color: #d9e1ff;
      margin-right: 3%;
      -webkit-transition: border-bottom-color 0.3s ease, color 0.3s ease;
      transition: border-bottom-color 0.3s ease, color 0.3s ease;
    }

.correction-nav li.active {
        width: 18%;
        text-align: center;
        border-bottom: 2px solid #334cff;
        color: #334cff;
      }

.correction-word {
    background-color: white;
    color: #324bfc;
    padding: 5px 2px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

.correction-word:hover {
      background-color: #324bfc;
      color: white;
    }

.correction-removed-word {
    position: absolute;
    top: -5px;
    left: 0;
    white-space: nowrap;
    background-color: #cccccc;
    color: transparent;
    display: inline-block;
    line-height: 18px;
    padding: 5px 2px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, width 0.1s ease;
    transition: color 0.3s ease, background-color 0.3s ease, width 0.1s ease;
  }

.correction-removed-word.open {
      background-color: #fc3232;
      width: unset;
      color: white;
    }

.correction-removed-marker {
    position: relative;
    display: inline-block;
    width: 10px;
    vertical-align: text-top;
  }

.correction-spinner {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 3px solid #334cff;
    border-radius: 50%;
    border-top-color: #e6ebff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: fixed;
    left: calc(50% - 40px);
    top: 200px;
  }

.correction-block {
    color: #bdbdbd;
    word-spacing: 0.5px;
  }

.correction-block-line {
      display: -webkit-box;
      display: flex;
      height: 1px;
      width: 100%;
      background: #d9e0ff;

      margin-top: 50px;
      margin-bottom: 40px;
    }

.correction-block-apply {
      color: #334cff;
      cursor: pointer;
      display: -webkit-box;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 16px;
      padding-right: 16px;
    }

.correction-block-apply .material-icons {
        font-size: 30px;
      }

.correction-block-apply :not(.material-icons) {
        font-size: 16px;
      }

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@media (min-width: 1440px) {
  .correction-buttons > button .text-shot {
    display: none;
  }

  .correction-buttons > button .text-long {
    display: block;
  }
}

@media (min-width: 1140px) and (max-width: 1439px) {
  .correction-buttons > button .text-shot {
    display: none;
  }

  .correction-buttons > button .text-long {
    display: block;
  }
}

@media (min-width: 640px) and (max-width: 1280px) {
  .correction-container {
    width: calc(50% - 100px);
  }
}

@media (min-width: 769px) and (max-width: 1139px) {
  .correction {
    width: 330px;
    font-size: 13px !important;
  }

  .correction-container {
    width: 50%;
  }

  .correction-buttons {
    display: -webkit-box;
    display: flex;
    flex-direction: row;
  }

  .correction-buttons > button .text-shot {
    display: block;
  }

  .correction-buttons > button .text-long {
    display: none;
  }
}

.corrections-count {
  position: fixed;
  bottom: 20px;
  width: 80%;
}

.corrections-bar-wrapper {
  width: 100%;
  height: 3px;
  border-radius: 16px;
  background: #d9e1ff;
  position: relative;
}

.corrections-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #334cff;
  border-radius: 16px;
}

.corrections-count-text {
  padding-top: 0.5rem;
  color: #a3b8e5;
}

.corrections-used {
  background: #fff929;
  color: #334cff;
  padding: 4px 4px;
}

@font-face {
  font-family: 'MuseoSans';
  src: url(/static/media/MuseoSans_500.62c01351.otf);
  font-weight: normal;
  font-style: normal;
}

@media (max-width: 768px) {
  .correction-container {
    overflow: auto;
    background: #f3f6ff;
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    min-height: 80px;
  }

  .correction {
    font-size: 16px !important;
    width: 100%;
  }

  .correction-empty {
    color: #bdbdbd;
  }

  .correction-empty > img {
    width: 1.1rem;
    margin-right: 5px;
  }

  .carousel .slide {
    background: none !important;
    text-align: left !important;
  }

  .carousel ul.control-dots {
    margin: 0;
    padding: 0;
  }

  .carousel .control-dots li.dot {
    -webkit-transition: opacity 0.25s ease-in;
    transition: opacity 0.25s ease-in;
    opacity: 0.3;
    box-shadow: none;
    background: #324bfc;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    margin: 0 8px;
  }

  .correction-word {
    background-color: #f3f6ff;
    color: #324bfc;
    padding: 5px 2px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .correction-word:hover {
    background-color: #324bfc;
    color: white;
  }

  .correction-removed-word {
    position: absolute;
    top: -5px;
    left: 0;
    white-space: nowrap;
    background-color: #cccccc;
    color: transparent;
    display: inline-block;
    line-height: 18px;
    padding: 5px 2px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, width 0.1s ease;
    transition: color 0.3s ease, background-color 0.3s ease, width 0.1s ease;
  }

    .correction-removed-word.open {
      background-color: #fc3232;
      width: unset;
      color: white;
    }

  .correction-removed-marker {
    position: relative;
    display: inline-block;
    width: 10px;
    vertical-align: text-top;
  }

  .correction-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #334cff;
    border-radius: 50%;
    border-top-color: #e6ebff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: fixed;
    left: calc(50% - 20px);
    top: 30px;
  }

  @keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  .correction-block {
    color: #c1c8ea;
    word-spacing: 0.5px;
    margin-bottom: 40px;
    line-height: 30px !important;
    max-height: calc(30px * 6);
    overflow: scroll;
  }

  .correction-block-apply .material-icons {
    font-size: 23px;
    padding-left: 0px;
    padding-right: 8px;
  }

  .correction-block-apply {
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #334cff;
    height: 36px;
    border-radius: 7px;
    font-size: 14px;
    margin-bottom: 35px;
    white-space: nowrap;
  }
}

@media (min-width: 321px) and (max-width: 576px) {
  .correction-container {
    padding: 30px 50px 20px 50px;
    min-height: 80px;
  }

  .correction {
    font-size: 15px !important;
    width: 100%;
  }

  .correction-block {
    margin-bottom: 40px;
    line-height: 27px !important;
    max-height: calc(27px * 4);
    overflow: scroll;
  }

  .correction-block-apply {
    font-weight: 500;
    margin-bottom: 25px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/* Unobtrusive pulsing dots shown while a back-translation is loading. */

.translation-loading {
  display: -webkit-inline-box;
  display: inline-flex;
  align-items: center;
  grid-gap: 5px;
  gap: 5px;
  height: 1em;
}

.translation-loading span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #bdc4db;
  display: inline-block;
  -webkit-animation: translation-loading-pulse 1s infinite ease-in-out both;
          animation: translation-loading-pulse 1s infinite ease-in-out both;
}

.translation-loading span:nth-child(2) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}

.translation-loading span:nth-child(3) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}

@-webkit-keyframes translation-loading-pulse {
  0%,
  80%,
  100% {
    opacity: 0.25;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes translation-loading-pulse {
  0%,
  80%,
  100% {
    opacity: 0.25;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

div#root {
  margin: 0;
  
  padding: 0;
  width: 100vw;
  height: 100vh;
}

.gramara-auth {
  background-color: #334cff;
  height: 100vh;
  padding: 120px 1rem 0;
  box-sizing: border-box;
}

.gramara-auth ul.firebaseui-idp-list {
    margin: 0 !important;
  }

.gramara-auth svg.logo {
    display: block;
    margin: 0 auto;
    padding-bottom: 50px;
  }

.card {
  background: #fff;
  max-width: 400px;
  padding: 3rem 0;
  margin: 0 auto;
  border-radius: 0.5rem;
}

.card h1 {
    text-align: center;
    margin: 0 0 3rem 0;
  }


/*# sourceMappingURL=main.45417927.chunk.css.map*/