.after-bot-check {
    opacity: 1;
    transition: opacity 0.5s ease-in, height 0.3s;
  }
  
  body.checking-bot .after-bot-check {
    /* display: none !important; */
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  #header {
    transition: height 0.5s ease-out;
  }
  
  body.checking-bot #header {
    height: 102px !important;
    overflow-y: hidden;
  }
  
  body.checking-bot #navbar_top {
    height: 102px !important;
  }
  
  #bot-checker {
    transition: all 0.3s;
    transition: opacity 1s ease-out;
  }
  
  #bot-checker > div {
    display: flex;
    justify-content: center;
  }
  
  #bot-checker > div > label {
    margin-left: 0.5rem;
    font-size: 2.5rem;
  }

  #bot-checker input {
    width: 2.5rem;
  }

  
  body:not(.checking-bot) #bot-checker {
    /* display: none; */
    opacity: 0;
    z-index: -1;
    height: 0 !important;
    overflow: hidden;
  }
  
  body.checking-bot #bot-checker {
    opacity: 1;
    width: 100vw;
    height: calc(100vh - 102px - 96.4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  