@import url(https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap);
.b-header--container {
  background-color: var(--color-primary);
}

.b-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--height-header);
  margin: 0 15vw;
}

.b-header--title {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
}
.b-header--title:visited {
  text-decoration: none;
  color: white;
}

.b-nav--item {
  margin-left: 2rem;
  text-decoration: none;
  color: white;
}

.b-nav--item_practice {
  font-size: 1rem;
  font-weight: 600;
}

.b-nav--button_logout {
  border: none;
  background-color: var(--color-primary);
  font-size: 0.9rem;
}

@media screen and (max-width: 576px) {
  .b-header {
    justify-content: center;
  }
}

@media screen and (min-width: 577px) and (max-width: 768px) {
  .b-header {
    margin: 0 2vw;
  }
    
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-header {
    margin: 0 10vw;
  }
}
.b-button--container {
  position: absolute;
  width: 60px;
  height: 64px;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: rgba(0, 0, 0, 0.7);
}
.b-nav--img-button__close {
  position: absolute;
  right: 1rem;
  width: 12px;
  height: 12px;
  transform: translate(-5px, -11px);
  animation: appear-button 0.4s forwards;
}
.b-nav--img-button__menu {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  transform: translate(-0.6rem, -0.6rem);
  filter: invert(1);
}

@keyframes appear-button {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 576px) {
  .b-button--container {
    display: none;
  }
}
.b-nav--container {
  width: inherit;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.b-nav--item {
  text-decoration: none;
  color: white;
  font-weight: 400;
  cursor: pointer;
  font-size: 1.2rem;
  outline: none;
}
.b-nav--item:hover {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes appear-text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    width: 0;
    height: 0;
    transform: translate(5vw, -6rem);
  }
  30% {
    opacity: 1;
    transform: translate(5vw, -6rem)
  }
  100% {
    width: 40vw;
    height: 10rem;
    opacity: 1;
    transform: translate(0);
  }
}

@media screen and (max-width: 576px) {
  .b-nav--container {
    position: absolute;
    flex-direction: column;
    top: 0.5rem;
    right: 0.2rem;
    width: 40vw;
    padding: 26px 16px 8px;
    border-radius: 0.2rem;
    background-color: white;
    opacity: 0;
    animation: appear 150ms forwards;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  }
  .b-nav__display-none {
    display: none;
  }
  .b-nav--item {
    padding: 0.5rem 0;
    margin: 0;
    color: var(--color-text);
    font-weight: 500;
  }
  .b-nav--item:hover {
    color: black;
  }
}

@media (min-width: 576px) {
  .b-nav--container {
    display: flex;
  }
}
.b-loading--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
}

.b-loading--title {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 5rem;
}

@media screen and (max-width: 470px) {
  .b-loading--title {
    font-size: 3rem;
  }
}
.b-button-secondary {
  height: 3rem;
  width: 10rem;
  border-radius: 1rem;
  border: solid 2px var(--color-border);
  background-color: white;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.b-button-secondary:disabled {
  opacity: 0.7;
}

@media screen and (max-width: 420px) {
  .b-button-secondary {
    width: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .b-button-secondary {
    height: 2.3rem;
    border-radius: 0.7rem;
  }
}
.b-button-primary {
  width: 21rem;
  height: 3rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 1rem;
  background-color: coral;
  cursor: pointer;
}

.b-button-primary:disabled {
  background-color: white;
  color: var(--color-text);
  opacity: 0.7;
  border: solid 2px var(--color-border)
}

@media screen and (max-width: 768px) {
  .b-button-primary {
    height: 2.5rem;
    border-radius: 0.8rem;
  }
}
.b-welcome--screen-animation {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-primary);
  animation: go-up-screen 500ms 1000ms forwards;
  z-index: 1;
}

@keyframes go-up-screen {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes go-up-header {
  0% {
    scale: 2.5;
    top: calc(50% - 2rem);
  }

  66% {
    scale: 2.5;
    top: calc(50% - 2rem);
  }

  100% {
    scale: 1;
    top: 0;
  }
}

.b-welcome-header {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  font-size: 2rem;
  font-weight: 500;
  z-index: 2;
  animation: go-up-header 1500ms forwards;
  position: absolute;
  width: 100vw;
  top: calc(50% - 2rem);
  scale: 2.5;
}

.b-welcome-header-title {
  text-align: center;
  padding: 0 5px;
  max-width: 500px;
  box-sizing: content-box;
}

.b-welcome--main {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: calc(100vh - 8rem); */
  margin: 0 15vw;
  text-align: center;
}

.b-welcome--main h1 {
  margin: 22vh 0 0 0;
  font-size: 2.5rem;
}

.b-welcome--main h2 {
  margin-top: 7vh;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.b-welcome--main p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.b-welcome-actions {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 3vh;
}

.b-welcome-actinons--start {
  margin-right: 2rem;
}

.b-welcome-actinons--login {
  margin-left: 2rem;
}

.b-welcome-actions--start-button {
  width: 21rem;
}

.b-welcome-actinons--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-bottom: 3rem;
}

.b-welcome-actinons--item>h4 {
  font-weight: 500;
  font-size: 1.3rem;
}

.b-welcome--footer {
  margin: 3vh 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 470px) {
  @keyframes go-up-header {
    0% {
      scale: 1.5;
      top: calc(50% - 2rem);
    }

    66% {
      scale: 1.5;
      top: calc(50% - 2rem);
    }

    100% {
      scale: 1;
      top: 0;
    }
  }
}

@media screen and (max-width: 768px) {
  .b-welcome--main {
    margin: 0 2vw;
  }

  .b-welcome--main h1 {
    margin-top: 17vh;
    font-size: 2rem;
  }

  .b-welcome-actions--start-button {
    width: 10rem;
    height: 2.5rem;
  }

  .b-welcome-actinons--item {
    height: 160px;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .b-welcome-actinons--start {
    margin-right: 2vw;
  }

  .b-welcome-actinons--login {
    margin-left: 2vw;
  }

  .b-welcome-actinons--item>h4 {
    margin-bottom: 0.5rem;
  }

  .b-welcome--footer {
    margin-bottom: 2vh;
  }
}
.b-input {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: rgb(50, 50, 50);
  border: solid 2px rgba(180, 180, 180, 0.5);
  border-radius: 1rem;
  padding: 0.5rem;
  resize: none;
  background-color: var(--backgroud-textarea);
  outline: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.b-input::placeholder {
  color: rgb(130, 130, 130);
}
.b-login-form--container {
  height: 10rem;
  display: flex;
  flex-direction: column;
}

.b-login-form--input-container {
  height: 2.5rem;
}
.b-login-form--input {
  color: rgb(223, 52, 52);
  margin-left: 0.5rem;
}
.b-login-form--button-container {
  margin-top: 1rem;
}

.b-login--container {
  margin: 0 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: appear-view-transition 300ms forwards;
}

.b-login--title {
  font-size: 2rem;
  margin-top: 20vh;
  text-align: center;
}
.b-login--subtitle {
  margin-bottom: 3rem;
  font-weight: 500;
  text-align: center;
}

.b-login--message {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .b-login--container {
    margin: 0 5vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-login--container {
    margin: 0 15vw;
  }
}
.b-form-authentication--container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15vw;
}

.b-form-authentication--title {
  font-size: 2rem;
  text-align: center;
  margin-top: 20vh;
}
.b-form-authentication--subtitle {
  text-align: center;
  margin-top: 3rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .b-form-authentication--container {
    margin: 0 5vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-form-authentication--container {
    margin: 0 15vw;
  }
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.b-pairs-form {
  display: grid;
  grid-template-columns: auto auto 6rem;
  grid-column-gap: 1rem;
  height: 6rem;
  width: 100%;
}

.b-pairs-form--button {
  width: 6rem;
  background-color: var(--color-primary);
  border-radius: 1rem;
  border: none;
}

.b-pairs-form--img-button {
  height: 2rem;
  width: 2rem;
  filter: invert(1);
}

.b-pairs-form--button:disabled {
  opacity: 0.5;
}

@media screen and (max-width: 420px) {
  .b-pairs-form {
    grid-template-columns: 1fr 4rem;
  }
}

@media screen and (min-width: 421px) and (max-width: 768px) {
  .b-pairs-form {
    grid-template-columns: 1fr 6rem;
  }
}

@media screen and (max-width: 768px) {
  .b-pairs-form {
    grid-template-areas: "input1 button""input button";
    grid-template-rows: 6rem 6rem;
    grid-column-gap: 7px;
    height: 100%;
  }
  .b-pairs-form:first-child {
    grid-area: input1;
  }
  .b-pairs-form:nth-child(2) {
    grid-area: input;
  }
  .b-pairs-form--button {
    grid-area: button;
    height: 185px;
    width: 100%;
  }

  .b-pairs-form--input-container {
    margin-bottom: 7px;
    width: 100%;
  }
}
.b-list-edit-delete--container {
  padding: 0;
  width: 100%;
}

.b-list-edit-delete {
  display: grid;
  grid-template-columns: 1fr 1fr fit-content(3rem) fit-content(3rem);
  grid-column-gap: 1rem;
  align-items: center;
  list-style: none;
  margin-bottom: 0.5rem;
}

/* .b-list-edit-delete--text-container{
  width: max-content;
} */
.b-list-edit-delete--text {
  border-bottom: solid 2px var(--color-border);
  overflow: hidden;
  white-space: nowrap;
}

.b-list-edit-delete--button {
  background-color: white;
  width: 2.5rem;
  height: 2.5rem;
  border: solid 2px var(--color-border);
  border-radius: 0.5rem;
}

.b-list-edit-delete--button-icon {
  width: 1rem;
  height: 1rem;
  filter: invert(0.3);
}
.b-set-pairs-container {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.b-set-pairs--list-container {
  min-height: 7rem;
  width: 100%;
}

.b-main--footer {
  position: sticky;
  bottom: 0;
  height: 7rem;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  transform: translateX(15vw);
  z-index: 1;
}

.b-footer-hr {
  width: 98vw;
  margin-bottom: 1.5rem;
  color: var(--color-border);
}

.b-footer--buttom-save {
  width: 21rem;
  height: 3rem;
  font-size: 1rem;
  font-weight: bolder;
  border: none;
  border-radius: 1rem;
  color: white;
  background-color: var(--color-primary);
}

.b-footer--buttom-save:disabled {
  border: solid 2px var(--color-border);
  background-color: white;
  color: var(--color-text);
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .b-footer-hr {
    margin-bottom: 0.5rem;
  }
  .b-main--footer {
    transform: translateX(2vw);
    height: 3.8rem;
  }
  .b-footer--buttom-save {
    height: 2.3rem;
    border-radius: 0.7rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-main--footer {
    transform: translateX(10vw);
  }
}
.b-select--dropdown {
  font-family: 'Fredoka', sans-serif;
  background-color: white;
  border: solid 2px rgba(180, 180, 180, 0.5);
  border-radius: 0.5rem;
  padding: 5px;
  width: inherit;
  font-size: 1rem;
}
.b-main {
  margin: 0 15vw;
  animation: appear-view-transition 300ms forwards;
}

.b-main-relative-position-container {
  box-sizing: border-box;
  min-height: calc(100vh - 11rem);
  padding-top: 3rem;
}

.b-main--title {
  margin: 0 0 3rem 0;
}

.b-main--language-dropdown-container {
  display: flex;
  justify-content: end;
  margin-bottom: 1rem;
}

.b-main--language-dropdown_size {
  width: 10rem;
}

@media screen and (max-width: 768px) {
  .b-main {
    margin: 0 2vw;
  }

  .b-main-relative-position-container {
    padding-top: 1rem;
  }

  .b-main--title {
    margin: 1.2rem 0 1.2rem 0;
    font-size: 1.5rem;
    font-weight: 600;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-main {
    margin: 0 10vw;
  }
}
.b-header-pairs-list--container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b-header-pairs-list--cbox {
  margin: 0 7px;
}
.b-header-pairs-list--cbox-text {
  margin-left: 6px;
  font-size: 1.1rem;
}
.b-header-pairs-list--options-dropdown-container {
  width: 10rem;
}

@media screen and (max-width: 420px) {
  .b-header-pairs-list--options-dropdown-container {
    width: 8rem;
  }
}


.b-pairs-list-table-container {
  width: 100%;
  overflow: auto;
  height: inherit;
}

.b-pairs-list-table {
  width: 100%;
  font-size: 1.1rem;
}

.b-pairs-list-table thead {
  position: sticky;
  top: 0;
  background: white;
}

.b-table--checkbox-container {
  width: 1rem;
}

.b-table--row:nth-child(odd) {
  background-color: rgba(200, 200, 200, 0.3);
}

.b-table--text-container {
  padding: 0.4rem;
}
.b-modal-pairs-form--container {
  position: absolute;
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  background-color: rgba(50, 50, 50, 0.2);
  z-index: 2;
  top: 0;
  right: 0;
}

.b-modal-pairs-form--card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  width: 60vw;
  height: 40vh;
  border-radius: 1rem;
  border: solid 2px var(--color-border);
  padding: 0 1rem;
  background-color: white;
  position: absolute;
  top: 75%;
  right: 50%;
  transform: translate(50%, -100%);
  z-index: 3;
}

.b-modal-pairs-form--close {
  padding: 22px 6px 0 1rem;
  border: none;
  background-color: white;
}

.b-modal-pairs-form--icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.6;
}

.b-modal-pairs-form--cancel-btn-container {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .b-modal-pairs-form--card {
    width: 86vw;
    height: 300px;
  }

  .b-modal-pairs-form--close {
    margin-bottom: 0.5rem;
  }
}
.b-correct--icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: none;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-5px);
  opacity: 0;
  animation: appear-ok-icon 200ms ease-in forwards;
}
.b-correct--icon {
  height: 2rem;
  width: 2rem;
  filter: invert(1);
}

@keyframes appear-ok-icon {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(-5px);
  }
}


.b-my-pairs--container {
  --my-pairs--hg-head-xl: 98px;
  --my-pairs--hg-head-xs: 50px;
  --my-pairs--hg-foot-xl: 170px;
  --my-pairs--hg-foot-xs: 119px;
  display: grid;
  grid-template-rows: var(--my-pairs--hg-head-xl) 1fr var(--my-pairs--hg-foot-xl);
  grid-template-columns: 1fr 70vw 1fr;
  grid-template-areas: '. header .''. table-pairs .''. footer .';
  height: calc(100vh - var(--height-header));
  animation: appear-view-transition 300ms forwards;
}

.b-my-pairs--header {
  padding: 3rem 0 1rem 0;
  width: 100%;
  grid-area: header;
}

.b-my-pairs--table-container {
  width: 100%;
  grid-area: table-pairs;
  height: calc(100vh - (var(--height-header) + var(--my-pairs--hg-foot-xl) + var(--my-pairs--hg-head-xl)));
}

.b-my-pairs--footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-area: footer;
  margin-top: 1rem;
}

.b-my-pairs--buttons-container {
  display: flex;
}

.b-my-pairs--button-delete {
  margin-left: 1rem;
}

.b-my-pairs--hr {
  width: 98vw;
  transform: translateX(-14vw);
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--color-border);
}

.b-my-pairs--save-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.b-my-pairs--text-container {
  height: calc(100vh - var(--height-header));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.b-my-pairs--text-container h2 {
  text-align: center;
}

@media screen and (max-width: 420px) {
  .b-my-pairs--buttons-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .b-my-pairs--container {
    grid-template-rows: var(--my-pairs--hg-head-xs) 1fr var(--my-pairs--hg-foot-xs);
    grid-template-columns: 1fr 96vw 1fr;
    height: calc(100vh - (var(--height-header) + 56px)); /* Los 56px contemplan el menú de navegación inferior de los dispositivos moviles*/
  }

  .b-my-pairs--header {
    padding: 0.5rem 0;
  }

  .b-my-pairs--hr {
    transform: translateX(-1vw);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .b-my-pairs--buttons-container {
    margin-bottom: 0;
  }

  .b-my-pairs--table-container {
    height: calc(100vh - (var(--height-header) + var(--my-pairs--hg-foot-xs) + var(--my-pairs--hg-head-xs) + 56px));
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-my-pairs--container {
    grid-template-columns: 1fr 80vw 1fr;
  }

  .b-my-pairs--hr {
    transform: translateX(-9vw);
  }
}
.b-form--input {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: rgb(50, 50, 50);
  border: solid 2px var(--color-border);
  border-radius: 1rem;
  padding: 10px;
  padding-top: 20px;
  resize: none;
  background-color: var(--backgroud-textarea);
  outline: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.b-form--input::placeholder {
  color: var(--color-text-placeholder);
}
.b-single-character-input--container {
  max-width: 90%;
}

.b-single-character-input--word-container {
  display: inline-block;
}

.b-single-character-input--char {
  font-size: 1.3rem;
  font-weight: 500;
  width: 1rem;
  height: 1.3rem;
  border: none;
  border-bottom: solid 2px var(--color-border);
  margin: 0 3px;
  outline: none;
  padding: auto;
}

.b-single-character-input--char::placeholder {
  text-align: center;
  color: var(--color-text-placeholder);
  opacity: 0;
}

.b-char__placehold::placeholder {
  opacity: 1;
}

.b-char__color-red {
  color: rgba(255, 0, 0, 0.8);
}

.b-single-character-input--space {
  width: 1rem;
  height: 1rem;
  display: inline-block;
}
.b-practice--form {
  display: flex;
  flex-direction: column;
}

.b-form--sentence {
  font-size: 1.5rem;
  border: solid 2px rgba(180, 180, 180, 0.5);
  border-radius: 1rem;
  margin-bottom: 2rem;
  width: fit-content;
  padding: 0.5rem;
}

.b-practice--input-container {
  position: relative;
  height: 10rem;
  margin-bottom: 1rem;
}

.b-practice--input-container__skeleton {
  height: 10rem;
  margin-bottom: 1rem;
  border: solid 2px rgba(180, 180, 180, 0.5);
  border-radius: 1rem;
}

.b-practice--cell-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px rgba(180, 180, 180, 0.5);
  border-radius: 1rem;
  height: 100%;
}

.b-form--buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.b-form--button-skip {
  height: 3rem;
  max-width: 10rem;
  margin-right: 0.5rem;
}

.b-form--button-ok {
  height: 2.3rem;
}

@media screen and (max-width: 768px) {
  .b-form--sentence {
    margin-bottom: 1rem;
  }

  .b-practice--input-container {
    height: 8rem;
  }

  .b-practice--title {
    margin: 2rem 0;
  }

  .b-form--button-skip {
    height: 2.5rem;
    border-radius: 0.8rem;
  }
}
.b-header-input--container {
  display: flex;
  align-items: center;
  position: absolute;
  height: 2rem;
  top: -1rem;
  right: 1rem;
  background-color: white;
  border: solid 2px rgba(180, 180, 180, 0.5);
  border-radius: 10px;
}

.b-header-input--counter-container{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 10px;
  color: var(--color-text-placeholder);
  opacity: 0.7;
}

.b-header-input--counter {
  font-weight: 500;
  margin-left: 4px;
}

.b-header-input--switch {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.b-header-input--switch-container {
  margin-right: 20px;
}

.b-header-input--button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin-right: 1rem;
  padding: 0;
}

.b-header-input--button:hover {
  background-color: rgb(240, 240, 240);
}

.b-header-input--img-button {
  width: 1.5rem;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .b-header-input--container {
    display: none;
  }
}
.b-practice-reverser--container {
  display: flex;
  align-items: center;
  width: 10rem;
}

.b-practice-reverser--text {
  width: 5rem;
}
.b-practice-reverser--text_left {
  text-align: end;
}

.b-practice-reverser--button {
  border: 0;
  background-color: white;
  margin: 0 5px;
}

.b-practice-reverser--logo {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 5px;
}

@media screen and (max-width: 420px) {
  .b-practice-reverser--text {
    display: none;
  }
  .b-practice-reverser--container {
    justify-content: center;
  }
}
.b-select-filter--container {
  position: absolute;
  right: 0;
  width: 10rem;
}

@media screen and (max-width: 768px) {
  .b-select-filter--container {
    width: 8rem;
  }
}
.b-practice--container {
  display: flex;
  flex-direction: column;
  margin: 0 20vw;
  animation: appear-view-transition 300ms forwards;
}

.b-practice--header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 4rem;
}

.b-practice--logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.b-practice-reverse--container {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}

.b-practice--title {
  text-align: start;
  font-weight: 600;
  font-size: 2rem;
}

.b-practice--text {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
}

.b-practice--text-title {
  font-size: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.b-practice--text-container {
  height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.b-practice--text-container h2 {
  text-align: center;
}

@media screen and (min-width: 420px) and (max-width: 500px) {
  .b-practice--logo {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .b-practice--container {
    margin: 0 2vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .b-practice--container {
    margin: 0 10vw;
  }
}
.b-practice-demo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2vw;
}

.b-practice-demo-footer span {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 5px;
}

.b-practice-demo-footer button {
  margin: 1rem 0;
}

@media screen and (max-width: 768px) {
  .b-practice-demo-footer span {
    font-size: 1rem;
  }
}
:root {
  --font: 'Fredoka', sans-serif;
  --color-text: rgba(20, 20, 20, 0.8);
  --color-text-placeholder: rgb(130, 130, 130);
  --color-border: rgba(180, 180, 180, 0.5);
  --background-textarea: rgba(200, 200, 200, 0.1);
  --color-primary: coral;
  --height-header: 4rem;
}
body {
  font-family: var(--font);
  color: var(--color-text);
  margin: 0;
  overflow-x: hidden;
}

@keyframes appear-view-transition {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
