/* SERVICE DETAIL PAGES */

/*CHAT ANIMATION STYLE*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
}

/* ------------------------------------------------------------ */
/* general */
/* ------------------------------------------------------------ */

.footer-container {
    display: none;
}

.search_wrapper_chat {
    position: relative;
    z-index: 2;
    margin: 0;
    /* Fixes the input at a specific position on the screen */
    width: 100%;
    /* Sets the input width */
    padding: 0px 10px;
}

.chat-input-container .submit-info-txt {
    font-size: 0px;
    width: 60px;
    height: 60px;
    background: url(../../img/ai-images/button_up_arrow.svg) no-repeat center calc(100% - 20px);
    background-size: 36px;
    position: absolute;
    right: -6px;
    top: 1px;
    padding: 0;
    border: none;
    z-index: 9;
    opacity: 0.2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-input-container .search_input {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    margin-right: 10px;
    height: 46px;
    background-image: unset;
    /* background: #ededed; */
}

.chat-input-container button {
    background-color: #336ffb;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    width: 4%;
    margin-bottom: 10px;
}


.service_main_content .search_wrapper_chat {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 95%;
    padding: 0px 10px;
}

.service_main_content .chat-input-container .search_input {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 30px;
    border: 0;
    outline: none;
    font-size: 16px;
    margin-right: 10px;
    height: 46px;
    background-image: unset;
    background: #F5F6F7;
    color: #363F4A;
    font-weight: 400;
}
.main-chat-icon {
    width: 123px;
    margin-bottom: 12px;
}

.service_main_content .main-chat-icon {
    width: 123px;
    margin-top: 2%;
    margin-bottom: 2%;
}

.section_main_accused_que .grid-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 16px;
    max-width: max-content;
    margin-top: 3%;
    margin-bottom: 11%;
    margin-right: auto;
    margin-left: auto;
}

.service_main_content .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 100%;
    margin-top: 5%;
    margin-bottom: 15%;
}

.service_kuendigung_2 .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 24px;
    max-width: max-content;
    margin-top: 5%;
    margin-bottom:11%;
    margin-right: auto;
    margin-left: auto;
}
.service_main_content .main-chat-icon {
    /* width: 40px;
    margin-top: 2%;
    margin-bottom: 2%; */
}
.service_main_content img.main-chat-icon{
    width: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
}
.main-container.kuendigung_blade_main_1 img.main-chat-icon{
    width: 123px;
    margin-bottom: 12px;
}
.main-container.kuendigung_blade_main_1 .grid-container .grid-item{
    padding: 10px;
}
/* Grid Items (Cards) */
.grid-item{
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 30px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 100%;
    cursor: pointer;
}

/* Hover Effect */
.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icons */
.grid-item img{
    width: 40px;
    height: 40px;
    /* margin-bottom: 10px; */
}

/* Text */
.service_kuendigung_2 .grid-item p{
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
    word-wrap: break-word;
    
    padding-inline-start: 10px;
}

/* Grid Items (Cards) */
.grid-item{
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    /* padding: 10px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* display: flex;
    align-items: center; */
    cursor: pointer;
}

/* Highlight the Selected Card */
.grid-item.highlight{
    border: 2px solid #007bff;
}

/* Hover Effect */
.grid-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Icons */
.grid-item img{
    width: 40px;
    height: 40px;
}

/* Text */

/* file-upload */
.file-upload {
    display: inline-block;
    position: relative;
    /* overflow: hidden; */
}

.file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload .upload-button {
    background-color: #fbfbfb;
    border: 1px solid #C4C5C7;
    border-radius: 50px;
    cursor: pointer;
    padding: 10%;
    /* margin-top: 5px; */
    width: 40px;
    height: 40px;
}

.file-upload .upload-button:hover {
    background: #f0f9ff;
}

.file-upload .upload-button img {
    width: 20px;
    height: auto;
}

.section_main_accused_que .conform-btn.grid-item {
    width: auto;
    min-width: inherit;
    flex: 0 0 auto;
}
.section_main_accused_que .conform-btn.grid-item p{
    margin-bottom: 0;
}

.severance-q p{
    color: #363F4A;
    font-size: 16px;
    font-weight:400;
}
.severance-q h4{
    color: #363F4A;
    font-size: 28px;
    font-weight:600;
    margin-bottom: 12px;
}
.severance-box {
    margin: 30px auto;
	/* border: 1px solid #C4C5C7;
	max-width: 540px;
	border-radius: 16px;
	box-shadow: 0 0 20px 0 #d3d3d34f;
	background: #fff;
	padding: 30px; */
}
.severance-input input.employe-title-input{
	border: 1px solid #C4C5C7;
	border-radius: 6px;
	font-size: 16px;
    font-weight: 500;
	width: 100%;
	padding: 8px 12px;
	margin: 10px 0;
}
.employe-title {
    font-size: 12px;
    font-weight: 400;
    color: #6F7680;
}

.severance_img_carti{
    gap: 12px;
}
.severance_img_carti img{
    max-width: max-content;
}

/* Overlay Styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Loader styling */
.magic-loader {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #dce2f0, #d6afe8);
    box-shadow: 0 0 20px rgb(232 206 245);
    animation: rotate 1.5s linear infinite, pulse 1.5s ease-in-out infinite;
}

/* Sparkle effect */
.magic-loader::before,
.magic-loader::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #E1F0FD, #F7EDFF);
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 1s infinite ease-in-out;
}

/* Position sparkles on either side */
.magic-loader::before {
    top: -10px;
    left: -10px;
    animation-delay: 0.3s;
}

.magic-loader::after {
    bottom: -10px;
    right: -10px;
    animation-delay: 0.6s;
}

/* Rotate animation for loader */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsing animation for loader */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Sparkle animation */
@keyframes sparkle {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}
@keyframes expanding {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes moving {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.section_main_accused_que .search_wrapper_chat {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 95%;
    padding: 0px 10px;
}


.chat-input-container .submit-info-txt {
    font-size: 0px;
    width: 60px;
    height: 60px;
    background: url(../../img/ai-images/button_up_arrow.svg) no-repeat center calc(100% - 20px);
    background-size: 36px;
    position: absolute;
    right: -6px;
    top: 1px;
    padding: 0;
    border: none;
    z-index: 9;
    opacity: 0.2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-input-container .search_input {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 30px;
    border: 0;
    outline: none;
    font-size: 16px;
    margin-right: 10px;
    height: 46px;
    background-image: unset;
    background: #F5F6F7;
    color: #363F4A;
    font-weight: 400;
    padding-inline-end: 60px;
    z-index: 1;
    position: relative;
}

.chat-input-container input:focus {
    border: 0 !important;
    box-shadow: 0 0 !important;
}

.search_input.w-input {
    border-radius: 32px !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.search_input.w-input {
    height: 64px !important;
    font-size: 20px !important;
}
.service_main_content .search_input.w-input :not(.chat-ai-search-input){
    height: 60px !important;  
}
.chat-input-container .submit-info-txt{
    background-size: 48px !important;
    top: 8px !important;
    right: -2px !important;
    width: 68px !important;
    height: 68px !important;
}
.file-upload .upload-button img {
	width: 28px;
	height: auto;
}
.file-upload .upload-button {
	width: 64px;
	height: 64px;
}
.file_upload_now .search_input.w-input {
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 0;
}

.search_input {
    padding-right: 70px;
}
.container-fluid {
    background: #FFF;
}
.chat-container {
    height: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: #007bff;
    padding: 15px;
    color: #fff;
    text-align: center;
}

.chat-box {
    flex-grow: 1;
    padding: 15px;
    width: 100%;
    height: 500px;
    height: 100%;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 10px;
}

/* WebKit browsers (Chrome, Safari, etc.) */

/* Width of the scrollbar */
.chat-box::-webkit-scrollbar {
    width: 10px;
}

/* Track (background of the scrollbar) */
.chat-box::-webkit-scrollbar-track {
    background: #e0e0e0;
    /* Light grey background */
    border-radius: 50px;
    /* Rounded corners */
}

/* Handle (the scrolling part) */
.chat-box::-webkit-scrollbar-thumb {
    background: #2e65e37a;
    /* Dark green scrollbar handle */
    border-radius: 10px;
    /* Rounded scrollbar */
}

/* Handle on hover (change the handle color when hovered) */
.chat-box::-webkit-scrollbar-thumb:hover {
    background: #2e65e37a;
    /* Slightly darker on hover */
}

/* Firefox (styling scrollbar for Firefox) */
.chat-box {
    scrollbar-width: thin;
    /* Make the scrollbar thin */
    scrollbar-color: #2e65e37a #e0e0e0;
    /* Thumb color and track color */
    padding-top: 10px;
    padding-bottom: 100px;
}

/* Styling scrollbar for Internet Explorer and Edge */
.chat-box {
    -ms-overflow-style: auto;
    /* Auto scrollbar style for IE/Edge */
}

.chat-box .message.user-message.attachment-sent {
    margin-bottom: 0 !important;

}

.chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
    border-radius: 0px 0px 0px 20px;
    min-width: 70%;
}

.chat-box .message.user-message.attachment-sent+.message.user-message .message-content p {
    padding-top: 0;
}

.chat-box .message.user-message.attachment-sent>.message-content {
    display: inline-flex;
    border-radius: 22px 32px 0px 0px;
    width: 100% !important;
    min-width: 35%;
    max-width: 70% !important;
}

.chat-box .message.user-message.attachment-sent>.message-content .file-info {
    margin-inline-start: 4px;
}


.btn-select {
	background: #FFF;
	border: 1px solid #EAECEE;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
	color: #6F7680;
    margin-top: 0;
    width: 140px;
    background-color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s, border-color 0.3s;
}
.btn.focus, .btn-select:hover {
	color: #008EFF;
	border-color: #008EFF;
	background: #EFF6FF;
}
.select-btn-yes-no{
    gap: 16px;
}
.btn-select.disabled {
    pointer-events: none;
    opacity: 0.65;
}
.form-control:focus {
	box-shadow: 0 0 5px #bfe3ff;
}
.form-control:disabled {
    pointer-events: none;
    opacity: 0.65;
    background-color: #ffffff;
}

/* Bot Message Styling */
.message {
    display: flex;
    margin-bottom: 28px;
    align-items: flex-end;
    align-items: start;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.avatar {
    text-align: center;
    /* margin: 16px; */
    margin-inline-end: 12px;
}

.avatar svg {
    border: 1px solid #9B00B7;
    border-radius: 100%;
    width: 30px;
    height: auto;
    box-shadow: 2px 2px 5px 2px #00000014;
    padding: 6px;
    min-height: 30px;
}

.message-content {
    background-color: #e0e0e0;
    border-radius: 10px;
    max-width: 70%;
    display: inline-block;
}

.bot-message .message-content {
    background: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 4px;
}

.bot-message .message-content p {
    font-size: 14px;
    padding-bottom: unset;
    white-space: pre-wrap;
    /* Preserve line breaks */
}

.user-message .message-content {
    background-color: #008EFF;
    color: white;
    border-radius: 32px 32px 0 32px;
    min-width: 35%;
}

.user-message .message-content p {
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    padding: 16px;
    /* padding-bottom: unset; */
    white-space: pre-wrap;
    line-height: 24px;
    margin: 0;
    word-wrap: break-word;
}

.user-message .message-content p a {
    color: #FFF;
}

.fa {
    margin: 5px;
    font-size: medium;
}

.hidden {
    display: none;
}

.btn-div-class {
    text-align: center;
}

.btn-div-class button {
    width: 50%;
    height: 10%;
    padding: 0.5%;
    border-radius: 10px;
    color: white;
    background: #000;
}

.bold {
    font-weight: bold;
}

.loading-container {
    display: flex;
    max-width: 600px;
    width: 900px;
    flex-direction: column;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    white-space: pre-wrap;
    /* Preserve line breaks */
}

.loading-container p {
    margin-bottom: 0px;
}

/*CHAT ANIMATION STYLE*/

.loading-bar {
    background-size: 200% auto;
    height: 12px;
    width: 100%;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    display: flex;
}

.animate-loading {
    transform-origin: left;
    animation: expanding 0.4s 0.7s forwards linear, moving 1s 1s infinite forwards linear;
}

.gradient-1 {
    background-image: linear-gradient(90deg, #D6EBFD 0%, #FAFCFF 100%);
    width: 100%;
}

.gradient-2 {
    background-image: linear-gradient(90deg, #FAFCFF 0%, #D6EBFD 100%);
    width: 90%;
}

.avatar img {
    width: 46px;
    height: 46px;
}

.file-preview {
    display: grid !important;
    background: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    padding: 10px;
    align-items: center;
    width: 50%;
    bottom: 72px;
}
.chat-ai-file-upload-wrap .file-preview > .d-flex{
    min-width: 100%;
}

.file-preview img {
    width: 40px;
    height: 48px;
    margin-right: 10px;
}

.file-info {
    flex: 1;
}

.file-info span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    word-break: break-word;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
}

.progress-bar {
    width: 98%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
}

.chat-ai-search {
    position: fixed;
    bottom: 0px;
    width: 100%;
    right: 0;
    left: 14px;
}

.chat-ai-search-input {
    background-color: #ffffff;
    padding-block-end: 24px;
}

.chat-ai-search-file-upload {
    display: none;
    bottom: 35px;
    padding: 12px 14px;
    border-radius: 20px 20px 0px 0px;
    outline: none;
    font-size: 16px;
    background: #F5F6F7;
    color: #363F4A;
    font-weight: 400;
    width: 100% !important;
}

.file_upload_now .chat-ai-search-file-upload {
    padding-bottom: 32px;
}

.progress-bar-1 {
    height: 5px;
    background: #ddd;
    border-radius: 6px;
    margin-block-start: 4px;
    width: 100%;
}

.progress-bar-1 .progress-1 {
    height: 5px;
    width: 0px;
    background: #007bff;
    border-radius: 6px;
    transition: 0.2s ease-in-out all;
}

.chat-ai-file-upload-wrap .file-info #fileName,
.chat-ai-file-upload-wrap .file-info-1 #filecount {
    font-size: 16px;
    font-weight: 600;
}

.chat-ai-file-upload-wrap .file-info #fileName {
    width: 100%;
    max-width: 220px;
    display: inline-block;
    /* display: -webkit-box; */
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-ai-file-upload-wrap .file-info #fileSize {
    font-size: 16px;
    font-weight: 400;
    color: #6F7680;
}

.chat-ai-file-upload-wrap .file-info-1 .remove-file {
    cursor: pointer;
    margin-inline-start: 16px;
}

/* .file_upload_now .chat-ai-search-file-upload {
    display: block !important;
} */

/* .chat-ai-search-file-upload {
    display: none !important;
} */

#file-upload-container {
    display: none;
    padding: 20px;
    /* border: 2px dashed #ccc; */
    /* border-radius: 10px; */
    background: linear-gradient(to bottom, transparent, white 50%);
    text-align: center;
    cursor: move;
    transition: all 0.3s ease;
    position: fixed;
    right: 0;
    /* left: 0px; */
    width: 100%;
    top: 0;
    max-width: 100%;
    /* margin-top: 30px; */
    height: 100vh;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.drop-icon-wrap {
    width: 76px;
    height: 76px;
}

.drop-upload-container {
    display: grid;
    justify-items: center;
    user-select: none;
}
    

.btnToptoEnd {
    /* display: none; */
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 100px;
    width: 40px;
    height: 40px;
    margin: auto;
    cursor: pointer;
    border: 0;
    border-radius: 38px;
    background: #f0f9ff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #e2e2e2ad;

    opacity: 0; /* Initially hidden */
    visibility: hidden;
    transition: 0.3s all;
    margin-bottom: -20px;
}
.btnToptoEnd.show {
    opacity: 1;
    visibility: visible;
    margin-bottom: 0px;
}

.btnToptoEnd svg {
    width: 14px;
    height: 24px;
}


/* Grid Container */
.section_main_accused_que .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 16px;
    max-width: max-content;
    margin-top: 3%;
    margin-bottom: 11%;
    margin-right: auto;
    margin-left: auto;
}

/* Grid Items (Cards) */
.service_kuendigung_2 .grid-item {
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 30px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 100%;
    width: 264px;
    height: 200px;
    cursor: pointer;
}

.service_kuendigung_2 .service_kuendigung_2 .grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}
.main-container.section_main_accused_que.service_detail_casion .grid-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

/* Hover Effect */
.service_kuendigung_2 .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icons */
.service_kuendigung_2 .grid-item img {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
}
.chat-ai-icon-title{
    font-size: 22px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 10px;
}

.section_main_accused_que .conform-btn-wrap{
    position: fixed;
    /* bottom: 90px; */
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px;
    scrollbar-width: none;
    position: fixed;
    /* bottom: 68px; */
    left: 0;
    width: 100%;
    background: white;
    z-index: 99;
    padding-bottom: 24px;
}
.section_main_accused_que .conform-btn.grid-item{
    width: auto;
    min-width: inherit;
    flex: 0 0 auto;
}
.conform-btn-wrap .grid-container{
    max-width: initial;
}
.main-container.section_main_accused_que.service_detail_flugpreis .chat-ai-content p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

/* ------------------------------------------------------------ */
/* general */
/* ------------------------------------------------------------ */


/*--------------------------------------------------------------
# service_detail_casion
--------------------------------------------------------------*/

.fade-in-img {
    opacity: 0;
    /* animation: fadeIn 0.8s ease-in-out forwards; */
    animation: fadeIn 0.8s ease-in-out 0.5s forwards; /* 0.5s delay */

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* chat-ai-icon-title */
.service_abfindung_2 .chat-ai-icon-title{
    color: #535EC7;
    background-color: #F1F3FF; /* #FFFCDF */
}
.service_abofallen_2 .chat-ai-icon-title{
    color: #C94A3E;
    background-color: #FFF1F0; /* #FFFCDF */
}
.service_bubgeld_2 .chat-ai-icon-title{
    color: #EB9A00;
    background-color: #FFFDEA91;
}
.service_casion_2 .chat-ai-icon-title{
    color: #FD3DB5;
    background-color: #FFCEED36; /* #FFFCDF */
}
.service_fitnessstudio_2 .chat-ai-icon-title{
    color: #745EC6;
    background-color: #F4EFFF;
}
.service_flugpreis_2 .chat-ai-icon-title{
    color: #4BC16C;
    background-color: #F0FFF4; /* #FFFCDF */
}
.service_inkassounternehmen_2 .chat-ai-icon-title{
    color: #59C0E4;
    background-color: #E4F8FF; /* #FFFCDF */
}
.service_kontogebuhren_2 .chat-ai-icon-title{
    color: #F97F3A;
    background-color: #FFF2EA8C;
}
/* chat-ai-icon-title */

.service_main_content .chat-ai-content-title-inner h3{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}
.chat-ai-content-title-inner p {
	font-size: 16px;
	font-weight: 500;
	color: #6F7680;
}
.service_main_content .button-flex{
    margin-top: 50px;
}
.service-main-img-center-1{
    width: 550px;
}
.service-main-image-wrap {
    margin-top: 40px;
}
.button-flex .contact-2, .button-flex .contact-3{
    border-radius: 8px;
    padding: 6px 10px;
}
.chat-ai-content-title .button-flex .contact-2, .chat-ai-content-title .button-flex .contact-3 {
	font-weight: 600;
}

/* Highlight the Selected Card */
.service_kuendigung_2 .grid-item.highlight-first {
    border: 2px solid #F97F3A;
}
.service_kuendigung_2 .grid-item.highlight-second {
    border: 2px solid #745EC6;
}
.service_kuendigung_2 .grid-item.highlight-third {
    border: 2px solid #4bc16c;
}
.service_kuendigung_2 .grid-item.highlight-four {
    border: 2px solid #535ec7;
}
.service_kuendigung_2 .grid-item.highlight-five {
    border: 2px solid #C94A3E;
}
.service_kuendigung_2 .grid-item.highlight-six {
    border: 2px solid #59C0E4;
}
.service_kuendigung_2 .grid-item.highlight-seven {
    border: 2px solid #EB9A00;
}
.service_kuendigung_2 .grid-item.highlight-eight {
    border: 2px solid #FD3DB5;
}
.service_kuendigung_2 .grid-item.highlight-nine {
    border: 2px solid #01b08c;
}
.service_kuendigung_2 .grid-item.highlight-ten {
    border: 2px solid #1E3A8A;
}
.service_kuendigung_2 .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    /* border: 2px solid #eaeaeaf2; */
}

.all_service_section_card .grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.all_service_section_card .grid-item h5 {
    margin-left: 2px;
}

.service_detail_inkassounternehmen .section_main_accused_que .conform-btn-wrap {
    bottom: 90px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px;
    scrollbar-width: none;
    bottom: 90px;
    left: 0;
    width: 100%;
    background: white;
    padding-bottom: 24px;
}

.service_detail_inkassounternehmen .conform-btn-wrap .grid-container {
    max-width: initial;
}
.service_detail_flugpreis .section_main_accused_que .conform-btn-wrap{
    position: fixed;
    /* right: 0; */
    bottom: 90px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px;
    scrollbar-width: none;
    position: fixed;
    bottom: 90px;
    left: 0;
    width: 100%;
    background: white;
    padding-bottom: 24px;
}
.service_detail_flugpreis .conform-btn-wrap .grid-container{
    max-width: initial;
}
.service_detail_flugpreis .employe-title{
    font-size: 12px;
    font-weight: 500;
    color: #6F7680;
}
/* service page - 3 images */

/* service_abofallen_2 */
.service_abofallen_2 .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-top-6.svg), url(/img/ai-images/service/service-img-left-bottom-6.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 180px), center calc(100% - 0px);
    height: 380px;
    width: 300px;
}
.service_abofallen_2 .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top-6.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 180px);
    height: 380px;
    width: 310px;
}

/* service_bubgeld_2 */
.service_bubgeld_2 .service-main-img-left-1 {
    background-image: url(/img/ai-images/service/service-img-left-top.svg), url(/img/ai-images/service/service-img-left-bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 180px), center calc(100% - 0px);
    height: 380px;
    width: 290px;
}

.service_bubgeld_2 .service-main-img-right-1 {
    background-image: url(/img/ai-images/service/service-img-right-top.svg), url(/img/ai-images/service/service-img-right-bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 120px), center calc(100% - 40px);
    height: 380px;
    width: 280px;
}

/* service_casion_2  */
.service_casion_2 .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-bottom-2.svg);
    background-repeat: no-repeat;
    background-position: center calc(100% - 200px);
    height: 380px;
    width: 310px;
}
.service_casion_2 .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top.svg-2.svg), url(/img/ai-images/service/service-img-right-bottom-2.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 210px), center calc(100% - 0px);
    height: 380px;
    width: 280px;
}
/* service-main-img */
.service_detail_casion .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-bottom-2.svg);
    background-repeat: no-repeat;
    background-position: center calc(100% - 200px);
    height: 380px;
    width: 310px;
}
.service_detail_casion .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top.svg-2.svg), url(/img/ai-images/service/service-img-right-bottom-2.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 210px), center calc(100% - 0px);
    height: 380px;
    width: 280px;
}
/* service-main-img */

/* service_fitnessstudio_2  */
.service_fitnessstudio_2 .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-top-4.svg), url(/img/ai-images/service/service-img-left-bottom-4.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 180px), center calc(100% - 0px);
    height: 380px;
    width: 290px;
}
.service_fitnessstudio_2 .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top-4.svg), url(/img/ai-images/service/service-img-right-bottom-4.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 260px), center calc(100% - 40px);
    height: 380px;
    width: 280px;
}

/* service_flugpreis_2 */
.service_flugpreis_2 .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-top-5.svg), url(/img/ai-images/service/service-img-left-bottom-5.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 180px), center calc(100% - 0px);
    height: 380px;
    width: 290px;
}
.service_flugpreis_2 .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top.svg-5.svg), url(/img/ai-images/service/service-img-right-bottom-5.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 210px), center calc(100% - 0px);
    height: 380px;
    width: 280px;
}

/* service_inkassounternehmen_2 */
.service_inkassounternehmen_2 .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-top-7.svg);
    background-repeat: no-repeat;
    background-position: center calc(100% - 170px);
    height: 380px;
    width: 370px;
}
.service_inkassounternehmen_2 .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top-7.svg);
    background-repeat: no-repeat;
    background-position: center calc(100% - 180px);
    height: 380px;
    width: 310px;
}

/* service_kontogebuhren_2  */
.service_kontogebuhren_2 .service-main-img-left-1{
    background-image: url(/img/ai-images/service/service-img-left-top-3.svg), url(/img/ai-images/service/service-img-left-bottom-3.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 180px), center calc(100% - 0px);
    height: 380px;
    width: 290px;
}
.service_kontogebuhren_2 .service-main-img-right-1{
    background-image: url(/img/ai-images/service/service-img-right-top-3.svg), url(/img/ai-images/service/service-img-right-bottom-3.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center calc(100% - 120px), center calc(100% - 40px);
    height: 380px;
    width: 280px;
}
/* service page - 3 images */

/*  service_casion_2 */
.service_detail_casion .service_casion_2 img.main-chat-icon {
    width: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
}
.service_detail_casion .chat-ai-icon-title{
    color: #FD3DB5;
    font-size: 22px;
    font-weight: 600;
    background-color: #FFCEED36; /* #FFFCDF */
    padding: 5px 14px;
    border-radius: 10px;
}

.main-container.section_main_accused_que.service_detail_kontogebuhren .chat-ai-content .grid-container, .main-container.section_main_accused_que.service_detail_fitnessstudio .chat-ai-content .grid-container, .main-container.section_main_accused_que.service_detail_abofallen .chat-ai-content .grid-container{
    max-width: 100%;
}
.main-container.section_main_accused_que .grid-item p{
    padding-inline-start: 0px;
    font-size: 16px;
}


.main-container.service_abfindung_2 .service_main_content .severance-box, .main-container.section_main_accused_que.service_detail_abfindung .severance-box{
    margin: 30px auto;
    margin-top: 30px;
    border: 1px solid #C4C5C7;
    max-width: 540px;
    border-radius: 16px;
    box-shadow: 0 0 20px 0 #d3d3d34f;
    background: #fff;
    padding: 30px;
}
.main-container.section_main_accused_que.service_detail_abfindung .severance-q p{
    font-size: 16px;
    font-weight: 400;
}
.main-container.section_main_accused_que.service_detail_abfindung .btn{
    margin-top: 0px;
}
/* .main-container.section_main_accused_que.service_detail_flugpreis .section_term-header .chat-ai-content.departure-airport{
    margin-inline: 60px;
} */

/* .main-container.section_main_accused_que.service_detail_flugpreis .section_term-header .departure-airport .severance-box{
    max-width: 540px;
} */
.main-container.section_main_accused_que.service_detail_bubgeld .grid-container .grid-item p {
    padding-inline-start: 10px;
}

.main-container.section_main_accused_que.service_detail_flugpreis .departure-airport .severance-box{
    padding: 0 150px;
}
.section_term-header.service_main_content .chat-ai-content-title .button-flex .contact-2, .section_term-header.service_main_content .chat-ai-content-title .button-flex .contact-3 {
	padding: 10px 32px;
}
.chat-ai-search .chat-ai-search-input{
    background-color: transparent;
}
.chat-ai-title{
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 24px;
}

/* ai response input styles */
.radio-group-wrapper.d-flex, .checkbox-group-wrapper.d-flex.flex-wrap{
    gap: 12px;
    margin-top: 8px;
}
.btn-select.btn-select-radio{
    width: max-content;
    margin: 0 !important;
}
.btn.btn-select.btn-select-radio.active-radio-selected, .active-checkbox-selected{
    border-color: #008EFF;
    background: #EFF6FF;
}
.custom-rounded-checkbox {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border: 2px solid #ccc;
    border-radius: 6px;
    background-color: transparent;
    cursor: pointer;
    vertical-align: middle;
}
.custom-rounded-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 8px;
    width: 7px;
    height: 15px;
    border: solid #007bff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-rounded-checkbox:checked:focus, .custom-rounded-checkbox:checked:active{
    border: 2px solid #008EFF;
}

.custom-rounded-radio {
    /* appearance: none; */
    /* -webkit-appearance: none; */
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}
.custom-rounded-radio:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    /* background: #000; */
    border-radius: 50%;
}
.custom-rounded-radio:checked:focus, .custom-rounded-radio:checked:active {
    box-shadow: 0 0 !important;
}
.custom-styled-select:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 0 2px rgba(100, 100, 100, 0.2);
}

.dynamic-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 12px 0;
}
.dynamic-list li {
    margin-bottom: 6px;
    color: #363F4A;
    font-size: 16px;
    font-weight: 400;
}
.attachment-sent .message-content img {
	filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.2));
}


/* Ai datepicker */
.custom-calendar-wrapper {
    position: relative;
    width: 240px;
    font-family: "Segoe UI", sans-serif;
}

.custom-datepicker {
    width: 100%;
    padding: 10px 40px 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: #fff url('data:image/svg+xml;utf8,<svg fill="gray" xmlns="http://www.w3.org/2000/svg" height="18" viewBox="0 0 24 24" width="18"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center;
    background-size: 28px;
    cursor: pointer;
    background-color: #ffffff !important;
}
.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    padding-bottom: 40px; /* Space for today button */
    position: relative;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
	fill: #000 !important;
}
.flatpickr-months .flatpickr-month {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}
.flatpickr-weekday {
    color: #888;
    font-weight: 600;
}
.flatpickr-day {
    font-size: 16px;
    font-weight: 500 !important;
    color: #000000;
    border-radius: 50% !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year{
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000000 !important;
}
.flatpickr-current-month input, .flatpickr-calendar select:focus, .flatpickr-calendar input:focus, .flatpickr-calendar textarea:focus{
    box-shadow: 0 0 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
	background: transparent !important;
}
.flatpickr-day.selected {
    background-color: #1294F2 !important;
    color: #fff !important;
    border: none !important;
}
.flatpickr-day.today {
    background-color: #cce5ff;
    border: 1px solid #1294F2;
    color: #1294F2;
}
.flatpickr-today-button {
    position: absolute;
    bottom: 8px;
    right: 12px;
    padding: 4px 10px;
    font-size: 14px;
    border: none;
    background-color: #1294F2;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.flatpickr-today-button:hover {
    background-color: #0056b3;
}


.count-inputs-container {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.count-form-group {
    display: flex;
    flex-direction: column;
}

.count-label {
    display: block;
    margin: 10px 0 6px;
    color: #363F4A;
    font-size: 15px;
    font-weight: 500;
}

.count-counter {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 12px;
    margin-bottom: 16px;
}


.count-btn {
    width: 24px;
    height: 24px;
    font-size: 18px;
    background-color: #0080FF;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;
}

.count-btn:hover {
    background-color: #005ec2;
}

.count-input {
    width: 100px !important;
    height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #C4C5C7;
    border-radius: 8px;
    color: #363F4A;
    background: transparent;
}

.count-inputs-container input[type="number"]::-webkit-inner-spin-button,
.count-inputs-container input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.count-inputs-container input[type="number"] {
    -moz-appearance: textfield;
}

/* Optional: Explicitly disable in all browsers */
.count-inputs-container input[type="number"] {
    appearance: textfield;
}


.card-select-option {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card-select-option:hover {
    transform: scale(1.02);
    border-color: #007bff;
}

.active-card-selected {
    background-color: #e6f0ff;
    border-color: #007bff;
    color: #004085;
}
.flat-card-button{
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.flat-card-button.selected-flat-button{
    border: 1px solid #008EFF;
    box-shadow: 0px 0px 18px 0px #0000000A;
}
.message-content .card-body-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    /* border-bottom: 1px solid #f0f0f0; */
    font-size: 14px;
}
.message-content .simplyright-card-logo{
    height:32px;
    width: 142px;
}
.message-content .dy-card-title{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.message-content .summary-card-wrapper{
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    padding: 20px 24px;
    max-width: 420px;
    background-color: #fff;
    box-shadow: 0px 0px 18px 0px #0000000A;
    margin-top: 4px;
}

/* ai response input styles */


/* responsive */
@media(max-width: 1200px) {
    .main-container.section_main_accused_que.service_detail_flugpreis .departure-airport .severance-box {
        padding: 0 60px;
    }
    .section_main_accused_que .grid-container {
        margin-bottom: 15%;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-center-1 {
        width: 410px;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-left-1{
        background-position: center calc(100% - 260px);
        background-size: 200px;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-right-1{
        background-position: center calc(100% - 250px), center calc(100% - 30px);
        background-size: 190px , 200px;
    }
    .main-container.service_kuendigung_2 .grid-container {
        margin-bottom: 15% !important;
    }
    .service_kontogebuhren_2 .service-main-img-center-1 {
        width: 410px;
    }

    .service_kontogebuhren_2 .service-main-img-left-1 {
        background-position: center calc(100% - 200px), center calc(100% - 90px);
        background-size: 200px, 200px;
    }

    .service_kontogebuhren_2 .service-main-img-right-1 {
        background-position: center calc(100% - 170px), center calc(100% - 100px);
        background-size: 120px, 180px;
    }
    .service_inkassounternehmen_2 .service-main-img-center-1 {
        width: 410px;
    }
    .service_inkassounternehmen_2 .service-main-img-left-1{
        background-position: center calc(100% - 270px);
        background-size: 200px;
    }
    .service_inkassounternehmen_2 .service-main-img-right-1{
        background-position: center calc(100% - 200px);
        background-size: 200px;
    }
    .service_flugpreis_2 .service-main-img-center-1 {
        width: 410px;
    }
    .service_flugpreis_2 .service-main-img-left-1{
        background-position: center calc(100% - 200px), center calc(100% - 90px);
        background-size: 200px ,200px;
    }
    .service_flugpreis_2 .service-main-img-right-1{
        background-position: center calc(100% - 170px), center calc(100% - 100px);
        background-size: 120px , 180px;
    }
    .service_fitnessstudio_2 .service-main-img-center-1 {
        width: 410px;
    }

    .service_fitnessstudio_2 .service-main-img-left-1 {
        background-position: center calc(100% - 200px), center calc(100% - 90px);
        background-size: 200px, 200px;
    }

    .service_fitnessstudio_2 .service-main-img-right-1 {
        background-position: center calc(100% - 300px), center calc(100% - 100px);
        background-size: 180px, 180px;
    }
    .service_casion_2 .service-main-img-center-1 {
        width: 410px;
    }
    .service_casion_2 .service-main-img-left-1{
        background-position: center calc(100% - 260px);
        background-size: 200px;
    }
    .service_casion_2 .service-main-img-right-1{
        background-position: center calc(100% - 250px), center calc(100% - 30px);
        background-size: 190px , 200px;
    }
    .service_bubgeld_2 .service-main-img-center-1 {
        width: 410px;
    }

    .service_bubgeld_2 .service-main-img-left-1 {
        background-position: center calc(100% - 200px), center calc(100% - 90px);
        background-size: 90px, 200px;
    }

    .service_bubgeld_2 .service-main-img-right-1 {
        background-position: center calc(100% - 170px), center calc(100% - 100px);
        background-size: 120px, 180px;
    }
    .service_abofallen_2 .service-main-img-center-1 {
        width: 410px;
    }
    .service_abofallen_2 .service-main-img-left-1{
        background-position: center calc(100% - 270px), center calc(100% - 90px);
        background-size: 200px ,210px;
    }
    .service_abofallen_2 .service-main-img-right-1{
        background-position: center calc(100% - 200px);
        background-size: 200px;
    }
    .service_kuendigung_2 .grid-item p {
        font-size: 14px;
    }
    .service_kuendigung_2 .grid-item img {
        width: 40px;
        height: 40px;
    }
    .service_kuendigung_2 .grid-item {
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    .chat-ai-title{
        font-size: 28px;
        line-height: 48px;
    }
    .loading-container{
        font-size: 14px;
        line-height: 20px;
    }
    .user-message .message-content p, .bot-message .message-content, .file-info span {
        font-size: 14px;
        line-height: 20px;
    }
    .form-control{
        font-size: 14px;
    }
    .chat-box .name-input-section .form-group .form-control{
        height: 34px !important;
    }
    .file-preview, .form-select {
        width: 100% !important;
    }
    .chat-box .name-input-section .form-group{
        width: 100% !important;
    }
    .chat-box .bot-message .select-btn-yes-no .btn.btn-select{
        padding: 6px 10px !important;
    }
}
@media (max-width: 1100px) {
    .loading-container {
        width: 400px;
    }

}
@media(max-width: 991px) {
    .main-chat-icon {
        width: 85px;
        margin-bottom: 6px;
    }
    .main-container.section_main_accused_que.service_detail_flugpreis .departure-airport .severance-box {
        padding: 0 0px;
    }
    .section_main_accused_que .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .section_main_accused_que .grid-item p{
        margin: 0;
    }
    .section_main_accused_que.service_detail_casion .service-main-image-wrap{
        position: relative;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-left-1{
        background-position: center calc(100% - 270px);
        background-size: 170px;
        position: absolute;
        left: 30px;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-right-1{
        background-position: center calc(100% - 240px), center calc(100% - 50px);
        background-size: 160px;
        position: absolute;
        right: 50px;
        top: 0px;
    }
    .section_main_accused_que.service_detail_casion .button-flex .contact-2, .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .section_main_accused_que.service_detail_flugpreis .chat-ai-content p {
        font-size: 14px !important;
    }
    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-content p {
        font-size: 14px !important;
    }
    .main-container.service_kuendigung_2 .grid-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .main-container.service_kuendigung_2 .grid-item p {
        margin: 0;
    }
    .service_kontogebuhren_2 .service-main-image-wrap {
        position: relative;
    }

    .service_kontogebuhren_2 .service-main-img-left-1 {
        background-position: center calc(100% - 220px), center calc(100% - 120px);
        background-size: 140px, 170px;
        position: absolute;
        left: 40px;
    }

    .service_kontogebuhren_2 .service-main-img-right-1 {
        background-position: center calc(100% - 260px), center calc(100% - 130px);
        background-size: 90px, 150px;
        position: absolute;
        right: 40px;
        top: 0px;
    }

    .service_kontogebuhren_2 .button-flex .contact-2,
    .service_kontogebuhren_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_inkassounternehmen_2 .service-main-image-wrap{
        position: relative;
    }
    .service_inkassounternehmen_2 .service-main-img-left-1{
        background-position: center calc(100% - 250px);
        background-size: 170px;
        position: absolute;
        left: -40px;
    }
    .service_inkassounternehmen_2 .service-main-img-right-1{
        background-position: center calc(100% - 230px);
        background-size: 190px;
        position: absolute;
        right: -40px;
        top: 20px;
    }
    .service_inkassounternehmen_2 .button-flex .contact-2, .service_inkassounternehmen_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_flugpreis_2 .service-main-image-wrap{
        position: relative;
    }
    .service_flugpreis_2 .service-main-img-left-1{
        background-position: center calc(100% - 220px), center calc(100% - 120px);
        background-size: 120px ,160px;
        position: absolute;
        left: -10px;
    }
    .service_flugpreis_2 .service-main-img-right-1{
        background-position: center calc(100% - 260px), center calc(100% - 130px);
        background-size: 90px , 170px;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .service_flugpreis_2 .button-flex .contact-2, .service_flugpreis_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_fitnessstudio_2 .service-main-image-wrap {
        position: relative;
    }

    .service_fitnessstudio_2 .service-main-img-left-1 {
        background-position: center calc(100% - 220px), center calc(100% - 120px);
        background-size: 140px, 170px;
        position: absolute;
        left: 40px;
    }

    .service_fitnessstudio_2 .service-main-img-right-1 {
        background-position: center calc(100% - 280px), center calc(100% - 100px);
        background-size: 140px, 150px;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .service_fitnessstudio_2 .button-flex .contact-2,
    .service_fitnessstudio_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_casion_2 .service-main-image-wrap{
        position: relative;
    }
    .service_casion_2 .service-main-img-left-1{
        background-position: center calc(100% - 270px);
        background-size: 170px;
        position: absolute;
        left: 30px;
    }
    .service_casion_2 .service-main-img-right-1{
        background-position: center calc(100% - 240px), center calc(100% - 50px);
        background-size: 160px;
        position: absolute;
        right: 50px;
        top: 0px;
    }
    .service_casion_2 .button-flex .contact-2, .service_casion_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_bubgeld_2 .service-main-image-wrap {
        position: relative;
    }

    .service_bubgeld_2 .service-main-img-left-1 {
        background-position: center calc(100% - 220px), center calc(100% - 120px);
        background-size: 70px, 170px;
        position: absolute;
        left: 40px;
    }

    .service_bubgeld_2 .service-main-img-right-1 {
        background-position: center calc(100% - 260px), center calc(100% - 130px);
        background-size: 90px, 150px;
        position: absolute;
        right: 40px;
        top: 0px;
    }

    .service_bubgeld_2 .button-flex .contact-2,
    .service_bubgeld_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_abofallen_2 .service-main-image-wrap{
        position: relative;
    }
    .service_abofallen_2 .service-main-img-left-1{
        background-position: center calc(100% - 250px), center calc(100% - 110px);
        background-size: 170px ,170px;
        position: absolute;
        left: -40px;
    }
    .service_abofallen_2 .service-main-img-right-1{
        background-position: center calc(100% - 230px);
        background-size: 190px;
        position: absolute;
        right: -40px;
        top: 20px;
    }
    .service_abofallen_2 .button-flex .contact-2, .service_abofallen_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .service_abfindung_2 .service-main-image-wrap{
        position: relative;
    }
    .service_abfindung_2 .button-flex .contact-2, .service_abfindung_2 .button-flex .contact-3 {
        padding: 4px 12px;
    }
    .kuendigung_blade_main_1 .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
        margin-bottom: 5%;
    }
    .kuendigung_blade_main_1 .grid-item img {
        width: 32px;
        height: 32px;
    }
    .kuendigung_blade_main_1 .grid-item p {
        font-size: 12px;
        font-weight: 500;
    }
    .kuendigung_blade_main_1 .chat-input-container .search_input{
        font-size: 14px;
    }
    .kuendigung_blade_main_1 .chat-ai-content-title{
        margin-block-start: 42px !important;
    }
    .kuendigung_blade_main_1 .search_wrapper_chat {
        width: 93%;
    }
    .kuendigung_blade_main_1 .container-fluid{
        height: 100vh;
    }
    .main-container.kuendigung_blade_main_1 img.main-chat-icon{
        width: 85px !important;
    }
    .main-container.kuendigung_blade_main_1 .chat-ai-content-title-inner h3 {
        font-size: 24px;
    }
    .section_main_accused_que .chat-ai-content-title-inner h3 {
        font-size: 26px !important;
    }
    .main-container.service_kuendigung_2{
        margin-top: 24px;
    }
    .chat-ai-title{
        font-size: 28px;
        line-height: 32px;
    }

    .search_input.w-input {
        height: 46px !important;
        font-size: 16px !important;
    }
    .chat-input-container .submit-info-txt{
        background-size: 36px !important;
        top: 1px !important;
        right: -6px !important;
        width: 60px !important;
        height: 60px !important;
    }
    .file-upload .upload-button img {
        width: 20px;
        height: auto;
    }
    .file-upload .upload-button {
        width: 46px;
        height: 46px;
    }
    .file_upload_now .chat-ai-search-file-upload{
        bottom: 26px;
        padding-bottom: 20px !important;
    }
    .btnToptoEnd {
        bottom: 85px;
    }
}
@media(max-width: 767px) {
    .loading-container {
        width: 400px;
    }
    .main-container.section_main_accused_que.service_detail_flugpreis .departure-airport .severance-box {
        padding: 0 80px;
    }
    .section_term-header.service_main_content .chat-ai-content-title .button-flex .contact-2, .section_term-header.service_main_content .chat-ai-content-title .button-flex .contact-3 {
        padding: 8px 14px;
    }
    .main-container.section_main_accused_que .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }
    .section_main_accused_que .grid-container {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 35%;
    }
    .section_main_accused_que .chat-ai-content p {
        font-size: 16px;
    }
    .section_main_accused_que .grid-item {
        height: inherit !important;
        justify-content: center;
    }
    .main-container.section_main_accused_que.service_detail_abfindung .search_wrapper_chat {
        width: 90%;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-search-input {
        left: 10px;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .user-message .message-content {
        min-width: unset;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        min-width: 35%;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-box .message.user-message.attachment-sent>.message-content img {
        width: 30px !important;
    }
    .section_main_accused_que.service_detail_abofallen .search_wrapper_chat {
        width: 90%;
    }

    .section_main_accused_que.service_detail_abofallen .chat-ai-search-input {
        left: 10px;
    }

    .section_main_accused_que.service_detail_abofallen .user-message .message-content {
        min-width: unset;
    }

    .section_main_accused_que.service_detail_abofallen .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        min-width: 35%;
    }

    .section_main_accused_que.service_detail_abofallen .chat-box .message.user-message.attachment-sent>.message-content img {
        width: 30px !important;
    }
    .section_main_accused_que.service_detail_bubgeld .search_wrapper_chat {
        width: 90%;
    }

    .section_main_accused_que.service_detail_bubgeld .chat-ai-search-input {
        left: 10px;
    }

    .section_main_accused_que.service_detail_bubgeld .user-message .message-content {
        min-width: unset;
    }

    .section_main_accused_que.service_detail_bubgeld .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        min-width: 35%;
    }

    .section_main_accused_que.service_detail_bubgeld .chat-box .message.user-message.attachment-sent>.message-content img {
        width: 30px !important;
    }
    .section_main_accused_que.service_detail_casion .button-flex .contact-2, .button-flex .contact-3 {
        font-size: 14px;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-left-1, .service-main-img-right-1{
        display: none;
    }

    .section_main_accused_que.service_detail_casion .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .section_main_accused_que.service_detail_casion .main-container .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .section_main_accused_que.service_detail_casion .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .section_main_accused_que.service_detail_casion .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }
    .section_main_accused_que.service_detail_casion .main-chat-icon {
        width: 85px;
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .section_main_accused_que.service_detail_casion .service_main_content .button-flex {
        margin-top: 30px;
    }
    .section_main_accused_que.service_detail_casion .service_main_content .button-flex {
        margin-top: 30px;
    }
    .section_main_accused_que.service_detail_casion .text-center.chat-ai-content-title-inner .d-flex.justify-content-center{
        margin-bottom: 12px;
    }
    .section_main_accused_que.service_detail_casion .search_wrapper .search_input {
        height: 38px !important;
    }
    .section_main_accused_que.service_detail_casion .search_wrapper {
        max-width: 490px !important;
    }
    .section_main_accused_que.service_detail_casion .search_wrapper .search-icon-btn {
        width: 44px !important;
        height: 38px !important;
        background-size: 20px !important;
    }
    .section_main_accused_que.service_detail_casion .search_wrapper_chat {
        width: 90%;
    }

    .section_main_accused_que.service_detail_casion .chat-ai-search-input {
        left: 10px;
    }

    .section_main_accused_que.service_detail_casion .user-message .message-content {
        min-width: unset;
    }

    .section_main_accused_que.service_detail_casion .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        min-width: 35%;
    }

    .section_main_accused_que.service_detail_casion .chat-box .message.user-message.attachment-sent>.message-content img {
        width: 30px !important;
    }
    .section_main_accused_que.service_detail_flugpreis  .chat-ai-content p {
        font-size: 12px !important;
    }
    .section_main_accused_que .conform-btn.grid-item {
        padding: 8px 12px !important;
    }
    .section_main_accused_que.service_detail_inkassounternehmen .search_wrapper_chat {
        width: 90%;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-search-input {
        left: 10px;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .user-message .message-content {
        min-width: unset;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        min-width: 35%;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-box .message.user-message.attachment-sent>.message-content img {
        width: 30px !important;
    }
    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-content p {
        font-size: 12px !important;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .conform-btn.grid-item {
        padding: 8px 12px !important;
    }
    .main-container.service_kuendigung_2 .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }

    .main-container.service_kuendigung_2 .grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-bottom: 35% !important;
        gap: 16px;
    }
    .service_kontogebuhren_2 .button-flex .contact-2,
    .service_kontogebuhren_2 .button-flex .contact-3 {
        font-size: 14px;
    }

    .service_kontogebuhren_2 .service-main-img-left-1,
    .service_kontogebuhren_2 .service-main-img-right-1 {
        display: none;
    }

    .service_kontogebuhren_2 .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }

    .service_kontogebuhren_2 .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on small screens */
    }

    .service_kontogebuhren_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .service_kontogebuhren_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }

    .service_kontogebuhren_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .service_kontogebuhren_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center {
        margin-bottom: 12px;
    }

    .service_kontogebuhren_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }

    .service_kontogebuhren_2 .service_main_content .button-flex {
        margin-top: 30px;
    }

    .service_kontogebuhren_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_inkassounternehmen_2 .button-flex .contact-2, .service_inkassounternehmen_2 .button-flex .contact-3 {
        font-size: 14px;
    }
    .service_inkassounternehmen_2 .service-main-img-left-1, .service_inkassounternehmen_2 .service-main-img-right-1{
        display: none;
    }
    .service_inkassounternehmen_2 .section_term-header.kuendigung-part {
	    padding: 28px 15px 50px 15px;
	}
    .service_inkassounternehmen_2 .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .service_inkassounternehmen_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .service_inkassounternehmen_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .service_inkassounternehmen_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }
    .service_inkassounternehmen_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .service_inkassounternehmen_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_inkassounternehmen_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_inkassounternehmen_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center{
        margin-bottom: 12px;
    }
    .service_inkassounternehmen_2 .search_wrapper .search_input {
        height: 38px !important;
    }
    .service_inkassounternehmen_2 .search_wrapper {
        max-width: 490px !important;
    }
    .service_inkassounternehmen_2 .search_wrapper .search-icon-btn {
        width: 44px !important;
        height: 38px !important;
        background-size: 20px !important;
    }
    .service_flugpreis_2 .button-flex .contact-2, .service_flugpreis_2 .button-flex .contact-3 {
        font-size: 14px;
    }
    .service_flugpreis_2 .service-main-img-left-1, .service_flugpreis_2 .service-main-img-right-1{
        display: none;
    }
    .service_flugpreis_2 .section_term-header.kuendigung-part {
	    padding: 28px 15px 50px 15px;
	}
    .service_flugpreis_2 .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .service_flugpreis_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .service_flugpreis_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .service_flugpreis_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }
    .service_flugpreis_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .service_flugpreis_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_flugpreis_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_flugpreis_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center{
        margin-bottom: 12px;
    }
    .service_flugpreis_2 .search_wrapper .search_input {
        height: 38px !important;
    }
    .service_flugpreis_2 .search_wrapper {
        max-width: 490px !important;
    }
    .service_flugpreis_2 .search_wrapper .search-icon-btn {
        width: 44px !important;
        height: 38px !important;
        background-size: 20px !important;
    }
    .service_fitnessstudio_2 .button-flex .contact-2,
    .service_fitnessstudio_2 .button-flex .contact-3 {
        font-size: 14px;
    }

    .service_fitnessstudio_2 .service-main-img-left-1,
    .service_fitnessstudio_2 .service-main-img-right-1 {
        display: none;
    }

    .service_fitnessstudio_2 .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }

    .service_fitnessstudio_2 .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on small screens */
    }

    .service_fitnessstudio_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .service_fitnessstudio_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }

    .service_fitnessstudio_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .service_fitnessstudio_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center {
        margin-bottom: 12px;
    }

    .service_fitnessstudio_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }

    .service_fitnessstudio_2 .service_main_content .button-flex {
        margin-top: 30px;
    }

    .service_fitnessstudio_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_casion_2 .button-flex .contact-2, .service_casion_2 .button-flex .contact-3 {
        font-size: 14px;
    }
    .service_casion_2 .service-main-img-left-1, .service_casion_2 .service-main-img-right-1{
        display: none;
    }
    .service_casion_2 .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }
    .service_casion_2 .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .service_casion_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .service_casion_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .service_casion_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }
    .service_casion_2 img.main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .service_casion_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_casion_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_casion_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center{
        margin-bottom: 12px;
    }
    .service_casion_2 .search_wrapper .search_input {
        height: 38px !important;
    }
    .service_casion_2 .search_wrapper {
        max-width: 490px !important;
    }
    .service_casion_2 .search_wrapper .search-icon-btn {
        width: 44px !important;
        height: 38px !important;
        background-size: 20px !important;
    }
    .service_bubgeld_2 .button-flex .contact-2,
    .service_bubgeld_2 .button-flex .contact-3 {
        font-size: 14px;
    }

    .service_bubgeld_2 .service-main-img-left-1,
    .service_bubgeld_2 .service-main-img-right-1 {
        display: none;
    }

    .service_bubgeld_2 .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }

    .service_bubgeld_2 .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on small screens */
    }

    .service_bubgeld_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .service_bubgeld_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }

    .service_bubgeld_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .service_bubgeld_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 12px;
    }

    .service_bubgeld_2 .service_main_content .button-flex {
        margin-top: 30px;
    }

    .service_bubgeld_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_abofallen_2 .button-flex .contact-2, .service_abofallen_2 .button-flex .contact-3 {
        font-size: 14px;
    }
    .service_abofallen_2 .service-main-img-left-1, .service_abofallen_2 .service-main-img-right-1{
        display: none;
    }
    .service_abofallen_2 .section_term-header.kuendigung-part {
	    padding: 28px 15px 50px 15px;
	}
    .service_abofallen_2 .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .service_abofallen_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .service_abofallen_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .service_abofallen_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }
    .service_abofallen_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .service_abofallen_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_abofallen_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_abofallen_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center{
        margin-bottom: 12px;
    }
    .service_abofallen_2 .search_wrapper .search_input {
        height: 38px !important;
    }
    .service_abofallen_2 .search_wrapper {
        max-width: 490px !important;
    }
    .service_abofallen_2 .search_wrapper .search-icon-btn {
        width: 44px !important;
        height: 38px !important;
        background-size: 20px !important;
    }
    .service_abfindung_2 .button-flex .contact-2, .service_abfindung_2 .button-flex .contact-3 {
        font-size: 14px;
    }
    .service_abfindung_2 .section_term-header.kuendigung-part {
	    padding: 28px 15px 50px 15px;
	}
    .service_abfindung_2 .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .service_abfindung_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .service_abfindung_2 .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .service_abfindung_2 .chat-ai-icon-title {
        font-size: 18px;
        padding: 5px 14px;
    }
    .service_abfindung_2 .main-chat-icon {
        width: 32px;
        margin-top: 0%;
        margin-bottom: 0px;
    }
    .service_abfindung_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_abfindung_2 .service_main_content .button-flex {
        margin-top: 30px;
    }
    .service_abfindung_2 .text-center.chat-ai-content-title-inner .d-flex.justify-content-center{
        margin-bottom: 12px;
    }
    .service_abfindung_2 .search_wrapper .search_input {
        height: 38px !important;
    }
    .service_abfindung_2 .search_wrapper {
        max-width: 490px !important;
    }
    .service_abfindung_2 .search_wrapper .search-icon-btn {
        width: 44px !important;
        height: 38px !important;
        background-size: 20px !important;
    }
    .kuendigung_blade_main_1 .section_term-header.kuendigung-part {
	    padding: 28px 15px 50px 15px;
	}
    .kuendigung_blade_main_1 .chat-ai-search {
        left: 20px;
    }
    .main-chat-ai-class .section_term-header.kuendigung-part {
        padding: 28px 15px 50px 15px;
    }
    .main-chat-ai-class .search_wrapper_chat {
        width: 90%;
    }

    .main-chat-ai-class .chat-ai-search-input {
        left: 10px;
    }

    .main-chat-ai-class .user-message .message-content {
        min-width: unset;
    }

    .main-chat-ai-class .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        min-width: 70%;
    }

    .main-chat-ai-class .chat-box .message.user-message.attachment-sent>.message-content img {
        width: 24px !important;
    }

    .main-chat-ai-class .loading-container {
        width: 400px;
    }
    .select-btn-yes-no {
        gap: 4px;
    }
    .file-upload .upload-button {
        width: 40px;
        height: 40px;
    }
    .search_input.w-input{
        height: 40px !important;
        font-size: 14px !important;
    }
    .chat-input-container .submit-info-txt {
        background-size: 32px !important;
        top: 1px !important;
        right: -7px !important;
        width: 55px !important;
        height: 55px !important;
    }
    .user-message .message-content p {
        padding: 8px 12px;
    }
    .file-preview img{
        width: 24px;
        height: 30px;
    }
    .btnToptoEnd{
        width: 35px;
        height: 35px;
    }
    .avatar img {
        width: 32px;
        height: 32px;
    }
    .user-message .message-content {
        border-radius: 20px 20px 0px 20px;
    }
    .btnToptoEnd {
        left: 45%;
    }
}
@media(max-width: 576px) {
    .service_main_content .chat-ai-content-title-inner h3{
        text-align: start !important;
    }
    .chat-ai-content-title-inner{
        text-align: start !important;
    }
    .section_main_accused_que .chat-ai-content-title-inner .main-chat-icon {
        width: 65px;
    }
    .main-container.section_main_accused_que .grid-item p {
        font-size: 14px;
    }
    .main-container.section_main_accused_que.service_detail_flugpreis .departure-airport .severance-box {
        padding: 0 20px;
    }
    .section_main_accused_que .severance-q p {
        font-size: 12px;
    }

    .section_main_accused_que .severance-q h4 {
        font-size: 18px;
    }

    .section_main_accused_que .severance-box .box-footer .btn {
        margin-top: 4px;
    }

    .section_main_accused_que .severance-box {
        margin-top: 20px !important;
    }

    .section_main_accused_que .severance-box {
        padding: 20px;
    }
    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-search-input {
        left: 0px;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-file-upload-wrap .file-info #fileSize,
    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-file-upload-wrap .file-info #fileName,
    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-file-upload-wrap .file-info-1 #filecount {
        font-size: 14px;

    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-file-upload-wrap .file-info #fileSize,
    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-file-upload-wrap .file-info #fileName {
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
        width: 160px;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-ai-search-file-upload {
        padding: 10px 10px;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .drop-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .main-container.section_main_accused_que.service_detail_abfindung .chat-box .message.user-message.attachment-sent>.message-content,
    .main-container.section_main_accused_que.service_detail_abfindung .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        max-width: 65%;
        min-width: 65%;
    }
    .section_main_accused_que.service_detail_abofallen .chat-ai-search-input {
        left: 0px;
    }

    .section_main_accused_que.service_detail_abofallen .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_abofallen .chat-ai-file-upload-wrap .file-info #fileName,
    .section_main_accused_que.service_detail_abofallen .chat-ai-file-upload-wrap .file-info-1 #filecount {
        font-size: 14px;

    }

    .section_main_accused_que.service_detail_abofallen .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_abofallen .chat-ai-file-upload-wrap .file-info #fileName {
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
        width: 160px;
    }

    .section_main_accused_que.service_detail_abofallen .chat-ai-search-file-upload {
        padding: 10px 10px;
    }

    .section_main_accused_que.service_detail_abofallen .drop-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .section_main_accused_que.service_detail_abofallen .chat-box .message.user-message.attachment-sent>.message-content,
    .section_main_accused_que.service_detail_abofallen .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        max-width: 65%;
        min-width: 65%;
    }
    .section_main_accused_que.service_detail_bubgeld .chat-ai-search-input {
        left: 0px;
    }

    .section_main_accused_que.service_detail_bubgeld .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_bubgeld .chat-ai-file-upload-wrap .file-info #fileName,
    .section_main_accused_que.service_detail_bubgeld .chat-ai-file-upload-wrap .file-info-1 #filecount {
        font-size: 14px;

    }

    .section_main_accused_que.service_detail_bubgeld .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_bubgeld .chat-ai-file-upload-wrap .file-info #fileName {
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
        width: 160px;
    }

    .section_main_accused_que.service_detail_bubgeld .chat-ai-search-file-upload {
        padding: 10px 10px;
    }

    .section_main_accused_que.service_detail_bubgeld .drop-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .section_main_accused_que.service_detail_bubgeld .chat-box .message.user-message.attachment-sent>.message-content,
    .section_main_accused_que.service_detail_bubgeld .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        max-width: 65%;
        min-width: 65%;
    }
    .section_main_accused_que.service_detail_casion .search_wrapper .search_input{
        font-size: 14px;
    }
    /* .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    } */
    .section_main_accused_que.service_detail_casion .chat-ai-icon-title {
        font-size: 14px;
    }
    .section_main_accused_que.service_detail_casion .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }
    .section_main_accused_que.service_detail_casion .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height:  1.4 !important;
        /* text-align: start; */
    }
    .section_main_accused_que.service_detail_casion .service-main-image-wrap {
        margin-top: 28px;
    }
    .section_main_accused_que.service_detail_casion .service-main-img-center-1 {
        width: 390px;
    }
    .section_main_accused_que.service_detail_casion .service_main_content .button-flex{
        justify-content: start !important;
    }
    .section_main_accused_que.service_detail_casion .service_main_content .button-flex a:first-child{
        display: none;
    }
    .section_main_accused_que.service_detail_casion .text-center.chat-ai-content-title-inner > .d-flex.align-items-center.justify-content-center{
        justify-content: start !important;
    }
    .section_main_accused_que.service_detail_casion .chat-ai-search-input {
        left: 0px;
    }

    .section_main_accused_que.service_detail_casion .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_casion .chat-ai-file-upload-wrap .file-info #fileName,
    .section_main_accused_que.service_detail_casion .chat-ai-file-upload-wrap .file-info-1 #filecount {
        font-size: 14px;

    }

    .section_main_accused_que.service_detail_casion .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_casion .chat-ai-file-upload-wrap .file-info #fileName {
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
        width: 160px;
    }

    .section_main_accused_que.service_detail_casion .chat-ai-search-file-upload {
        padding: 10px 10px;
    }

    .section_main_accused_que.service_detail_casion .drop-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .section_main_accused_que.service_detail_casion .chat-box .message.user-message.attachment-sent>.message-content,
    .section_main_accused_que.service_detail_casion .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        max-width: 65%;
        min-width: 65%;
    }
    .section_main_accused_que.service_detail_casion .section_term-header .grid-item {
        padding-inline-start: 14px;
    }
    .section_main_accused_que.service_detail_flugpreis .button-container::-webkit-scrollbar {
        display: none;
    }

    .section_main_accused_que.service_detail_flugpreis .grid-item:hover {
        transform: translateY(0px);
    }

    .section_main_accused_que.service_detail_flugpreis .severance-q p {
        font-size: 12px;
    }

    .section_main_accused_que.service_detail_flugpreis .severance-q h4 {
        font-size: 18px;
    }

    .section_main_accused_que.service_detail_flugpreis .severance-input input.employe-title-input {
        font-size: 14px;
        padding: 4px 10px;
        margin: 8px 0;
    }

    .section_main_accused_que.service_detail_flugpreis .severance-box.mt-5 {
        margin-top: 20px !important;
    }

    .section_main_accused_que.service_detail_flugpreis .chat-ai-icon-title {
        font-size: 14px;
    }

    .section_main_accused_que.service_detail_flugpreis .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
        padding-top: 4px;
    }

    .section_main_accused_que.service_detail_flugpreis .chat-ai-content-title-inner p {
        font-size: 14px;
    }
    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-search-input {
        left: 0px;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-file-upload-wrap .file-info #fileName,
    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-file-upload-wrap .file-info-1 #filecount {
        font-size: 14px;

    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-file-upload-wrap .file-info #fileSize,
    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-file-upload-wrap .file-info #fileName {
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
        width: 160px;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-ai-search-file-upload {
        padding: 10px 10px;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .drop-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .chat-box .message.user-message.attachment-sent>.message-content,
    .section_main_accused_que.service_detail_inkassounternehmen .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        max-width: 65%;
        min-width: 65%;
    }
    .section_main_accused_que.service_detail_inkassounternehmen .button-container::-webkit-scrollbar {
        display: none;
    }

    .section_main_accused_que.service_detail_inkassounternehmen .grid-item:hover {
        transform: translateY(0px);
    }
    .service_kontogebuhren_2 .search_wrapper .search_input {
        font-size: 14px;
    }

    .service_kontogebuhren_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }

    .service_kontogebuhren_2 .chat-ai-icon-title {
        font-size: 14px;
    }

    .service_kontogebuhren_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }

    .service_kontogebuhren_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height: 1.4 !important;
        text-align: start;
    }

    .service_kontogebuhren_2 .service-main-image-wrap {
        margin-top: 28px;
    }

    .service_kontogebuhren_2 .service-main-img-center-1 {
        width: 320px;
    }

    .service_kontogebuhren_2 .service_main_content .button-flex {
        justify-content: start !important;
    }

    .service_kontogebuhren_2 .service_main_content .button-flex a:first-child {
        display: none;
    }

    .service_kontogebuhren_2 .text-center.chat-ai-content-title-inner>.d-flex.align-items-center.justify-content-center {
        justify-content: start !important;
    }
    .service_inkassounternehmen_2 .search_wrapper .search_input{
        font-size: 14px;
    }
    .service_inkassounternehmen_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }
    .service_inkassounternehmen_2 .chat-ai-icon-title {
        font-size: 14px;
    }
    .service_inkassounternehmen_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }
    .service_inkassounternehmen_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height:  1.4 !important;
        text-align: start;
    }
    .service_inkassounternehmen_2 .service-main-image-wrap {
        margin-top: 28px;
    }
    .service_inkassounternehmen_2 .service-main-img-center-1 {
        width: 390px;
    }
    .service_inkassounternehmen_2 .service_main_content .button-flex{
        justify-content: start !important;
    }
    .service_inkassounternehmen_2 .service_main_content .button-flex a:first-child{
        display: none;
    }
    .service_inkassounternehmen_2 .text-center.chat-ai-content-title-inner > .d-flex.align-items-center.justify-content-center{
        justify-content: start !important;
    }
    .service_flugpreis_2 .search_wrapper .search_input{
        font-size: 14px;
    }
    .service_flugpreis_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }
    .service_flugpreis_2 .chat-ai-icon-title {
        font-size: 14px;
    }
    .service_flugpreis_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }
    .service_flugpreis_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height:  1.4 !important;
        text-align: start;
    }
    .service_flugpreis_2 .service-main-image-wrap {
        margin-top: 28px;
    }
    .service_flugpreis_2 .service-main-img-center-1 {
        width: 390px;
    }
    .service_flugpreis_2 .service_main_content .button-flex{
        justify-content: start !important;
    }
    .service_flugpreis_2 .service_main_content .button-flex a:first-child{
        display: none;
    }
    .service_flugpreis_2 .text-center.chat-ai-content-title-inner > .d-flex.align-items-center.justify-content-center{
        justify-content: start !important;
    }
    .service_fitnessstudio_2 .search_wrapper .search_input {
        font-size: 14px;
    }

    .service_fitnessstudio_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }

    .service_fitnessstudio_2 .chat-ai-icon-title {
        font-size: 14px;
    }

    .service_fitnessstudio_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }

    .service_fitnessstudio_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height: 1.4 !important;
        text-align: start;
    }

    .service_fitnessstudio_2 .service-main-image-wrap {
        margin-top: 28px;
    }

    .service_fitnessstudio_2 .service-main-img-center-1 {
        width: 320px;
    }

    .service_fitnessstudio_2 .service_main_content .button-flex {
        justify-content: start !important;
    }

    .service_fitnessstudio_2 .service_main_content .button-flex a:first-child {
        display: none;
    }

    .service_fitnessstudio_2 .text-center.chat-ai-content-title-inner>.d-flex.align-items-center.justify-content-center {
        justify-content: start !important;
    }
    .service_casion_2 .search_wrapper .search_input{
        font-size: 14px;
    }
    .service_casion_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }
    .service_casion_2 .chat-ai-icon-title {
        font-size: 14px;
    }
    .service_casion_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }
    .service_casion_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height:  1.4 !important;
        text-align: start;
    }
    .service_casion_2 .service-main-image-wrap {
        margin-top: 28px;
    }
    .service_casion_2 .service-main-img-center-1 {
        width: 390px;
    }
    .service_casion_2 .service_main_content .button-flex{
        justify-content: start !important;
    }
    .service_casion_2 .service_main_content .button-flex a:first-child{
        display: none;
    }
    .service_casion_2 .text-center.chat-ai-content-title-inner > .d-flex.align-items-center.justify-content-center{
        justify-content: start !important;
    }
    .service_bubgeld_2 .search_wrapper .search_input {
        font-size: 14px;
    }

    .service_bubgeld_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 26px !important;
    }

    .service_bubgeld_2 .chat-ai-icon-title {
        font-size: 14px;
    }

    .service_bubgeld_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }

    .service_bubgeld_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height: 1.4 !important;
        text-align: start;
    }

    .service_bubgeld_2 .service-main-image-wrap {
        margin-top: 28px;
    }

    .service_bubgeld_2 .service-main-img-center-1 {
        width: 320px;
    }

    .service_bubgeld_2 .service_main_content .button-flex {
        justify-content: start !important;
    }

    .service_bubgeld_2 .service_main_content .button-flex a:first-child {
        display: none;
    }

    .service_bubgeld_2 .text-center.chat-ai-content-title-inner>.d-flex.align-items-center.justify-content-center {
        justify-content: start !important;
    }
    .service_abofallen_2 .search_wrapper .search_input{
        font-size: 14px;
    }
    .service_abofallen_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }
    .service_abofallen_2 .chat-ai-icon-title {
        font-size: 14px;
    }
    .service_abofallen_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
    }
    .service_abofallen_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height:  1.4 !important;
        text-align: start;
    }
    .service_abofallen_2 .service-main-image-wrap {
        margin-top: 28px;
    }
    .service_abofallen_2 .service-main-img-center-1 {
        width: 390px;
    }
    .service_abofallen_2 .service_main_content .button-flex{
        justify-content: start !important;
    }
    .service_abofallen_2 .service_main_content .button-flex a:first-child{
        display: none;
    }
    .service_abofallen_2 .text-center.chat-ai-content-title-inner > .d-flex.align-items-center.justify-content-center{
        justify-content: start !important;
    }
    .service_abfindung_2 .search_wrapper .search_input{
        font-size: 14px;
    }
    .service_abfindung_2 .severance-q p {
        font-size: 12px;
    }
    .service_abfindung_2 .severance-q h4 {
        font-size: 18px;
    }
    .service_abfindung_2 .severance-input input.employe-title-input {
        font-size: 14px;
        padding: 4px 10px;
        margin: 8px 0;
    }
    .service_abfindung_2 .severance-box.mt-5{
        margin-top: 20px !important;
    }
    .service_abfindung_2 .chat-ai-content-title-inner .main-chat-icon {
        width: 30px !important;
    }
    .service_abfindung_2 .chat-ai-icon-title {
        font-size: 14px;
    }
    .service_abfindung_2 .service_main_content .chat-ai-content-title-inner h3 {
        font-size: 20px;
        text-align: start;
        padding-top: 4px;
    }
    .service_abfindung_2 .chat-ai-content-title-inner p {
        font-size: 14px;
        line-height:  1.4 !important;
        text-align: start;
    }
    .service_abfindung_2 .service-main-image-wrap {
        margin-top: 28px;
    }
    .service_abfindung_2 .service-main-img-center-1 {
        width: 390px;
    }
    .service_abfindung_2 .service_main_content .button-flex{
        justify-content: start !important;
    }
    .service_abfindung_2 .service_main_content .button-flex a:first-child{
        display: none;
    }
    .service_abfindung_2 .text-center.chat-ai-content-title-inner > .d-flex.align-items-center.justify-content-center{
        justify-content: start !important;
    }
    .service_abfindung_2 .severance-box{
        padding: 20px;
    }
    .kuendigung_blade_main_1 .grid-item{
        border: 1px solid #EAECEE;
        text-align: start;
    }
    .kuendigung_blade_main_1 .chat-input-container .search_input{
        min-width: 250px;
        padding-inline-end: 50px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .kuendigung_blade_main_1 .chat-ai-content-title {
        margin-block-start: 12px !important;
    }
    .kuendigung_blade_main_1 .chat-ai-content-title-inner{
        line-height: 16px;
    }
    .kuendigung_blade_main_1 .chat-ai-content-title-inner small{
        font-size: 12px;
    }
    .kuendigung_blade_main_1 .chat-ai-content-title-inner h3 {
        font-size: 16px;
    }
    .kuendigung_blade_main_1 .chat-ai-content-title-inner .main-chat-icon {
        width: 80px;
    }
    .main-chat-ai-class .chat-ai-search-input {
        left: 0px;
    }

    .main-chat-ai-class .chat-ai-file-upload-wrap .file-info #fileSize,
    .main-chat-ai-class .chat-ai-file-upload-wrap .file-info #fileName,
    .main-chat-ai-class .chat-ai-file-upload-wrap .file-info-1 #filecount {
        font-size: 14px;

    }

    .main-chat-ai-class .chat-ai-file-upload-wrap .file-info #fileSize{
        overflow: hidden;
        text-overflow: ellipsis;
        width: 160px;
    }
    .main-chat-ai-class .chat-ai-file-upload-wrap .file-info #fileName {
        white-space: nowrap;
        max-width: 60%;
        min-width: 50%;
        width: 0;
    }
    .main-chat-ai-class .chat-ai-file-upload-wrap .file-info #fileSize{
        font-size: 12px;
    }

    .file-info #fileSize{

    }

    .main-chat-ai-class .chat-ai-search-file-upload {
        padding: 10px 10px;
    }

    .main-chat-ai-class .drop-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .main-chat-ai-class .chat-box .message.user-message.attachment-sent>.message-content,
    .main-chat-ai-class .chat-box .message.user-message.attachment-sent+.message.user-message .message-content {
        max-width: 65%;
        min-width: 65%;
    }
    .main-chat-ai-class .chat-box .message.user-message.attachment-sent+.message.user-message .message-content{
        max-width: 70%;
        min-width: 70%;
    }
    .main-container.kuendigung_blade_main_1 img.main-chat-icon{
        width: 65px !important;
    }
    .main-container.kuendigung_blade_main_1 .chat-ai-content-title-inner h3 {
        text-align: center !important;
        font-size: 18px;
    }
    .section_main_accused_que .chat-ai-content-title-inner h3 {
        font-size: 18px !important;
    }
    .chat-ai-title{
        font-size: 20px;
        line-height: 26px;
    }
    .message-content .p-4{
        padding: 0.8rem !important;
    }
    .main-chat-ai-class .attachment-sent .file-info #fileName{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 50%;
    }
    .message-content , .main-chat-ai-class .loading-container{
        max-width: 100%;
    }
    .bot-message {
        flex-wrap: wrap;
    }
    .loading-container{
        gap: 8px;
    }
    .custom-rounded-radio {
        width: 18px;
        height: 18px;
    }
    .custom-rounded-checkbox {
        width: 20px;
        height: 20px;
    }
    .custom-rounded-checkbox:checked::after {
        top: 2px;
        left: 7px;
        width: 5px;
        height: 10px;
    }
    #file-upload-container .drop-upload-container p {
        font-size: 12px;
    }
    .file_upload_now .chat-ai-search-file-upload{
        bottom: 23px;
    }
    #clear-signature .btn, #submit-final .btn {
        padding: 6px 10px !important;
    }
    #firma-select.form-select{
        padding: 6px 10px;
    }
    .count-inputs-container .count-counter .count-btn {
        width: 20px;
        height: 20px;
        font-size: 12px;
        padding-bottom: 3px;
    }
    .count-inputs-container .count-counter .count-input {
        width: 70px !important;
        height: 40px;
        font-size: 14px;
    }
    .message-content .card-body-wrapper {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        font-size: 11px;
    }
    .message-content .dy-card-title{
        font-size: 14px;
    }
    .message-content .simplyright-card-logo {
        height: 30px;
        width: 120px;
    }
    .message-content .summary-card-wrapper{
        border-radius: 12px;
        padding: 14px 14px;
    }
}
@media (max-width: 500px) {
    .section_main_accused_que .loading-container {
        width: 300px;
    }
    /* .main-chat-ai-class .loading-container {
        width: 300px;
    } */
    .chat-ai-search-file-upload {
        font-size: 12px;
    }
}
@media (max-width: 440px) {
    .section_main_accused_que .loading-container {
        width: 230px;
    }
    .section_main_accused_que .conform-btn.grid-item {
        padding: 4px 22px !important;
    }
    .main-container.service_kuendigung_2 .grid-container {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    /* .main-chat-ai-class .loading-container {
        width: 230px;
    } */
}
@media screen and (max-width:480px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column on very small screens */
    }
}
@media (max-width: 340px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* responsive */
