/*Chatbot*/
/* Chatbot Toggle Button */
#chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.replyIcon {
    display: block !important;
    width: 70px !important;
    height: 50px !important;
}

/* Chatbot Container */
#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 385px;
    height: auto;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-direction: column;
}

/* Chatbot Header */
#chatbot-header {
    background: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px 5px 0 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

/* Close Button */
#close-chatbot {
    position: absolute;
    right: 10px;
    top: 5px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

#chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.chat-option-btn {
    flex: 1;
    min-width: 48%;
    padding: 12px;
    background: #f5f5f5;
    border: transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
    color: #141414;
}

.chat-option-btn:hover {
    background: #ddd;
}

.chatbot-options .chat-option-btn {
    width: 100%;
    background: #fff;
    margin-top: 5px;
    font-size: 13px;
}

/* Chat Messages */
#chatbot-messages {
    height: calc(100vh - 360px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 10px 0px;
}

span.dots-button:hover {
    background: rgb(9 80 201 / 50%);
}

/* Message Styling */
.chat-message {
    max-width: 80%;
    padding: 8px;
    border-radius: 10px;
    margin: 5px 0px;
    font-size: 14px;
}

/* AI Messages (Left Side) */
.bot-message {
    background: #f1f1f1;
    align-self: flex-start;
    word-wrap: break-word;
}

/* User Messages (Right Side) */
.user-message {
    background: #007bff;
    color: white;
    align-self: flex-end;
    text-align: right;
}

/* Chat Input */
#chatbot-input {
    width: calc(100% - 65px);
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 160px;
    resize: none;
    overflow-y: hidden;
    line-height: 20px;
    box-sizing: border-box;
}

body #order-standard_cart form#frmProductDomain label .wgs_ai_logo {
    width: 26px;
}

/* Send Button */
#send-message {
    width: auto;
    padding: 11px 18px;
    margin-left: 5px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    height: auto;
    position: absolute;
    right: 10px;
    bottom: 19px;
    display: inline-block;
}

.chatbotcustomize {
    display: flex;
    background: #fff;
    padding: 10px;
}

.chat-message-wrapper {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.chat-message.bot-message {
    position: relative;
    padding-right: 30px;
    /* Space for the button */
}

.domain_checker_page .dbtn-inactive img.wgs_ai_logo {
    filter: unset;
}

.domain_checker_page .dbtn-active img.wgs_ai_logo {
    filter: invert(1);
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1em;
    color: #555;
    padding: 2px;
}

.copy-btn:hover {
    color: #000;
}



/* Chatbot End*/
#customDomainButtons {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.recommendations-domain-and-product.container {
    padding: 50px 0px;
}

.dbtn {
    padding: 10px 20px;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dbtn-active {
    background-color: #30a9f4;
    border: 1px solid #30a9f4;
    color: white;
}

.dbtn-inactive {
    background-color: white;
    color: #30a9f4;
    border: 1px solid #30a9f4;
}

.find-domain {
    border-radius: 50px 0 0 50px;
}

.generate-domain {
    border-radius: 0 50px 50px 0;
}

.input-box,
.text-box {
    margin-top: 20px;
}

/* input,
textarea {
    padding: 8px;
    width: 300px;
    font-size: 16px;
} */
div#domaingenerateai .row {
    align-items: center;
}

.icon {
    margin-right: 5px;
}

/*domain suggest*/
.suggestions-list {
    margin-top: 15px;
}

.suggestion-item {
    margin: 5px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="text"] {
    padding: 10px;
    width: 70%;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.show_more_btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.show-more-div {
    text-align: center;
}

.show_more_btn:hover {
    background-color: #0056b3;
}

.domain-textarea {
    width: 100%;
    height: 100px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.generate-btn {
    background-color: #30a9f4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.generate-btn:hover {
    background-color: #1c8cd6;
}

.suggestions-error {
    color: red;
    font-size: 14px;
    display: block;
    text-align: left;
    margin-left: 5px;
    margin-bottom: 10px;
}

/* .domain-results {
    max-height: 500px;
    overflow: auto;
} */
body .domain-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin: 0px 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    color: #000;
}

body .domain-item:nth-child(even) {
    background: #f3f3f3;
}

.domain-checker-container .input-group-box {
    max-width: 549px;
    width: 100%;
}

.domain-results .domain-name {
    text-align: left;
    width: 100%;
    word-wrap: break-word;
    max-width: calc(100% - 300px);
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    margin: 5px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.domain-name {
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.domain-status {
    padding: 0px 5px;
    border-radius: 12px;
    color: white;
    font-size: 12px;
}

.badge-success {
    background-color: #28a745;
}

.badge-danger {
    background-color: #dc3545;
}

/*end domain suggest*/
/*recommendations*/
.recommendations-domain-and-product h2 {
    text-align: center;
    margin-bottom: 15px;
}

.recommendation-slider {
    margin-top: 20px;
}

.recommendation-card {
    background: #ffffff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recommendation-card h3 {
    margin: 10px 0;
}

.recommendation-card p {
    margin: 5px 0;
}

.recommendation-card .btn {
    margin-top: 10px;
}

.slick-dots {
    margin-top: 10px;
}

.recommendation-card {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px !important;
}

/*end recommendations*/
.domainSuggestDiv .suggestions-error {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

table.table.table-list.chatbot_table th,
table.table.table-list.chatbot_table td {
    padding: 10px 4px;
    vertical-align: middle;
    font-size: 12px;
}

table.table.table-list.chatbot_table {
    margin: 20px 0px;
    border: transparent !important;
}

table.table.table-list.chatbot_table th {
    border-top: transparent !important;
    background-color: #f5f5f5 !important;
    border-bottom: transparent !important
}

#close-chatbot img {
    width: 20px;
}

#close-chatbot {
    top: 2px;
    background: transparent;
}

.table-list.chatbot_table td:first-child {
    text-align: left;
}

.table-list.chatbot_table td {
    text-align: center;
}

.chatbot_table .service-row {
    cursor: pointer;
}

/* slider css */
.recommendation-slider .slick-next:before,
.recommendation-slider .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* .recommendation-slider  .slick-next {
    right: 0px;
}
.recommendation-slider  .slick-prev {
    left: 5px;
    position: absolute;
    z-index: 1;
} */
/*  chat icon design */
.menu-container {
    position: relative;
}

.dots-button {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.dropdowns {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 180px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 10;
}

.dropdowns.active {
    display: flex;
}

.dropdowns-item {
    padding: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:hover {
    background: #f0f0f0;
}

.togglechat {
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.togglechat::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.togglechat.active {
    background: #4caf50;
}

.togglechat.active::before {
    transform: translateX(20px);
}

.icon {
    margin-right: 8px;
    font-size: 18px;
}

.dropdown-item.popup-sound {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    border: 0;
    color: rgb(17, 17, 17);
    width: 100%;
    cursor: pointer;
    border-radius: 6px;
}

.dots-button {
    margin-left: 8px;
    /* adjust the value as needed */
}

.menu-container div#dropdowns {
    margin-top: 3px;
    margin-left: 76px;
}

.dots-button {
    margin-left: 0;
    border-radius: 100%;
    padding: 0;
    width: 30px;
    height: 30px;
    display: inline-block;
    color: #ffffff;
    line-height: 28px;
    font-size: 21px;
}

.dropdown-item.clearChat.popup-sound i.fa.fa-trash {
    font-size: 20px;
}

.domain-selection-options .option-selected {
    background-color: #ffffff !important;
}

.domain-selection-options label {
    margin-bottom: 0 !important;
    padding: 5px;
}

.domain-selection-options .option {
    margin-bottom: 7px;
    padding: 6px 20px;
    border-radius: 6px;
    background-color: #ffffff;
}

/* .domain-selection-options .suggestions-error {
    margin-bottom: 10px;
} */
/* td 0-05-25  Start */
.recommendation-card h3 {
    color: #000;
}

.recommendation-card p {
    color: #000;
}

.domain-results .domain-name {
    color: #000;
}

.modal-body.aiAssistanceModalBody textarea#SummarizeText {
    height: 350px;
    background: #f5f5f5;
    border: transparent;
    padding: 20px;
    color: #777;
    font-size: 14px;
    line-height: 24px;
    resize: none;
}

button#chatbot-toggle-btn img {
    filter: invert(1);
}

#close-chatbot img {
    filter: invert(1);
}

button#send-message img {
    filter: invert(1);
    width: 22px;
}

#chatbot-toggle-btn:focus {
    outline: none;
}

div#chatbot-options button:focus {
    outline: none;
}

#order-standard_cart .form-control {
    margin-bottom: 0;
}

button#generateSuggestions:focus {
    box-shadow: none;
}

textarea#domain_keywords {
    margin-top: 0;
}

.domaingenerateai_textarea textarea {
    margin-bottom: 10px !important;
}

button#generateSuggestions {
    width: fit-content;
}

/* td 0-05-25 End */
div#chatbot-container.chatbot_expand {
    width: 550px;
}

div#chatbot-container.chatbot_expand #chatbot-messages {
    height: calc(100vh - 300px);
}

.chat_windowTop_btns {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

#close-chatbot {
    position: unset;
}

i#expand_compress {
    cursor: pointer;
    padding: 7px 7px;
    width: 30px;
    border-radius: 50px;
    height: 30px;
}

span.dots-button:hover {
    background: rgb(9 80 201 / 50%);
}

i#expand_compress:hover {
    background: rgb(9 80 201 / 50%);

}

div#chatbot_close_div {
    position: absolute;
    top: 50%;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 93%;
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

.chatbot_close_div_main:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000007a;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    border-radius: 10px;
}

.chatbot_close_div_main {
    z-index: 1;
}

.chatbot_close_msg {
    color: #000000;
}

div#chatbot_close_div button {
    padding: 5px 20px;
    border-radius: 5px;
    border: transparent;
    margin-top: 12px;
    font-size: 14px;
    background: #4baaf7;
    color: #fff;
    transition: all 0.4s;
}

div#chatbot_close_div button.chatbot_close_no_btn {
    background: #c61717;
}

button:focus {
    outline: none;
}

div#chatbot_close_div button:hover {
    background: #2190eb;
}

div#chatbot_close_div button.chatbot_close_no_btn:hover {
    background: #e91818;
}

.modal .modal-header {
    background-color: #007bff;
}

.aiAssistanceModal .btn.btn-secondary,
.text-center a.btn.btn-default {
    background: #BD120C;
    border-color: #BD120C;
    font-size: 14px;
    color: #fff;
}

.aiAssistanceModal .btn.btn-primary,
button#openTicketSubmit {
    background: #5DABFA;
    border-color: #5DABFA;
    font-size: 14px;
}

.aiAssistanceModal label.col-form-label {
    font-size: 18px;
    line-height: 28px;
    color: #141414;
    font-weight: 800;
    margin-bottom: 10px;
}

#summarizeBtn .wgs_ai_logo,
.askToAssistantBtn .wgs_ai_logo {
    width: 20px !important;
}

textarea.form-control {
    height: auto !important;
}

button.btn.btn-success.mr-2.askToAssistantBtn {
    font-size: 14px;
    background: #2e8b2d;
    border-color: #2e8b2d;
}

.chat-meta {
    text-transform: capitalize;
}

.generate-domain .wgs_ai_logo {
    width: 25px;
}

button#generateSuggestions img {
    width: 25px;
}

.dbtn-inactive img.wgs_ai_logo {
    filter: invert(1);
}

.domain-suggestion-container .text-center h2.text-center {
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 700;
}

.domain-results {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-top: 30px;
    background: #fff;
    overflow: hidden;
}

.domain-item_info {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    max-width: 285px;
}

h5#aiAssistanceModalLabel {
    color: #fff;
    font-weight: 600;
    font-size: 19px;
}


button.buy-now.btn.btn-primary.domain_addToCart {
    padding: 10px 16px;
    background: transparent;
    color: #141414 !IMPORTANT;
    border: 1px solid #C7C9D9 !IMPORTANT;
    border-radius: 2px !IMPORTANT;
    margin-left: 10px;
}

button.buy-now.btn.btn-primary.domain_addToCart i {
    font-size: 19px;
}

.domain-item_info span {
    margin: 0px 5px;
    font-size: 13px;
    font-weight: 800;
}

.domain-item_info .domain-status {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 5px;
    text-align: right;
    margin: 0;
}

button.buy-now.btn.btn-primary.domain_addToCart.checkout-btn {
    font-size: 0;
    background: #4baaf7;
    color: #fff;
}

button.buy-now.btn.btn-primary.domain_addToCart.checkout-btn i {
    font-size: 19px;
}

body #order-standard_cart form#frmProductDomain label {
    font-size: 14px;
    color: #141414;
    font-weight: 500;
}

body #order-standard_cart .domain-selection-options .option {
    margin-bottom: 6px;
    padding: 15px 20px;
    border-radius: 6px;
    background-color: #ffffff;
}

.chatbot-icon {
    margin-right: 2px;
    width: 16px;
}

textarea:focus,
input:focus,
button:focus {
    outline: none;
}

.home-domain-search.bg-white.domain-suggestion-container .p-5 {
    max-width: 970px;
    margin: auto;
}

/*  */
#customDomainButtons {
    z-index: 999;
    position: relative;
    top: 0;
}

.row.hx-tab-inner {
    margin-top: unset;
}

/* .hostx-child-themebutton.btn.btn-success.mr-2.askToAssistantBtn{
    padding: 12px 30px;
} */
button.btn.btn-success.mr-2.hostx-child-theme.askToAssistantBtn {
    padding: 12px 30px;
}

.hostx-child-theme h5#aiAssistanceModalLabel {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.home-domain-search.bg-white.domain-suggestion-container.clientx-child-theme h2.text-center {
    color: #000 !important;
}

.home-domain-search.bg-white.domain-suggestion-container.clientx-child-theme {
    padding: 25px 0;
}

.clientx-child-theme button.btn.btn-success.mr-2.askToAssistantBtn {
    padding: 10px 22px;
}

button.btn.btn-success.mr-2.clientx-child-theme.askToAssistantBtn {
    padding: 10px 22px;
}

.clientx-child-theme h5#aiAssistanceModalLabel {
    color: #fff;
    font-weight: 600;
    font-size: 19px;
}

.body-background-20i #order-standard_cart form#frmProductDomain .domain-selection-options .option .iradio_square-blue {
    left: 0px;
}

.recommendations-domain-and-product.container.clientx-child-theme h2 {
    color: #fff;
}

.clientx-child-theme .slick-prev.slick-arrow:after {
    color: #fff;
    display: none;
}

.clientx-child-theme button.slick-next.slick-arrow:after {
    display: none;
}

/* .clientx-child-theme button.slick-prev.slick-arrow{
    top:110px;
} */
.clientx-child-theme .recommendation-slider .slick-next:before,
.clientx-child-theme .recommendation-slider .slick-prev:before {
    color: #007bff;
}

.cloudx-theme button#generateBtn {
    display: flex;
}

.cloudx-theme button#generateSuggestions {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.cloudx-theme .home-domain-search {
    padding: 0;
}

.cloudx-theme#ai-domain-option label {
    display: flex !important;
}

button.btn.btn-success.mr-2.cloudx-theme.askToAssistantBtn {
    display: inline-flex;
    gap: 10px;
}

.home-domain-search.bg-white.domain-suggestion-container.cloudx-theme {
    padding: 0;
}

button#summarizeBtn.cloudx-theme {
    display: flex;
    gap: 10px;
    align-items: center;
}

.aiAssistanceModal.cloudx-theme .modal-header h5 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.aiAssistanceModal.cloudx-theme {
    overflow: hidden;
}

.cloudx-theme .modal-body.aiAssistanceModalBody {
    overflow: scroll;
    height: 410px;
}

.cloudx-theme .modal-body.aiAssistanceModalBody textarea {
    height: 146px;
}

.twenty-x-theme .modal-body.aiAssistanceModalBody {
    overflow: scroll;
    height: 410px;
}

.twenty-x-theme .modal-body.aiAssistanceModalBody textarea {
    height: 146px;
}

.twenty-x-theme #order-standard_cart form#frmProductDomain .domain-selection-options .option .iradio_square-blue {
    left: 0 !important;
}

button.btn.btn-success.mr-2.twenty-x-theme.askToAssistantBtn {
    padding: 11px 26px;
}

.modal.fade.aiAssistanceModal.twenty-x-theme .modal-footer.aiAssistanceModalFooter button {
    padding: 11px 26px;
}

.twenty-x-theme#customDomainButtons {
    top: 140px;
}

.lagom2-theme .recommendation-card h3 {
    color: #000;
    word-wrap: break-word;
    font-size: 19px;
    line-height: 23px;
}

.lagom2-theme .recommendation-slider .slick-next:before,
.lagom2-theme .recommendation-slider .slick-prev:before {
    color: #fff;
}

.recommendations-domain-and-product.container.lagom2-theme h2 {
    color: #fff;
}

.lagom2-theme.home-domain-search.bg-white.domain-suggestion-container .p-5 {
    padding: 20px !important;
}

button.btn.btn-success.mr-2.lagom2-theme.askToAssistantBtn {
    height: 56px;
    padding: 8px 24px !important;
}

.modal.fade.aiAssistanceModal.lagom2-theme .modal-dialog {
    width: 650px;
}

.lagom2-theme.aiAssistanceModal label.col-form-label {
    font-weight: 500 !important;
}

.lagom2-theme .modal-body.aiAssistanceModalBody textarea {
    height: 100px;
}

.lagom2-theme button.buy-now.btn.btn-primary.domain_addToCart i {
    margin-right: 0;
}

/* .domainSuggestDiv.lagom2-theme.input-group span.suggestions-error {
    display: inline-block !important;
    width: unset !important;
} */
.domainSuggestDiv.lagom2-theme.input-group {
    padding: 20px;
    display: block;
    text-align: center;
}

.lagom2-theme .find-domain {
    min-height: 50px !important;
}

.lagom2-theme .dbtn-active {
    min-height: 50px !important;
}

.lagom2-theme .domain_loader {
    margin-top: 20px;
    margin-bottom: 20px;
}

.lagom2-theme .dbtn-inactive {
    height: 50px;
}

body.primary-bg-color.body-cloudx #order-standard_cart form#frmProductDomain .domain-selection-options .option .iradio_square-blue {
    left: 0px;
}

.body-cloudx .home-domain-search {
    background-color: #ffffff !important;
}

.body-cloudx .home-domain-search h2 {
    color: #2F1C6A
}

.theme-main-inner-page-section .home-domain-search.bg-white.domain-suggestion-container.clientx-child-theme {
    margin: 0px 20px;
}

.theme-main-inner-page-section .find-domain.home-page-domain-checker {
    border-radius: 0;
}

.lagom .panel-choose-domain:not(.panel-choose-domain-boxed) .panel-domain-option .radio .radio-styled {
    left: -2px;
}

#guest-user-form {
    background: #f5f9ff;
    border-radius: 5px;
    padding: 20px !important;
}

#guest-user-form .form-control {
    width: 100% !important;
    font-size: 14px;
    margin-right: 0 !important;
    min-height: 40px;
}

#start-chat-btn {
    width: 100%;
    background: #2f7cff;
    border-color: #2f7cff;
    font-size: 15px;
    font-weight: 600;
}

#guest-user-form label {
    font-size: 14px;
    font-weight: 600;
    color: #101010;
}

.chat_input_error {
    font-size: 12px;
    margin-top: 5px;
    color: #d81616;
}

#start-chat-btn i {
    margin-right: 5px;
}

#summarizeBtn {
    transform: unset;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    z-index: 999;
    float: right;
    margin-top: -9px;
    margin-bottom: 12px;
    margin-right: 10px;
}

#summarizeBtn:hover {
    background: #0056b3;
}

#summarizeBtn.summarizeBtn-clientx-child-theme {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    padding: 6px 9px;
}

.body-cloudx img.wgs_ai_logo {
    display: inline;
    margin-top: 0;
}

.body-cloudx .knowledgebase-article-20i hr {
    margin-top: 3rem;
}

.summarizeBtn-cloudx-theme {
    margin-top: 7px !important;
    margin-right: 0 !important;
}

.summarizeBtn-lagom2-theme {
    margin-top: 0 !important;
}

/*media query*/
@media (max-width:767px) {
    body .domain-item {
        display: block;
        text-align: center;
    }

    .domain-results .domain-name {
        margin-bottom: 10px;
        display: block;
        text-align: center;
        max-width: 100%;
        margin-right: 0;
    }

    .domain-item_info {
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width:575px) {
    button#generateBtn .icon {
        font-size: unset;
        margin-right: 3px;
    }

    .dbtn {
        padding: 10px 7px;
        font-size: 12px;
    }

    #customDomainButtons {
        padding: 30px 15px;
    }

    .generate-domain .wgs_ai_logo {
        width: 18px;
    }

    .home-domain-search.bg-white.domain-suggestion-container .p-5 {
        max-width: 100%;
        margin: auto;
        padding: 35px 0 !important;
    }

    .domain-suggestion-container .text-center h2.text-center {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .domain-textarea {
        font-size: 14px;
    }

    .domain-item_info span {
        font-size: 13px;
    }

    .domain-item_info {
        text-align: center;
        display: block;
    }
}

@media (max-width:470px) {

    #chatbot-container,
    div#chatbot-container.chatbot_expand {
        width: 88%;
    }

    .chat-option-btn {
        min-width: 100%;
        padding: 15px;
        font-size: 15px;
    }
}

@media (max-width:1600px) {
    .bothSideBarPresent.bothSideBarOpened #summarizeBtn.summarizeBtn-clientx-child-theme {
        margin-top: 5px;
        margin-right: 0px;
    }
}