* {
    --light-background:#fafafc;
    --text-highlight: #6324ff;
}


@media only screen and (min-width:800px) {

    * {
        /* create variables for border and mobile border */
        --border: #bbbbbb87;
    }
}

@media only screen and (max-width:799px) {

    * {
        /* create variables for border and mobile border */
        --border: #d4d3d5; 
    }
}


body, button {
    margin: 0px;
    font-family: 'Inter',Arial, Helvetica, sans-serif;
    letter-spacing: -.25px;
    color: #2a2a2a;
}
html {
    font-family: sans-serif;
    font-size: 14px;
    line-height: 21px;
}
.parent-frame {
    margin-left: 60px;
}
.outer-body {
    display: flex;
}
.main-pad {
    width: 75%;
    overflow-y: scroll;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}
#main{
    max-width: 80%;
    margin: auto;
    padding: 0px 20px;
}
.primary-btn {
    background: #6324ff;
    border: 0px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.secondary-btn {
    font-weight: 600;
    color: #6f6f6f;
    border: 1px #cdcdcd solid;
    box-shadow: #00000015 0px 2px 3px;
    text-decoration: none;
}

.primary-btn.disabled-btn {
    color: #979797;
    background: #e1e1e1;
    cursor: not-allowed;
}
.destroy-btn {
    background: #ff3b3b;
    border: 0px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.small-btn {
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;  
}

.xsmall-btn {
    padding: 4px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    display: table;
}




.fw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 2px 10px;
}
.alert a {
    color:#000;
    font-weight: 500;
}
.alert {
    background: #fff;
    text-align: left;
    width: 100%;
    border-radius: 5px;
    padding: 20px;
    color: #000;
    font-size: 13px;
    margin-bottom: 25px;
    box-sizing: border-box;
}
.alert.red {
    background: #ffdfdf;
    color: #ca2d2d;
}
.alert.yellow {
    background: #fff9d9;
    color: #715908;
}

.chat.warning {
    background: #ffe4e4;
    padding: 20px;
    border-radius: 4px;
    fill: #8f0a0a;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 14px;
}
.chat.warning a {
    color: #8f0a0a;
    font-weight: 500;
}
.page-title-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
    margin-top: 22px;
}
.page-title-flex .page-title {
    padding-bottom:0px;
}

/* Custom scrollbar styling */
.main-pad::-webkit-scrollbar {
    width: 5px; /* Adjust the width of the scrollbar */
}

.main-pad::-webkit-scrollbar-thumb {
    background-color: darkgrey; /* Color of the scroll thumb */
    border-radius: 10px; /* Roundness of the scroll thumb */
}

.main-pad::-webkit-scrollbar-track {
    background: white; /* Color of the scrollbar track */
}



/*  */

.page-title {
    font-size: 21px;
    font-weight: 600;
    padding-bottom: 20px;
}
.page-title:empty {
    display: none;
}

#chat-placeholder {

    display: flex;
    flex-wrap: wrap;
    max-width: 80%;
    margin: auto;
    grid-gap: 10px;
    margin-top: 40px;
    justify-content: center;
    max-width: 300px;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.chat-logo img.logo {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 20px;
    filter: grayscale(.5);
    filter: opacity(0.2);
}
.placeholder-text {
    color: #867ecc;
    margin: 20px;
    text-align: center;
}



div#chat-parent {
    z-index: 1;
    display: flex;
    background: #fff;
    flex-direction: column;
    flex: 1;
    transition: .2s ease;
    height: 100vh;
    /* border-left: 1px var(--border) solid; */
    box-sizing: border-box;
    background: linear-gradient(156deg, #fdfbff, #edf3f8);
    height: 95vh;
    border-radius: 20px;
    margin-top: 2.5vh;
    margin-right: 2vh;
    margin-left: 2vh;
    /* box-shadow: #00000040 0px 0px 20px; */
    border: 1px #c8d0f5 solid;
    position: sticky;
    top: 2.5vh;
    top: 0;
}

.placeholder-item {
    max-width: 100%;
    width: 100%;
    text-align: center;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px;
    margin: auto;
    line-height: 18px;
    grid-gap: 8px;
    color: #867ecc;
}
.placeholder-item svg {
    line-height: 2px;
    height: 25px;
    width: 25px;
    fill: #9a8bc1;
}
.chat-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    margin: auto;
}
div#chat-parent.expand{
    width:1000px;
}
div#expand-icon {
    position: absolute;
    left: -20px;
    font-size: 21px;
    cursor: pointer;
}


#chat {
    overflow-x: hidden;
    flex-grow: 1;
    padding-top:10px;
}
.chat-logo {
    display: flex;
}
#chat-input {
    background: #ffffff;
    margin: 30px;
    border: 1px #cacddc solid;
    border-radius: 6px;
    box-shadow: #1e32b920 0px 5px 10px;
    display: flex;
}
#ai-search {
    outline: none;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px;
}
#chat-send-btn {
    display: inline-flex;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    fill: #676767;
    background: #fff;
    cursor: pointer;
    align-items: center;
}
#chat-send-btn.disabled {
    fill: #ccc;
    cursor: not-allowed;
}

.message .label {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 12px;
    color: #1d9f9a;
}
.assistant-message .label {
    color: #9f1d1d;
}
.assistant-message, .user-message {
    margin-bottom: 20px;
    width: calc(100% - 60px);
    margin: 10px auto;
}
.message .content {
    font-size: 15px;
    line-height: 23px;
}
.middle {
    display: flex;
    flex-direction: column;
    grid-gap: 3px;
}

/* TYPING INDICATOR */

div.typing-indicator {
    margin: 7px 0px;
    display: flex;
    padding: 0px;
    grid-gap: 3px;
}
.typing-indicator span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #737373;
}
.typing-indicator span:nth-child(1) {
      animation: bounce 1s infinite;
    }
    
.typing-indicator span:nth-child(2) {
    animation: bounce 1s infinite .2s;
    }

.typing-indicator span:nth-child(3) {
    animation: bounce 1s infinite .4s;
}

    

@keyframes bounce {
0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(5px);
}
100% {
    transform: translateY(0px);
}
}
  

/* CONTACTS */

.contacts-search {
    margin-bottom: 20px;
}
input#search {
    border-bottom: 1px #eaeaea solid;
    max-width: 500px;
    width: 100%;
    font-size: 14px;
    border: 1px solid var(--border);
    padding: 9px;
    box-sizing: border-box;
    border-radius: 4px;
    background: #f7f7f724;
}
table {
     border-collapse: collapse;
     color: #565656;
     width: 100%;
}
th#td-name {
    width: 30%;
}
th#td-email {
    width: 30%;
}
th#td-stage {
    width: 25%;
}
td {
    padding: 7px 30px 7px 7px;
}
th {
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    padding: 7px 30px 7px 7px;
    color: #000;
}
tr.contact-row {
    border-bottom: 1px solid var(--border);
}
tr.contact-row.hide {
    display: none;
}
tr:hover {
    cursor: pointer;
    color: #000;
    background: #e9eaf13d;
}
thead {
    border-bottom: 1px #b9b9b9 solid;
}
thead tr:hover {
    cursor: default;
    color: #989898;
    background: #fff;
}
th:hover {
    cursor: pointer;
    color: #000;
    background: #e9eaf13d;
}


span.name {
    font-weight:500;
    color: #000;
}

/* LABELS */
span.label {
    background: #ccc;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
    line-height: 17px;
}
.label.stage_0 {
    background: #2568e11f;
    color: #053795;
}
.label.stage_1 {
    background: #2bbb2f30;
    color: #2bbb2f;
}
.label.stage_2 {
    background: #6a6ad830;
    color: #6a6ad8;
}
.label.stage_3 {
    background: #d86a6a30;
    color: #d86a6a;
}
.label.stage_4 {
    background: #faf0cd;
    color: #a58812;
}
.label.stage_5 {
    background: #67d2d230;
    color: #33a9a9;
}
/* span.label.note {
    background: #f6ebc3;
    color: #8b720a;
}
span.label.email {
    background: #d0e1ff;
    color: #344593;
} */


/* chat functions */

.action-preview {
    border: 1px #dddddd87 solid;
    padding: 27px;
    border-radius: 12px;
    line-height: 23px;
    font-size: 15px !important;
    box-shadow: #2a195d38 0px 0px 20px;
    margin-top: 10px;
    max-width: 500px;
    margin-bottom: 20px;
    background: #ffffffd6;
}

.action-preview-btn {
    padding: 10px;
    border-radius: 7px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
    transition: .2s ease;
    font-family: 'Inter';
    font-weight: 500;
    background: #ececf1;
    color: #000;
}
.action-preview-btn:hover {
    background: #e9e9e9;
}
.action-preview-btn.completed {
    color: #ababab;
    background: #eaeaea;
}
.action-preview-btn.completed:hover {
    cursor: not-allowed;
    background: #eaeaea;

}

/* TOOLS */
#tools {
    max-width: 100%;
    margin: auto;
    display: flex;
}
#tools .tool {
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    color: #000;
    flex-direction: column;
    padding: 25px;
    min-height: 100px;
    grid-gap: 3px;
    width: 49%;
    max-width: 48%;
    box-sizing: border-box;
}

.form-input input[type="text"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px #d3d3d3 solid;
    box-shadow: #c5c5c520 0px 0px 10px;
}
div#default-prompt {
    display: none;
}
div#dynamic-prompt {
    display: none;
}
.tool-list{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-gap: 10px 2%;
}
.tool_name {
    font-weight: 500;
    font-size: 16px;
}
.tool_description {
    font-size: 13px;
    line-height: 18px;
    color: #6f6f6f;
    margin-top: 10px;
}
.tool_btn {
    margin-top: 5px;
    color: var(--text-highlight);
    font-weight: 500;
}
.tool:hover {
    background: #f7f7f7;
}
.tools .main-pad {
    width: 50%;
    overflow-y: scroll;
    height: calc(100vh - 50px);
    padding: 20px 30px;
    box-sizing: border-box;
}
/* INDIVIDUAL TOOL */
.single-tool-description {
    margin-bottom: 20px;
    color: #535353;
}
#tool {
    max-width: 550px;
    margin: 0;
}
.single_tool #tool {
    margin: auto;
    margin-top:20px;
}

#dynamic-tool .input {
    border: 1px solid var(--border);
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
#dynamic-tool .input-label{
    font-weight: 600;
    margin-bottom: 6px;
}

#dynamic-tool .tool-input {
    margin-bottom: 10px;

}

#dynamic-tool .tool-title{
    font-size:20px;
    font-weight:600;
    margin-bottom: 20px;

}

#dynamic-tool .select {
    border: 1px solid var(--border);
    border-radius: 3px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-transform: capitalize;
}
#dynamic-tool .textarea {
    border: 1px solid var(--border);
    border-radius: 3px;
    width: 100%;
    padding: 10px;
    resize: none;
    height: 100px;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;
}
#dynamic-tool .checkbox-options {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 5px;
}
#dynamic-tool .checkbox-option {
    background: #fff;   
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
}
#default_prompt {
    display: none;
}
#dynamic_prompt {
    display: none;
}

.single_tool .main-pad {
    width: 50%;
    overflow-y: scroll;
    height: calc(100vh - 50px);
    padding: 20px 30px;
    box-sizing: border-box;
}
div#dynamic-tool {
 
    width: 100%;
    margin: auto;
}
div#reset-tool {
    background: #f7f7f7;
    border: 0px;
    border-radius: 7px;
    padding: 10px;
    text-align: center;
    width: 50%;
    cursor: pointer;
}
#dynamic-tool button {
    text-align: center;
    display: block;
    text-decoration: none;
    width: 50%;
    padding: 14px;
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
    color: #494949;
    border: 1px solid var(--border);
    font-weight: 600;
}
.single-tool-btns {
    display: flex;
    grid-gap: 10px;
}
/* NAV */
img.logo {
    max-width: 100%;
    width: 30px;
    height: 30px;
}
.sb-logo {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    padding-bottom: 5px;
    justify-content: flex-start;
}
div#nav {
    transition: 0.2s ease;
    background: #fff;
    height: 100%;
    overflow: hidden;
    padding-top: 0px;
    position: fixed;
    z-index: 99999;
    box-sizing: border-box;
    width: 60px;
}
#nav a {
    text-decoration: none;
}
.menu-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #4d4d4d;
}
.menu-svg svg {
    width: 20px;
    height: 20px;
    display: flex;
    fill: #686868;
}
.menu-item:hover{
    background: #f9f9f9;
}
.menu-header {
    padding: 5px 20px;
    color: #919191;
    text-transform: uppercase;
    font-size: 11px;
    display: none;
}
.menu-label {
    visibility: hidden;
}
/* when hovered over #nav make width auto */
div#nav:hover {
    width: 180px;
}
/* when hovered over #nav show menu-label */
div#nav:hover .menu-label {
    visibility: visible;
}

/* single contact page */
.empty-action {
    max-width: 300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 105px;
    font-size: 14px;
    text-align: center;
}
.delete-contact-parent {
    margin-top:40px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    cursor: pointer;
}
.destroy-highlight {
    color: #cf1313;
    font-weight: 500;
}


#view-details-mob {
    display:none;
    color: var(--text-highlight);
    cursor: pointer;
    font-weight: 500;
}
.main-details {
    margin-top: 20px;
}
.contact-action {
    flex:1;
}
.contact-details {
    min-width: 25%;
}
#contact {
    max-width: 100%;
    background: #fff;
    margin: auto;
    display: flex;
    grid-gap: 50px;
}
.back {
    background: #eaeaea;
    display: inline-flex;
    border-radius: 23px;
    padding: 7px 20px;
}
#contact .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.main-stats {
    display: flex;
    grid-gap: 10px;
    margin-bottom: 7px;
    color: #6c6c6c;
    display: none;
}
.main-stats svg {
    width: 20px;
    height: 20px;
    display: flex;
}
.single-contact-filter {
    display: flex;
    border-bottom: 1px var(--border) solid;
    align-items: flex-start;
    justify-content: space-between;
}
.filters {
    display: flex;
    grid-gap: 30px;
}
.content-filter {
    padding-bottom: 13px;
    text-align: left;
    font-weight: 500;
    border-radius: 0px;
    color: #929292;
    cursor: pointer;
    padding-top: 5px;
}
.content-filter.active {
    border-bottom: 2px #6324ff solid;
    color: #6324ff;
}
#contact .action {
    border-bottom: 1px var(--border) solid;
    margin-top: 11px;
    font-size: 15px;
    line-height: 23px;
    padding: 20px 0px;
    background: #fff;
}

.action-date {
    color: #9f9f9f;
    margin-left: 5px;
}
.action-controls {
    display: flex;
    grid-gap: 2px;
    justify-items: center;
    align-items: center;
    border: 1px #cdcdcd solid;
    padding: 3px;
    border-radius: 6px;
    box-shadow: #00000015 0px 2px 3px;
    cursor: pointer;
}
.action-buttons {
    display: flex;
    grid-gap: 10px;
}
.action-btns {
    font-weight: 600;
    padding: 3px 15px;
    color: #6f6f6f;
    background: #fff;
}
.action-header {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 7px;
    font-weight: 600;
    color: #000;
    padding-bottom: 11px;
    /* margin-bottom: 8px;
    border-bottom: 1px var(--border) solid; */
}
.action-subject{
    font-weight: 500;
    margin-bottom: 10px;
}
.action-meta {
    display: flex;
    align-items: center;
    grid-gap: 5px;
}
.action-header svg {
    width: 15px;
    height: 15px;
    display: flex;
    background: #fff;
    padding: 3px;
}
.action-meta svg {
    padding: 2px;
    border-radius: 4px;
}
.action.note .action-meta svg {
    background: #3b75e1;
    fill: #fff;
}
.action.email .action-meta svg {
    background: #e1723b;
    fill: #fff; 
}

.action.note .action-title {
    color: #3b75e1;
}
.action.email .action-type {
    color: #e1723b;
}
.action-controls svg {
    fill: #535353 !important;
}

.main-details-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px var(--border) solid;
    padding: 10px 0px;
    margin-bottom: 10px;
    font-weight: 500;
}

span.sub-section-title {
    font-weight: 600;
    font-size: 16px;
}
span#edit-details {
    color: var(--text-highlight);
    cursor: pointer;
}
.main-details-label {
    color: #8b8b8b;
    font-size: 14px;
    line-height: 15px;
}
.main-details-section {
    margin-bottom: 12px;
}

#md-first-name, #md-last-name {
    text-transform: capitalize;
}
/* TOOL BAR */
.tool-bar {
    max-width: 600px;
    margin: auto;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px var(--border) solid;
    padding-bottom: 22px;
    display: none;
}
.tool-bar-btn {
    border-radius: 4px;
    font-size: 12px;
    width: 24%;
    display: flex;
    justify-content: center;
    padding: 8px 0px;
    border: 1px #d5d5d5 solid;
    cursor: pointer;
}
.tool-bar-btn:hover {
    background: #f7f7f7;
}

/* DASHBOARD */
div#dashboard {
    max-width: 550px;
    margin: auto;
}
#dashboard-send {
    border: 1px solid var(--border);
    padding: 11px 18px;
    border-radius: 27px;
    color: #ccc;
    display: flex;
    align-items: center;
    grid-gap: 6px;
}
.dashboard-send-icon {
    display: flex;
}
.dashboard-send-icon svg {
    height: 30px;
    width: 30px;
    background: #efefef;
    border-radius: 16px;
    padding: 7px;
    fill: #8b8b8b;
    box-sizing: border-box;
    fill: #8774b6;
    background: #f6f7fc;
}
#dashboard-send-input {
    outline: none !important;
    flex: 1;
}
#dashboard-send-input:focus {
    color: #000;
}
.dash-items {
    display: flex;
    grid-gap: 20px;
    flex-direction: column;
}
.dash-item {
    BACKGROUND: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    /* border-bottom: 1px solid var(--border); */
    grid-gap: 5px;
    padding: 30px 0px;
    padding-bottom: 0px;
}
.dash-header {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 4px;
}

.dash-data-button a {
    text-decoration: none;
    color: var(--text-highlight);
    font-size: 14px;
}
.dash-content {
    margin-bottom: 10px;
    color: #838383;
    font-size: 14px;
    margin-top: 2px;
}

.dash-data {
    display: flex;
    justify-content: start;
    grid-gap: 10px;
    margin: 10px 0px;
    font-weight: 500;
    height: 120px;
    border-radius: 5px;
    font-weight: 500;
}
.dash-data-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32%;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fff !important;
    border: 1px solid var(--border);
}

span.data-value {
    font-weight: 500;
    font-size: 22px;
}
span.data-title {
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    margin-bottom: 5px;
}
.dash-quicklinks a {
    font-size: 13px;
    text-decoration: none;
    display: flex;
    color: #000000;
    grid-gap: 10px;
    /* font-weight: 500; */
    fill: #6458ff;
    align-items: center;
    box-sizing: border-box;
    background: #ffffff8a;
    border-radius: 11px;
    padding: 9px;
    line-height: 16px;
    width: 49%;
    border: 1px #eaeaea solid;
}
.dash-quicklinks {
    display: flex;
    grid-gap: 6px;
    margin: 10px 0;
    width: 100%;
    flex-wrap: wrap;
}
span.ql-svg svg {
    height: 30px;
    width: 30px;
    display: flex;
    background: #efefefb0;
    border-radius: 4px;
    fill: #434343;
    padding: 5px;
    box-sizing: border-box;
    background: #f6f7fc;
    fill: #8774b6;
}

/* SETTINGS */
.authenticated-sending {
    color: #00b309;
}
.unauthenticated-sending {
    color: #c60000;
}
.sep-bar {
    border-bottom: 1px var(--border) solid;
    margin-bottom: 20px;
    margin-top: 20px;
}
.settings-section {
    display:none;
}
.settings-section.active {
    display: block
}

.settings-filter{
    display: flex;
    border-bottom: 1px var(--border) solid;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.sending-status-message {
    margin-top: 10px;
}
/* MOBILE CHAT */
.mobile-header {
    display:none;
}
.chat-header {
    display: none;
}


/* MODAL */
.modal {
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #e9eaf1de;
    display: none;
}
.modal.show {
    display: block;
}
.modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 17px 34px;
    border-radius: 4px;
    width: 80%;
    max-width: 350px;
    position: relative;
    box-shadow: #00000020 0px 5px 10px;
}
#modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}
button#save-modal {
    width: 100%;
    background: var(--text-highlight);
    border: 1px #ffffff solid;
    border-radius: 5px;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}
#modal textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    resize: none;
    border: 1px #cacaca solid;
    border-radius: 4px;
    height: 150px;
    font-family: 'Inter';

}
input#modal-first-name {
    text-transform: capitalize;
}
input#modal-last-name {
    text-transform: capitalize;
}
#modal input{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px #cacaca solid;

    box-sizing: border-box;
}
#modal select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px #cacaca solid;

    box-sizing: border-box;
}
.modal-field-label {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 2px;
    text-transform: uppercase;
    color: #757575;
}
.modal-field {
    margin-bottom: 15px;
}
.modal-fields {
    display: none;
}
.modal-fields.show {
    display: block;
}
button#save-modal.disabled-btn {
    color: #979797;
    background: #e1e1e1;
    cursor: not-allowed;
}
button#save-modal.loader-vis {
    font-size:0px;
}
/* BILLING */
div#billing {
    max-width: 660px;
}
.plan-item {
    width: 33%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
}
.plan-item a {
    margin-top: 10px;
}
.plan-trial {
    font-size: 11px;
    color: #6324ff;
    background: #eee7ff;
    width: fit-content;
    line-height: 12px;
    padding: 3px 8px;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 400;
    display: inline-block;
}

.plan-item.active {
    outline: 2px #6324ff solid;
}
.plan-name {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    grid-gap: 5px;
}
.plan-price {
    font-weight: 500;
    border-bottom: 1px var(--border) solid;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
div#plan-change, #plan-select {
    border: 1px #e7e7e7 solid;
    padding: 25px;
    border-radius: 3px;
    box-sizing: border-box;
    margin-top: 20px;
}
.plan-current-plan-label {
    background: #6324ff;
    width: fit-content;
    padding: 4px 7px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    color: #fff;
}
div#plan-items {
    display: flex;
    max-width: 600px;
    grid-gap: 10px;
    margin: 10px 0px;
}

.billing-field-title {
        font-weight: 600;
        margin-bottom: 6px;
}
span.feature-check {
    background: #6324ff;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    padding: 2px;
    box-sizing: border-box;
    font-weight: 600;
}
.plan-feature {
    display: flex;
    grid-gap: 5px;
    font-size: 13px;
    align-items: center;
    margin-bottom: 7px;
}
.cancel-parent {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
span#cancel-sub {
    font-size: 13px;
    font-weight: 500;
    color: #c60000;
    cursor: pointer;
}


/* LOGIN */
.inner-login {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20vh;
}
.login_wrap {
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.logocont img {
    width: 100%;
    height: auto;
}
.logocont {
    width: 100px;
}
.login-input-field input {
    border: 1px #eaeaea solid;
    background: #fff;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom:15px;
}
input#submit {
    background: #4a00ff;
    color: #fff;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    border: 0px;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: 600;
}
.login_wrap a {
    color: #4a00ff;
    font-weight: 500;
    text-decoration: none;
}
.login-label-flex {
    display: flex;
    justify-content: space-between;
}
.inner-login .flash {
    background: #ffdbdb;
    width: calc(100% - 40px);
    text-align: center;
    padding: 4px;
    box-sizing: border-box;
}

/* onboarding */
.onboarding .single-tool-btns button {
    font-weight:600;
}
.onboarding #nav {
    display:none;
}
.onboarding .mobile-header {
    display:none;
}
.onboarding div#chat-parent {
    display: none;
}
.onboarding input, .onboarding textarea {
    border: 1px #dddddd solid;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}
.onboarding .onboard-btn{
    width: 100%;
    padding: 14px;
    background: var(--text-highlight);
    color: #fff;
    font-weight: 500;
    border: 0px;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}
.onboarding .main-pad {
    width: auto;
    padding: 20px;
    height: auto;
    min-height: auto;
}
.onboarding .outer-body {
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.onboarding .plan-item {
    width: 100%;
    border: 0px;
}
.onboarding #plan-select {
    border: 0px;
    padding: 0px;
    margin: 0px;
}
.onboarding .plan-title {
    font-size: 19px;
    margin-bottom: 4px;
    font-weight: 600;
}
.onboarding .plan-price {
    font-weight: 400;
}
.onboarding .plan-features {
    padding: 20px;
    border-radius: 6px;
    border: 1px #eaeaea solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}
.onboarding .plan-message {
    margin-bottom: 16px;
}
.onboarding #single-plan .plan-features {
width: 100%;
}
.onboarding #three-plans .plan-features {
    width: 33%;
}
.onboarding #three-plans {
    grid-gap: 10px;
}
.onboarding #three-plans, .onboarding #single-plan {
    display: none;
}
.onboarding #single-plan.show, .onboarding #three-plans.show {
    display: flex;
}
.onboarding .view-change-parent {
    text-align: right;
    margin-top: 15px;
}
.onboarding .fw-btn {
    padding: 9px;
}
.onboarding-3 .main-pad {
    max-width:1200px;
    width: 80%;
}
.onboarding video {
    width:100%;
    border-radius: 8px;
    border: 1px #eaeaea solid;
    box-shadow: #00000020 0px 0px 20px;
}
.onboarding .video-wrapper {
    border-radius: 8px;
}

/* loader */
.loader {
    width: 20px;
    height: 20px;
    border: 3px dotted #999999;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

/* mobile styles */

@media only screen and (max-width: 1200px){
    #contact, #contacts {
        padding: 20px;
    }


    div#contact {
        display: flex;
        flex-direction: column;
    }
    .main-pad {
        width: 50%;
}

div#plan-items {
    flex-direction: column;
}
.plan-item {
    width: 100%;
}
.contacts .main-pad{
    padding:0px;
}
.single_contact .main-pad{
    padding:0px;
}

tr.contact-row {
    border-bottom: 1px #e5e5e5 solid;
    grid-gap: 5px;
    padding: 20px 0px;
    margin: auto;
    background: #fff;
    display: flex;
    flex-direction: row;
}
.contact-row td:nth-child(4) {
    display: none;
}
.contact-row td:nth-child(2) {
    display: none;
}
thead {
    display: none;
}

.content-filter {
    min-width: max-content;
}
.single-contact-filter {
    flex-direction: column-reverse;
    align-items: flex-start;
    grid-gap: 20px;
    padding: 0px;
    padding-bottom: 0px;
}
.filters {
    display: flex;
    grid-gap: 30px;
    overflow-x: auto;
}
.filter-parent {
    display: flex;
    width: 100%;
}
}
@media only screen and (max-width: 799px) {
    .dash-data {
        flex-wrap: wrap;
        height: auto;
    }

    tr.contact-row {
        border-bottom: 1px #bfbfbf solid;
        grid-gap: 5px;
        padding: 20px;
        margin: auto;
        background: #fff;
        display: flex;
        flex-direction: row;
    }
    .onboarding div#three-plans {
        flex-direction: column;
    }
    .onboarding #three-plans .plan-features {
        width: 100%;
    }
    .mobile-padded {
        padding:20px;
    }
    #contact, #contacts {
        padding: 0px;
    }
    .menu-item {
        font-size:15px;
    }
    .menu-svg svg {
        width: 22px;
        height: 22px;
    }
    #contact .action {
        padding: 20px;
    }
    .filter-parent {
        display: flex;
        width: 100%;
    }
    .filters {
        display: flex;
        grid-gap: 30px;
        overflow-x: auto;
    }
    div#hd-email {
        display: block;
    }
  
    .contact-action {
        border-radius: 0px;
        padding: 20PX 0PX;
    }
    .contact-details {
        min-width: 25%;
        padding: 20px;
    }
    #view-details-mob {
        display: block;
    }
    .dash-data-item {
        width: 48%;
    }
    .parent-frame {
        margin-left: 0px;
    }
    .message .content {
        font-size: 14px;
    }
    .action-preview {
        font-size: 14px !important;
    }
    div#nav {
        display: flex;
        position: fixed;
        width: 100% !important;
        flex-direction: column;
        box-shadow: #00000020 0px 0px 20px;
        border-radius: 10px;
        transition: .3s ease;
        bottom: -100%;
        height: 90%;
        padding-top: 0px;
    }
    div#nav.show {
        bottom: 0;
    }
    .menu-label {
        visibility: visible;
    }
    .chat-header {
        display: flex;
        border-bottom: 1px #e3e3e3 solid;
        justify-content: space-between;
        align-items: center;
        padding: 00px 20px;
    }
    .chat-header-msg {
        padding: 10px 0px;
        font-weight: 500;
    }
    .mh-right, .mh-left {
        display: flex;
        grid-gap: 10px;
    }  
    .mh-left {
        margin-left: 20px;
    }
    .mh-right {
        margin-right:20px;
    }
    .mobile-header {
        display: flex;
        justify-content: space-between;
        grid-gap: 10px;
        width: 100%;
        margin: auto;
        position: sticky;
        top: 0;
        background: #fff;
        padding: 10px 0px;
    }
    .mobile-header-btn{
        border: 1px solid var(--border);
        border-radius: 100px;
        display: flex;
        fill: #7f7f7f;
        padding: 5px;
        height: 25px;
        width: 25px;
        align-items: center;
    }
    div#chat-toggle.show {
        fill: #fff;
        background: #692bff;
        border: 1px #692bff solid;
    }
    div#nav-toggle.show {
        fill: #fff;
        background: #692bff;
        border: 1px #692bff solid;
    }


#nav {
    display:none;
}
.single_contact #chat-parent, div#chat-parent {
    position: fixed;
    bottom: 0;
    height: 100%;
    transition: .3s ease;
    bottom: -100%;
    box-shadow: #00000020 0px 0px 20px;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    padding: 0px;
}
.main-pad {
    width: 100% !important;
    padding: 20px;
    overflow: hidden;
    height: auto;
}
div#chat-parent {
    top: auto;
    margin-left: 0;
    border: 0px;
}
div#chat-parent.show {
    bottom: 0;
}
div#chat-placeholder {
    max-width: 100%;
}
div#dynamic-tool {
    width: 100%;
}
div#contact {
    flex-direction: column;
    grid-gap: 0px;
}


.contact-row td {
    padding: 0px;
}
.single-contact-filter {
    flex-direction: column-reverse;
    align-items: flex-start;
    grid-gap: 20px;
    padding: 0px 20px;
    padding-bottom: 0px;
}

.action-btns {
    font-weight: 600;
    padding: 3px 15px;
    color: #6f6f6f;
}
.main-details {
    display:none;
}
.main-details.show {
    display: block;
}
}
