
.kettalComponent{
    /* NEW */
    
    .menuButtons__card {
      text-align: justify;
      transition: color none !important;
    }
    
    .menuButtons__card:hover {
      background-color: #212427;
      color: white;
      transition: color none !important;
    }
    
    .menuButtons__card:hover .menuButtons__label{
      color: white;
      transition: color none !important;
    }
    
    
    .menuButtons__card:hover img {
      filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
        brightness(102%) contrast(102%);
    }
    /* ================== */
    
    .menuButtons__item {
      height: 100%;
      padding: 1rem;
      overflow: auto;
    }
    
    .menuButtons__label {
      text-align: start;
      font-family: "SangBleuKingdom-Light, sans-serif";
      font-size: 25px;
      height: 100%;
      padding-bottom: 1rem;
      word-break: break-word;
    }
    
    .menuButtons__img {
      height: 60px;
      width: 60px;
    }
    
    .menuButtons__logo {
      width: 100%;
      height: 3.5rem;
    }
    .menuContainer {
      display: flex;
      flex-direction: row;
    }
    .menuItem {
      aspect-ratio: 1;
      width: 23%;
      border: 1px solid #707070;
      padding: 0;
      transition: none !important;
      cursor: pointer;
      min-width: 15rem;
      text-align: start;
    }
    
    .menuButtons {
      gap: 1rem;
      padding-bottom: 1rem;
      overflow: auto;
    }
    
    .scrollArea {
      height: calc((100vh - 25vh));
      width: 100%;
      flex: 1 1 0%;
      padding-left: 10rem;
    }
    .iconContainer {
      width: 100%;
      display: flex;
      justify-content: end;
    }
    
    @media only screen and (max-width: 1024px) {
      .menuButtons__logo {
        padding-bottom: 2rem;
        margin-top: 5rem;
      }
      .menuItem {
        width: 48%;
      }
    
      .scrollArea {
        height: calc((100vh - 6rem));
        width: 0%;
        flex: 1 1 0%;
        padding-left: 5rem;
        padding-top: 5rem;
      }
      .menuContainer {
        flex-direction: column;
      }
      .scrollArea {
        width: 100%;
        flex: 1 1 0%;
        padding: 0rem;
      }
    
      .menuButtons__logo {
        margin-top: 1rem;
        height: 3rem;
      }
    
      .q-page-container .menuContainer {
        height: calc(100vh - 6rem);
      }
    
      .menuButtons {
        display: flex;
    
        justify-content: start;
      }
    }
    
    @media only screen and (max-width: 620px) {
      .menuContainer {
        flex-direction: column;
      }
      .menuItem {
        width: 100%;
      }
    
      .scrollArea {
        width: 100%;
        flex: 1 1 0%;
        padding: 0rem;
      }
    
      .menuButtons__logo {
        margin-top: 1rem;
        height: 3rem;
      }
    
      .q-page-container .menuContainer {
        height: calc(100vh - 6rem);
      }
    
      .menuButtons {
        display: flex;
      }
    }
    }