* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins-Regular';
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #efeded;
    --blue: #00a8fe;
    --blue_bg: #c0eaff;
    --green: #008000;
    --light_green: #e3f3e3;
    --light_orange: #fff4e1;
    --orange: #FFA500;
    --text-color: #6d6d6d;
    --input_border:#cac9c9;
}

::-webkit-scrollbar {
    width: 2px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    padding: 6px 30px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border-bottom: 1px solid var(--gray);
    background-color: var(--white);
}

.header_action {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;

}

.header_icons {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_icons .header_img {
    object-fit: contain;
    cursor: pointer;
    opacity: 0.5;
    width: 22px;
}

.header_icons:hover {
    opacity: 1;
    background: var(--blue_bg);
}

.header_icons:hover .header_img {
    opacity: 1;
}

.main_wrapper {
    width: 100%;
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    row-gap: 20px;
}

.bottom_section {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid var(--gray) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.message_box {
    padding: 10px;
    width: 100%;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: none;
    color: var(--black);
    border-bottom: 1px solid var(--gray);
}

.message_box::placeholder {
    font-size: 14px;
}

.send_message_action button {
    background-color: transparent;
    border: 0;
    opacity: 0.4;
}

.send_message_action button img {
    width: 22px;
}

.send {
    width: 40px;
    height: 40px;
    background-color: var(--blue) !important;
    border-radius: 8px;
    transition: all .5s;
}

.send.active {
    transform: rotate(0deg);
    opacity: 1;
}

.send_message_action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
}

.chat_main_box {
    width: 100%;
    height: 100%;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.chat_text_title {
    padding: 10px 10px 0 10px;
}

.chat_text_title h3 {
    font-family: 'Poppins-SemiBold';
    font-size: 16px;
}

.chat_content {
    padding: 10px;
}

.chat_content_title {
    padding: 3px 6px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.box_green {
    background-color: var(--light_green);
    border: 1px solid var(--green);
}

.box_orange {
    background-color: var(--light_orange);
    border: 1px solid var(--orange);
}

.box_gray {
    background: var(--white);
    border: 1px solid var(--black);
}

.chat_icon {
    width: 15px;
}

.chat_content_title h5 {
    font-family: 'Poppins-Medium';

    font-size: 12px;
    margin-left: 5px;
}

.chat_content_inner_box {
    display: inline-flex;
    align-items: center;
    margin: 0 10px 10px 0;
}

.chat_content_inner_box h6 {
    margin-left: 5px;
    font-size: 14px;
    color: #5f5e5e;
}

.chat_content_box {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    flex-wrap: wrap;
}

.note_title {
    font-size: 14px;
    color: #5f5e5e;
}

.note_title span {
    font-family: 'Poppins-Medium';
    color: red;
    margin-right: 5px;
}

.chat_text_content {
    border-bottom: 1px solid var(--gray);
}

.chat_text_content:last-child {
    border: 0;
}

.sheets_text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sheets_text h6 {
    display: inline-block;
    background-color: var(--blue_bg);
    padding: 2px 8px;
    color: var(--black);
    border-radius: 30px;
    font-size: 12px;
}

.analysis_summary_section_title {
    padding: 10px;
    background-color: var(--gray);
    margin-top: 10px;
}

.analysis_summary_section_title img {
    width: 30px;
}

.analysis_summary_section_title span {
    font-family: 'Poppins-SemiBold';
    color: var(--black);
    font-size: 16px;
}

.analysis_data {
    padding-top: 5px;
}

.analysis_data ul {
    padding-bottom: 0;
    margin-bottom: 0;
}

.analysis_data ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

.analysis_data ul li:last-child {
    margin-bottom: 0;
}

.total_count {
    font-family: 'Poppins-SemiBold';
    width: 25px;
    height: 25px;
    background-color: var(--blue_bg);
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.analysis_data {
    padding: 10px;
}

.analysis_data p {
    font-size: 14px;
    line-height: 2.1;
}

.send_message_left_icon {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray);
}

.send_message_left_icon button {
    padding: 2px 10px;
    opacity: 0.5;
    margin: 2px;
    border-radius: 8px;
    width: 40px;
    height: 40px
}

.send_message_left_icon button.active {
    opacity: 1;
    background: var(--blue_bg);
    border: 1px solid var(--blue) !important;
}

.send_message_left_icon button.active img {
    filter: brightness(0) invert(0);
}

.send_message_left_icon button:last-child {
    border: 0;
}

.file_uploadig_section {
    margin-top: 10px;
    position: relative;
}

.file_uploadig_section_box {
    padding: 10px;
    background-color: var(--light-gray);
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray);
    margin-bottom: 5px;
}

.file_uploadig_section_box h4 {
    font-size: 14px;
}

.upload_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.upload_box img {
    width: 25px;
    margin-right: 10px;
}

.upload_box_inline {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.time {
    font-size: 12px;
    color: #5f5e5e;
}

.white_box {
    padding: 2px;
    border-radius: 10px;
    border: 1px solid var(--gray);
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.progress {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: none;
    margin: 0 10px 0 0;
    box-shadow: none;
    position: relative;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 3px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: 0;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: 0;
    transform-origin: center left;
}

.progress .progress-value {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: var(--white);
    font-size: 8px;
    color: var(--blue);
    line-height: 27px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
}

.progress.blue .progress-bar {
    border-color: var(--blue);
}

.progress.blue .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}

.send_message_left_icon button {
    position: relative;
}

.action_class {
    position: relative;
    display: inline-block;
}

.tooltip_section {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -120%);
    z-index: 100;
    background: var(--blue);
    padding: 4px 10px;
    border-radius: 8px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    max-width: unset;
    width: 250px;
}

.tooltip_section span {
    font-family: 'Poppins-SemiBold';
    font-size: 14px;
}

.tooltip_section p {
    font-size: 12px;
}

.action_class:hover .tooltip_section {
    opacity: 1;
    transform: translate(-50%, -150%);
}

.slide_panel {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    padding: 20px 0 20px 12px;
    height: 100%;
    width: 60px;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.slide_panel_icons {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: var(--blue_bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide_panel_icons img {
    width: 22px;
    cursor: pointer;
}

.slider_panel_menus {
    position: fixed;
    top: 0;
    left: 0;
    margin-left: 60px;
    height: 100%;
    background-color: var(--white);
    box-shadow: rgb(149 157 165 / 13%) 20px 0px 50px;
}

.slider_panel_menus ul {
    padding: 0;
    margin: 0;
    padding-top: 18px;
    white-space: nowrap;
}

.slider_panel_menus ul li {
    list-style-type: none;
}

.slider_panel_menus ul li a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--gray_bg);
    text-align: left;
    transition: all .5s;
    display: block;
}

.slider_panel_menus ul li a:hover {
    color: var(--blue);
}

.previous_project_list {
    display: flex;
    flex-direction: column;
    padding-top: 0px !important;
}

.previous_project_list li a {
    padding: 6px 10px !important;
    transition: all .5s;
    border-bottom: 1px solid var(--gray) !important;
    font-size: 14px;
}

.previous_project_list li a:hover {
    background-color: var(--gray);
}

.slider_panel_menus {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.slide_trigger:hover .slider_panel_menus {
    max-width: 500px;
    opacity: 1;
}

.create_project img {
    width: 20px;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 11px;
    margin-right: 10px;
}

.create_project {
    font-family: 'Poppins-Medium';
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 120px 10px 10px;
    position: relative;
    font-size: 16px;
}



/* From Uiverse.io by rust_1966 */
.progress-container {
    --progress: 100%;
    position: relative;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle, #1b2735, #090a0f);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-sizing: border-box;
}

.progress-container .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, #00f260, #0575e6);
    border-radius: 30px;
    box-shadow:
        0 0 15px #00f260,
        0 0 30px #0575e6;
    transition: width 1s ease-in-out;
    width: 0%;
}

.progress-container .progress-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0.5;
    animation: ripple 3s infinite;
}

.progress-container .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.progress-container .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.progress-container .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 5s infinite ease-in-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 40%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 90%;
    left: 60%;
    animation-delay: 2.5s;
}

.list_box {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.list_box:last-child {
    margin-bottom: 0;
}

.list_box img {
    width: 22px;
    opacity: 0.5;
}

.list_main_box {
    border-bottom: 1px solid var(--gray);
    padding-bottom: 5px;
}

.list_main_box h3 {
    font-size: 22px;
}

.list_box a {
    font-family: 'Poppins-Medium';
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    padding-left: 5px;
}

.project_title_list {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

textarea {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

h2 {
    font-family: 'Poppins-Medium';
    color: var(--black);
    font-size: 22px;
}
a {
    color: blue;
    text-decoration: underline;
}

.header_text{
    font-size: 24px;
}

.link_section li{
    list-style-type: none;
}
.form_box{
    display: flex;
    flex-direction: column;
}
.form_box label{
    padding-bottom: 5px;
    color: var(--text-color);
}
.common_input_box{
    padding: 8px 8px;
    border-radius: 6px;
    outline: none;
    box-shadow: none;
    border: 1px solid var(--input_border);
    width: 100%;
}
.common_input_box::placeholder{
    font-size: 14px;
}

.upload_file_btn{
    font-family: 'Poppins-Medium';
    margin-top: 15px;
    border-radius: 10px;
    padding: 8px;
    background-color: var(--blue);
    color: var(--white);
    border: 0;
    text-align: center;
    text-decoration: none;
}
.upload_file_btn:hover{
    color: var(--white);
}
.upload_file_btn img{
    width: 25px;
    position: relative;
    right: 5px;
}
.file_upload{
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 10px;
    justify-content: space-between;
}
.file_upload .common_input_box{
    padding: 6px 8px;
    font-size: 14px;
    max-width: 250px;
    margin-right: 10px;
}
.file_upload_button{
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 5px;
    border: 0;
    background-color: var(--blue);
    color: var(--white);
    font-size: 14px;
}
.file_upload_button img{
    width: 20px;
    filter: invert(1) brightness(2);
}
.remove_file{
    border: 0;
    background-color: transparent;
    margin-right: 8px;
}
.remove_file img{
    width: 25px;
    border: 0;
}
.upload_progress{
    display: flex;
    align-items: center;
}
.progress_text h4{
    font-family: 'Poppins-Medium';
    font-size: 18px;
}
.process_img{
    text-align: center;
}
.process_img img{
    width: 200px;
}
.chat_main_box .breadcrumb a{
    text-decoration: none;
    color: var(--black);
}


/********** responsive ************/

@media (max-width: 1399.98px){
   
}
@media (max-width: 1199.98px){}
@media (max-width: 991.98px){
    .main_wrapper {
        max-width: 550px;
    }
     .slider_panel_menus{
        margin-left: 0;
    }
    .slide_panel{
        position: fixed;
        top: inherit;
        left: inherit;
        bottom: 10px;
        right: 10px;
        height: 50px;
        width: 50px;
        background-color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
}
@media (max-width: 575.98px){
    .main_wrapper {
        max-width: 400px;
    }
    .list_main_box h3 {
        font-size: 18px;
    }
    .header_text {
        font-size: 18px;
    }
    .chat_body_section p{
        font-size: 14px;
    }
    .file_upload{
        flex-direction: column;
        align-items: flex-start;
    }
    .file_upload .common_input_box{
        margin-bottom: 10px;
    }
   
}
@media (max-width: 425.98px){
    .main_wrapper {
        max-width: 350px;
    }
    .chat_content {
        padding: 7px;
    }
    .file_upload .common_input_box{
        max-width: 200px;
        font-size: 12px;
    }
    .upload_progress{
        justify-content: space-between;
        width: 100%;
    }
}
@media (max-width: 375.98px){
    .main_wrapper {
        max-width: 300px;
    }
}

/********** end_responsive **********************/
