@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import "/app/ki-outline/ki-outline.css";


:root {
    --gutter:16px;
    --card-padding: 16px;
    
    --brand-color: #58c040;
    --brand-color-2: #e71e4b;
    --brand-color-3: #19b49d;
    --brand-color-4: #eef03c;

    --color-200: #d7d7d7;

    --color-50: #fafafa;
    --color-100: #f5f5f5;
    --color-200: #e5e5e5;
    --color-300: #d4d4d4;
    --color-400: #a8a8ac;
    --color-500: #737373;
    --color-600: #525252;
    --color-700: #404040;
    --color-800: #262626;
    --color-900: #171717;

    --btn-border-radius: 8px;

    --shadow-lg: 0 2px 5px #0000001c;

    --card-border-radius: 16px;

    --color-bg: #f7f7f7;

    --body-text-color: #494949;

    --font-family: Montserrat, sans-serif;
    --text-md: 1rem;

    --form-element-color: #ccc;
    --form-element-border-radius: 8px;

    --progress-border: var(--color-300);
}

body {
    line-height: 1.5;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: #151515;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--brand-color);
}

h2 {
    font-size: 2rem;
    color: #151515;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    margin: 0px;
    font-size: 1rem;
    color: var(--color-400);
}

.light-text {
    color: var(--color-300);
}

sup {
    font-size: 1rem;
}

.empty-state {
    padding: var(--gutter);
}
.cd-table-empty {
    padding: 50px var(--gutter) calc(50px - var(--card-padding));
}

.c-input-label {
    display: none;
}
.c-input-container {
    position: relative;
}
.c-input {
    background-color: transparent;
    z-index: 1;
    font-size: 0.875rem;
    color: #333;
    overflow: hidden;
}
.c-input-afterlabel {
    display: block;
    position: absolute;
    color: #999;
    top: 12px;
    left: 10px;
    transition: 0.2s ease;
    font-size: 14px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding-right: 20px;
}
.c-input:focus,
.c-input:valid {
    color: var(--body-text-color);
}
textarea:focus, input:focus {   
    border: 1px solid var(--brand-color);
    outline: 1px solid var(--brand-color);
}

 input[type="range"]:focus {
     border: 0;
 }

.c-input:focus + .c-input-afterlabel,
.c-input:valid + .c-input-afterlabel {
    transform: translate(-10px, -23px) scale(0.88);
    z-index: 2;
    background-color: var(--color-bg);
    color: var(--brand-color);
    font-weight: 600;
    padding: 0 3px;
}
.info-card-header {
    position: relative;
}
 
.info-card-header span {
    padding: 3px;
    border-radius: 6px;
    border: 1px solid #eee;
    align-self: flex-end;
    justify-self: flex-end;
    position: absolute;
    right: -14px;
    top: -14px;
}
.card .c-input:focus + .c-input-afterlabel,
.card .c-input:valid + .c-input-afterlabel,
.cci-modal-body .c-input:focus + .c-input-afterlabel,
.cci-modal-body .c-input:valid + .c-input-afterlabel {
    background-color: var(--color-card-bg);
}

.cci-modal-body .c-input-label {
    display: block;
}
.cci-modal-body .c-input-afterlabel {
    display: none;
}
.cci-modal input::placeholder {
    color: #ddd;
}

::placeholder {
    color: transparent;
}
.alert {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 14px;
    gap: 16px;

    background: #EEF6FF;
    border: 1px dashed #3E97FF;
    border-radius: 7px;

    font-weight: 500;
    font-size: 13px;
}
.alert-red {
    background: #FFDDDD;
    border: 1px dashed #F1416C;
}
.alert-grey {
    background: #E0E0E0;
    border: 1px dashed #000000;
}
.form {
    gap: 1rem;
}

/* brick styles */

.form-element {
    font-size: 0.875rem;
    min-height: 41px;
}

.form-element-label {
    font-size: 0.875rem;
}

.c-autocomplete-input {
    outline-color: var(--brand-color);
}
.c-autocomplete-input:focus {
    outline: 1px solid var(--brand-color);
    border-color: var(--brand-color);;
}

.chart-loading {
    min-height: auto;
    min-width: 200px;
}
.chart-loading::after {
    min-height: 100%;
    background-size: contain;
}

.c-daterange-drop-inner {
    display: flex;
    width: auto;
}

.c-daterange-presets-container {
    gap: 3px;
}
.c-daterange-presets-container button {
    border: 0;
    background-color: var(--color-100);
    border-radius: var(--btn-border-radius);
    width: 100%;
    text-wrap: nowrap;
    padding: 9px;
}

.btn {
    font-size: 1rem;
    padding: 12px 20px;
    text-wrap: nowrap;
    line-height: normal;
}

@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 270deg;
    inherits: false;
}

.btn-primary {
    --gradient-angle: 270deg;
    background-image: linear-gradient(var(--gradient-angle), #52BF30 0%, #288A28 99%);
    transition: --gradient-angle 250ms ease-in-out;
}

.btn-primary:disabled {
    background: none;
    background-color: var(--color-300);
}

.btn-primary:hover {
    --gradient-angle: 200deg;
}

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

.btn-secondary {
    background: none;
    color: var(--brand-color);
    padding: 9px 20px;
    position: relative;
    z-index: 1;

    background: linear-gradient(white, white) padding-box,
              linear-gradient(270deg, #52BF30 0%, #288A28 99%) border-box;
    border: 3px solid transparent;
}
.cc-layout-grid-no-cards .cc-layout-grid-cell {
    padding: 0;
}
.cc-layout-grid-no-cards .cc-layout-grid-item {
    border: 0;
    box-shadow: unset;
    padding: calc(var(--grid-item-padding) / 2);
}
.btn-secondary:hover {
    background: linear-gradient(white, white) padding-box,
              linear-gradient(180deg, #52BF30 0%, #288A28 99%) border-box;
}
.btn-secondary:disabled {
    color: white;
}

a:not([href]) {
    color: var(--color-400);
    border-color: var(--color-400);
}
a:not([href]):hover {
    color: var(--color-400);
    border-color: var(--color-400);
}

.btn-sm {
    font-size: var(--font-size-body);
    padding: 5px 10px;
}

.btn-icon {
    font-size: 1.25rem;
    color: var(--color-300);
    padding: 0;
    border: 0;
    background: 0;
}
.btn-icon-small {
    background: none;
    background-color: white;
    border: 1px solid var(--color-200);   
    height: 30px;
    width: 30px;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.03);
    padding: 0;
    text-align: center;
    color: #ccc;
}
.btn-icon:hover, .btn-icon-small:hover {
    color: var(--brand-color);
}

.btn-loader-loading {
    background-image: none;
    background-color: #f0f0f5;
    animation: pulse 1.5s ease-in-out infinite;
}

.c-checkbox-checkmark {
    border-radius: 6px;
    height: 22px;
    width: 22px;
}

.c-checkbox-container .c-checkbox-checkmark:after {
    width: 4px;
    height: 8px;
    width: 5px;
    height: 10px;
    top: 2px;
    left: 6px;
    left: 7px;
}

.c-gauge-center {
    font-size: 2.125rem;
    font-weight: 700;
    color: var(--color-800);
}

.c-pager-button {
    padding: 7px 14px;
}

.radio-card .cc-switchpanel-radio-container {
    display: flex;
    padding: 25px;
}

.radio-card .cc-switchpanel-radio-container input {
    flex-shrink: 0;
    margin: 3px 9px -4px 0;
}

cd-pivot-table tr th, cd-pivot-table .top-total-th {
    padding-left: 5px;
    padding: 5px;
    font-size: 0.875rem;
}

.cd-table th:last-child {
    padding-right: 0px;
}

.cci-modal-header {
    padding-bottom: 0px;
    background-color: var(--color-bg);
    border-top-left-radius: var(--card-border-radius);
    border-top-right-radius: var(--card-border-radius);
     border-bottom: 1px solid var(--color-200);
}
.cci-modal-header p {
    font-size: 0.875rem;
    color: var(--color-400);
    font-weight: 500;
}
.cci-modal-header > span:last-child {
    font-size: 1.25rem;
    font-weight: 700;
}
.cci-modal-footer {
    border-top: 1px solid var(--color-200);
    background-color: var(--color-bg);
    border-bottom-left-radius: var(--card-border-radius);
    border-bottom-right-radius: var(--card-border-radius);
}

.c-rangeslider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; 
  height: 8px;
  background: var(--brand-color); 
  background-image: linear-gradient(270deg, #87dd3a 0%, #36ad36 99%);
  outline: none;
  transition: opacity .2s;
  border-radius: 3px;
}

.c-rangeslider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: var(--brand-color-2); /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
  position: relative;
}

.c-rangeslider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: var(--brand-color-2); /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.c-select {
    outline-color: var(--brand-color);
}

.c-select-item, .c-multiselect-item {
    font-size: 0.875rem;
}

.c-select-validation-failed {
    border-color: var(--brand-color-2);
    color: var(--brand-color-2);
}

.info-text {
    font-size: var(--text-sm);
    border: 1px dashed var(--color-200);
    border-radius: var(--card-border-radius);
    padding: var(--gutter);
}
.info-text ul {
    margin: 0;
    padding-inline-start: 20px;
}

.c-pager {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.c-pager-info {
    color: var(--color-400);
    font-weight: 600;
    font-size: 14px;
    padding: 0 14px 0 0;
}
.c-pager-prev {
    background-image: url(https://s2.svgbox.net/octicons.svg?ic=chevron-left-bold&color=a3a3a3);
}
.c-pager-next {
    background-image: url(https://s2.svgbox.net/octicons.svg?ic=chevron-right-bold&color=a3a3a3);
}


.cc-switchpanel-tabheader {
    padding: 0px;
    background: linear-gradient(180deg, 
        #fff calc(100% - 1px), 
        var(--color-200) calc(100%)
    );
}
.cc-switchpanel-tab {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-light-2);
    margin: 0px;
    padding-bottom: 20px;
    background-color: transparent;
}

.cc-switchpanel-tab-active {
    color: #3F4254;
    border-bottom: 1px solid var(--brand-color);
}
.cc-switchpanel-tab-disabled {
    color: #eee;
}
.cc-switchpanel-tab-content {
    padding: 10px 5px 0px;
}

.tooltip-pop {
    font-size: 0.875rem;
}

/* .hilight-green {
    padding: 2px 8px;
    background: #F2FFD7;
    border-radius: 6px;
    color: #50CD89;
    display: inline-block;
    white-space: nowrap;
}

.hilight-blue {
    padding: 2px 8px;
    background: #EEF6FF;
    border-radius: 6px;
    color: #3E97FF;
    display: inline-block;
    white-space: nowrap;
    border: 1px dashed #3E97FF;
} */

.hilight-blue {
    padding: 2px 8px;
    background: #EEF6FF;
    border-radius: 6px;
    color: #3E97FF;
    display: inline-block;
    white-space: nowrap;
}
.hilight-green {
    padding: 2px 8px;
    background: #F2FFD7;
    border-radius: 6px;
    color: #50CD89;
    display: inline-block;
    white-space: nowrap;
}
.hilight-yellow {
    padding: 2px 8px;
    background: #FFF8DD;
    border-radius: 6px;
    color: #F7C000;
    display: inline-block;
    white-space: nowrap;
}
.hilight-lime {
    padding: 2px 8px;
    background: #f5ffe5;
    border-radius: 6px;
    color: #77b715;
    display: inline-block;
    white-space: nowrap;
}
.hilight-orange {
    padding: 2px 8px;
    background: #FFF8DD;
    border-radius: 6px;
    color: #ffb16c;
    display: inline-block;
    white-space: nowrap;
}
.hilight-red {
    padding: 2px 8px;
    background: #FFF5F8;
    border-radius: 6px;
    color: #F1416C;
    display: inline-block;
    white-space: nowrap;
}
.hilight-pink {
    padding: 2px 8px;
    background: #ffeef6;
    border-radius: 6px;
    color: #ff6cb1;
    display: inline-block;
    white-space: nowrap;
}
.hilight-purple {
    padding: 2px 8px;
    background: #f6eeff;
    border-radius: 6px;
    color: #c550ff;
    display: inline-block;
    white-space: nowrap;
}
.hilight-purple {
    padding: 2px 8px;
    background: #f6eeff;
    border-radius: 6px;
    color: #c550ff;
    display: inline-block;
    white-space: nowrap;
}
.hilight-teal {
    padding: 2px 8px;
    background: #eeffff;
    border-radius: 6px;
    color: #05d7d7;
    display: inline-block;
    white-space: nowrap;
}
.hilight-olive {
    padding: 2px 8px;
    background: #efefc2;
    border-radius: 6px;
    color: olive;
    display: inline-block;
    white-space: nowrap;
}
.hilight-gray {
    padding: 2px 8px;
    background: #F1F1F2;
    border-radius: 6px;
    color: #7E8299;
    display: inline-block;
    white-space: nowrap;
}


/* Custom */

.whatsapp-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M16.75 13.96c.25.13.41.2.46.3.06.11.04.61-.21 1.18-.2.56-1.24 1.1-1.7 1.12-.46.02-.47.36-2.96-.73-2.49-1.09-3.99-3.75-4.11-3.92-.12-.17-.96-1.38-.92-2.61.05-1.22.69-1.8.95-2.04.24-.26.51-.29.68-.26h.47c.15 0 .36-.06.55.45l.69 1.87c.06.13.1.28.01.44l-.27.41-.39.42c-.12.12-.26.25-.12.5.12.26.62 1.09 1.32 1.78.91.88 1.71 1.17 1.95 1.3.24.14.39.12.54-.04l.81-.94c.19-.25.35-.19.58-.11l1.67.88M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10c-1.97 0-3.8-.57-5.35-1.55L2 22l1.55-4.65A9.969 9.969 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 1.72.54 3.31 1.46 4.61L4.5 19.5l2.89-.96A7.95 7.95 0 0 0 12 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    position:relative;
    top: 2px
}

/* Sign up */

.radio-card > label {
    padding: var(--card-padding);
    box-shadow: var(--shadow-lg);
    border-radius: var(--card-border-radius);
    border: 2px solid var(--color-100);
    background-color: var(--color-card-bg);
    width: 308px;
}

.c-input.input-otp-digit {
    width: 40px;
    font-size: 28px;
    padding: 0px 10px 0px 10px;
    text-align: center;
    -moz-appearance: textfield;
    margin: 0;
}
.c-input.input-otp-digit::-webkit-outer-spin-button,.c-input.input-otp-digit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input {
    -moz-appearance: textfield;
    margin: 0;
    font-size: 30px;
    letter-spacing: 38px;
    width: 360px;
    font-family: 'Courier New';
    font-weight: bold;
}
.otp-input.skeleton {
    width: 271px;
    color: transparent;
}
.verifying-state .html-skeleton-loader span {
    height: 40px;
}
.verifying-state .html-skeleton-loader::after {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    margin-top: 8px;
    margin-left: -61px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.showloader::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 16px;
    width: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}
.showloader::before {
    position: static;
    margin: 0px;
    height: 30px;
    width: 30px;
}
.showloader div {
    display: flex;
    align-items: center;
}
.showloader div::after {
    margin-left: 20px;
    content: attr(data-loading-message);
}

.otp-input::-webkit-outer-spin-button, .otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.c-input.otp-input:focus,
.c-input.otp-input:valid {
    border: 0;
    outline: 0;
}


.c-input-validation-message, .cc-tokenfield-validation-message {
    color: var(--brand-color-2);
    font-weight: 600;
}

.otp-box {
    width: 40px;
    height: 50px;
    border: 1px solid var(--form-element-color);
    border-radius: var(--form-element-border-radius);
}

.sim-inc input {
    -moz-appearance: textfield;
    margin: 0;
    text-align: center;
    padding: 4px 5px;
    width: 50px;
}

.sim-inc input::-webkit-outer-spin-button,.sim-inc input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sim-inc .c-input-afterlabel {
    transition: none;
    top: 5px;
    left: 5px;

    transform: translate(-10px, -16px) scale(0.88);
    z-index: 2;
    background-color: var(--color-card-bg);
    color: var(--brand-color);
    font-weight: 600;
    padding: 0 3px;
}

.sim-inc .c-input:focus + .c-input-afterlabel,
.sim-inc .c-input:valid + .c-input-afterlabel {
    transform: translate(-10px, -16px) scale(0.88);
}

.btn-sim-increment {
    padding: 4px;
    width: 26px;
    background: transparent;
    border: 1px solid var(--brand-color);
    color: var(--brand-color);
}
.btn-sim-increment:hover {
    color: var(--brand-color);
}
.btn-sim-increment:disabled {
    background-color: white;
    color: var(--color-400);
}

.cc-popout-item {
    font-size: 0.875rem;
}
.cc-popout-item a, .cc-popout-item button, .cc-popout-item .btn-primary {
    text-decoration: none;
    text-wrap: nowrap;
    color: var(--body-text-color);
    padding: 4px 8px;
    display: flex;
    border-radius: var(--btn-border-radius);
    background-image: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 0.875rem;
}
.cc-popout-item button {
    width: 100%;
    justify-content: flex-start;
}
.cc-popout-item a:hover, .cc-popout-item button:hover {
    background-color: var(--color-100);
}
.cc-popout-item .c-hyperlink span, .cc-popout-item button span {
    font-size: 20px;
    color: #bdbfcb;
}

/* Layout page */

.layout {
    width: 100%;
    height: 100lvh;
}
.sidebar {
    box-sizing: border-box;
    width: 250px;
    height: 100vh; 
    background: #FFFFFF;
}
.logo {
    display: block;
    background-image: url('/app/Clarity™ for Microsoft Teams_Green.png');
    height: 36px;
    /* padding-left: 10px; */
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    width: 178px;
}
.sources_panel .logo {
    margin-left: 0px;
    margin-bottom: 20px;
}
.c-hyperlink.logo {
    margin-bottom: 30px;
}

.menu-container {
    overflow: auto;
    scrollbar-color: #ccc #f5f5f5;
    scrollbar-width: thin;
}
.lvl1-container > div:nth-child(1) .menu-lvl1  {
    padding-top: 10px;
}
.menu-container::-webkit-scrollbar, .cc-layout-grid-item::-webkit-scrollbar, .cd-table-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.menu-container::-webkit-scrollbar-track, .cc-layout-grid-item::-webkit-scrollbar-track, .cd-table-container::-webkit-scrollbar-track {
    background: #f5f5f5; 
}
.menu-container::-webkit-scrollbar-thumb, .cc-layout-grid-item::-webkit-scrollbar-thumb, .cd-table-container::-webkit-scrollbar-thumb {
    background: #ddd; 
    border-radius:5px;
}
.menu-container::-webkit-scrollbar-thumb:hover, .cc-layout-grid-item::-webkit-scrollbar-thumb:hover, .cd-table-container::-webkit-scrollbar-thumb:hover {
    background: #ccc; 
}

.menu-lvl1 {
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    color: #A1A5B7;
    text-transform: uppercase;
    padding-left: 0px;
    padding-bottom: 10px;
    padding-top: 30px;
}

.menu-item {
    padding: 12px 10px 12px 36px;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    color: #5E6278;
    margin-right: 5px;
}
.menu-item:hover,.lvl2-expander label:hover {
    background-color: #F9F9F9;
    border-radius: 9px;
}

.lvl2-menu-item {
    position: relative;
    display: block;
}

.menu-item a {
    color: #5E6278;   
}
.lvl2-menu-item span {
    color: #A1A5B7;
    font-size: 23px;
    padding-right: 17px;
    position: absolute;
    left: 5px;
    top: 6px;
}
.lvl2-menu-item div {
    display: inline-block;
}

.expander-tab-label:after {
    font-family: 'keenicons-outline';
    font-weight: normal;
    content: "\e9e5";
    color: #D2D2E1;
    font-size: 19px;
    padding-right: 10px;
}
.expander-input:checked+.expander-tab-label:after {
    padding-right: 9px;
}

.lvl3-menu-container {
    position: relative;
}

.lvl3-menu-item {
    display: inline-block;
    padding: 10px 10px 14px 46px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    width: 100%;
    text-decoration: none;
}
.menu-dot {
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: #E1E3EA;
    border-radius: 20px;
    position: absolute;
    left: 20px;
    margin-top: 3px;
}
.menu-item-selected, .menu-item-selected a {
    color: var(--brand-color);
    border-radius: 9px;
}

.menu-item-selected span {
    color: var(--brand-color);
}

.body-container {
    width: 100%;
    height:100lvh;
    overflow:auto;
}
.top-bar {
    padding: 20px 25px;
}
.logout {
    font-weight: 600;
    font-size: 14px;
    color:#181C32;
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 4px;
}
.logout:hover {
    background: #F9F9F9;
}
.logout span {
    font-size: 18px;
    color: #A1A5B7;
    margin-right: 12px;
}
/* .user-icon {
    display: inline-block;
    font-size: 40px;
    color: #A1A5B7;
    margin-right: 27px;

    background-image: url('/app/user.png');
    border: 1px solid #A1A5B7;
    border-radius: 9px;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position-y: 6px;
    
    width: 40px;
    height: 40px;

    margin-left: 10px;
} */
.user-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #EEF6FF;
    margin-left: 10px;
    margin-right: 27px;
    text-align: center;
    padding-top: 13px;
    text-transform: capitalize;
    color: #5E6278;
    font-weight: 600;
    font-size: 11px;
}

.username-container {
    background-color: #F9F9F9;
    border-radius: 16px;
    padding: 8px;
    padding-left: 25px;
    display: flex;
    align-items: center;
}
.hello {
    font-weight: 600;
    font-size: 12px;
    color: #A1A5B7;
    text-align: right;
    
}
.username {
    font-weight: 600;
    font-size: 14px;
    color: #3F4254;
}
.user-popout-launcher {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    background-color: #EEF6FF;
    margin-left: 10px;
    text-align: center;
    text-transform: capitalize;
    z-index: 1;
    justify-content: center;
}
.user-popout-launcher:hover::after {
    content: ' ';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 4px solid #f4f8ff;
    z-index: 0;
    border-radius: 25px;
    top: -4px;
    left: -4px;
}


.heading-bar {
    padding: 0px var(--grid-gutter);
}

.title-crumb {
    display: flex;
    font-weight: 600;
    font-size: 13px;
    color: #A1A5B7;
    align-items: baseline;
}

.title-crumb .ki-outline {
    font-size: 17px;
    color: #5E6278;
}

.heading-bar h1 {
    display: inline-block;
    margin: 0 21px 0 0;
    font-size: 1.75rem
}

.title-crumb .ki-right {
    bottom: -2px;
    position: relative;
}

.content {
    padding: var(--gutter);
    padding-top: 0px;
}

.menu {
    display: block;
}
.menu-active {
    position: static;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.search {
    background-color: white;
}
.search-active {
     position: static;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* Reports */

.card-title, h2 {
    font-size: 1rem;
    color: var(--color-800);
    font-weight: 700;
    margin: 0;
}

.sub-title {
    font-size: var(--text-sm);
    color: var(--color-400);
    font-weight: 600;
}

.combo-chart .sub-title {
    margin-bottom: 16px;
    display: block;
}

.filter-input .c-input-label {
    display: block;
}
.filter-input .c-input-afterlabel {
    display: none;
}
.filter-input input:focus {
    border: 1px solid #ddd;
    border: 1px solid var(--brand-color);
    outline: 1px solid var(--brand-color);
}
.filter-input input::placeholder {
    color: #ddd;
}

.filter-button {
    margin-top: 1.5625rem;
    padding: 12px;
    gap: 5px;
}

.cd-table {
    font-size: 0.875rem;
}

.cd-table-td .cc-popout span, .cd-table .cc-popout span, .cc-popout .ki-outline {
    font-size: 1.25rem;
    color: var(--color-400);
}

.cd-table-total {
    padding-top: 8px;
    padding-bottom: 8px;
}

.cd-table-search-active {
    background: #F2FFD7;
    border: 1px solid var(--brand-color);
}

.small-info-list td {
    padding: 5px 0;
    height: auto;
    border-top: 1px dashed var(--color-200);
}
.info-list-title h2, .c-chart-container h2 {
    font-weight:700;
    color:var(--color-800);
    font-size:1rem;
    margin: 0;
}
.small-info-list-text-light h2 {
    font-weight:700;
    color:var(--color-800);
    font-size:0.875rem;
    margin: 0;
}

.sub-tab-container {
    padding-top: 20px;
}
.sources_panel {
    padding: var(--gutter);
    width: 100%;
    border-right: 1px solid #eee;
    height: 100vh;
    overflow: auto;
    width: 300px;
}
.source-card {
    padding: 7px;
    padding-left: 0px;
}
.sources_panel .dragndrop-element {
    border: 1px solid #ddd;
}
.dash-editor-header {
    background-color: #eee;
    padding: 25px;
    margin: -25px;
    margin-bottom: 0px;
    border-radius: 6px;
}
.dash-editor-header h2 {
    margin: 0;
}

.dash-edit-title-container input {
    font-size: 26px;
    color:#181C32
}
.dash-edit-title-container h1 {
    margin: 0;
}

.system-notification {
    padding: 5px 30px;
    position: relative;
    text-align: center;
}
.system-notification-Info {
    background-color:  #EEF6FF;
    color: #3E97FF;
}
.system-notification-Error {
    background-color:  #FFF5F8;
    color: #F1416C;
}
.system-notification-close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.notification-btn {
    position: relative;
}
.notification-btn-active::after {
    content: ' ';
    position: absolute;
    height: 7px;
    width: 7px;
    background-color:#ff0013;
    border-radius: 5px;
    top: 0px;
    right: 0px;
    color: white;
}

.notifications {
    font-size: 22px;
    color: #A1A5B7;
    position: relative;
    background-color: transparent;
    border: 0px;
    border-radius: 40px;
    padding: 18px 14px;
}
.notifications:hover {
    background-color: #F9F9F9;
}
.notifications-active::after {
    content: ' ';
    position: absolute;
    height: 7px;
    width: 7px;
    background-color:#ff0013;
    border-radius: 5px;
    top: 20px;
    right: 14px;
    color: white;
}
.notification {
    padding: 20px;
    border-radius: 9px;
    border: 1px dashed #E1E3EA;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.03);
    width: 100%;

    font-weight: 500;
    font-size: 14px;
    color: #7E8299;
}
.notification-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.notification-subject {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #7E8299;
}
.notification-subject h3 {
    font-weight: 600;
    font-size: 16px;
    color: #3F4254;
    margin: 0px;
    margin-right: 20px;
}
.notification-body img {
    max-width: 100%;
    height: auto;
}
.notification-footer {
    display: flex;
    margin-top: 20px;
    background-color: #F1F1F2;
    border-radius: 6px;
    padding: 7px;
    gap: 7px;
}
.notification-footer a {
    font-weight: 500;
    text-decoration: underline;
    color: inherit;
}

@media (max-width: 1024px) {
    .search {
        position: absolute;
        top: -100px;
        z-index: 2;
        padding: var(--gutter);
        
    }
    .search-active {
        top: 0px;
        left: 0px;
        width: 100%;
    }
    
    .card {
        padding: 15px;
    }

    .menu {
        position: absolute;
        top: -100vh;
        z-index: 1;
        height: calc(100vh - 90px);
    }
    .menu-active {
        top: 90px;
    } 

    h1 {
        font-size: 2rem;
    }

    .heading-bar h1 {
        font-size: 1.25rem;
    }
}
.payment-card {
      border: 1px solid var(--color-100);
      border-radius: 8px;
      padding: 10px 16px;
      display: inline-block;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 16px;
      color: #2d3748;
      box-shadow: var(--shadow-lg);
    }
.cursor-pointer {
    cursor: pointer;
}
