@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,600;1,600&display=swap');

:root {
    /* --primary: #FE0168; */
    /* --primaryShade: #FD6633; */
    --lightBackground: #EDF1F8;
    --headerColor: #FFFFFF;
    --primary: #282828;
    --primaryShade: #FE0168;
    --secondary: #846cf9;
    --secondaryShade: #eeeeee;
    --closeColor: #618afa;
    --borderColor: #c1c1c1;
    --subtitleColor: #505050;
    --menuborderColor: #8a71b9;
    --titleColor: #618afa;
    --navigationArea: 200px;
    --navigationAreaClose: 80px;
    --font-family: "Open Sans";
    /* --font-family: 'Times New Roman'; */
    font-family:Georgia, 'Times New Roman';
}

* {
    font-size: 14px;
    font-family: var(--fontFamily);
    padding: 0%;
    margin: 0%;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-display: auto;
    line-height: normal;
    line-break: normal;
    word-spacing: normal;
}

/* The entire scrollbar */
::-webkit-scrollbar {
    width: 5px;
    /* for vertical scrollbars */
    height: 5px;
    /* for horizontal scrollbars */
}

/* The draggable part of the scrollbar */
::-webkit-scrollbar-thumb {
    background: #a9a8a8;
    /* color of the scrollbar thumb */
    border-radius: 4px;
    /* roundness of the scrollbar thumb */
}

/* The track (progress bar) of the scrollbar */
::-webkit-scrollbar-track {
    /* background: #f1f1f1;   */
    /*color of the scrollbar track*/
}

/* The track when hovered */
::-webkit-scrollbar-thumb:hover {
    background: #777777;
    /* color of the scrollbar thumb when hovered */
}

/* The buttons on the scrollbar */
::-webkit-scrollbar-button {
    display: none;
    /* hide scrollbar buttons */
}

.btn,
a {
    cursor: pointer;
}

.btn.create-btn {
    background-color: var(--primary);
    color: #FFF;
    padding: 8px 25px;
    border: 0px;
}

.btn.close-btn {
    background-color: var(--closeColor);
    color: #fff;
    padding: 8px 25px;
    border: 1px solid white;
}

.btn.close-btn:hover {
    background-color: var(--secondaryShade);
    color: #000;
    border: 1px solid grey;
}

.btn.create-btn:hover {
    background-color: var(--primaryShade) ;
    color: #FFF ;
}

/* Main Parent Element */
.wrapper {
    width: 100w;
    height: 100vh;
    background-color: var(--lightBackground);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Navigation Menu */
.menu-open {
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    padding-left: var(--navigationArea);
}

.menu-close {
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    padding-left: var(--navigationAreaClose);
}

.menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: var(--navigationArea);
    height: 100vh;

}

.menu-close .menu {

    width: var(--navigationAreaClose);
}

/* Nav-menu sideElement start*/
.nav-panel {
    width: var(--navigationArea);
    border-right: 1px solid #EDEDED;
    height: 100vh;
    background-color: transparent;
}
.main-logo{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.main-nav {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
}

ul.main-nav li a {
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: inherit;
}

ul.main-nav li a span {
    flex: 1;
    font-size: 12px;
}

ul.main-nav li a .logo {
    padding: 10px 0px;
}

ul.main-nav li a .logo img {
    max-height: 35px;
    max-width: 170px;
}

ul.main-nav li .logo1 {
    display: none;
}

ul.main-nav li .logo2 {
    display: inline-block;
}

ul.main-nav li a .icon {
    display: flex;
}

ul.main-nav li a .icon img {
    filter: grayscale(0) brightness(0);
    height: 14px;
    width: 14px;
    margin-right: 10px;
}

ul.main-nav li a:hover {
    background-color: var(--headerColor);
    /* border-bottom: 1px solid var(--primaryShade); */
}

ul.main-nav li .arrow-logo:hover {
    background-color: transparent;
}

ul.main-nav li a.active {
    color: var(--primary);
}

ul.main-nav2 {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0px;
}

ul.main-nav .nav-link {
    background-color: var(--headerColor);
    color: var(--primaryShade);
}

.menu-close .nav-panel {
    width: var(--navigationAreaClose);
}

.menu-close ul.main-nav li a span {
    display: none;
}

.menu-close ul.main-nav li .logo1 {
    display: inline-block;
}

.menu-close ul.main-nav li .logo2 {
    display: none;
}

/* Drop down Menu list 1*/
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-content {
    transition: all 0.5s;
    display: none;
    position: relative;
    list-style-type: none;
    padding: 0%;
    padding-left: 15px;
    width: 100%;
}

.dropdown-content li::before {
    /* Pseudo-element for the line */
    content: "";
    position: absolute;
    margin-top: 10px;
    left: 11px;
    height: 34px;
    transform: translateY(-50%);
    border-left: 2px solid var(--borderColor);
}

.dropdown-content li::after {
    content: "";
    position: absolute;
    margin-top: -17px;
    left: 15px;
    height: 6px;
    transform: rotate(90deg);
    border-left: 2px solid var(--borderColor);
}

/* Drop down Menu list 2*/
.dropdown-content2 {
    display: none;
    transition: all 0.5s;
    position: fixed;
    z-index: 1001;
    list-style-type: none;
    padding: 20px;
    width: 250px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    bottom: 82px;
    left: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.dropdown-content2 .drop-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content2 hr {
    margin: 10px -5px;
}

.dropdown-content2 .drop-cont button {
    border-radius: 5px;
    border: none;
    padding: 3px 4px;
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
}

.dropdown-content2 .drop-cont button img {
    width: 16px;
    height: 16px;
}

.dropdown-content2 .drop-cont .btn-plus {
    background-color: var(--primaryShade);
}

.dropdown-content2 .drop-cont button:hover {
    background-color: var(--titleColor);
}

/* Drop down Menu list 3*/
.dropdown-content3 {
    display: none;
    transition: all 0.5s;
    position: absolute;
    top: 57px;
    right: 10px;
    list-style-type: none;
    padding: 8px 15px;
    background-color: var(--lightBackground);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-content3 li a {
    padding: 5px 10px;
    border-radius: 5px;
}

.dropdown-content3 li a:hover {
    background-color: var(--headerColor);
}

.detailsPanel .dropdown-button {
    margin-left: 10px;
    background-color: transparent;
    border: none;
}

.detailsPanel .dropdown-content3 img {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

.dropdown-content3 a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.show {
    transition: all 0.5s;
    display: inline-block;
}

/* Nav-menu Element End*/

/* three-dot menu */
.main-nav3 {
    display: none;
}

/* Container module for Ruter-outlet Start */
.detail-view {
    flex: 3;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: var(--headerColor);
    /* padding: 10px; */
}

.container-module {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

/* Side list Element Start */
.list-view {
    flex: 1;
    width: 180px;
    height: 100%;
    overflow-y: auto;
    padding: 10px;
    background-color: #f2f5f9d4;
    /* border-radius: 10px; */
}

.list-view .list-nav {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 0%;
    background-color: var(--headerColor);
}

.list-view .list-nav li {
    border-bottom: 2px solid #EDEDED;
    padding: 5px 10px;
}

.list-view .list-nav li:hover {
    border-bottom: 2px solid var(--primaryShade);

}

.list-view .list-nav li div {
    display: flex;
    padding: 10px 5px;
    align-items: center;
    justify-content: flex-start;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.list-view .list-nav li div h4 {
    margin: 0px;
    font-size: 1.05em;
    padding-left: 10px;
}

/* Side list Element End */

/* Detail compo style Start */
.leads-detail-page {
    padding: 15px 0px;
    padding-top: 0px;
}

.detailsPanel {
    flex: 3;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--headerColor);
}

.detailsPanel .cont {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    padding-top: 15px;
    background-color: var(--headerColor);
    z-index: 1000;
}

.detailsPanel .cont-1 h3 {
    font-size: 20px;
    margin: 0%;
}

.detailsPanel .cont-1 {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
}

.detailsPanel .cont .model-menu {
    padding: 8px;
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0%;
    border-bottom: 1px solid var(--borderColor);
}

.detailsPanel .cont .model-menu button {
    margin-right: 15px;
    background-color: #fff;
    color: var(--menuborderColor);
    padding: 5px 7px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.detailsPanel .cont .model-menu button:hover {
    color: #fff !important;
    border: 1px solid var(--lightBackground);
    background-color: var(--primaryShade);
}
.detailsPanel .label-title{
    font-weight: 500;
}

.detailsPanel .cont-2 .close-btn {
    padding: 5px 8px;
    margin-left: 10px;
}

.detailsPanel .cont-2 .form-model {
    padding: 15px;
    width: 95%;
    height: 100vh;
}

.detailsPanel .cont-2 .form-model h5 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
    margin: 0%;
    margin-bottom: 5px;
}

.detailsPanel .cont-2 .form-model p {
    color: #353535;
    font-size: 12px;
    margin-bottom: 0px;
}

.detailsPanel .cont-2 .assist-model {
    display: none;
}
.detailsPanel .cont-2 .assist-model select option{
    padding: 5px;
}

.detailsPanel .cont-2 .assist-transcriber {
    display: none;
}

.detailsPanel .cont-2 .assist-voice {
    display: none;
}

.detailsPanel .cont-2 .assist-workflow {
    display: none;
}

.detailsPanel .cont-2 .assist-advanced {
    display: none;
}
.detailsPanel .cont-2 .assist-advanced .advan1 {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(231, 234, 240, 0.4);
}
.detailsPanel .cont-2 .assist-advanced .advan2 {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(231, 234, 240, 0.4);
}
.detailsPanel .cont-2 .assist-advanced .advan3{
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(231, 234, 240, 0.4);
}
.detailsPanel .cont-2 .assist-advanced .privacy-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0%;
    padding-left: 15px;
    margin-top: 10px;
}
.assist-advanced .msg-sec{
    margin-top: 10px;
}
.detailsPanel .cont-2 .assist-advanced .subtitle{
    font-size: 11px;
    margin: 5px 0px 10px;
    color: var(--subtitleColor);
}

.detailsPanel .cont-2 .assist-advanced .range-span {
    height: 50px;
    width: 53px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 10px;
}

.detailsPanel .cont-2 .assist-analysis {
    display: none;
}

.detailsPanel .cont-2 .assist-model.show {
    display: block;
}

.detailsPanel .cont-2 .assist-transcriber.show {
    display: block;
}

.detailsPanel .cont-2 .assist-voice.show {
    display: block;
}

.detailsPanel .cont-2 .assist-workflow.show {
    display: block;
}
.detailsPanel .cont-2 .work-flow-list ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding: 0%;
    margin-bottom: 7px;

}
.detailsPanel .cont-2 .assist-advanced.show {
    display: block;
}

.detailsPanel .cont-2 .assist-analysis.show {
    display: block;
}



/* Detail compo style End */


/* create pop-up comp style Start */
.isVisiblePopup.addPopUp {
    display: none;
}

.isVisiblePopup-webhook.addPopUp {
    display: none;
}
.popup-container {
    position: fixed;
    top: 0px;
    z-index: 1000;
    left: var(--navigationArea);
    width: calc(98% - var(--navigationArea));
    height: 100vh;
    background: var(--headerColor);
    /* margin: 10px; */
}
.popup-container .reqHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-container .reqHeader h4{
    margin: 0%;
}
.popup-container .remove-btn{
    position: absolute;
    left: 96%;
    /* top: 5px; */
    width: 20px;
    z-index: 1000;
    /* display: inline-block; */
}

/* .popup-container .headerTitle{
    display: flex;
}
.popup-container .healerValueField{
    display: flex;
    align-items: center;
} */
.popup-content {
    padding: 10px 15px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.popup-content .form-header h3{
    margin: 0%;
}
.popup-content .form-header {
    width: 100%;
    padding: 10px;
    margin-left: -2px;
    padding-left: 0px;
    color: var(--titleColor);
    background-color: var(--headerColor);
    position: sticky;
    position: -webkit-sticky;
    top: -20px;
    right: 6px;
}

.popup-content .form-label {
    /* color: var(--titleColor); */
    /* font-size: 14px; */
    font-weight: 600;
    font-family: var(--font-family);
}

.popup-content input,
.popup-content .form-check-label {
    font-size: 14px;
    font-family: var(--font-family);
    /* font-weight: 600; */
}

.popup-content .assist-btn:hover {
    background-color: var(--primaryShade);
}

.popup-content .Workflows-content {
    /* background-color: var(--); */
    border-bottom: 1px dashed grey;
    margin: 5px 0px;
}


.drawer-body .subtitle {
   font-size: 12px;
}

/* create pop-up comp style End */

/* Overview comp style */
.boilerTemp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}

.boilerTemp .content-temp {
    width: 35%;
}
.boilerTemp .content-temp .boilerTempImg{ 
    width: 80px;
    height: 80px;
    margin-bottom: 3px;
}

.boilerTemp .content-temp h4 {
    font-size: 20px;
    font-weight: 500;
}
.boilerTemp .content-temp p {
    font-size: 13px;
    margin-bottom: 10px;
    color: #3c3c3c;
}
.boilerTemp .boilerTemp-btns{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.boilerTemp .content-temp .create-btn {
    padding: 10px 15px;
    /* margin-left: 10px; */
    border: none;
    border-radius: 10px;
    background-color: var(--primaryShade);
    color: #fff;
    width: 100%;
}
.boilerTemp .content-temp .prime-btn{
    padding: 10px 15px;
    /* margin-left: 10px; */
    border: none;
    border-radius: 7px;
    background-color: rgba(254, 1, 104,0.6);
    color: #fff;
}
.boilerTemp .content-temp .btn-doc {
    padding: 10px 15px;
    margin-left: 10px;
    border: 1px solid #282828;
    border-radius: 10px;
    background-color: var(--headerColor);
    color: #000;
}
.boilerTemp .content-temp .btn-doc:hover {
    background-color: var(--titleColor);
    color: var(--headerColor);
}

.boilerTemp .content-temp .dropdown{
    margin: 10px 0px;
}
.phone-prime{
    position: absolute;
}
.phone-prime .subtitle{
    font-size: 12px;
}

/* boilerTemp drawer Start*/
.boilerTemp-drawer {
    position: fixed;
    top: 0px;
    left: -2000px;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.boilerTemp-Calldrawer{
    position: fixed;
    top: 0px;
    right: -2000px;
    z-index: 1000;
    backdrop-filter: blur(6px);
}
.boilerTemp-Calldrawer.show{
    right: 0px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    /* Hide scrollbar for WebKit-based browsers */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
}

.boilerTemp-drawer .drawer-title {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    background-color: var(--lightBackground);
    padding-left: 0%;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.boilerTemp-drawer .drawer-title h4{
    margin: 0%;
}
.boilerTemp-drawer .drawer-body h5{
    margin: 0%;
    font-size: 14px;
}
.boilerTemp-drawer-content {
    padding: 20px;
    background-color: var(--lightBackground);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100%;
}
.boilerTemp-drawer.show {
    left: 0px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    /* Hide scrollbar for WebKit-based browsers */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
}

.drawer-body input,
.drawer-body textarea {
    background-color: #f8f9fa;
}

.drawer-body .Workflows-content {
    border-radius: 15px;
    border: 1px dashed grey;
    margin: 5px 0px;
}
.detailsPanel .workflow-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-top: 10px;
}

.detailsPanel .workflow-title h3{
    margin: 0%;
}

.drawer-body .workflow-btn {
    background-color: var(--titleColor);
}

.drawer-body .workflow-tool {
    padding-top: 8px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 130px;
    border: 1px dashed grey;
    border-radius: 10px;
    cursor: pointer;
}
.drawer-body .kb_tool{
    height: 110px;
}

.drawer-body .workflow-tool p {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
.drawer-body .workflow-tool:hover {
    background-color: var(--headerColor);
    color: var(--primaryShade);
}
.drawer-body .workflow-tool img{
    margin-bottom: 5px;
}

.drawer-body .workflow-content {
    padding: 15px;
}
/* .popup-container .webhook{
    margin-top: 25px;
} */
 /* .popup-container .webhook-content{
    padding-left: 10px;
 } */
.popup-container .webhook .row{
    margin-top: 15px;
}
.popup-container .webhook-tool .headerTitle, .popup-container .webhook-tool .healerValueField{
    margin-left: 10px;
}
.popup-container .webhook-tool{
    width: 27% !important;
}
.popup-container .col {
    flex: 1 0 0%;
}
.webhook-tool {
    padding-top: 8px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100px;
    border: 1px dashed grey;
    border-radius: 10px;
    cursor: pointer;
}
.webhook-tool:hover {
    color: var(--primaryShade);
    background-color: var(--headerColor);
}
.webhook-tool p{
    margin: 0%;
    margin-bottom: 7px;
}
/* boilerTemp drawer End*/

/* Call-logs Comp */
.Call-details {
    padding: 10px 0px;
    width: 95%;
    overflow-x: auto;
    backdrop-filter: blur(12px);
}

.Call-details table {
    font-family: var(--font-family);
    font-size: 13px;
    border-collapse: collapse;
    width: 100vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.Call-details thead {
    font-size: 14px;
}

.Call-details td {
    font-size: 12px;
}

.Call-details td,
.Call-details th {
    text-align: left;
    padding: 8px;
}

.Call-details th {
    background-color: var(--lightBackground);
}

.Call-details tr:nth-child(even) {
    /* background-color: var(--lightBackground); */
}
.Call-details tbody tr:hover {
    background-color: var(--closeColor);
    color: var(--headerColor);
}
.Call-details .table-bottom-btn button {
    margin-left: 10px;
}

.Call-details .table-bottom-btn button:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.Call-details .table-bottom-btn button:hover svg {
    fill: var(--secondary);
}

.Call-details .table-bottom-btn button span {
    padding: 0px 10px;
    font-size: 14px;
}

.Call-details .table-bottom-btn button img {
    width: 14px;
    height: 14px;
}
/* knowledge base Page */
.detailsPanel .knowledgebase{
    margin: 10px 0px;
    padding: 10px;
    font-size: 14px;
    background-color: var(--headerColor);
    border-radius: 10px;
}
hr{
    margin: 0px !important;
}
.detailsPanel .knowledgebase-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0%;
}
.detailsPanel .knowledgebase-title h3{
    font-size: 20px;
    font-weight: 500;
    margin: 0%;
}

.detailsPanel .knowledgebase-body form label{
    font-weight: 500  !important;
}



/* .Voice Library Page */

.voice-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--headerColor);
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 1000;
    padding-top: 10px;
    padding-left: 10px;
}

.voice-title img {
    padding-right: 10px;
}

.voice-body {
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    overflow-y: auto;
}

.voice-body .Voice-search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.voice-body .Voice-search div:nth-child(1) {
    flex: 2;
}

.voice-body .Voice-search div:nth-child(2) {
    flex: 1;
}

.voice-body .Voice-search div:nth-child(3) {
    flex: 1;
}

.Private-Voice,
.Public-Voice {
    margin-top: 10px;
    padding: 10px;
}

.Private-title,
.Public-title {
    background-color: var(--lightBackground);
    color: #444;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: left;
    border: 1px solid #fff;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

.Private-title:hover,
.Public-title:hover {
    border: 1px solid grey;
    background-color: #f8f9fa;
}

.Private-title h5,
.Public-title h5 {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 0% !important;
}

.Private-Voice .Private-title .Private-angle-right,
.Public-Voice .Public-title .Public-angle-right {
    width: 20px;
    height: 20px;
    transition: all 0.2s;
    margin-right: 10px;
}

.Private-Voice .Private-title .Private-angle-right.active,
.Public-Voice .Public-title .Public-angle-right.active {
    transform: rotate(90deg);
}

/* show content Body */
.Private-Voice .Private-body,
.Public-Voice .Public-body {
    display: none;
}

/* hide content Body */
.Private-Voice .Private-body.show,
.Public-Voice .Public-body.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.Private-Voice .Private-body .voice-cont,
.Public-Voice .Public-body .voice-cont {
    border: 1px dashed grey;
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 10px;
    margin: 10px;
    font-size: 14px;
    width: 300px;
    height: 200px;
}

.Private-Voice .Private-body .voice-cont audio,
.Public-Voice .Public-body .voice-cont audio {
    width: 290px;
    padding: 10px;
    padding-left: 1px;
}


/* create-voice Element Style Start */

.create-voice {
    width: 100%;
    height: 45%;
    position: fixed;
    bottom: -1100px;
    left: 0px;
    transition: all 2s;
    background: linear-gradient(rgba(40, 40, 40,0.8),rgba(40, 40, 40,0.8));
}
.create-voice.active {
    transition: all 2s;
    bottom: 0px;
    left: 0px;
}
/* .create-voice .wave{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    background:  url('../img/wave.png'), linear-gradient(rgba(40, 40, 40,0.8),rgba(40, 40, 40,0.8)) ;
    background-repeat: no-repeat;
    background-size: 1000px 100%;
}
.create-voice .wave1{
    animation: waveAnime 30s linear infinite;
    z-index: 1000px;
    opacity: 1;
    animation-delay: 10px;
}
@keyframes waveAnime{
    0%{
        background-position: 0px;
    }
    100%{
        background-position: 1000px;
    }
}
.create-voice .wave2{
    animation: waveAnime2 15s linear infinite;
    z-index: 95px;
    opacity: 1;
    animation-delay: 10px;
}
@keyframes waveAnime{
    0%{
        background-position: 0px;
    }
    100%{
        background-position: -1000px;
    }
} */
.mic {
    position: absolute;
    bottom: 53%;
    left: 48%;
    color: #fff;
}
.mic::before,
.mic::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 2;
    box-shadow: 0 0 10px 10px #1c084f;
}
.mic::before {
    width: 90px;
    height: 90px;
    background-color: #1a084e;
}
.mic::after {
    width: 50px;
    height: 50px;
    background-color: #2f1e5f;
    animation: circle-size 0.8s linear infinite alternate;
}

.create-voice .mic-icon  svg{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    padding: 5px;
    z-index: 100;
}
/* 
.mic-icon::before,
.mic-icon::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
}
.mic-icon::before {
    width: 2px;
    height: 5px;
    top: calc(100% + 1px);
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #fff;
}
.mic-icon::after {
    border: 2px solid;
    width: 8px;
    height: 18px;
    left: 50%;
    top: -10px;
    border-radius: 4px;
    transform: translate(-50%, 0);
} */

.mic-shadow {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    z-index: 1;
    box-shadow: 1px -5px 3px 5px var(--primaryShade), 4px -7px 7px 10px var(--headerColor), -2px -10px 10px 15px var(--titleColor), 10px 5px 7px 10px var(--secondary), 3px 2px 12px 10px var(--lightBackground);
    transform: translate(-50%, -50%);
    /* animation: shadow-rotate 1.5s linear infinite; */
    transform-origin: center;
}

@keyframes circle-size {
    from {
        width: 50px;
        height: 50px;
    }

    to {
        width: 90px;
        height: 90px;
    }
}

@keyframes shadow-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 
.create-voice::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primaryShade);
    transform: translateY(-50%);
    border-radius: 50px;
    animation: wave 7s linear infinite;
}

@keyframes wave {
0% {
  background-position: 0 0;
}
100% {
  background-position: -1000px 0;
}
}
.create-voice .voice-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--closeColor);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: auto;
    margin-top: 20px;
    position: relative;
    animation: voiceIcon infinite 1.5s ease-in-out alternate-reverse;
} */
/* @keyframes voiceIcon {
    from{
        top: -5px;
        width: 80px;
        height: 80px;
    }
    to{
        top: 5px;
        width: 110px;
        height: 110px;
    }
} */


.create-voice .voice-content {
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.create-voice .voice-content p {
    color: var(--headerColor);
    font-family: var(--fontFamily);
}

.create-voice .voice-content .close-btn {
    border-color: #000;
    padding: 5px 15px;
}

/* Chat Window Panel */
/* slide ai trian window style */
.chat-aiTrain{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    height: 350px;
    z-index: 900;
    transition: all 1s;
}
.chat-aiTrain.max{
    position: fixed;
    bottom: 20px;
    right: 302px;
    width: 280px;
    height: 350px;
    z-index: 1000;
    transition: all 1s;
    background-color: var(--headerColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Min window style */
.chat-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    height: 350px;
    z-index: 1000;
    background-color: var(--headerColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Comman CSS */
.chatClass .chat-header {
    position: absolute;
    top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 3px;
}
.chatClass .replay-btn{
    font-size: 10px;
    color: rgb(156, 156, 156);
}
.chatClass .replay-btn span{
    font-size: 10px;
    padding: 0px;
}
.chatClass .chat-feature .feature-field{
    width: 90%;
}

.chatClass .chat-header h5 {
    font-size: 14px;
    font-weight: 500;
    margin: 0%;
    padding-left: 10px;
}
.chatClass .chat-header .btn{
    margin: 0%;
    padding: 0%;
    margin-left: 5px;
}
.chatClass .chat-header .btn:active{
    border: none;
}
.chatClass .chat-header .btn img{
    width: 15px;
    height: 15px;
}

.chatClass .chat-body {
    background-color: var(--lightBackground);
    border-radius: 10px;
    height: 80%;
    width: 93%;
    margin: 30px auto;
    padding: 10px 7px;
}

.chatClass .chat-body p {
    margin: 0%;
}

.chatClass .chat-body p span {
    background-color: var(--headerColor);
    padding: 5px;
    border-radius: 5px;
}

.chatClass .chat-body .send {
    text-align: end;
    margin-top: 12px;
}

.chatClass .chat-body .send span {
    border-bottom-right-radius: 0px;
}

.chatClass .chat-body .receive {
    text-align: start;
    margin-top: 12px;
}

/* .chatClass .chat-body .replay-btn:hover .replay-msg{
    display: inline-block;
} */

.chatClass .chat-body .receive span {
    border-bottom-left-radius: 0px;
}
.chatClass .chat-body .replay-msg{
    display: none;
    position: relative;
    top: 7px;
    right: 3px;
    /* padding: 0%; */
    font-size: 10px;
}

.chatClass .chat-feature {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 5px;
}
.chatClass .chat-feature .feature-field{
    width: 75%;
}

.chatClass .chat-feature .send-btn {
    padding: 2px 5px;
    position: absolute;
    right: 20px;
    color: white;
    background-color: var(--primaryShade);
}