.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: #7416c0;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-icon i {
    color: white;
    font-size: 24px;
}

.chat-popup {
    position: fixed;
    bottom: calc(16%);
    right: 20px;
    width: 400px;
    height: calc(79%);
    border: 2px solid #7416c0;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.chat-header {
    background-image: url(/img/FendousAI.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    position: relative;
    text-align: center;
    height: calc(19%);
    z-index: 1000;
}

.chat-content {
    /* height: calc(58%); */
    width: 395px;
    top: calc(21%);
    bottom: calc(25%);
    right: 22px;
    overflow-y: auto;
    padding: 2px 12px;
    background-size: cover;
    position: fixed;
    font-weight: 500;
}

.chat-content p {
    background-color: rgba(136,208,246,0.8);
    color: black;
    padding-left: 10px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 1000;
}


.chat-input {
    position: fixed;
    bottom: calc(16.8%);
    width: 395px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-attachment: fixed;
}

.chat-input input {
    border: none;
    flex-grow: 1;
    padding: 4px;
    border-radius: 15px;
    margin: 2px;
    margin-left: 3px;
    outline: none;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
}

.chat-input button {
    border-color: white;
    border-radius: 100%;
    margin: 2px;
    padding: 5px 5px 0px 7px;
    color: #7416c0;
}

.chat-icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
}

.botText img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    top: 5px;
}

button {
    padding: 8px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 4px;
}

#agreeButton {
    background-color: rgb(180,116,220);
    color: black;
    font-weight: 500;
    /* margin-bottom: 15px; */
}

#disagreeButton {
    background-color:rgba(79,43,217,255);
    color: black;
    font-weight: 500;
    /* margin-bottom: 15px; */
}

.optionButton {
    background-color: rgb(180,116,220);
    color: black;
    font-weight: 500;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    margin: 0.25% 0% 1.5% 6%;
    display: inline;
    width: calc(80%/2);
    height: 50px;
    justify-content: center;
    align-items: center;
    /* float: right; */
}

.material-icons{
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

.video-container {
    bottom: calc(16.2%);
    right: 22px;
    width: 396px;
    height: calc(78.4%);
    position: fixed;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: -1;
}

/* Chatbot Page */

.chatpage {
    position: fixed;
    background-size: cover;
    display: block;
    height: 100%;
    width: 100%;
    align-items: center;
    overflow-y: auto;
    font-weight: 500;

} 


#pagebanner {
    background-image: url(/img/FendousAI.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    position: fixed;
    text-align: center;
    height: 22%;
    width: 50%;
    margin: auto;
    margin-left: 25%;
    top: 0;
    z-index: 1000;
}

#chatpage-container {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    z-index: -1;
}

#pagechatbox {
    height: 68% ;
    width: 50%;
    top: 22%;
    right: 0;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    overflow-y: auto;
    display: block;
    background-size: cover;
    position: relative;
    padding: 0px;
    font-weight: 500;
}

#pagechatbox video {
    position: absolute;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    object-fit: cover;
}

#chatPageuserInput {
    position: fixed;
    bottom: 2%;
    width: 50%;
    margin-left: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-attachment: fixed;
}
