/*
    Global
*/
*
{
    box-sizing: border-box;
}
body
{
    background-color: #ECF5FC;
    font-family: Abel;
}
#app
{
    padding: 20px;
}
.container
{

}
.global-layout-content-container
{

}
.form-btn
{
    font-size: 16px;
    background-color: #0560FD;
    color: #fff;
    border: 0;
    outline: none;
    font-weight: normal;
    padding: 10px 25px;
    border-radius: 7px;
    font-family: 'Abel';
    cursor: pointer;
    text-decoration: none;
}
.form-btn:hover
{
    color: #fff;
    text-decoration: none;
}
.dashboard-box
{
    box-shadow: 8px 8px 40px 0 rgba(88, 88, 88, 0.1);
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: max-content;
    margin-top: 30px;
}
/* Global End */

.navbar > .container-fluid
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.store-infos-container
{
    display: flex;
    gap: 150px;
    align-items: center;
}
.store-user-info
{
    display: flex;
    gap: 20px;
    align-items: center;
}
.store-user-name-role p
{
    margin: 0;
}
.store-id-value
{
    border: 1px solid rgba(92, 92, 92, 0.3);
    border-radius: 5px;
    padding: 2px 7px;
}
.store-id
{
    display: flex;
    gap: 10px;
    align-items: center;
}
p.store-user-name
{
    font-weight: 600;
}
main.py-4
{
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.py-4 > .tab-switcher-nav
{
    flex: 0.2 0.2 0;
    padding-top: 100px;
}
.py-4 > .dashboard-content-container
{
    flex: 0.8 0.8 0;
    margin-top: 90px;
}
.side-nav
{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}
.nav-link
{
    display: flex;
    gap: 20px;
    align-items: center;
    color: #5C5C5C;
    text-decoration: none;
    width: 60%;
}
.nav-link svg, .nav-link path
{
    fill: #bdc4cf;
    color: #bdc4cf;
    width: 32px;
    height: 32px;
}
.nav-item.active svg, .nav-item.active path
{
    fill: #fff;
    color: #fff;
}
.nav-item.active .nav-link
{
    color: #fff;
}
.nav-item
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-radius: 5px;
    cursor: pointer;
}
.nav-item.active
{
    background-color: #0560FD;
}
.nav-item:hover
{
    background-color: #0560FD;
}
.nav-item:hover a
{
    color: #fff;
}
.nav-item:hover svg, .nav-item:hover path
{
    fill: #fff;
    color: #fff;
}
.cp-stats-container
{
    box-shadow: 8px 8px 40px 0 rgba(88, 88, 88, 0.1);
    background-color: #fff;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    padding: 40px;
}
.cp-stats-container h3
{
    color: #5C5C5C;
    font-weight: normal;
}
.cp-stats-container h2
{
    font-weight: normal;
    font-size: 40px;
    text-align: center;
}
.cp-stats-container h2 span
{
    color: #5C5C5C;
}
.add-new-follower-container, .send-message-container
{
    border-radius: 24px;
    padding: 40px;
}
.box-heading
{
    margin: 0;
    font-size: 26px;
    color: #5c5c5c;
    font-weight: normal;
}
.mobile-number-container
{
    margin-top: 20px;
}
.mobile-number-label
{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #5c5c5c;
}
.mobile-number-input, .text-input
{
    background-color: #ECECEC;
    border: 0;
    outline: none;
    border-radius: 10px;
    padding: 15px 15px;
    min-width: 280px;
}
.add-follower-form, .send-message-form
{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
}
.add-follower-form label, .send-message-form label
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.submit-mobile-number
{
    font-size: 16px;
    background-color: #0560FD;
    color: #fff;
    border: 0;
    outline: none;
    font-weight: normal;
    padding: 10px 25px;
    border-radius: 7px;
    font-family: 'Abel';
}
.stats-graphs
{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}
.stat-graph-circle-box
{
    box-shadow: 8px 8px 40px 0 rgba(88, 88, 88, 0.1);
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 0;
}
.circle-box-header
{
    display: flex;
    gap: 20px;
    align-items: center;
}
.circle-box-header .box-heading
{
    font-size: 18px;
}
.stat-graph-circle-box > img
{
    margin-top: 40px;
}
.arrow-filter img
{
    width: 10px;
    height: 10px;
}

/*
    Login
*/
.login-form
{
    max-width: 600px;
    margin: 100px auto 0 auto;
    box-shadow: 8px 8px 40px 0 rgba(88, 88, 88, 0.1);
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.login-form label
{
    font-weight: bold;
}
.login-form input[type="email"], .login-form input[type="password"]
{
    background-color: #ECECEC;
    border: 0;
    outline: none;
    border-radius: 10px;
    padding: 15px 15px;
    min-width: 280px;
    width: 100%;
    margin-top: 10px;
}
.login-form .row
{
    margin-top: 20px;
}

.create-store-form
{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 600px;
}
.create-store-form label
{
    font-weight: bold;
}
.create-store-form input[type="text"], .create-store-form input[type="email"], .create-store-form input[type="password"]
{
    background-color: #ECECEC;
    border: 0;
    outline: none;
    border-radius: 10px;
    padding: 15px 15px;
    min-width: 280px;
    width: 100%;
    margin-top: 10px;
}
.create-store-form .row
{
    margin-top: 20px;
}

/*
    Store list
*/
.user-list.dashboard-box
{
    max-width: initial;
}
.user-list table
{
    width: 100%;
    text-align: center;
}
.store-owner-permissions-form
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
}
.store-owner-permissions-form select
{
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

/*
    Form Send Epost
*/


/* form.send-epost */
form#send-epost-form, form#send-epost-form-bulk
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    margin-top: 30px;
}
/* form.send-epost */
form#send-epost-form label:not(.ck-voice-label), form#send-epost-form-bulk label:not(.ck-voice-label)
{
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}
/* form.send-epost */
form#send-epost-form input[type='text'], form#send-epost-form  textarea,form#send-epost-form-bulk input[type='text'], form#send-epost-form-bulk  textarea
{
    background-color: #ECECEC;
    border: 0;
    outline: none;
    border-radius: 10px;
    padding: 15px 15px;
    min-width: 280px;
    width: 100%;
    margin-top: 10px;
}
.send-epost-box
{
    max-width: initial;
    box-shadow: none;
    margin: 0;
}
.leads-list-box
{
    max-width: initial;
}
.leads-filters-form
{
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    margin: 0 0 30px 0;
}

.leads-list-box h1
{
    margin-bottom: 25px;
}
.leads-list-box table
{
    width: 100%;
    text-align: center;
}
.create-landing-page-box
{
    max-width: 600px;
}
.create-landing-page-form
{
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    gap: 20px;
}
.create-landing-page-form > div
{
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}
.create-landing-page-form .is-form-active-container
{
    flex-direction: row;
}
.show-landing-pages-box
{
    max-width: initial;
}
.show-landing-pages-box table
{
    width: 100%;
    text-align: center;
}
.show-landing-pages-box td, .show-landing-pages-box th
{
    padding: 10px 0;
}
.edit-landing-page-box
{
    max-width: 700px;
}
.edit-landing-page-form
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.edit-landing-page-form > div
{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
#search-form
{
    margin: 30px 0 30px 0;
}
.phone-number-input-wrapper
{
    position: relative;
}
.number-prefix
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.phone-number-input
{
    width: 100%;
    padding-left: 35px;
}
.ck-editor__editable[role="textbox"]
{
    min-height: 300px;
}
.store-card
{
    box-shadow: 8px 8px 40px 0 rgba(88, 88, 88, 0.1);
    background-color: #fff;
    border-radius: 24px;
    padding: 20px;
}
.stores-list-grid
{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 40px;
}
.store-card-logo
{
    width: 100%;
}
.store-card-company-name
{
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 15px 0;
}
.store-owner-permissions-form .form-btn
{
    width: 100%;
    text-align: center;
}
.table-landing-page-paragraph
{
    height: 42px;
    overflow: hidden;
    margin: 0 auto;
    line-height: 21px;
    max-width: 350px;
    text-align: center;
}
.unsub-form-box
{
    margin: 100px auto 0 auto;
}
.unsub-form-box h1
{
    margin: 0 auto 30px auto;
}
.form-unsubscribe
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-unsubscribe label
{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.leads-list-dropdown
{
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    outline: none;
    font-weight: normal;
    padding: 8px 25px;
    border-radius: 7px;
    font-family: 'Abel';
    cursor: pointer;
    text-decoration: none;
    line-height: 41px;
    height: 41px;
}
.sms-count-heading-stat {
    margin: 5px 0;
    font-size: 16px;
}
.sms-count-heading-stat b
{
    font-size: 20px;
}
.sent-sms-counter-stats-container
{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
}
.sent-sms-counter-stats-container > div
{
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sent-sms-counter-stats-container h4
{
    font-size: 13px;
    font-weight: 500;
}
.sent-sms-counter-stat-number
{
    font-size: 17px;
    font-weight: bold;
    color: #0560FD;
    border: 5px solid #0560fd45;
    border-radius: 50%;
    padding: 5px 13px;
}
.cp-sms-stats-container
{
    margin-top: 30px;
}
.cp-sms-stats-container .member-balance
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cp-stats-container.no-flex
{
    display: block;
}
.cp-stats-inner-flex
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
