@charset "utf-8";

:root {
    --d-spacing: 20px;
    --purple:#243F8D;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    height: 100%;
    font-size: clamp(14px, calc(.7rem + .35vw), var(--d-spacing));
    line-height: 1.5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative
}

:root {
    --gray-100: #4d4d4d;
    --gray-200: #6e6e6e;
    --gray-300: #949494;
    --gray-400: #b8b8b8;
    --gray-500: #d4d4d4;
    --primary-100: #005c2e;
    --primary-200: #0b281a;
    --primary-300: #00db4d;
    --primary-400: #f7fff5;
    --white-100: white;
    --white-200: #fafafa;
    --white-300: #f0f0f0;
    --white-400: #ebebeb;
    --white-500: #e8e8e8;
    --dark: #1a1919;
    --body-bg: white;
    --surface-100: #3e4240;
    --flow-space:2rem;
    --spacing: 20px;
    --radius: 4px;
    --radius-card: 10px;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    height: 100%;
    font-display: swap
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
figcaption,
hr,
dl,
dd {
    margin: 0;
    padding: 0
}

ul {
    list-style: none
}

a {
    text-decoration: none
}

input,
textarea,
button,
select{
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    padding: 0;
}

*,
button:active,
button:visited,
button:focus {
    outline: none;
    border: none
}

input[type="text"],
textarea, select {
    width: 100%
}

input,
textarea,
button {
    border: 0
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    -webkit-appearance: none
}

button {
    line-height: inherit;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer
}

img,
iframe,
video,
object,
embed {
    display: block;
    max-width: 100%
}

table {
    table-layout: fixed;
    width: 100%
}

[hidden] {
    opacity: 0;
    visibility: hidden
}

noscript {
    display: block;
    margin-bottom: 1em;
    margin-top: 1em
}

[tabindex="-1"] {
    outline: none !important
}

body {
    /* background-color: rgb(250, 250, 250); */
    background-color: rgba(218, 219, 235, 0.44);
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #000;
}

.wrapper {
    max-width:1200px;
    margin: 0 auto;
    /*display: grid;*/
    grid-template-rows: 90px 1fr auto;
    padding:20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
}

header img {
    height:50px;
    object-fit: contain;
    width: auto;
}

header svg {
    vertical-align: text-bottom;
}

.title {
    padding: 4.5rem;
    margin-bottom: 2em;
    background-image: url(/inner-page-header-bg.jpg), linear-gradient(#243f8da6,var(--purple));
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center;
}

.title h1 {
    font-size: 2.5rem;
    font-weight:800;
    color: #fff
}

.title .wrapper {
    grid-template-rows: 10px 1fr auto;
}

.generate__btn a {
    background: #f58737;
}

.questions__footer .btn {
    background: #e83437;
}

.plan__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.plan__nav {
    flex: 0 0 30%;
    /* padding: 0 var(--d-spacing); */
    margin-right:var(--d-spacing)
}

.plan__questions {
    flex: 0 0 calc(70% - 30px);
}

.nav__items {
    background-color: #fff;
    padding:var(--d-spacing);
}

.nav__item {
}

.nav__item:not(:last-child) {}

.nav__item a {
    color: #333;
    display:flex;
    align-items:center;
    padding:10px 10px;
    font-weight:500;
    font-size:min(1rem,16px);
}

.nav__item a:hover {
    color: var(--purple);
    background-color: #E4E9F3;
}

.nav__item span {
    vertical-align: middle;
}

.nav__item a.active {
    color: var(--purple);
    background-color: #E4E9F3;
}

.item__num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border: 1px solid currentColor;
    width: var(--d-spacing);
    height: var(--d-spacing);
    border-radius:var(--d-spacing);
}

.active .item__num {
    background: rgb(36, 63, 141);
}

.questions {
    display: none;
}

.questions__content .h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--purple);
    margin-bottom: 5px;
}

.questions__content .h3 {
    font-weight:600;
    color: var(--purple);
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.questions__content>p {
    margin-bottom: var(--d-spacing);
}

.questions.show {
    display: block;
}

.questions__wrapper {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
}

.questions__body {
    height: 700px;
    overflow: auto;
    padding: 3rem 3rem 0;
}

.questions__footer {
    flex: 0 0 auto;
    padding: var(--d-spacing) 3rem 3rem;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.questions__content {}

.form__item {
    margin: 0 auto calc(1.5 * var(--d-spacing));
    padding-bottom: var(--d-spacing);
}

.example {
    font-size: 12px;
    margin: 10px 0;
}

.form__item label {
    display: inline-block;
}

.form__item input,
.form__item textarea,
.form__item select {
    border: 1px solid rgba(196, 196, 196,1);
    padding: 10px 15px;
    width:100%;
}

.form__item input:focus,
.form__item textarea:focus,
.form__item select:focus {
    border-color: #d93e8d;
    outline: 0;
}

.form__item textarea {
    /* min-height:150px; */
}

.upload~input {
    visibility: hidden;
}

.upload::after {
    content: "Upload Logo";
    position: absolute;
    display: block;
    background-color: #d93e8d;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
}

.btn{
    background-color: var(--purple);
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 0;
    text-align: center;
    height:40px;
    border-radius: 5px;
}

button.dt-button, .tablegroup .dropdown button, a.filter_btn {
    background-color: #ffffff;
    color: #364963;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--purple);
    text-align: center;
    height:40px;
    border-radius: 5px;
}

a.filter_btn.active{
    background-color: var(--purple);
    color:#ffffff;
}

.btn:hover{
    background-color: #2b3d71;
}

button.dt-button:hover, .tablegroup button.action:hover, a.filter_btn:hover{
    background-color: var(--purple);
    color:#ffffff;
}

.profile {
    display: flex;
    font-size: 13px;
    font-weight:500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logout {
    margin-left:var(--d-spacing);
    text-transform: uppercase;
    color: #d93e8d;
}

.progress {
    background-color: #fff;
    padding:var(--d-spacing);
    margin-top: var(--d-spacing);
}

.progress, .nav__items, .questions__wrapper {
    border-radius: 10px;
}

.meter {
    height: 20px;
    background: rgb(238 239 245);
    border-radius: 50px;
    margin-bottom: 15px;
}

.meter__bar {
    height: 100%;
    /* background-color: #d93e8d; */
    background: linear-gradient(121deg,rgba(36, 63, 141, .5) 18%, rgba(36, 63, 141, 1) 74%);
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

.progress__status.a {
    font-size: 14px;
    text-align: right;
}

.intro {
    margin-bottom: var(--d-spacing);
    font-size:min(1rem,16px);
    color: #666666;
}

details {
    width: 100%;
/*     box-shadow:0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
    box-shadow: 0px 6px 12px 2px rgba(0, 0, 0, 0.02);
    border: 0.5px solid #d6ddd9;*/
    margin-bottom: var(--d-spacing);
}



details summary {
    padding: 10px;
    background-color: #f3f9f6;
    font-size:min(1rem,16px);
    font-weight:500;
    color: #23884b;
    cursor: pointer;
    border-radius: 5px;
}

details p {
    margin-bottom: 10px;
}

details[open] summary {
    /* list-style-image: url('chevron-down.svg'); */
    /* background-color: rgba(218, 219, 235, 0.44); */
}

details ol,
details ul,
.intro__list {
    padding-left: var(--d-spacing);
}

details ul,
.intro__list {
    list-style: initial;
    margin-bottom: 10px;
}

details li {
    margin-bottom: 5px;
}

.blk {
    display: block;
}

details .h6 {
    font-size: 16px;
    margin-bottom: 5px;
}
.acc__title {
    color: var(--purple);
    font-weight: 600;
}
details>div {
    padding: var(--d-spacing);
    background: #f3f9f6;
}
details img {
    margin: 10px 0;
}
details table {
    border-collapse: collapse;
    text-align: center;
    margin: 10px 0;
    font-size: .85rem;
}
details h6 {
    text-align: center;
    font-size: .9rem;
}
details thead tr,
details .total__sum,
details tfoot tr {
    background-color: var(--purple);
    color: white;
}
details tr {
    border-bottom: 1px solid #e1dfdf;
    border-left: 1px solid #e1dfdf;
    border-right: 1px solid #e1dfdf;
}
details td {
    padding: 5px;
}
details tbody td:not(:last-of-type) {
    border-right: 1px solid #e1dfdf;
}

/* wysiwyg editor */
.ck.ck-editor__main>.ck-editor__editable {
    min-height: 150px;
    font-size:16px;
}
.form__item .ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused {
    --ck-color-focus-border: #d93e8d;
    border: 1px solid var(--ck-color-focus-border);
    box-shadow: none;
}
.btns {
    display: flex;
    justify-content: center;
}
.btns .btn {
    flex: calc(50% - 20px / 2) 0 0;
}

.btn__default {
    background-color:var(--purple);
    color:#fff;
}
.btn__register {
    background-color: #fff;
    color: var(--purple);
    border: 1px solid var(--purple);
    margin-left:20px;
}

.btn__register:hover {
    color:#fff;
}

.form__wrapper {
    width: 100%;
    max-width:400px;
    margin:0 auto;
    background-color: #fff;
    padding:30px;
    width: 100%;
}

.form__wrapper h1 {
    text-align: center;
    margin-top:0;
    font-size:2.5rem;
    font-weight: 800;
    color:var(--purple);
    margin-bottom:30px;
}

.form__wrapper  .form__item {
    margin: 0 auto 20px;
}

.form__wrapper label {
    margin-bottom: 5px;
    font-size: min(1rem,16px);
    display: inline-block;
}

.form__item input {
    height: 40px;
}

.link {
    text-align: center;
}
.link a{
    text-decoration: none;
    font-size: 14px;
    color:#d93e8d;
}
.register .btn {
    flex:calc(50% - 20px / 2) 0 0;
}

.register {
    max-width:800px;
}
.register__form {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
.register__form .form__item {
    flex:0 0 49%; 
    margin-bottom:20px;
}

.single-plan {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
}

.single-plan .col {
    flex: 0 0 50%;
}

.single-plan .action__buts {
    margin-top: 12px;
    margin-left: auto;
    display: table;
}

.single-plan h3 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #243f8d;
}

.single-plan span {
    color: #666;
}


.action__buts button {
    margin-right: 15px;
}

.action__buts a {
    margin-left: 20px;
    height: 36px !important;
    width: 36px !important;
    padding: 8px;
    border-radius: 50%;
    background: #000;
    display: inline-block;
}

.action__buts a.edit {
    background: #f58737
}

.action__buts a.preview {
    background: #a33678;
}

.action__buts a.download_doc {
    background: #148342;
}

.action__buts a.download_pdf {
    background: #8b6c3f;
}
.action__buts a.delete{
    background: #eb322a;
}
.action__buts a:hover{
    background: #284188;
}


.generate__btn {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.actions {
    width: 200px;
}


/* desktop login/register forn */
.auth__main {
    display: flex;
}

.auth__left, .auth__right {
    width: 50%;
    height: 100vh;
}

.auth__left { display: grid; }

.auth__left, .auth__right .bottom  {
    background-color: #fff;
    padding: 40px;
}

.auth__right > div {
    height: 50vh;
    background-color: #eeeff6 !important;
}

.auth__main h1 {
    text-align: left;
    font-size: 1.5rem;
    color:var(--purple);
}

.auth__main header { display:inline; }

.auth__main .form__wrapper {margin: auto auto 200px;}

.auth__main .link { text-align: left; font-size: 14px; color: #555; margin-bottom: 10px;}
.auth__main label { color: #555; }

.auth__main .form__wrapper .form__item {
    margin: 0 auto 0px;
}

.auth__main .form__item input, .auth__main .btn {
    border-radius: 5px;
}

.auth__main .btn {
    flex: 100%;
}

.auth__right .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth__right .bottom {
    padding: 10% 20%;
}

.auth__main h2 {
    margin-top: 10%;
    text-align: left;
    font-size: 1.2rem;
    color: #d93e8d;
}


.auth__main.registr .auth__right {
    display: flex;
    flex-direction: column-reverse; revert vertically
}

.auth__main.registr .auth__right > div {
    background: #243f8d !important;
}

.auth__main.registr .bottom h1, .auth__main.registr .bottom p  {
    text-align: center;
    color: #fff;
}

.auth__main.registr .bottom h1 {
    font-size: 2.5em;
    margin: auto auto;
}

.auth__main.registr .bottom {
    padding: 10% 20%;
    display: grid;
}
.auth__main .form__wrapper {
    padding: 15px;
}

.download-plan h4 {
    color: #243f8d;
}

.download-plan a {
    margin-left: 0px;
    display: inline-block;
    margin-top: 12px;
}

.download-plan {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f3f3;
    margin: 15px 0px;
}

.profile a {margin-left: 20px;}

.download-plan p.intro {
    margin-bottom: 10px;
}

.form__item .radio {
    display: inline-flex;
    width: 50px;
    margin-right: 20px;
}

.form__item .radio input, input#subscribe {height: 20px !important;min-width: 20px !important; width: auto;}



footer {
    padding:20px 0;
    text-align: center;
}

/*.alert{
    padding:30px;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 400px;
    height: 220px;
    
}*/

.alert-error [data-notify="message"],
.alert-success [data-notify="message"]  {
    margin-right:20px;
}
.alert-progress [data-notify="message"] {
    display: grid;
    justify-items: center;
}

.alert-progress {
    color: var(--purple);
    background-color: #d9d9ea;
/*    background-color: whitesmoke;*/
    border-radius: 10px;
    display: grid;
    justify-items: center;
    width: 250px;
    height: 300px;
    padding:30px;
    box-sizing: border-box;
    
}

.alert-error {
    color:#571b19;
    background-color:#f4c7c5;
    padding:30px;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 300px;
    height: 150px;
}

.alert-success {
    color: var(--purple);
    background-color: #d9d9ea;
    padding:30px;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 300px;
    height: 150px;
}


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

    header {
        padding: var(--d-spacing);
        flex-wrap: wrap;
        row-gap: 1rem;
    }

    .plan__nav {
        padding: 0;
        margin-bottom: var(--d-spacing);
        margin-right:0;
        flex-basis: 100%;
    }

    .plan__questions {
        flex-basis: 100%;
    }

    .form__item:nth-child(2n+1) {
        margin-right: 0;
    }

    .progress__meter {
        margin-bottom: var(--d-spacing);
    }

    .ck.ck-toolbar.ck-toolbar_grouping>.ck-toolbar__items {
        flex-wrap: wrap !important;
    }

    .questions__body {
        padding: 1.5rem;
    }

    .title, .form__wrapper h1 {
        font-size: 25px;
    }

    .title {
        padding:2.5rem;
    }

    .title h1 {
        font-size: 1.5rem;
    }

    .action__buts a {
        margin-left: 11px;
    }

    .generate__btn {
    justify-content: flex-start;
    margin-bottom: auto;
    margin-top: 30px;
}

    .plan__wrapper{
        padding: 0 var(--d-spacing);
    }
    .register {
        width:100%;
    }
    .register__form .form__item {
        flex:100%;
    }
    .register .btn {
        flex-basis:100%;
    }

    .auth__left, .auth__right {
        width: 100%;
        height: auto;
    }

    .auth__left, .auth__right .bottom {
        padding: 20px;   }

    .auth__main {
    display: block;
    padding: 0px;
    }

    .auth__left {
        display: grid;
    }

    .auth__right > div {
    height: auto; }

    .auth__right .bottom {
    padding: 60px !important; }

    .auth__main .form__wrapper {margin: auto auto 20px;}


}

.invalid-feedback{
  color:red;
  font-size: 13px;
}

[data-notify="progressbar"] {
    margin-bottom: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 5px;
}

.error{
    color:red;
}
.b-dashed {
    border-style: dashed !important;
}
.b-primary {
    border-color: #137eff !important;
}
.b-3x {
    border-width: 3px !important;
}
.p-5 {
    padding: 3rem !important;
}
.encouragement {
    background-color: whitesmoke;
    border-radius: 10px;
    display: grid;
    justify-items: center;
    width: 250px;
    height: 300px;
    padding:30px;
    box-sizing: border-box;
}

.visually__hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.alert-progress svg {
    width: 50px;
    height: auto;
    transform-origin: bottom;
    animation: shake .3s ease 4;
}

.alert-progress h2 {
    font-size: 1.2rem;
    align-self: flex-end;
    text-align: center;
}

@keyframes shake {
    to {
        transform: rotate(20deg);
    }
}

.toggle-switch {
    position: absolute;
    bottom: 31px;
    right: 18px;
    opacity: 0.9;
    cursor: pointer;
    font-size: 12px;
}

.date_range_input{
    display: flex;
    justify-content: flex-end;
    margin: 20px 0px;
    align-items: flex-end;
    gap: 1rem;
}

.date_range_input .form__item{
    margin:unset;
    padding-bottom: unset;
}

.flow > * + * {
    margin-top: var(--flow-space, 1.5rem);
}
.highlight {
    display: flex;
    align-items: center;
    gap: 1ch;
    padding-inline-end: var(--spacing);
    flex-wrap: wrap;
}
@media (min-width: 48em) {
    .highlight {
        padding-inline-end: 0;
    }
}
.highlight__item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    display: grid;
    scroll-snap-align: center;
    inline-size: 100%;
    max-inline-size: 400px;
    -moz-box-flex: 1;
    -ms-flex: 1 0 125px;
    flex: 1 0 125px;
}
.report__highlight{
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    scroll-snap-align: center;
    inline-size: 100%;
    max-inline-size: 400px;
    -moz-box-flex: 1;
    -ms-flex: 1 0 125px;
    flex: 1 0 125px;
    max-height: 379px;
    overflow-y: auto;
    height: 100%;
}

.report__highlight td{
    border-bottom: 1px solid var(--gray-300);
    padding: 8px 0px;
}

.report__highlight table{
    border-collapse: collapse;
}

.tablegroup {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.backdrop {
    background-color: #ffffff;
    border-radius: 10px;
    padding: var(--spacing);
}

.tablegroup table {
    width: 100%;
    color: #364963;
}

table {
    table-layout: fixed;
    width: 100%;
}

.tablegroup th {
    font-weight: 600;
    opacity: .4;
    font-size: .9rem;
    text-align: left;
    padding-bottom: 10px;
}
.tablegroup h2 {
    margin-bottom: var(--spacing);
}
.tablegroup td {
    padding-block: 10px;
    -webkit-padding-end: 10px;
    -moz-padding-end: 10px;
    padding-inline-end: 10px;
    font-size: 1rem;
}
div.dataTables_wrapper{
    clear: both;
}
div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}
@media (max-width: 34em) {
    div.dataTables_wrapper div.dataTables_filter {
        text-align: unset;
        margin-top:20px;
    }
}
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
    height: 42px;
    background-color: #fafafa;
    border: 1px solid rgba(196, 196, 196,1);
    padding: 5px;
}
div.dataTables_wrapper div.dataTables_length select {
    width: 75px;
    display: inline-block;
    background-color: #fafafa;
    border: 1px solid rgba(196, 196, 196,1);
    padding: 5px;
    margin:30px 0px;
    height: 42px;
}

div.dataTables_wrapper div.dataTables_filter label {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 0.85em;
    white-space: nowrap;
    margin-bottom: 25px;
}
div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 2px 0;
    white-space: nowrap;
    justify-content: flex-end;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #ffffff;
    border-color: #dee2e6;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

div.dataTables_paginate a.paginate_button {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(135, 150, 165, 0.1);
    cursor: pointer;
}
div.dataTables_paginate a.paginate_button.current{
    color: #ffffff;
    background-color: var(--purple);
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #137eff;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
}
.first, .last{
    display: none;
}
th.sorting_asc {
    width: auto !important;
}
.tablegroup table{
    table-layout: unset;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    top: 50%;
    left: -17px;
    height: 1em;
    width: 1em;
    margin-top: -9px;
    display: block;
    position: absolute;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    line-height: 1em;
    content: "+";
    background-color: var(--purple);
}
table.dataTable>tbody>tr.child ul.dtr-details>li {
    padding: 0.5em 0;
}

.report__highlight p {
    font-weight:bold;
    font-size:13px;
    text-align:center;
    margin-bottom:10px;
}

.report__highlight tr td:nth-child(2){
    text-align:right;
}

.plan__report__header {
    display:flex;
    justify-content:space-between;
    margin: 15px 0px;
}

/* line 19, src/scss/blocks/_dropdown.scss */
.dropdown__list {
    --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: .2s;
    position: absolute;
    bottom: -7px;
    right: 0;
    background-color: var(--purple);
    width: 13rem;
    padding: 10px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: visibility 0s linear var(--duration), -webkit-transform var(--duration) var(--easeOutExpo);
    transition: visibility 0s linear var(--duration), -webkit-transform var(--duration) var(--easeOutExpo);
    transition: transform var(--duration) var(--easeOutExpo), visibility 0s linear var(--duration);
    transition: transform var(--duration) var(--easeOutExpo), visibility 0s linear var(--duration), -webkit-transform var(--duration) var(--easeOutExpo);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    border-radius: 10px;
}

/* line 39, src/scss/blocks/_dropdown.scss */
.dropdown a {
    width: 100%;
    padding: 5px;
    font-size: 1rem;
    color: #ffffff;
    border-radius: 10px;
}

/* line 49, src/scss/blocks/_dropdown.scss */
.dropdown__cont.show .dropdown__list {
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: visibility 0s linear, -webkit-transform .2s ease;
    transition: visibility 0s linear, -webkit-transform .2s ease;
    transition: transform .2s ease, visibility 0s linear;
    transition: transform .2s ease, visibility 0s linear, -webkit-transform .2s ease;
}
@media (max-width: 34em) {
    .highlight{
        gap: 2ch;
        padding-inline-end: unset;
    }
    .report__highlight{
        flex-basis: 100%;
    }

    .plan__report__header{
        display:block;
    }

    a.filter_btn{
        height: 100%;
    }
    .profile

}

.arrow {
    position: absolute;
    right: 16px;
    transform: translateY(14px);
}
.flex__center {
    display: flex;
    align-items: flex-end;
}

a .disabled{
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}