.chatHelpIcon{
    position: fixed;
    bottom:20px;
    right:20px;
    z-index:9;
    background-color: #0071B8;
    padding: 20px;
    border-radius: 100px;
    cursor: pointer;
}
.chatHelpModal{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #ffffff;
    width: 400px;
    max-width: 90vw;
    height: 60vh;
    border-radius: 10px;
    overflow: hidden;
    z-index:10;
    display: none;
}
.chatModalHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0071B8;
    padding: 1rem;
}
.chatModalHeader .chatModalTitle{
    color: #ffffff;
    font-size: 16px;
}
.closeIcon{
    display: flex;
    gap: 1rem;
}
.closeIcon svg{
    color: #ffffff;
    cursor: pointer;
}
.chatHelpShadow {
    box-shadow: 0 3px 18px rgba(0,0,0,.13);
}
.formInput{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    border-radius: 10px;
}
.formInput:focus-within{
    border: 1px solid #0071B8 !important;
}
.formInput svg{
    cursor: pointer;
}
.chatHelpBodyContainer{
    text-align: center;
    padding: 12rem 30px 0px 30px;
}
.chatHelpModelWrapper{
    overflow-y: auto;
    height: calc(100% - 56px - 80px);
    flex-direction: column;
    display: none;
}
.chatHelpMessageContainer{
    padding: 0.5rem;
    overflow-y: auto;
    max-height: max-content;
}
.message-reply, .message {
    width: max-content;
    max-width: 300px;
}
.message-reply h1,.message-reply h2,.message-reply h3,.message-reply h4,.message-reply h5,.message-reply h6{
    font-weight: 600;
    line-height: 2;
    color: #272727;
}
.message-reply h1{
    font-size: 20px;
}
.message-reply h2{
    font-size: 18px;
}
.message-reply h3{
    font-size: 20px;
}
.message-reply h4,.message-reply h5,.message-reply h6{
    font-size: 16px;
}
.message-reply p,.message-reply ul,.message-reply li{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.message-reply a{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #272727 !important;
    text-decoration: underline;
}
.message-reply a:hover{
    color: #0071B8 !important;
}
.message-reply ul{
    font-weight: 600;
    font-size: 16px;
}
.message-reply li{
    list-style-type: disc;
    margin-left: 20px;
}
.message-reply img{
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 0px;
    border-radius: 20px;
}
.pagination-btn{
    background-color: #ffffff;
    color: #0071B8;
    border: 1px solid #0071B8;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
}
.message-reply-pagination{
    width: 300px;
    max-width: 300px;
}
.tooltip-link{
    cursor: pointer;
}

/* ----------New changes----------- */

.more-prompt p{
    font-weight: 500;
}

p{
    margin: 0px;
}

.products-links, .categories-links, .variation-link{
    margin: 5px 0px;
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #ffffff;
    text-decoration: none !important;
    display: inline-block;
    width: max-content;
    max-width: 100%;
    color: #272727 !important;
    font-size: 14px;
}

.products-links:hover, .categories-links:hover, .variation-link:hover{
    background-color: #f9f9f9 !important;
}
