.root {
  background-color: rgb(248, 248, 248);
  padding: 1rem 1rem;

  .detail_language {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    @media screen and (min-width: 700px) {

    }

    .detail {
      display: none;

      a {
        text-decoration: none;
        color: #283c5c;

        &:hover {
          color: rgb(17, 17, 17);
        }
      }

      @media screen and (min-width: 700px) {
        display: block;
      }
    }

    .detail_arrow {
      width: 25px;
      height: 25px;
      cursor: pointer;
      border-radius: 50%;
      // padding: 0.5rem;

      &:hover {
        background-color: white;
      }

      @media screen and (min-width: 700px) {
        display: none;
      }
    }

    .languages {
      position: relative;

      .language {
        display: flex;
        align-items: flex-end;
        gap: 2rem;
        border-radius: 0.5rem;

        @media screen and (min-width: 700px) {
          background-color: rgb(228, 228, 228);
          padding: 0.5rem 1rem;
          border-radius: 0.5rem;
        }
      }

      .language_menu {
        position: absolute;
        top: 3rem;
        left: -3rem;
        background-color: #fff;
        padding: 0 1rem;
        border-radius: 10px;
        border: 1px solid rgb(151, 151, 151);
        text-align: left;

        span {
          text-transform: uppercase;
          color: #5e5e5e;
        }
      }
    }
  }

  .header {
    display: flex;
    justify-content: space-between;

    .toolbar {
      display: none;

      @media screen and (min-width: 700px) {
        display: flex;
        align-self: flex-end;
        align-items: center;
        justify-content: center;
        //gap: 1rem;
      }

      img {
        width: 25px;
        height: 25px;
        cursor: pointer;
      }

    }
  }
}

.dots {
  height: 20px;
  width: 20px;
  cursor: pointer;

}