#gpt-chat-icon{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 64px;
    height: 64px;
    padding: 10px;
    background: #8A1538;
    z-index: 999;
}
[dir=rtl] #gpt-chat-icon{
    right: auto;
    left:0;
}

.chat-message-wrap a {
    color: #8A1538;
    text-decoration: underline;
}
a.chat-icon-link{
    background-image: url('/themes/court/images/icons/ai-chat-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 44px;
    height: 44px;
}
a.chat-icon-link span{
    display: none;
}
#gpt-chat-window{
    position: fixed;
    bottom: 2px;
    right: -100%;
    width: 400px;
    z-index: 999;
    transition: all 0.5s;
    background-color: #ffffff;
    border-radius: 5px;
}
[dir=rtl] #gpt-chat-window{
    right:auto;
    left: -100%;
}
#gpt-chat-window.active{
    right:0;
}
[dir=rtl] #gpt-chat-window.active{
    left:0;
    right:auto;
}
.chat-window-header{
    background: #8A1538;
    padding: 10px;
    position: relative;
    border-radius: 5px 5px 0px 0px;
}
#gpt-chat-window .chat-window-header h2{
    color: #ffffff;
    font-size: 20px;
    margin: 0px;
}
.chat-window-actions{
    float: right;
    width: 100px;
    position: absolute;
    right: 10px;
    top: 10px;
}
[dir=rtl] .chat-window-actions{
    left: 10px;
    right: auto;
}
.chat-window-actions ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.chat-window-actions ul li {
    display: inline-block;
}
.chat-window-actions ul li a{
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}
[dir=rtl] .chat-window-actions ul li a{
    margin-right: 0px;
    margin-left: 5px;
}
.chat-window-actions ul li a.chat-info-link{
    background-image: url('/themes/court/images/icons/icon-info.png');
}
.chat-window-actions ul li a.chat-restart-link{
    background-image: url('/themes/court/images/icons/icon-refresh.png');
}
.chat-window-actions ul li a.chat-close-link{
    background-image: url('/themes/court/images/icons/icon-close.png');
    background-size: 75%;
    background-position: center center;
    margin-right: 0px;
}
[dir=rtl] .chat-window-actions ul li a.chat-close-link{
    margin-left: 0px;
}
.chat-window-actions ul li span{
    display: none;
}
.chat-info-content{
    position: absolute;
    bottom: 30px;
    right:-1000%;
    background: #ffffff;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6;
    width: 220px;
    border: 1px solid #ccc;
    border-radius: 2px;
    transition: all 0.5s;
    text-align: center;
}
[dir=rtl] .chat-info-content{
    left:-1000%;
    right:auto;
}
.chat-info-content.active{
    right:0px;
}
[dir=rtl] .chat-info-content.active{
    left:0px;
    right:auto;
}
.chat-restart-content{
    position: absolute;
    bottom: 30px;
    right:-1000%;
    background: #ffffff;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6;
    width: 168px;
    border: 1px solid #ccc;
    border-radius: 2px;
    transition: all 0.5s;
    text-align: center;
}
[dir=rtl] .chat-restart-content{
    left:-1000%;
    right:auto;
}
.chat-restart-content.active{
    right:0px;
}
[dir=rtl] .chat-restart-content.active{
    left:0px;
    right:auto;
}
.chat-window-body{
    padding: 0px 0px 5px 20px;
    position: relative;
}
[dir=rtl] .chat-window-body{
    padding: 0px 20px 5px 0px;
}
.chat-warning-popup{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
    top:0;
    left: 0;
    z-index: 999;
    display: none;
}
.chat-warning-popup.active{
    display: block;
}
.chat-warning-wrap{
    background: #fff;
    margin: 40% 30px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.chat-warning-wrap.chat-info-more{
    margin: 20px;
    max-height: 400px;
    overflow-y: scroll;
    padding: 0px;;
}
.chat-info-more-header{
    background: #B9975B;
    overflow: hidden;
    padding: 20px;
    text-align: left;
}
[dir=rtl] .chat-info-more-header{
    text-align: right;
}
.chat-info-more-header h5{
    margin: 0px !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-weight: bold !important;
    color:#fff !important;
}
.chat-info-more-body{
    padding: 20px ;
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
}
[dir=rtl] .chat-info-more-body{
    text-align: right;
}
.chat-info-close-wrap{
    float: right;
}
[dir=rtl] .chat-info-close-wrap{
    float: left;
}
.chat-info-close-wrap a.chat-info-close-link{
    background-repeat: no-repeat;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('/themes/court/images/icons/icon-close.png');
    background-size: 75%;
    background-position: center center;
}
.chat-info-close-wrap a.chat-info-close-link span{
    display: none;
}
.chat-warning-actions ul{
    margin: 5px 0px;
    padding: 0px;
    list-style: none;
}
.chat-warning-actions ul li{
    padding: 5px;
    display: inline-block;
}
.chat-warning-actions ul li a{
    padding: 5px 20px;
    display: block;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-decoration: none;
    background-color: #fff;
}
.chat-warning-actions ul li a.yes-button{
    color: #fff;
    background-color: #8A1538;
}
.chat-warning-actions ul li a.no-button{
    background-color: #cdcdcd;
    color: #333;
}
.chat-window-content{
    max-height: 400px;
    min-height: 400px;
    overflow-y: scroll;
    padding-right: 20px;
    margin-bottom: 15px;
}
[dir=rtl] .chat-window-content{
    padding-left: 20px;
    padding-right: 0px;
}
.chat-window-footer{
    padding-right: 20px;
}
[dir=rtl] .chat-window-footer{
    padding-left: 20px;
    padding-right: 0px;
}
.chat-window-footer textarea{
    width: 100%;
    min-height:60px;
    max-height: 140px;
    border: 1px solid #B9975B;
    border-radius: 5px;
    padding: 8px 40px 8px 8px;
    font-size: 14px;
    field-sizing: content;
}
[dir=rtl] .chat-window-footer textarea{
    padding: 8px 8px 8px 40px;
}
.chat-field-wrap{
    position: relative;
}
.chat-prompt-send{
    position: absolute;
    bottom:8px;
    right: 3px;
    width: 32px;
    height: 32px;
    background-image: url('/themes/court/images/icons/icon-sent.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
[dir=rtl] .chat-prompt-send{
    background-image: url('/themes/court/images/icons/icon-sent-ar.png');
    left: 3px;
    right: auto;
}
.chat-prompt-send span{
    display: none;
}
.chat-message-wrap{
    width: 100%;
}
.chat-message-wrap.user-chat-wrap{
    text-align: right;
}
[dir=rtl] .chat-message-wrap.user-chat-wrap{
    text-align: left;
}
.chat-message{
    text-align: left;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0px;
    display: inline-block;
    min-width: 100px;
}
[dir=rtl] .chat-message{
    text-align: right;
}
.user-chat{
    background: #e2e2e2;
    color: #000;
}
.system-chat{
    border: 1px solid #e2e2e2;
    background: #FFFFFF;
    color: #000;
}
.chat-message h3{
    margin: 5px 0px !important;
    font-size: 1rem !important;
}
.chat-message p{
 margin: 5px 0px;
}
.chat-message ul, .chat-message ol{
    margin: 5px 0px;
    list-style: none;
}
.chat-message ul li, .chat-message ol li{
    padding: 8px 5px;
}
.system-chat-actions{
    padding-top: 10px;
}
.system-chat-actions ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.system-chat-actions ul li {
    display: inline-block;
    padding: 0px;
}
.system-chat-actions ul li a{
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
[dir=rtl] .system-chat-actions ul li a{
    margin-left: 5px;
    margin-right: 0px;
}
.system-chat-actions ul li a.system-chat-copy-link{
    background-image: url('/themes/court/images/icons/icon-copy.png');
}
.system-chat-actions ul li a.system-chat-good-link{
    background-image: url('/themes/court/images/icons/icon-thumbs-up.png');
}
.system-chat-actions ul li a.system-chat-good-link.active{
    background-image: url('/themes/court/images/icons/icon-thumbs-up-fill.png');
}
.system-chat-actions ul li a.system-chat-bad-link{
    background-image: url('/themes/court/images/icons/icon-thumbs-down.png');
    margin-right: 0px;
}
[dir=rtl] .system-chat-actions ul li a.system-chat-bad-link{
    margin-left: 0px;
}
.system-chat-actions ul li a.system-chat-bad-link.active{
    background-image: url('/themes/court/images/icons/icon-thumbs-down-fill.png');
}
.system-chat-actions ul li a span{
    display: none;
}
#chat-window-content.loading:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 38%;
    left: 45%;
    width: 48px;
    height: 48px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite;
}
[dir=rtl] #chat-window-content.loading:before {
    right: 45%;
    left: auto;
}
#chat-window-content-loadmore{
    width: 100%;
    height: 52px;
    padding: 10px;
    text-align: center;
}
#chat-window-content-loadmore:before {
    content: '';
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite;
}
.system-chat-message.loading {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin:0px auto;
    position: relative;
    background: #FFF;
    box-shadow: -16px 0 #FFF, 16px 0 #FFF;
    box-sizing: border-box;
    animation: shadowPulse 2s linear infinite;
}
#chat-response-messages{
    height: 15px;
    font-size: 12px;
    color: #f00;
}
@keyframes shadowPulse {
    33% {
        background: #FFF;
        box-shadow: -16px 0 #8a1538, 16px 0 #FFF;
    }
    66% {
        background: #8a1538;
        box-shadow: -16px 0 #FFF, 16px 0 #FFF;
    }
    100% {
        background: #FFF;
        box-shadow: -16px 0 #FFF, 16px 0 #8a1538;
    }
}
@keyframes spinner {
    to {transform: rotate(360deg);}
}   