
body {
    background-color: #121212;
    color: white;
  }
main{
  background-color: #121212;
  position: relative;
  z-index: 1;
}

 .toast.hide {
  height: 0;
    transition: all 0.6s ease;
  }
    /* modal from footer */
    .modal {
        --bs-modal-margin: 0rem;
      }
  
      .modal.fade .modal-dialog {
        transform: translateY(100%);
        transition: transform 0.2s linear;
      }
  
      .modal.show .modal-dialog {
        transform: translateY(0);
      }
  
      /* modal from footer */
  
  
  .col-md-1 {
    min-width: 76px !important;
  }

  .container {
    max-width: 880px;
  }

  * {
    outline: none;
  }

  input[type="checkbox"]:checked {
    box-shadow: 0px 0px 0px 200px #2d5aac70 !important;
    position: relative;
    z-index: 0;
  }


  .app-icon {
    text-decoration: none;
    overflow: hidden;
    position: relative;
    background: #1e1e2f url() no-repeat 0 0;
    background-size: 1000px 1000px;
    border-radius: 10px;
    padding: 10px 10px 8px 10px;
    width: 100%;
    border: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 80ms linear;
  }



  .app-icon:hover {
    transform: scale(1.04) translateZ(0);
    box-shadow: inset 0px 0px 2px 1px #0d6efd, 0px 0px 0px 2px #549cfab5;
    box-shadow: inset 0px 0px 2px 1px black, 0px 0px 0px 2.5px #0d6efd;

    /*box-shadow: inset  0 6px 14px rgba(255,255,255,0.4);*/
  }

  img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none; 

    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 300px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    margin-bottom: 2px;
  }
  .app-icon::before{
    content: "";
    background: red;
    background: linear-gradient(45deg,rgba(75, 75, 75, 0.4) 0%, rgba(73, 97, 113, 0.8) 100%);
    position:absolute;
    top:0;
    width: 100%;height: 90px;
    position: absolute;
    z-index: 0;
  }
  .app-icon *{z-index: 1;}


  .single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;

    /* Set your desired width */
  }




  #suggestedKeywordsSpot * {
    font-size: 92%;
  }

  
  @media (max-width: 768px) {

    /* Small screens (md and smaller) */
    .single-line {
      font-size: 90%;
      max-width: 86px;
    }


    footer#footer {
      position: relative !important;
    }

  }