﻿
.genieV__button-container {
    position: fixed;
    bottom: -200px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    /*    display: none;*/
    /*    opacity: 0;*/
}

.genieV__button {
    position: relative;
    width: fit-content;
    display: flex;
    gap: 8px;
    color: white;
    cursor: pointer;
    cursor: pointer;
    align-items: center;
    padding: 8px 16px 8px 16px;
    background-color: black;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgb(0,0,0,0.3);
    justify-self: end;
}

    .genieV__button p {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

.chat-icon {
    position: absolute;
    bottom: -7px;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 15px solid #fde100;
    border-right: 15px solid transparent;
    right: 9px;
    transform: rotate(-45deg);
    z-index: 99;
}

.chat-welcome-container {
    margin-bottom: 14px;
    max-width: 230px;
    /* border: 1px solid #00000042; */
    background-color: #fde100;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
    justify-self: end;
    margin-right: 26px;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    transform: scale(0);
}

.chat-welcome p {
    font-size: 14px;
    line-height: 20px;
}

.genieV__img-placeholder {
    width: 60px;
    height: 40px;
    background-color: #0000005e;
    border-radius: 100px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .genieV__img-placeholder img {
        width: 100%;
        height: auto;
    }


/**/
/*Test*/
/**/

.dots span {
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    display: inline-block;
}

.typing {
    display: inline-block;
    overflow: hidden;
    display: none;
}



    .typing span {
        opacity: 0;
        display: inline;
    }

.close__btn {
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background-color: #000000;
    color: white;
    border: 1px solid #0000008a;
    border-radius: 100px;
    cursor: pointer;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -9px;
    opacity: 0;
}

    .close__btn i {
        font-size: 10px;
    }


  @media (max-width: 600px) {
      .chat-container{
          width: 85vw !important;
          bottom: 74px !important;
          height: 120vw !important;
      }
      .genieV__button-container {
          bottom: -200px;
          right: 8px ;
          /* display: none; */
          /* opacity: 0; */
      }
  }



.chat-box #userInput{
    font-size: 16px;
}