@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap');


:root{    
    --error:#ee4343;
    --warning:#ff8400;
    --success:#4caf50;
    --error-bkg:rgba(255, 196, 196, 0.20);
    --Neutral-white-100:#EEECEC;
    --Neutral-white-000:#ffffff;
    --Neutral-white-trans-60:rgba(255, 255, 255, 0.60);
    --Neutral-black-000:#000000;
    --Neutral-black-900:#0C0C0C;
    --Neutral-black-700:#727272;
    --Neutral-black-trans-70:rgba(0, 0, 0, 0.70);
    --Neutral-black-trans-70:rgba(0, 0, 0, 0.40);
    --tertiary:#e2f3fb;
    --action:#7bb9fa;
    --primary:#4285f4;
    --secondary:#fbbc05;
    --press:#2963c3;
    --p-font-size:14px;
    --p-line-height:20px;


}

body {
    font-family: "Zen Kaku Gothic Antique", serif, sans-serif, Arial;
    font-style: normal;
    color: #1f1e1e;
    overflow-x: hidden;
    background:var(--Neutral-white-100);
    overflow-x:hidden;
    font-size: var(--p-font-size);
    line-height: var(--p-line-height);
    font-weight: 400;
}
   
a {
    text-decoration: none;
}

a:hover {
    outline: none;
    text-decoration:none;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding-left: 0px;
    list-style-type: none;
}

h1,.h1 {
    font-size: 48px;
    line-height: 60px;
    font-family: "Baloo Bhai 2", serif, sans-serif, Arial;
    font-weight: 900;
}

h2,.h2 {
    font-size: 34px;
    line-height: 40px;
    font-family: "Ubuntu Sans", serif, sans-serif, Arial;
    font-weight: 700;
}

h3,.h3 {
    font-size: 28px;
    line-height: 38px;
    font-family: "Ubuntu Sans", serif, sans-serif, Arial;
    font-weight: 700;
}

h4,.h4 {
    font-size: 18px;
    line-height: 26px;
    font-family: "Zen Kaku Gothic Antique", serif, sans-serif, Arial;
    font-weight: 700;
}

h5.h5,
.dropdown-menu .dropdown-item {
    font-size: 14px;
    line-height: 20px;
    font-family: "Zen Kaku Gothic Antique", serif, sans-serif, Arial;
    font-weight: 400;
}

h6,.h6 {
    font-size: 12px;
    line-height: 18px;
    font-family: "Zen Kaku Gothic Antique", serif, sans-serif, Arial;
    font-weight: 400;
}

p,.p,.accordion-button,
.btn,.upload_form__container ol {
    font-size: var(--p-font-size);
    line-height: var(--p-line-height);
    font-family: "Zen Kaku Gothic Antique", serif, sans-serif, Arial;
    font-weight: 400;
}
p,.p{
    margin-bottom: 20px;
}

blockquote,q {
    display: inline-block;
    padding: 10px 22px 12px 22px;
    border-left: 4px solid #01c6fb;
    color: #2e3337;
    font-size: var(--p-font-size);
    line-height: var(--p-line-height);
}

.btn {
    color: #fff;
    background-color: var(--primary);
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 400;
    transition: all ease 0.5s;
    border: 1px solid var(--primary);
    transition: all ease 0.4s;
}
.btn-secondary,
.btn-secondary:focus {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-secondary:focus,
.btn-secondary:active:focus,
.btn:focus {
    box-shadow: none;
}
.btn:hover,
.btn-secondary:hover {
    box-shadow: 0px 4px 4px 0px #00000040;
    color:var(--Neutral-white-000);
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
.btn:active, .btn-secondary:active {
    box-shadow: 0px 0px 0px 0px #00000040;
    color: var(--Neutral-white-000);
    background-color: var(--press);
    border-color: var(--press);
}
.btn_big {
    height: 40px;
    background-color: var(--tertiary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--Neutral-black-000);
    width: auto;
    max-width: max-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: normal;
}
.btn_big:hover{    
    background-color: var(--action);
    border-color: var(--action);
    color:var(--Neutral-black-000);
}
.btn_big:active{    
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color:var(--Neutral-black-000)
}
.btn_big svg {
    height: 35px;
    width: 35px;
}
.btn.btn_with_icon {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center; 
}
.btn_with_icon svg {
    transition: all ease 0.4s;
}
.btn_with_icon.icon_right:hover svg {
    transform: translateX(5px);
}
.btn_with_icon.icon_left:hover svg {
    transform: translateX(-5px);
}
.btn .btn_icon{
    width: 25px;
    height: 25px;
    display: block;
}
.btn_big .btn_icon {
    width: 30px;
    height: 30px;
}
.btn_icon svg{
    height: 100%;
    width: 100%;
    display: block;
}
.btn-secondary:hover .btn_icon svg path,
.btn-secondary:active .btn_icon svg path {
    stroke:#fff;
}
.integrate_btn{
    margin:35px 0;
}
.btn.disabled, 
.btn:disabled {
    opacity: 1;
    background-color: var(--Neutral-white-100);
    color: var(--Neutral-black-700);
    border-color: var(--Neutral-white-100);
}
.btn.disabled svg path, .btn:disabled svg path {
    stroke: var(--Neutral-black-700);
}
.btn.icon_left:not(.btn-secondary) svg path {
    stroke: #fff;
}
.btn.back_btn {
    margin: 35px auto 0;
    max-width: 200px;
    width: 100%;
}
.container {
    max-width: 1920px;
}
/*  Login/signup Style
========================================================================== */
.app_logo svg {
    max-width: 100%;
    height: auto;
}
.signup_left_block{
    background-image: url(../images/login-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding:20px 20px;
}
.signup_right_block {
    background: var(--Neutral-black-900);
    color: var(--Neutral-white-100);
    padding: 20px 30px;
}
.signup_right_block_inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.signup_panel {
    background-color: var(--Neutral-white-000);
    border-radius: 36px;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 40px 30px;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
}
.signup_panner_inner {
    max-width: 410px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}
.new_credentials_form .form-group,.forgot_password_form .form-group:not(:last-child){
    margin-bottom: 35px;
}
input.form-control {
    background-color: var(--Neutral-white-100);
    border: 0;
    border-radius: 8px;
    height: 50px;
    padding: 8px 18px;
    outline: none;
    box-shadow: none;
}
input.form-control:focus {
    background-color: var(--Neutral-white-100);
    outline: none;
    box-shadow: none;
}
.or_text {
    text-align: center;
    margin: 18px 0;
    position: relative;
}
.or_text:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    border: 1px solid #000;
    width: 100%;
}
.or_text span {
    display: inline-block;
    width: 100px;
    background: #fff;
    position: relative;
    z-index: 1;
}
a.forgot_password_link {
    margin:-10px 0 18px;
    display: flex;
    justify-content: flex-end;
    color: var(--error);
    text-decoration: underline;
}
.signup_panner_inner h1 {
    margin: 0 0 12px;
}
.signup_panner_inner h3 {
    margin: 0 0 30px;
}
.password_input {
    position: relative;
}
span.passwordToggle {
    position: absolute;
    right: 18px;
    top: 14px;
    cursor: pointer;
    display: block;
}
span.passwordToggle.active:after {
    display: block;
    content: "";
    height: 20px;
    width: 3px;
    background: #050505;
    top: 1px;
    position: absolute;
    border-right: 2px solid var(--Neutral-white-100);
    transform: rotate(45deg);
    left: 9px;
}
.app_logo svg {
    max-width: 300px;
}
.signup_panner_inner h4 {
    margin: 0 0 15px;
}
.signup_panner_inner p {
    color: var(--Neutral-black-700);
}
span.strength_bar {
    height: 4px;
    width: 100%;
    display: block;
    background: var(--Neutral-white-100);
    margin: 0 0 5px;
}
span.new_strength_bar {
    height: 4px;
    width: 100%;
    display: block;
    background: var(--Neutral-white-100);
    margin: 0 0 5px;
}
.password_strength {
    margin: 10px 0 0;
}
.new_password_strength {
    margin: 10px 0 0;
}
span.strength_bar span {
    display: block;
    height: 100%;
}
span.strength_type {
    display: block;
    text-align: right;
}
span.new_strength_type {
    display: block;
    text-align: right;
}

/* Header style
================================================================*/
header.main_header {
    background-color: var(--primary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    min-height: 60px;
    box-shadow: 0px 4px 4px 0px #00000040;
    position: relative;
    z-index: 990;
}
.main_header_inner {
    justify-content: space-between;
    align-items: center;
}
a.user_account_info .avtar_img{
    display: block;
    height: 48px;
    width: 48px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.add_provider_btn {
    background: #EEECEC;
    border-radius: 50px;
    box-shadow: 0px 4px 4px 0px #00000040;
    gap: 20px;
    padding: 3px 12px;
    line-height: 1;
}
.add_provider_btn img {
    max-height: 32px;
}
ul.header_actions_list {
    gap: 50px;
}
.header_left {
    display: flex;
    align-items: center;
    min-height: 100%;
}
a.app_logo {
    display: block;
    max-width: 275px;
}
.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    font-weight: 500;
}
.dropdown .dropdown-toggle:after{
    display:none;
}
.user_avtar {
    display: block;
    height: 48px;
    width: 48px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin-right: 0px;
}
.dropdown .dropdown-toggle span {
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
}
.dropdown svg {
    margin-left: 10px;
    margin-top: 4px;
}

.dropdown svg path {
    stroke: var(--Neutral-white-100);
}
.dropdown-menu .dropdown-item {
    color: var(--Neutral-white-100);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    margin: 0 0 10px;
    border: 1px solid transparent;
    transition: all ease 0.4s;
    cursor: pointer;
}
.dropdown-menu .dropdown-item span {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
}
.dropdown-menu .dropdown-item span img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.dropdown-menu {
    left: auto!important;
    right: 0!important;
    border: 0;
    top: 35px;
    background-color: var(--Neutral-black-000);
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 20px;
    padding: 10px 10px 0;
}
.dropdown-menu:before {
    /* display: block;
    content: "";
    position: absolute;
    top: -8px;
    left: 10px;
    border-style: solid;
    border-width: 0 8px 10px 8px;
    border-color: transparent transparent var(--Neutral-black-000) transparent; */
}
.dropdown-menu:before {
    left: auto;
    right: 10px;
}
.dropdown-menu a.dropdown-item:hover {
    border-color: var(--tertiary);
    background: transparent;
    text-decoration: none;
}
.dropdown-menu.dropdown-menu-right.show {
    transform: translate(0px, 55px)!important;
}
.userDropdown .dropdown-menu {
    min-width: 130px;
}
.providerDropdown .dropdown-menu {
    min-width: 215px;
}
.providerDropdown .dropdown-toggle .provider_icon {
    height: 24px;
    width: 28px;
}
.providerDropdown .dropdown-toggle {
    gap: 12px;
}
.providerDropdown .dropdown-menu.show {
    left: 50%!important;
    transform: translate(-50%, 40px)!important;
}
main.main_wrapper {
    padding: 12px 0;
    height: calc(100vh - 65px);
}
.ezf_chat_wrap .card, 
.ezf_dropbox_wrap .card {
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 0;
}
.ezf_chat_wrap .card .card-header, .ezf_dropbox_wrap .card .card-header {
    border-radius: 20px 20px 0 0;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--tertiary);
    padding: 9px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.ezf_dropbox_wrap .card .card-header {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--Neutral-black-900);
}
.ezf_chat_wrap .card-body, 
.ezf_dropbox_wrap .card-body {
    padding: 15px 15px;
    overflow: auto;
}
.card-header span.icon_box {
    height: 30px;
    width: 30px;
    display: block;
}
.icon_box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}
.ezf_chat_empty {
    max-width: 350px;
    margin: 0 auto;
    padding: 20px 0;
    min-height: 90%;
}
.ezf_chat_empty p {
    margin: 30px 0 0;
}
.ezf_chat_window {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ezf_chat_footer {
    margin-top: auto;
    padding: 10px 0 0;
}
.ezf_chat_body {
    flex: 1;
    overflow: auto;
    max-height: 100%;
    margin: -15px -15px 0;
    padding: 15px 15px;
}
.ezf_chat_box {
    display: flex;
    background: #eee;
    height: 50px;
    border-radius: 16px;
    padding: 8px 10px;
    border-top: 1px solid var(--Neutral-black-000, #000000);
    align-items: center;
}
.ezf_chat_box input.ezf_chat_input {
    flex: 1;
}
.ezf_chat_box button.csv_btn {
    background: transparent;
    border: 0;
    padding: 0;
    height: 32px;
    width: 32px;
}
.ezf_chat_box button.sendBtn {
    background: transparent;
    border: 0;
    padding: 10px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
}
.ezf_chat_box button.sendBtn svg {
    width: 100%;
    height: 100%;
    display: block;
}
.ezf_chat_box button.csv_btn:hover svg path {
    fill: var(--primary);
}
.ezf_chat_box button.sendBtn:hover svg path {
    stroke: var(--primary);
}
.ezf_chat_box input.ezf_chat_input {
    background: transparent;
    border: 0;
    outline: none;
    padding: 0 15px;
}
.default_question_list {
    gap: 10px;
    margin: 10px 0 0;
}
.default_question {
    background: #EEECEC;
    box-shadow: 0px 1px 0px 0px #0000001F;
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 7px);
    max-width: calc(33.333% - 7px);    
    display: flex;
    align-items: center;
}
.chat_msg_body {
    padding: 15px 20px;
    background: var(--primary);
    border-radius: 12px 12px 12px 0;
    box-shadow: 0px 1px 1px 0px #00000033;
    max-width: calc(100% - 65px);
}
.chat_msg_body p {
    color: var(--Neutral-white-100, #EEECEC);
    margin: 0;
}
span.chat_msg_time {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--Neutral-black-700, #727272);
}
figure.avtar {
    margin: 0;
    display: block;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    overflow: hidden;
    /* box-shadow: 0px 4px 4px 0px #00000040; */
}
figure.avtar img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.system_msg figure.avtar {
    background: #4285f4;
    box-shadow: none;
    padding: 8px;
}
.system_msg figure.avtar img{
    object-fit: contain;
}
.chat_msg_by {
    margin: 8px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.chat_msg:not(:last-child) {
    margin: 0 0 20px;
}
.user_msg .chat_msg_body {
    border-radius: 12px 12px 0 12px;
    background: var(--Neutral-white-100, #EEECEC);
    min-width: 165px;
}
.chat_msg.user_msg {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chat_msg.user_msg .chat_msg_by {
    flex-direction: row-reverse;
}
.user_msg .chat_msg_body p {
    color: var(--Neutral-black-000, #000000);
}
span.chat_check_icon svg {
    display: block;
    height: 18px;
}
span.chat_check_icon {
    line-height: 18px;
}
span.chat_check_icon.viewed svg path {
    fill:var(--success)
} 




.accordion-item {
    border: 0;
}
.accordion-body {
    padding: 0px 25px 15px;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    color: #000;
}
.accordion-button,.accordion-button:focus{
    border:0px;
    box-shadow: none;
}
.accordion-button {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.accordion-button::after{
    display: none;
}
img.folder_opened {
    display: none;
}
.accordion-button span.icon_box {
    display: block;
    height: 19px;
    width: 24px;
}
.accordion-button span.icon_box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.accordion-button[aria-expanded="true"] span.icon_box img.folder_opened {
    display: block;
}
.accordion-button[aria-expanded="true"] span.icon_box img.folder_closed {
    display: none;
}
ul#folderAccordions {
    padding-left: 15px;
}

/* modal style */
.modal-backdrop.show {
    opacity: .7;
}
.modal .modal-content {
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 20px;
    padding: 40px;
}
.modal .modal-content .modal-header {
    padding: 0;
    border:0px;
    position: relative;
    padding-right: 80px;
}
.modal .modal-content .modal-header h2{
    margin:0 0 10px;
}
.modal .modal-content .modal-header h4{
    color: var(--Neutral-black-700);
}
.modal .modal-content .modal-body {
    padding: 0;
}
.modal-header .btn-close {
    background: transparent;
    height: 40px;
    width: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
}
.modal-dialog.modal-lg{
    max-width: 800px;
}
#integrateModal .modal-dialog.modal-lg {
    max-width: 580px;
}
#integrateGoogleModal .modal-dialog.modal-lg {
    max-width: 580px;
}


/* file upload css */
.upload_form {
    width: 100%;
    margin: 30px auto 0;
    max-width: 530px;
}
.upload_form__container {
    position: relative;
    width: 100%;
    height: auto;
    border: 2px dashed silver;
    display: flex;
    justify-content: center;
    align-items: stretch;
    color: silver;
    margin-bottom: 5px;
    border: 2px dashed #000000;
    border-radius: 30px;
    flex-direction: column;
    padding: 20px 40px;
    gap: 30px;
}
.upload_form__container.hidden {
    height: 0;
    border: 0;
    padding: 0;
    visibility: hidden;
    margin: 0;
}
  .upload_form__container.active {
    /* background-color: rgba(192, 192, 192, 0.2); */
  }
  .upload_form__file {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
  }
  .form__files-container {
    display: flex;
    width: 100%;
    padding: 5px 0;
    justify-content: space-between;
    align-items: center;
  }
  .upload_form__container ol {
    list-style: auto;
    list-style-position: outside;
    padding-left: 20px;
}
span.upload_icon {
    display: flex;
    justify-content: center;
}
.upload_form__container .btn_group .btn {
    max-width: 180px;
    align-items: center;
    justify-content: space-between;
}
.upload_form__container .btn_group .btn{
    position: relative;
    z-index: 1;
}
.upload_form__container .btn_group .btn-secondary svg path {
    fill: var(--primary);
}
.upload_form__container .btn_group .btn-secondary:hover svg path {
    fill: var(--Neutral-white-000);
}
#files-list-container .form__files-container {
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #000000;
    background: var(--Neutral-white-100, #EEECEC);
}
div#files-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 410px;
    margin: 0 auto 20px;
}
.form__files-container .delete-button {
    border: 0;
    padding: 0;
}
#files-list-container .btn {
    max-width: 160px;
    margin: 25px auto 0;
    align-items: center;
    justify-content: space-between;
}


.question_step {
    display: none;
    transition: all ease 0.4s;
    transition-delay: 0.0s;
    opacity: 0;
    transform: translateX(20px);
}
.question_step.active {
    display: block;
}
.question_step.active.show {
    opacity: 1;
    transform: translateX(0px);
}
ul.radio_list,
ul.checkbox_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 22px;
    margin: 30px 0 30px;
}
label.radio_input input[type="radio"],
label.checkbox_input input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
label.radio_input,
label.checkbox_input {
    position: relative;
    cursor: pointer;
}
label.radio_input span,
label.checkbox_input span {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}
label.radio_input span:after,
label.checkbox_input span:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    border: 2px solid #000;
    border-radius: 50px;
    min-width: 18px;
    min-height: 18px;
}
label.radio_input input[type="radio"]:checked + span:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: #000;
    display: block;
    min-width: 10px;
}
label.checkbox_input span:after {
    border-radius: 4px;
}
label.checkbox_input input[type="checkbox"]:checked + span:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    height: 13px;
    width: 13px;
    border-radius: 50px;
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    min-width: 10px;
}
.question_step  .form-group {
    max-width: 290px;
}
ul.checkbox_list {
    flex-direction: row;
}
ul.checkbox_list li {
    flex: 0 0 calc(50% - 11px);
    max-width: calc(50% - 11px);
}
.question_step  .btn {
    min-width: 160px;
}
span.info_msg {
    color: var(--Neutral-black-700);
}
.question_step  .btn_group {
    margin-top: 30px;
}
.error_msg {
    color: #EE4343;
    margin: 5px 0 20px;
    padding-left: 27px;
    background-image: url('../images/red-cross.svg');
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 5px 3px;
    padding: 0 0 2px 33px;
}
.providers_list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.providers_list li img {
    max-height: 20px;
}
/* responsive media queries 
================================================================*/
@media (max-width:1199px){
    .container{
        max-width: 100%;
    }
    h1 {
        font-size: 42px;
        line-height: 52px;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
    h2 {
        font-size: 30px;
        line-height: 42px;
    }
}
@media (max-width:991px){    
    .mob_order_1{
        order: 1;
    }
    .mob_order_2{
        order: 2;
    }
}
@media (max-width:768px){    
    .modal-dialog {
        margin: 10px;
    }
    .default_question_list {
        overflow: auto;
        padding: 0 0 10px;
    }
    .user_avtar{
        margin-right: 0px;
    }
    .container {
        max-width: 100%;
    }
    h1 {
        font-size: 32px;
        line-height: 40px;
    }
    h2 {
        font-size: 26px;
        line-height: 32px;
    }
    h3 {
        font-size: 20px;
        line-height: 28px;
    }
    h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .btn_big {
        gap: 10px;
    }
    .signup_panel {
        padding: 30px 30px;
        border-radius: 16px;
    }
    .signup_right_block,
    .signup_left_block {
        padding: 30px 20px;
    }
    .app_logo svg {
        max-width: 170px;
    }
    .or_text {
        margin: 20px 0 15px;
    }
    .form-group {
        margin-bottom: 18px;
    }
    a.forgot_password_link {
        margin: -10px 0 20px;
    }
    .signup_right_block_inner {
        gap: 12px;
    }
    .new_credentials_form .form-group {
        margin-bottom: 20px;
    }
    ul.header_actions_list {
        gap: 20px;
    }
    .add_provider_btn img {
        max-width:30px;
    }
    .default_question {
        flex: 0 0 calc(50% - 7px);
        max-width: calc(50% - 7px);
        line-height: 1.3;
    }

    .ezf_chat_wrap.opened{
        transform: translateY(0%);
        opacity: 1;
        visibility: visible;
    }
    .ezf_chat_wrap .card, .ezf_dropbox_wrap .card {
        border-radius:0;
        box-shadow: none;
        margin-top: auto;
    }
 
    .ezf_chat_box button.csv_btn {
        height: 30px;
    }
    .ezf_chat_box button.sendBtn {
        padding: 5px 10px;
        height: 30px;
    }
    .ezf_chat_box {
        height: 50px;
        padding: 10px 10px;
    }
    button.closeChatBtn {
        margin-left: auto;
        position: absolute;
        right: 18px;
        top: 12px;
        padding: 8px;
        border: 0;
        width: 35px;
        height: 35px;
        background: transparent;
        line-height: 1;
    }    
    button.closeChatBtn svg path {
        fill: #fff;
    }
    .ezf_chat_box input.ezf_chat_input {
        flex: 0 0 calc(100% - 75px);
        max-width: calc(100% - 75px);
        padding: 0 10px;
    }
    main.main_wrapper {
        padding: 0;
        background: var(--Neutral-white-000);
    }
    .ezf_chat_wrap .card .card-header, .ezf_dropbox_wrap .card .card-header {
        display: none;
    }
    .ezf_dropbox_column,
    .ezf_chat_column {
        display: none;
        background-color: var(--Neutral-white-000);
    }
    .ezf_chat_column {
        padding-left: 0;
        padding-right: 0;
    }
    .ezf_chat_column.active,
    .ezf_dropbox_column.active {
        display: block;
    }
    .chat_msg_by {
        padding-right: 20px;
        padding-left: 20px;
    }
    .ezf_chat_body {
        margin: -15px 0 0;
        padding: 15px 15px;
    }
    .upload_form{
        margin-top: 15px;
    }
    .ezf_chat_footer {
        padding: 10px 15px 0;
    }
    .ezf_chat_wrap .card-body, .ezf_dropbox_wrap .card-body {
        padding: 15px 0px;
        overflow: auto;
    }
    .row.h-100.gx-3 {
        --bs-gutter-x: 1.5rem;
    }
    .mobile_tabs_list {
        position: fixed;
        top: 65px;
        z-index: 10;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 4px;
        box-shadow: 0px 4px 20px 0px #00000080;
        max-width: 190px;
        margin: 0 auto;
        background: var(--Neutral-white-100, #EEECEC);
        border-radius: 50px;
        padding: 3px 3px;
    }    
    .mobile_tabs_list li button {
        border: 0;
        background: transparent;
        outline: none;
        display: flex;
        gap: 5px;
        border-radius: 50px;
        width: 100%;
        padding: 6px 2px;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 20.27px;
        color: var(--Neutral-black-000);
    }
    .mobile_tabs_list li button.active{
        background: var(--Neutral-white-000);
    }
    .mobile_tabs_list li {
        flex: 0 0 calc(50% - 2px);
        max-width: calc(50% - 2px);
    }    
    .mobile_tabs_list li button span.btn_icon {
        height: 20px;
        width: 20px;
        display: block;
    }
    ul#folderAccordions {
        padding: 35px 0 0;
    }
}
@media (max-width:575px){
    .d-mob-block {
        display: block!important;
    }
    .mt-mob-3 {
        margin-top: 1rem !important;
    }
    
}
@media (max-width:479px){
    .add_provider_btn {
        padding: 9px 10px;
        gap: 4px;
    }  
    .add_provider_btn img {
        max-width: 22px;
    }
    ul.header_actions_list {
        gap: 15px;
    }
    .modal .modal-content {
        padding: 20px;
    }
    .upload_form__container {
        padding: 20px 20px;
    }
    .modal .modal-content .modal-header {
        padding-right: 40px;
    }
    .upload_form__container .btn_group {
        flex-direction: column;
    }
}

.card {
    /* border: 1px solid var(--Neutral-black-700); */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    padding: 15px;
    border-bottom: 1px solid var(--Neutral-black-700);
}

.card-body {
    padding: 20px;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.card-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #E3F3FB;
    border-radius: 35px 35px 0px 0px;
}

.card-border {
    border-radius: 30px;
    height: 100%;
    justify-content: space-between;
}
.btn-primary:hover {
    background-color: var(--press);
}

.btn-secondary {
    background-color: var(--secondary);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--action);
}

.tabs {
    margin-bottom: 20px;
}

.tab-list {
    list-style: none;
    padding: 0;
    display: flex;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid var(--Neutral-black-700);
    border-radius: 5px 5px 0 0;
    background-color: var(--Neutral-white-000);
    margin-right: 5px;
}

.tab-item.active {
    background-color: var(--primary);
    color: white;
}


.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.card-body .nav-tabs .nav-item  .nav-link.active {
    /* border-color: #e9ecef #e9ecef #dee2e6; */
    border: 1px solid #000000;
    border-radius: 6px;
    padding: 5px 15px;
}

.card-body .nav-tabs .nav-item .nav-link {
    color: var(--Neutral-black-000);
    padding: 5px 15px;
}

.card-body .nav-tabs .nav-item {
    margin: 0 10px;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: 1px solid #000000!important;
    border-radius: 6px;
}

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

.tab-content .btn {
    max-width: 180px;
    width: 100%;
    display: block;
    background-color: #fff;
    color: #4285F4;
    border: 1px solid #4285F4;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s;
}
.tab-content .btn:hover {
    background-color: #4285F4;
    color: #fff;
}

.tab-content .integrated-accounts-btn .btn {
    max-width: 315px;
    width: 100%;
    display: block;
    background-color: #E3F3FB;
    color: #000;
    border: 1px solid #E3F3FB;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.tab-content .btn.active {
    background-color: #4285F4;
    color: #fff;
}

.border-bottom-btn {
    border-bottom: 1px solid #E3F3FB;
}

.subscription-info {
    padding: 10px 25px;
    border-radius: 18px;
    border: 1px solid #FBBC05;
    text-align: center;
}

.billing-history-table tbody tr td.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cursor-pointer {
    cursor: pointer;
}

/* .integrated-accounts td button.btn {
    border: 1px solid #198754;
    color: #198754;
}

.integrated-accounts td button.btn:hover {
    background-color: #198754;
    color: #fff;
} */

.other-subscriptions button,
.billing-tab td button,
.integrated-accounts td button {
    margin: 0 auto;
}

.btn-integrate-connect {
    max-width: 200px;
    margin: 0px auto;
}

.btn-width-200 {
    max-width: 200px;
    margin: 0px auto;
    width: 100%;
}

.btn-width-100 {
    max-width: 100px;
    margin: 0px auto;
    width: 100%;
}

.Integrate-box img {
    width: 20px;
}


.password_strength {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.new_password_strength {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.strength_bar {
    width: 100%;
    height: 10px;
    background-color: #ccc;
    border-radius: 5px;
    margin-right: 5px;
}

.bar-bg {
    height: 100%;
    border-radius: 5px;
}

.bar-bg.weak {
    background-color: red;
}

.bar-bg.fair {
    background-color: orange;
}

.bar-bg.good {
    background-color: yellow;
}

.bar-bg.strong {
    background-color: green;
}

.new_bar-bg {
    height: 100%;
    border-radius: 5px;
}

.new_bar-bg.weak {
    background-color: red;
}

.new_bar-bg.fair {
    background-color: orange;
}

.new_bar-bg.good {
    background-color: yellow;
}

.new_bar-bg.strong {
    background-color: green;
}

.change-email-text {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.change-email-footer .btn {
    max-width: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #4285F4;
    border: 1px solid #4285F4;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.disconnect-btn .btn { 
    background-color: #fff;
    color: #4285F4;
    border: 1px solid #4285F4;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.disconnect-btn .btn:hover {
    background-color: #4285F4;
    color: #fff;
}
.change-email-footer .btn span {
    width: 15px;
    height: 20px;
    display: block;
    margin-right: 5px;
    margin-left: 5px;
}

.change-email-footer .btn:hover {
    background-color: #4285F4;
    color: #fff;
}

.change-email-footer .btn:hover span svg path {
    stroke: #fff;
}

@media (max-width: 600px) {
    .change-email-btn {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .mob-mt-3 {
        margin-top: 10px;
    }
}

/* .change-email-btn .btn {
    max-width: 180px;
    width: 100%;
    min-width: 100px;
} */