:root {
    --font-size: rem(16px);
    --purple: #945FF4;
    --blue-dark: #4267D1;
    --blue: #A2C7FC;
    --light-blue: #5C9FFF;
    --light-green: #0CA708;
    --green: #A9D5B2;
    --dark: #37467F;
    --black: #1D2B4F;
    --white: #FFFFFF;
    --gray: #F3F3F3;
    --red-1: #F11D1D;
    --red: #F16263;
    --transition: all 0.5s cubic-bezier(.23, 1, .32, 1);
    --primary-font: "DM Sans", sans-serif
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

thead {
    background-color: #e3e3e3;
    height: 3rem;
    display: grid;
    /* border-radius: 15px 15px 0 0; */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

html {
    overflow-x: hidden;
    margin: 0 !important
}

body,
html {
    -webkit-text-size-adjust: none
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: ""
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:after,
:before {
    pointer-events: none;
    user-select: none
}

.image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    pointer-events: none;
    user-select: none
}

.hidden {
    visibility: hidden;
    display: none
}

.m-auto {
    display: block;
    margin: auto
}

.mb-24 {
    margin-bottom: 1.5rem
}

.loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -.75rem;
    margin-left: -.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid currentColor;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite
}

@keyframes rotation {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader-2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

.loader-2::after,
.loader-2::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid var(--light-blue);
    animation: prixClipFix 2s linear infinite
}

.loader-2::after {
    transform: rotate3d(90, 90, 0, 180deg);
    border-color: var(--blue-dark)
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    100%,
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-out {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fade-in {
    animation: fade-in .5s
}

.fade-out {
    animation: fade-out .5s
}

.tab {
    display: none;
    animation: fade-in .3s forwards ease
}

.tab.active {
    display: block
}

.notifications-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    pointer-events: none
}

@media (max-width:575px) {
    .notifications-container {
        left: 1.5rem;
        justify-content: center
    }
}

.notification {
    width: 27.1875rem;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    padding: .5rem 1rem;
    border-radius: 10px;
    color: var(--white);
    opacity: 1;
    font-size: 1rem;
    transition: opacity .5s ease
}

@media (max-width:575px) {
    .notification {
        width: 18.75rem;
        margin: auto;
        font-size: .875rem
    }
}

.notification.success {
    background-color: var(--green)
}

.notification.danger {
    background-color: var(--red)
}

.notification i {
    margin-right: .625rem
}

.container {
    max-width: 85.375rem;
    width: 100%;
    padding: 0 1.5625rem;
    margin: 0 auto
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap
}

.m-row {
    margin: 0 -1.25rem
}

@media (max-width:1200px) {
    .m-row {
        margin: 0 -.9375rem
    }
}

.m-row-sm {
    margin: 0 -.5rem
}

.column {
    padding: 0 1.25rem
}

@media (max-width:1200px) {
    .column {
        padding: 0 .9375rem
    }
}

.column-sm {
    padding: .4rem
}

.align-self-middle {
    -webkit-align-self: center;
    align-self: center
}

.align-self-end {
    -webkit-align-self: flex-end;
    align-self: flex-end
}

.align-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.align-spaced {
    -webkit-justify-content: space-around;
    justify-content: space-around
}

.align-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.align-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.align-right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.align-self-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.xs-hide {
    display: none
}

.xs-show {
    display: block
}

.col-xs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333%;
    -ms-flex: 0 0 8.3333%;
    flex: 0 0 8.3333%;
    max-width: 8.3333%
}

.col-xs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666%;
    -ms-flex: 0 0 16.6666%;
    flex: 0 0 16.6666%;
    max-width: 16.6666%
}

.col-xs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24.9999%;
    -ms-flex: 0 0 24.9999%;
    flex: 0 0 24.9999%;
    max-width: 24.9999%
}

.col-xs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3332%;
    -ms-flex: 0 0 33.3332%;
    flex: 0 0 33.3332%;
    max-width: 33.3332%
}

.col-xs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6665%;
    -ms-flex: 0 0 41.6665%;
    flex: 0 0 41.6665%;
    max-width: 41.6665%
}

.col-xs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 49.9998%;
    -ms-flex: 0 0 49.9998%;
    flex: 0 0 49.9998%;
    max-width: 49.9998%
}

.col-xs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3331%;
    -ms-flex: 0 0 58.3331%;
    flex: 0 0 58.3331%;
    max-width: 58.3331%
}

.col-xs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6664%;
    -ms-flex: 0 0 66.6664%;
    flex: 0 0 66.6664%;
    max-width: 66.6664%
}

.col-xs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 74.9997%;
    -ms-flex: 0 0 74.9997%;
    flex: 0 0 74.9997%;
    max-width: 74.9997%
}

.col-xs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333%;
    -ms-flex: 0 0 83.333%;
    flex: 0 0 83.333%;
    max-width: 83.333%
}

.col-xs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6663%;
    -ms-flex: 0 0 91.6663%;
    flex: 0 0 91.6663%;
    max-width: 91.6663%
}

.col-xs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 99.9996%;
    -ms-flex: 0 0 99.9996%;
    flex: 0 0 99.9996%;
    max-width: 99.9996%
}

.col-xs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:576px) {
    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
        flex: 0 0 8.3333%;
        max-width: 8.3333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
        flex: 0 0 16.6666%;
        max-width: 16.6666%
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 24.9999%;
        -ms-flex: 0 0 24.9999%;
        flex: 0 0 24.9999%;
        max-width: 24.9999%
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3332%;
        -ms-flex: 0 0 33.3332%;
        flex: 0 0 33.3332%;
        max-width: 33.3332%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.6665%;
        -ms-flex: 0 0 41.6665%;
        flex: 0 0 41.6665%;
        max-width: 41.6665%
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.9998%;
        -ms-flex: 0 0 49.9998%;
        flex: 0 0 49.9998%;
        max-width: 49.9998%
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.3331%;
        -ms-flex: 0 0 58.3331%;
        flex: 0 0 58.3331%;
        max-width: 58.3331%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.6664%;
        -ms-flex: 0 0 66.6664%;
        flex: 0 0 66.6664%;
        max-width: 66.6664%
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 74.9997%;
        -ms-flex: 0 0 74.9997%;
        flex: 0 0 74.9997%;
        max-width: 74.9997%
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333%;
        -ms-flex: 0 0 83.333%;
        flex: 0 0 83.333%;
        max-width: 83.333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.6663%;
        -ms-flex: 0 0 91.6663%;
        flex: 0 0 91.6663%;
        max-width: 91.6663%
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 99.9996%;
        -ms-flex: 0 0 99.9996%;
        flex: 0 0 99.9996%;
        max-width: 99.9996%
    }
}

@media (min-width:768px) {
    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
        flex: 0 0 8.3333%;
        max-width: 8.3333%
    }

    .medium-offset-1 {
        margin-left: 8.3333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
        flex: 0 0 16.6666%;
        max-width: 16.6666%
    }

    .medium-offset-2 {
        margin-left: 16.6666%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 24.9999%;
        -ms-flex: 0 0 24.9999%;
        flex: 0 0 24.9999%;
        max-width: 24.9999%
    }

    .medium-offset-3 {
        margin-left: 24.9999%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3332%;
        -ms-flex: 0 0 33.3332%;
        flex: 0 0 33.3332%;
        max-width: 33.3332%
    }

    .medium-offset-4 {
        margin-left: 33.3332%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.6665%;
        -ms-flex: 0 0 41.6665%;
        flex: 0 0 41.6665%;
        max-width: 41.6665%
    }

    .medium-offset-5 {
        margin-left: 41.6665%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.9998%;
        -ms-flex: 0 0 49.9998%;
        flex: 0 0 49.9998%;
        max-width: 49.9998%
    }

    .medium-offset-6 {
        margin-left: 49.9998%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.3331%;
        -ms-flex: 0 0 58.3331%;
        flex: 0 0 58.3331%;
        max-width: 58.3331%
    }

    .medium-offset-7 {
        margin-left: 58.3331%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.6664%;
        -ms-flex: 0 0 66.6664%;
        flex: 0 0 66.6664%;
        max-width: 66.6664%
    }

    .medium-offset-8 {
        margin-left: 66.6664%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 74.9997%;
        -ms-flex: 0 0 74.9997%;
        flex: 0 0 74.9997%;
        max-width: 74.9997%
    }

    .medium-offset-9 {
        margin-left: 74.9997%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333%;
        -ms-flex: 0 0 83.333%;
        flex: 0 0 83.333%;
        max-width: 83.333%
    }

    .medium-offset-10 {
        margin-left: 83.333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.6663%;
        -ms-flex: 0 0 91.6663%;
        flex: 0 0 91.6663%;
        max-width: 91.6663%
    }

    .medium-offset-11 {
        margin-left: 91.6663%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 99.9996%;
        -ms-flex: 0 0 99.9996%;
        flex: 0 0 99.9996%;
        max-width: 99.9996%
    }

    .medium-offset-12 {
        margin-left: 99.9996%
    }

    .md-show {
        display: block
    }

    .md-hide {
        display: none
    }
}

@media (min-width:992px) {
    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
        flex: 0 0 8.3333%;
        max-width: 8.3333%
    }

    .large-offset-1 {
        margin-left: 8.3333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
        flex: 0 0 16.6666%;
        max-width: 16.6666%
    }

    .large-offset-2 {
        margin-left: 16.6666%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 24.9999%;
        -ms-flex: 0 0 24.9999%;
        flex: 0 0 24.9999%;
        max-width: 24.9999%
    }

    .large-offset-3 {
        margin-left: 24.9999%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3332%;
        -ms-flex: 0 0 33.3332%;
        flex: 0 0 33.3332%;
        max-width: 33.3332%
    }

    .large-offset-4 {
        margin-left: 33.3332%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.6665%;
        -ms-flex: 0 0 41.6665%;
        flex: 0 0 41.6665%;
        max-width: 41.6665%
    }

    .large-offset-5 {
        margin-left: 41.6665%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.9998%;
        -ms-flex: 0 0 49.9998%;
        flex: 0 0 49.9998%;
        max-width: 49.9998%
    }

    .large-offset-6 {
        margin-left: 49.9998%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.3331%;
        -ms-flex: 0 0 58.3331%;
        flex: 0 0 58.3331%;
        max-width: 58.3331%
    }

    .large-offset-7 {
        margin-left: 58.3331%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.6664%;
        -ms-flex: 0 0 66.6664%;
        flex: 0 0 66.6664%;
        max-width: 66.6664%
    }

    .large-offset-8 {
        margin-left: 66.6664%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 74.9997%;
        -ms-flex: 0 0 74.9997%;
        flex: 0 0 74.9997%;
        max-width: 74.9997%
    }

    .large-offset-9 {
        margin-left: 74.9997%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333%;
        -ms-flex: 0 0 83.333%;
        flex: 0 0 83.333%;
        max-width: 83.333%
    }

    .large-offset-10 {
        margin-left: 83.333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.6663%;
        -ms-flex: 0 0 91.6663%;
        flex: 0 0 91.6663%;
        max-width: 91.6663%
    }

    .large-offset-11 {
        margin-left: 91.6663%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 99.9996%;
        -ms-flex: 0 0 99.9996%;
        flex: 0 0 99.9996%;
        max-width: 99.9996%
    }

    .large-offset-12 {
        margin-left: 99.9996%
    }
}

@media (min-width:1200px) {
    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
        flex: 0 0 8.3333%;
        max-width: 8.3333%
    }

    .xl-offset-1 {
        margin-left: 8.3333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
        flex: 0 0 16.6666%;
        max-width: 16.6666%
    }

    .xl-offset-2 {
        margin-left: 16.6666%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 24.9999%;
        -ms-flex: 0 0 24.9999%;
        flex: 0 0 24.9999%;
        max-width: 24.9999%
    }

    .xl-offset-3 {
        margin-left: 24.9999%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3332%;
        -ms-flex: 0 0 33.3332%;
        flex: 0 0 33.3332%;
        max-width: 33.3332%
    }

    .xl-offset-4 {
        margin-left: 33.3332%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.6665%;
        -ms-flex: 0 0 41.6665%;
        flex: 0 0 41.6665%;
        max-width: 41.6665%
    }

    .xl-offset-5 {
        margin-left: 41.6665%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.9998%;
        -ms-flex: 0 0 49.9998%;
        flex: 0 0 49.9998%;
        max-width: 49.9998%
    }

    .xl-offset-6 {
        margin-left: 49.9998%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.3331%;
        -ms-flex: 0 0 58.3331%;
        flex: 0 0 58.3331%;
        max-width: 58.3331%
    }

    .xl-offset-7 {
        margin-left: 58.3331%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.6664%;
        -ms-flex: 0 0 66.6664%;
        flex: 0 0 66.6664%;
        max-width: 66.6664%
    }

    .xl-offset-8 {
        margin-left: 66.6664%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 74.9997%;
        -ms-flex: 0 0 74.9997%;
        flex: 0 0 74.9997%;
        max-width: 74.9997%
    }

    .xl-offset-9 {
        margin-left: 74.9997%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.333%;
        -ms-flex: 0 0 83.333%;
        flex: 0 0 83.333%;
        max-width: 83.333%
    }

    .xl-offset-10 {
        margin-left: 83.333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.6663%;
        -ms-flex: 0 0 91.6663%;
        flex: 0 0 91.6663%;
        max-width: 91.6663%
    }

    .xl-offset-11 {
        margin-left: 91.6663%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 99.9996%;
        -ms-flex: 0 0 99.9996%;
        flex: 0 0 99.9996%;
        max-width: 99.9996%
    }

    .xl-offset-12 {
        margin-left: 99.9996%
    }
}

@font-face {
    font-family: icomoon;
    src: url(/dist/fonts/icomoon.eot?td995s);
    src: url(/dist/fonts/icomoon.eot?td995s#iefix) format("embedded-opentype"), url(/dist/fonts/icomoon.ttf?td995s) format("truetype"), url(/dist/fonts/icomoon.woff?td995s) format("woff"), url(/dist/fonts/icomoon.svg?td995s#icomoon) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

body,
html {
    font-family: var(--primary-font), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--black)
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-font-smoothing: antialiased
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.opacity07 {
    opacity: .7
}

.opacity09 {
    opacity: .9
}

.text-1 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3125rem
}

.text-2 {
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.3125rem
}

.text-3 {
    font-size: .75rem;
    line-height: normal
}

.text-4 {
    font-size: .625rem;
    line-height: normal
}

.heading-1 {
    font-family: var(--primary-font), serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.625rem;
    text-transform: uppercase
}

@media (max-width:767px) {
    .heading-1 {
        font-size: 1.5rem;
        line-height: 2rem
    }
}

.heading-3 {
    font-family: var(--primary-font), serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2rem
}

.heading-5 {
    font-family: var(--primary-font), serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75rem
}

.font-weight-500 {
    font-weight: 500
}

.form-group {
    position: relative;
    margin-bottom: 1.5625rem
}

@media (max-width:575px) {
    .form-group {
        margin-bottom: .9375rem
    }
}

.form-group.--no-margin {
    margin-bottom: 0
}

.form-group.--small {
    margin-bottom: .5rem
}

.form-group.--medium {
    margin-bottom: 1rem
}

.form-group.--large {
    margin-bottom: 2.8125rem
}

@media (max-width:575px) {
    .form-group.--large {
        margin-bottom: 1.875rem
    }
}

.form-label {
    display: inline-block;
    font-family: var(--primary-font), serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3125rem;
    color: var(--black);
    opacity: .9;
    margin-bottom: .25rem
}

@media (max-width:575px) {
    .form-label {
        font-weight: 500;
        font-size: .75rem
    }
}

.form-label.--small {
    font-size: 10px
}

.required-sign {
    font-style: normal;
    opacity: .9;
    color: var(--red)
}

.invalid-feedback {
    display: block;
    font-size: 1rem;
    line-height: 1.3125rem;
    font-style: normal;
    opacity: .9;
    color: var(--red)
}

.form-input,
.form-select,
.form-textarea,
.select2-container--default .select2-selection--multiple {
    display: block;
    appearance: none;
    padding: 0 1rem;
    width: 100%;
    height: 3.125rem;
    border: 1px solid var(--blue-dark);
    border-radius: .625rem;
    outline: 0;
    font-style: normal;
    font-weight: 400;
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    line-height: 1.875rem;
    color: var(--black);
    transition: color .5s cubic-bezier(.23, 1, .32, 1), border .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1)
}

.form-input.--modifier,
.form-select.--modifier,
.form-textarea.--modifier,
.select2-container--default .--modifier.select2-selection--multiple {
    border: 1px solid rgba(162, 199, 252, .3)
}

.form-input.--modifier:active,
.form-input.--modifier:hover,
.form-select.--modifier:active,
.form-select.--modifier:hover,
.form-textarea.--modifier:active,
.form-textarea.--modifier:hover,
.select2-container--default .--modifier.select2-selection--multiple:active,
.select2-container--default .--modifier.select2-selection--multiple:hover {
    border: 1px solid var(--blue-dark, #4267d1);
    background-color: var(--white)
}

@media (max-width:575px) {

    .form-input,
    .form-select,
    .form-textarea,
    .select2-container--default .select2-selection--multiple {
        height: 2.5rem;
        font-size: .875rem
    }
}

.form-input:active,
.form-input:hover,
.form-select:active,
.form-select:hover,
.form-textarea:active,
.form-textarea:hover,
.select2-container--default .select2-selection--multiple:active,
.select2-container--default .select2-selection--multiple:hover {
    background-color: rgba(66, 103, 209, .1)
}

.form-input.error,
.form-select.error,
.form-textarea.error,
.select2-container--default .error.select2-selection--multiple {
    border-color: var(--red-1)
}

.form-input.--small,
.form-select.--small,
.form-textarea.--small,
.select2-container--default .--small.select2-selection--multiple {
    height: 2.5rem;
    font-size: .875rem
}

.form-input.--small+.form-icon,
.form-select.--small+.form-icon,
.form-textarea.--small+.form-icon,
.select2-container--default .--small.select2-selection--multiple+.form-icon {
    right: 0;
    bottom: 0;
    font-size: 18px
}

.form-select,
.select2-container--default .select2-selection--multiple {
    background-repeat: no-repeat;
    background-position: calc(100% - 10px);
    background-image: url(/dist/images/arrow-down.svg)
}

.form-textarea {
    resize: none;
    overflow: hidden;
    padding: 1rem;
    min-height: 9.375rem
}

label.error,
span.error {
    position: absolute;
    left: 0;
    bottom: -.9375rem;
    color: var(--red-1);
    font-size: .625rem;
    line-height: 1rem
}

@media (max-width:575px) {

    label.error,
    span.error {
        font-size: .625rem
    }
}

.toggle-password {
    position: absolute;
    padding: .625rem;
    right: .625rem;
    bottom: .1875rem;
    font-size: 1.5rem;
    color: var(--blue-dark);
    opacity: .5;
    cursor: pointer
}

@media (max-width:575px) {
    .toggle-password {
        bottom: 0;
        right: .125rem;
        padding: .5rem .75rem
    }
}

.form-icon {
    pointer-events: none;
    position: absolute;
    padding: .625rem;
    right: .625rem;
    bottom: .1875rem;
    font-size: 1.5rem;
    color: var(--blue-dark)
}

@media (max-width:575px) {
    .form-icon {
        bottom: 0;
        right: .125rem;
        padding: .5rem .75rem
    }
}

::-webkit-input-placeholder {
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    color: rgba(29, 43, 79, .4);
    font-weight: 400
}

@media (max-width:575px) {
    ::-webkit-input-placeholder {
        font-size: .75rem
    }
}

::-moz-placeholder {
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    color: rgba(29, 43, 79, .4);
    font-weight: 400
}

@media (max-width:575px) {
    ::-moz-placeholder {
        font-size: .75rem
    }
}

:-ms-input-placeholder {
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    color: rgba(29, 43, 79, .4);
    font-weight: 400
}

@media (max-width:575px) {
    :-ms-input-placeholder {
        font-size: .75rem
    }
}

:-moz-placeholder {
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    color: rgba(29, 43, 79, .4);
    font-weight: 400
}

@media (max-width:575px) {
    :-moz-placeholder {
        font-size: .75rem
    }
}

.form-checkbox {
    position: relative
}

.form-checkbox.--medium label {
    padding-left: 1.5rem;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.125rem;
    color: rgba(29, 43, 79, .9)
}

.form-checkbox.--medium label:before {
    width: 1.125rem;
    height: 1.125rem
}

.form-checkbox.--medium label:after {
    left: 3px;
    font-size: .75rem;
    line-height: 1.125rem
}

.form-checkbox.--small label {
    padding-left: 1.5rem;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.125rem;
    color: rgba(29, 43, 79, .9)
}

.form-checkbox.--small label:before {
    width: 1.125rem;
    height: 1.125rem
}

.form-checkbox.--small label:after {
    left: 3px;
    line-height: 1.125rem;
    font-size: .75rem
}

.form-checkbox.--white label {
    color: var(--white)
}

.form-checkbox.--white label:before {
    background-color: var(--white)
}

.form-checkbox input[type=checkbox] {
    position: absolute;
    left: -99999%;
    visibility: hidden
}

.form-checkbox input[type=checkbox]:checked+label:after {
    opacity: 1
}

.form-checkbox input[type=checkbox]:checked+label:before {
    background-color: var(--light-green);
    border-color: var(--light-green)
}

.form-checkbox label {
    display: block;
    position: relative;
    padding-left: 1.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: rgba(29, 43, 79, .6);
    cursor: pointer
}

@media (max-width:575px) {
    .form-checkbox label {
        padding-left: 1.5rem;
        font-weight: 500;
        font-size: .75rem;
        line-height: 1rem
    }
}

.form-checkbox label a {
    text-decoration: underline
}

.form-checkbox label.--black {
    color: rgba(29, 43, 79, .9)
}

.form-checkbox label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--light-blue);
    background: 0 0;
    transition: var(--transition)
}

@media (max-width:575px) {
    .form-checkbox label:before {
        width: 1.25rem;
        height: 1.25rem
    }
}

.form-checkbox label:after {
    content: "\e902";
    font-family: icomoon, serif;
    position: absolute;
    left: 4px;
    top: 0;
    line-height: 1.5rem;
    font-size: .875rem;
    opacity: 0;
    color: var(--white);
    transition: var(--transition)
}

@media (max-width:575px) {
    .form-checkbox label:after {
        left: 3px
    }
}

.form-action-input,
.form-action-select {
    display: block;
    appearance: none;
    padding: 0 .5rem;
    width: 100%;
    height: 1.875rem;
    border: 1px solid rgba(162, 199, 252, .3);
    background: var(--white);
    border-radius: .625rem;
    outline: 0;
    font-style: normal;
    font-weight: 400;
    font-family: var(--primary-font), sans-serif;
    font-size: .75rem;
    color: var(--black);
    transition: var(--transition)
}

.form-action-input:active,
.form-action-input:hover,
.form-action-select:active,
.form-action-select:hover {
    border: 1px solid var(--blue-dark, #4267d1);
    background-color: var(--white)
}

.form-action-input.--w-35,
.form-action-select.--w-35 {
    padding: 0 .125rem;
    min-width: 2.1875rem;
    width: 35px
}

.form-action-input.--w-75,
.form-action-select.--w-75 {
    min-width: 4.6875rem;
    width: 4.6875rem
}

.form-action-input.--w-90,
.form-action-select.--w-90 {
    width: 5.625rem
}

.form-action-input.--w-130,
.form-action-select.--w-130 {
    width: 8.125rem
}

.form-action-input.--w-170,
.form-action-select.--w-170 {
    width: 10.625rem;
    max-width: 10.625rem
}

.form-action-input.--w-235,
.form-action-select.--w-235 {
    width: 14.6875rem
}

.form-action-input[disabled],
.form-action-select[disabled] {
    pointer-events: none;
    background-color: transparent;
    border: 0;
    background-image: none
}

.form-action-icon {
    font-size: 1rem;
    padding: .375rem .25rem;
    cursor: pointer
}

.form-action-select {
    position: relative;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px);
    background-image: url(/dist/images/arrow-down.svg)
}

.form-action-label {
    position: relative
}

.form-action-label.--red select {
    padding-left: 1rem;
    color: var(--red)
}

.form-action-label.--red:before {
    content: "";
    position: absolute;
    left: .3125rem;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: var(--red)
}

.form-action-label.--bue select {
    padding-left: 1rem;
    color: var(--blue-dark)
}

.form-action-label.--bue:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: .3125rem;
    top: 50%;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: var(--blue-dark)
}

.form-action-label.--green select {
    padding-left: 1rem;
    color: var(--light-green)
}

.form-action-label.--green:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: .3125rem;
    top: 50%;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: var(--light-green)
}

.iti {
    width: 100%;
    font-family: var(--primary-font), sans-serif
}

.iti .iti__search-input {
    padding: 0 .625rem;
    height: 2.1875rem;
    outline-color: var(--blue-dark)
}

.iti__selected-country-primary {
    padding-left: 1rem !important
}

.bootstrap-timepicker-widget.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.bootstrap-timepicker-widget.dropdown-menu:before {
    display: none !important
}

.bootstrap-timepicker-widget.dropdown-menu:after {
    display: none !important
}

.bootstrap-timepicker-widget table td {
    text-align: center;
    height: 30px;
    min-width: 30px;
    margin: 0;
    padding: 2px
}

.bootstrap-timepicker-widget table td input {
    border: 1px solid #e3eeff
}

.bootstrap-timepicker-widget table td a {
    justify-content: center;
    align-items: center;
    height: 20px;
    display: flex !important;
    font-size: 9px;
    padding: 0 !important;
    background: var(--gray)
}

.bootstrap-timepicker-widget table td a .glyphicon-chevron-up:before {
    content: "\e91c";
    font-family: icomoon !important;
    transform: scale(-1);
    display: block
}

.bootstrap-timepicker-widget table td a .glyphicon-chevron-down:before {
    content: "\e91c";
    font-family: icomoon !important
}

.btn {
    position: relative;
    display: inline-block;
    outline: 0;
    cursor: pointer;
    text-align: center;
    border: 0;
    overflow: hidden;
    border-radius: 0;
    background-color: transparent
}

.btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.125rem;
    border-radius: 5px;
    font-family: var(--primary-font), sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--blue-dark);
    background-color: var(--blue-dark);
    transition: var(--transition)
}

@media (max-width:575px) {
    .btn-primary {
        height: 2.5rem;
        font-size: 1.125rem
    }
}

.btn-primary svg {
    fill: var(--white)
}

.btn-primary.--small {
    height: 2.5rem;
    font-size: 1.125rem
}

.btn-primary.--tiny {
    width: 4.375rem
}

.btn-primary.--w-250 {
    max-width: 15.625rem;
}

@media (hover:hover) {
    .btn-primary:hover {
        background-color: var(--white);
        color: var(--blue-dark);
        border-color: var(--blue-dark)
    }

    .btn-primary:hover svg {
        fill: var(--blue-dark)
    }
}

.btn-secondary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.125rem;
    border-radius: 5px;
    font-family: var(--primary-font), sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--blue-dark);
    border: 1px solid var(--blue-dark);
    background-color: var(--white);
    transition: var(--transition)
}

@media (max-width:575px) {
    .btn-secondary {
        min-height: 2.5rem;
        height: auto;
        font-size: 1.125rem
    }
}

.btn-secondary svg {
    fill: var(--blue-dark)
}

.btn-secondary.--small {
    height: 2.5rem;
    font-size: 1.125rem
}

.btn-secondary.--tiny {
    width: 4.375rem
}

.btn-secondary.--w-250 {
    max-width: 15.625rem
}

.btn-secondary.--w-50 {
    max-width: 15.625rem
}

@media (hover:hover) {
    .btn-secondary:hover {
        background-color: var(--blue-dark);
        color: var(--white);
        border-color: var(--blue-dark)
    }

    .btn-secondary:hover svg {
        fill: var(--white)
    }
}

[class*=" icon-"],
[class^=icon-] {
    font-family: icomoon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-copy:before {
    content: "\e926"
}

.icon-file-image-o:before {
    content: "\e925"
}

.icon-minus:before {
    content: "\e924"
}

.icon-success:before {
    content: "\e922"
}

.icon-danger:before {
    content: "\e923"
}

.icon-error:before {
    content: "\e921"
}

.icon-filter:before {
    content: "\e920"
}

.icon-arrow-down:before {
    content: "\e91c"
}

.icon-dots:before {
    content: "\e91d"
}

.icon-pdf:before {
    content: "\e91e"
}

.icon-email:before {
    content: "\e91f"
}

.icon-bell:before {
    content: "\e91b"
}

.icon-mail:before {
    content: "\e91a"
}

.icon-arr-left:before {
    content: "\e919"
}

.icon-arr-right:before {
    content: "\e917"
}

.icon-zoom:before {
    content: "\e918"
}

.icon-eye-show:before {
    content: "\e901"
}

.icon-eye-hide:before {
    content: "\e900"
}

.icon-check:before {
    content: "\e902"
}

.icon-download:before {
    content: "\e903"
}

.icon-log-out:before {
    content: "\e904"
}

.icon-technical-support:before {
    content: "\e905"
}

.icon-question:before {
    content: "\e906"
}

.icon-notification:before {
    content: "\e907"
}

.icon-note:before {
    content: "\e908"
}

.icon-people:before {
    content: "\e909"
}

.icon-customer:before {
    content: "\e90a"
}

.icon-user:before {
    content: "\e90b"
}

.icon-add-friend:before {
    content: "\e90c"
}

.icon-arrow-left:before {
    content: "\e90d"
}

.icon-arrow-right:before {
    content: "\e90e"
}

.icon-eye:before {
    content: "\e90f"
}

.icon-pencil:before {
    content: "\e910"
}

.icon-trash:before {
    content: "\e911"
}

.icon-search:before {
    content: "\e912"
}

.icon-star:before {
    content: "\e922"
}

.icon-lock:before {
    content: "\e913"
}

.icon-plus:before {
    content: "\e914"
}

.icon-date:before {
    content: "\e915"
}

.icon-close:before {
    content: "\e916"
}

.sidebar {
    position: fixed;
    z-index: 1;
    width: 5%;
    height: 100vh;
    margin-left: 1rem;
    background: linear-gradient(157deg, #d4a6be 59.09%, #c697ca 100.55%);
}

@media (max-width:1200px) {
    .sidebar {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 70px;
        width: 100%;
        z-index: 19;
        background: var(--white)
    }
}

.sidebar__logo {
    display: none
}

@media (max-width:1200px) {
    .sidebar__logo {
        display: block
    }
}

.sidebar__caption {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

@media (max-width:1200px) {
    .sidebar__caption {
        display: none
    }
}

@media (max-width:1200px) {
    .sidebar__caption-1 {
        display: none
    }
}

.sidebar__header {
    position: relative;
    height: 7rem;
    margin-bottom: .5rem
}

@media (max-width:1200px) {
    .sidebar__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        height: 4.375rem;
        margin-bottom: 0
    }

    .sidebar__header img {
        display: none
    }
}

.sidebar__header img {
    position: absolute;
    /* top: -15px; */
    /* left: 0; */
    right: 0;
    height: 50%;
    width: 107%;
    margin: auto
}

.sidebar__user {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    height: 40px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    background-color: var(--blue-dark)
}

@media (max-width:1200px) {
    .sidebar__user {
        bottom: -72px
    }
}

.sidebar__userName {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 500;
    background: var(--white)
}

.sidebar-label {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5rem;
    flex-flow: row nowrap;
    padding: .25rem 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(97deg, #f6cba0 2.6%, #915cf6 96.81%)
}

@media (max-width:1200px) {
    .sidebar-label {
        position: absolute;
        left: 0;
        right: 0;
        top: 4.375rem;
        width: 100%
    }
}

.sidebar-label__title {
    color: var(--white);
    font-weight: 500
}

.sidebar-label__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.625rem;
    height: 1.5rem;
    border-radius: 5px;
    color: var(--white);
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--blue-dark)
}

.sidebar-nav {
    padding-top: 50%;
    display: grid;
    gap: 12%;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.sidebar-nav.active {
    display: block
}

@media (max-width:1200px) {
    .sidebar-nav {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 142px;
        bottom: 0;
        padding: 16px;
        overflow-y: scroll;
        overflow-x: hidden;
        background: linear-gradient(97deg, #f6cba0 2.6%, #915cf6 96.81%);
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .sidebar-nav::-webkit-scrollbar {
        display: none;
        width: 0;
        background: 0 0
    }

    .sidebar-nav::-webkit-scrollbar-thumb {
        display: none;
        background: 0 0
    }
}

.sidebar-nav__item {
    height: 2.5rem;
    display: flex;
    padding-left: 33%;
}

.sidebar-nav__item.--modifier {
    margin-bottom: 3.75rem
}

.sidebar-nav__item.--locked {
    position: relative;
    pointer-events: none
}

.sidebar-nav__item.--locked:after {
    content: "\e913";
    font-family: icomoon, serif;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -.625rem;
    top: -.625rem;
    text-align: center;
    line-height: 2.625rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, .3);
    border-radius: 20px;
    background: var(--white-30, rgba(255, 255, 255, .3));
    backdrop-filter: blur(5px)
}

.sidebar-nav__link {
    display: block;
    position: relative;
    /* z-index: 1; */
}

@media (hover:hover) {
    .sidebar-nav__link:hover span {
        color: var(--white)
    }

    .sidebar-nav__link:hover .sidebar-nav__notification {
        color: rgba(29, 43, 79, .9)
    }
}

.sidebar-nav__link.active {
    z-index: 3
}

.sidebar-nav__link.active:before {
    /* content: ""; */
    position: absolute;
    left: -1rem;
    right: 0;
    top: -.3125rem;
    bottom: -.3125rem;
    z-index: -1;
    border-radius: .625rem;
    background-color: var(--white)
}

.sidebar-nav__link.active .sidebar-nav__notification {
    background-color: rgba(29, 43, 79, .9);
    color: var(--white)
}

@media (hover:hover) {
    .sidebar-nav__link.active:hover span {
        color: var(--black)
    }

    .sidebar-nav__link.active:hover .sidebar-nav__notification {
        color: rgba(29, 43, 79, .9)
    }

    .sidebar-nav__link.active:hover .sidebar-nav__notification {
        background-color: rgba(29, 43, 79, .9);
        color: var(--white)
    }
}

.sidebar-nav__link.active+.sidebar-sub-nav {
    display: flex;
    flex-direction: column;
    margin-top: 35%;
    margin-left: -25%;
}

.sidebar-nav__link i {
    position: absolute;
    left: 0;
    width: 2.125rem;
    height: 2.125rem;
    text-align: center;
    color: var(--blue-dark);
    font-size: 1.25rem;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 84, 82, .08)
}

.sidebar-nav__link span {
    position: relative;
    color: rgba(29, 43, 79, 0);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
    transition: var(--transition)
}

.sidebar-nav__link span svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px
}

.sidebar-nav__notification {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    font-size: .75rem !important;
    text-align: center;
    line-height: 1rem !important;
    vertical-align: super
}

.sidebar-sub-nav {
    display: none;
}

.settings {}

.logout {
    position: absolute;
    bottom: 5%;
}

.sidebar-sub-nav__item {
    position: relative;
    padding-top: 35%;
}

.sidebar-sub-nav__item:nth-last-child(1):before {
    bottom: 10px
}


.sidebar-sub-nav__link {
    display: block;
    position: relative;
    z-index: 1;
    transition: var(--transition)
}


@media (hover:hover) {
    .sidebar-sub-nav__link:hover {
        color: var(--white)
    }
}

.sidebar-sub-nav__link.active {
    z-index: 3;
}

.sidebar-sub-nav__link.active:before {
    display: none
}

.sidebar-sub-nav__link.active:after {
    content: "";
    position: absolute;
    left: -1rem;
    right: 0;
    top: -.3125rem;
    bottom: -.3125rem;
    z-index: -1;
    background-color: var(--white)
}

@media (hover:hover) {
    .sidebar-sub-nav__link.active:hover {
        color: var(--black)
    }
}

.hamburger {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 50px;
    display: none
}

@media (max-width:1200px) {
    .hamburger {
        display: flex
    }
}

.hamburger__wrap {
    width: 28px;
    height: 24px;
    position: relative
}

.hamburger span {
    position: absolute;
    top: 50%;
    background-color: var(--black);
    width: 100%;
    height: 3px;
    margin-top: -1px;
    border-radius: 3px;
    transition: transform var(--transition), opacity var(--transition), margin-top var(--transition)
}

.hamburger span:nth-child(1) {
    transform: translateY(-10px)
}

.hamburger span:nth-child(3) {
    transform: translateY(10px)
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(-45deg)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(45deg)
}

.dataTables_wrapper .top {
    position: absolute;
    right: 0;
    top: -6.25rem;
    display: flex
}

@media (max-width:991px) {
    .dataTables_wrapper .top {
        top: -5.3125rem
    }
}

@media (max-width:767px) {
    .dataTables_wrapper .top {
        position: relative;
        top: initial;
        margin-bottom: 1.5rem
    }
}

.dataTables_wrapper .bottom {
    display: flex
}

.dataTables_paginate {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    padding: .25rem .5rem;
    border-radius: 5px;
    background: var(--white, #fff)
}

.dataTables_paginate span {
    display: flex;
    align-items: center
}

.dataTables_paginate .paginate_button {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    text-align: center;
    line-height: 1.25rem;
    font-weight: 500;
    color: var(--black);
    opacity: .3
}

.dataTables_paginate .paginate_button.current {
    color: var(--blue-dark);
    opacity: 1
}

.dataTables_paginate .paginate_button.previous {
    opacity: 1;
    margin-right: 1rem;
    font-size: 0
}

.dataTables_paginate .paginate_button.previous:before {
    content: "\e90d";
    font-family: icomoon, sans-serif;
    font-size: 1.25rem
}

.dataTables_paginate .paginate_button.next {
    opacity: 1;
    margin-left: 1rem;
    font-size: 0
}

.dataTables_paginate .paginate_button.next:before {
    content: "\e90e";
    font-family: icomoon, sans-serif;
    font-size: 1.25rem
}

.dataTables_paginate .paginate_button+.paginate_button {
    margin-left: 1rem
}

.dataTables_filter {
    position: relative
}

@media (max-width:767px) {
    .dataTables_filter {
        width: 100%
    }
}

.dataTables_filter label {
    font-size: 0
}

.dataTables_filter label:after {
    content: "\e912";
    font-family: icomoon, serif;
    position: absolute;
    font-size: 1.25rem;
    right: 1rem;
    top: .8125rem
}

@media (max-width:767px) {
    .dataTables_filter label:after {
        top: .5rem
    }
}

.dataTables_filter input {
    width: 18.75rem;
    height: 3.125rem;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(162, 199, 252, .3);
    background: var(--white);
    padding: .625rem;
    font-size: 1rem;
    font-family: var(--primary-font), sans-serif;
    outline: 0
}

@media (max-width:767px) {
    .dataTables_filter input {
        width: 100%;
        height: 2.5rem
    }
}

.dataTables_filter input:active,
.dataTables_filter input:hover {
    border: 1px solid var(--blue-dark, #4267d1);
    background-color: var(--white)
}

.datepicker {
    position: absolute;
    background: #fff
}

.datepicker td,
.datepicker th {
    padding: .3125rem
}

.datepicker td.today.day {
    background-image: none !important;
    background-color: var(--light-blue) !important
}

.datepicker td.active.day {
    background-image: none;
    text-shadow: none;
    background-color: var(--blue-dark) !important
}

.datepicker td.active.day:hover {
    background-color: var(--blue-dark) !important;
    background-image: none
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(5px)
}

.popup__body {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    overflow: auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

@media (max-width:767px) {
    .popup__body {
        padding: 1rem
    }
}

.popup__content {
    position: relative;
    padding: 4.25rem 1.5rem 1.5rem;
    width: 100%;
    overflow: auto;
    max-width: 55.9375rem;
    border-radius: 20px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.popup__content.--full {
    max-width: 100%
}

.popup__content.--small {
    max-width: 46.5625rem
}

.popup__content.--no-overflow {
    overflow: initial
}

@media (max-width:767px) {
    .popup__content {
        padding: 3.125rem 1rem 1rem
    }
}

.popup__close {
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 1;
    font-size: 1.5rem
}

.popup__close:hover {
    color: var(--blue-dark)
}

.popup__footer {
    margin-top: 1rem
}

.popup__footer.--modifier {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: .5rem
}

.popup__footer.--modifier .btn-secondary {
    max-width: 10.625rem
}

.popup__footer.--modifier .btn-primary {
    max-width: 18.125rem
}

.popup__footer.--center {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    row-gap: .5rem;
    column-gap: .5rem
}

.popup__footer.--center .btn-secondary {
    max-width: 19.375rem
}

.popup__footer.--center .btn-primary {
    max-width: 19.375rem
}

.upload-popup__title {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    margin-bottom: 1.875rem
}

@media (max-width:767px) {
    .upload-popup__title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem
    }
}

.upload-popup__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: .5rem
}

@media (max-width:767px) {
    .upload-popup__footer {
        flex-flow: row wrap;
        row-gap: .5rem
    }
}

.upload-popup__btn-1 {
    width: 10.625rem
}

@media (max-width:767px) {
    .upload-popup__btn-1 {
        width: 100%
    }
}

.upload-popup__btn-2 {
    width: 18.125rem
}

@media (max-width:767px) {
    .upload-popup__btn-2 {
        width: 100%
    }
}

.upload-popup-pdfs {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    column-gap: .5rem;
    row-gap: .5rem
}

.upload-popup-pdfs__item {
    display: flex;
    align-items: center;
    column-gap: .75rem;
    position: relative;
    padding: .5rem;
    border-radius: 10px;
    border: 1px solid var(--gray, #f3f3f3);
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08)
}

.upload-popup-pdfs__item button {
    padding: 0;
    text-align: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--blue-dark)
}

.uploaded-media {
    display: flex;
    flex-flow: row wrap;
    max-height: 30.625rem;
    row-gap: 1.5rem;
    padding: 1rem 1.5rem 1rem 1rem;
    overflow: auto;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid var(--gray, #f3f3f3);
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    margin-bottom: 1.5rem
}

.uploaded-media__column {
    position: relative;
    cursor: pointer;
    height: 13.4375rem;
    width: calc(50% - 16px);
    border-radius: 10px;
    border: 2px solid var(--gray, #4267d1);
    background: var(--gray, #f3f3f3)
}

@media (max-width:575px) {
    .uploaded-media__column {
        height: 10.9375rem;
        width: 100%
    }
}

.uploaded-media__column.active {
    border: 2px solid var(--blue-darck, #4267d1)
}

.uploaded-media__column .icon-file-image-o {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px
}

.uploaded-media__column .profile-tool-btn {
    position: absolute;
    right: 1rem;
    bottom: 1rem
}

.uploaded-media__name {
    position: absolute;
    left: 1rem;
    bottom: 1rem
}

div:where(.swal2-container) h2:where(.swal2-title) {
    padding-top: 2.625rem !important;
    color: var(--dark) !important;
    font-family: var(--primary-font) !important;
    padding-bottom: 1.5rem !important
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny) {
    display: inline-block;
    background-color: #fff !important;
    border: 1px solid var(--blue-dark) !important;
    border-radius: 10px !important;
    text-align: center !important;
    height: 50px !important;
    padding: 0 !important;
    width: 175px !important;
    color: var(--blue-dark) !important;
    font-size: 18px !important;
    font-family: var(--primary-font) !important;
    text-transform: uppercase !important;
    transition: var(--transition) !important
}

@media (hover:hover) {
    div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):hover {
        color: var(--white) !important;
        background: var(--blue-dark) !important
    }
}

@media (max-width:575px) {
    div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny) {
        width: 125px !important;
        font-size: 16px !important
    }
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    display: inline-block;
    background-color: var(--blue-dark) !important;
    border: 1px solid var(--blue-dark) !important;
    border-radius: 10px !important;
    text-align: center !important;
    height: 50px !important;
    padding: 0 !important;
    width: 200px !important;
    color: var(--white) !important;
    font-size: 18px !important;
    font-family: var(--primary-font) !important;
    text-transform: uppercase !important;
    transition: var(--transition) !important
}

@media (hover:hover) {
    div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
        color: var(--blue-dark) !important;
        background: var(--white) !important
    }
}

@media (max-width:575px) {
    div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
        width: 175px !important;
        font-size: 16px !important
    }
}

.select2-container--default .select2-selection--multiple {
    border-radius: 10px !important;
    border: 1px solid rgba(162, 199, 252, .3) !important
}

.select2-container--default .select2-selection--multiple:active,
.select2-container--default .select2-selection--multiple:hover {
    border: 1px solid var(--blue-dark, #4267d1) !important;
    background-color: var(--white) !important
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 10px !important;
    border: 1px solid var(--gray, #f3f3f3) !important;
    background: var(--white, #fff) !important;
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08)
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    width: 20px;
    height: 20px;
    border-radius: 50% !important;
    background: var(--blue-dark) !important;
    color: var(--white) !important;
    border: 0 !important;
    font-size: 16px !important;
    padding: 0 !important;
    top: 5px !important;
    line-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    font-weight: 100
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(162, 199, 252, .75) !important;
    height: 35px;
    padding: 0 12px;
    outline: 0;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--primary-font), serif
}

@media (max-width:575px) {
    .select2-results__option {
        font-size: 14px
    }
}

.popup .select2-container .select2-selection--single {
    height: 50px
}

@media (max-width:575px) {
    .popup .select2-container .select2-selection--single {
        height: 40px;
        font-size: 14px
    }
}

.popup .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px
}

@media (max-width:575px) {
    .popup .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 40px
    }
}

.popup .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px
}

@media (max-width:575px) {
    .popup .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px
    }
}

.auth {
    overflow: hidden;
    min-height: 100vh
}

.auth__row {
    min-height: 100vh
}

@media (max-width:991px) {
    .auth__row {
        flex-flow: column wrap
    }
}

.auth__banner {
    position: relative;
    width: 48%
}

@media (max-width:991px) {
    .auth__banner {
        width: 100%;
        height: 13.75rem
    }
}

.auth__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover
}

.auth__logo {
    position: absolute;
    left: -6rem;
    height: 100%;
    z-index: 1
}

@media (max-width:991px) {
    .auth__logo {
        max-width: 220px;
        left: 50%;
        transform: translateX(-50%);
        top: -1.25rem
    }
}

.auth__caption {
    position: absolute;
    left: 3.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    font-weight: 700;
    font-size: 4.375rem;
    line-height: 5.5625rem;
    color: var(--white);
    z-index: 2
}

@media (max-width:991px) {
    .auth__caption {
        font-size: 3.125rem;
        line-height: 3.75rem;
        left: 0;
        right: 0;
        text-align: center;
        top: initial;
        bottom: 2.8125rem
    }
}

.auth__wrapper {
    width: 52%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 6.875rem .9375rem 6.875rem 3.75rem;
    min-height: 100vh
}

@media (max-width:991px) {
    .auth__wrapper {
        width: 100%;
        padding: 1rem;
        min-height: auto;
        flex-flow: column wrap
    }
}

.auth__header {
    position: absolute;
    right: 2.5rem;
    top: 1.875rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 8px
}

@media (max-width:991px) {
    .auth__header {
        position: relative;
        right: initial;
        top: initial;
        flex-flow: row wrap;
        row-gap: .5rem;
        justify-content: center;
        margin-bottom: 2.5rem
    }
}

.auth__header .btn {
    width: 11.25rem
}

@media (max-width:575px) {
    .auth__header .btn {
        width: 100%
    }
}

.auth__form {
    width: 100%;
    max-width: 31.5625rem
}

.auth__form.--modifier {
    max-width: 35rem
}

.auth__title {
    margin-bottom: .5rem
}

.auth__text {
    margin-bottom: 2.5rem
}

@media (max-width:575px) {
    .auth__text {
        font-size: .75rem;
        margin-bottom: 1.25rem
    }
}

.auth__link {
    text-decoration: underline
}

@media (max-width:575px) {
    .auth__link {
        font-size: .625rem
    }
}

.auth__btn {
    max-width: 14.375rem
}

.auth__btn.--modifier {
    max-width: 16.875rem;
    margin: 0 0 auto auto
}

@media (max-width:575px) {
    .auth__btn.--modifier {
        max-width: 100%
    }
}

@media (max-width:575px) {
    .auth__btn {
        max-width: 100%
    }
}

.auth__btn.submitted span {
    display: none
}

.auth__btn.submitted .loader {
    display: inline-block
}

.auth__total {
    padding: .5rem 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray)
}

.auth__total-text {
    opacity: .9;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase
}

@media (max-width:575px) {
    .auth__total-text {
        width: 100%
    }
}

.auth-payment-banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem;
    border-radius: 10px;
    background: linear-gradient(97deg, #f6cba0 2.6%, #915cf6 96.81%);
    margin-bottom: .75rem
}

.auth-payment-banner.--type-2 {
    background: linear-gradient(97deg, #d5e6f9 -11.42%, var(--blue-darck, #4267d1) 58.82%)
}

.auth-payment-banner.--type-3 {
    background: var(--Style, linear-gradient(97deg, #4267d1 2.6%, #915cf6 96.81%))
}

@media (max-width:575px) {
    .auth-payment-banner {
        row-gap: 8px
    }
}

.auth-payment-banner__label {
    display: flex !important;
    column-gap: .5rem;
    color: var(--white) !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important
}

@media (max-width:575px) {
    .auth-payment-banner__label {
        flex-wrap: wrap;
        font-size: 1rem !important
    }
}

.auth-payment-banner__label:before {
    background-color: var(--white) !important
}

.auth-payment-banner__label span:nth-child(1) {
    width: 85px
}

.auth-payment-banner__label span:nth-child(2) {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.125rem
}

@media (max-width:575px) {
    .auth-payment-banner__label span:nth-child(2) {
        font-size: 11px
    }
}

.auth-payment-banner input[type=checkbox]:checked+label:before {
    background-color: var(--light-green) !important
}

.auth-payment-banner__row {
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    column-gap: 8px
}

@media (max-width:575px) {
    .auth-payment-banner__row {
        min-width: 150px;
        width: 150px;
        align-items: initial
    }
}

@media (max-width:575px) {
    .auth-payment-banner__row.--modifier {
        min-width: 215px;
        width: 215px
    }
}

.auth-payment-banner__offer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 24px;
    border-radius: 10px;
    background: #edf3fb;
    color: var(--black);
    font-size: .75rem;
    font-weight: 500
}

@media (max-width:575px) {
    .auth-payment-banner__offer.--desktop {
        display: none
    }
}

.auth-payment-banner__offer.--mobile {
    display: none
}

@media (max-width:575px) {
    .auth-payment-banner__offer.--mobile {
        display: block;
        text-align: center
    }
}

@media (max-width:575px) {
    .auth-payment-banner__offer {
        width: 90px;
        font-size: 11px;
        margin-top: 4px
    }
}

.auth-payment-banner__text {
    color: var(--white)
}

.auth-payment-banner__text span:nth-child(1) {
    font-weight: 400;
    font-size: 1.25rem
}

@media (max-width:575px) {
    .auth-payment-banner__text .text-3 {
        font-size: 11px
    }
}

.auth-options {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
    margin-bottom: .625rem
}

.auth-options__title {
    margin-bottom: .5rem
}

@media (max-width:575px) {
    .auth-options__title {
        margin-bottom: 1rem
    }
}

.auth-options__row {
    margin: 0 -.5rem
}

@media (max-width:575px) {
    .auth-options__row {
        row-gap: .5rem
    }
}

.auth-options__column {
    width: 20%;
    padding: 0 .5rem
}

@media (max-width:575px) {
    .auth-options__column {
        width: 50%
    }
}

.auth-options__item {
    position: relative;
    padding-left: 1.5rem
}

.auth-options__item input[type=radio] {
    position: absolute;
    left: -9999%;
    visibility: hidden
}

.auth-options__item input[type=radio]+label {
    cursor: pointer
}

.auth-options__item input[type=radio]+label:before {
    content: "";
    position: absolute;
    left: 0;
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid #915cf6;
    border-radius: 3px;
    pointer-events: auto
}

.auth-options__item input[type=radio]+label:after {
    content: "\e902";
    font-family: icomoon, serif;
    position: absolute;
    left: 3px;
    top: -3px;
    font-size: .75rem;
    opacity: 0;
    color: var(--white);
    transition: var(--transition);
    pointer-events: auto
}

.auth-options__item input[type=radio]:checked+label:before {
    background-color: var(--light-green);
    border-color: var(--light-green)
}

.auth-options__item input[type=radio]:checked+label:after {
    opacity: 1
}

.auth-options__item span:nth-child(1) {
    display: block;
    font-size: 1.75rem;
    font-weight: 400;
    background: linear-gradient(97deg, #4267d1 2.6%, #915cf6 96.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.auth-options__item span:nth-child(2) {
    display: block;
    white-space: nowrap;
    line-height: 1rem;
    font-size: .625rem;
    font-style: normal;
    font-weight: 400
}

.profile {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden
}

.profile__wrapper {    
    margin-left: 5%;
    width: 95%;
    min-height: 100vh;
    padding: 2.8125rem 9.0625rem 2.8125rem 2rem;
    background: var(--gray)
}

.profile__wrapper.--modifier {
    padding-top: 1.375rem;
}

@media (max-width:1200px) {
    .profile__wrapper.--modifier {
        padding: 10.625rem 1rem 2.8125rem
    }
}

.profile__wrapper.--full-width {
    padding: 2.8125rem 2rem;
    margin-left: 5%;
    padding: .75rem 1rem 0 2rem;

}

@media (max-width:1200px) {
    .profile__wrapper.--full-width {
        padding: 10.625rem 1rem 2.8125rem
    }
}

@media (max-width:1360px) {
    .profile__wrapper.--responsive-width {
        padding: 2.8125rem 2rem
    }
}

@media (max-width:1200px) {
    .profile__wrapper.--responsive-width {
        width: 100%;
        padding: 10.625rem 1rem 2.8125rem
    }
}

@media (max-width:1360px) {
    .profile__wrapper {
        padding: 2.8125rem 1rem
    }
}

@media (max-width:1200px) {
    .profile__wrapper {
        width: 100%;
        padding: 10.625rem 1rem 2.8125rem
    }
}

.profile__title {
    padding-bottom: 1.875rem;
    border-bottom: 1px solid var(--white);
    margin-bottom: 1.5rem
}

@media (max-width:991px) {
    .profile__title {
        padding-bottom: 1rem;
        margin-bottom: 1rem
    }
}

.profile__title.--modifier {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0
}

.profile__header {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid var(--white);
    margin-bottom: 1.5rem
}

@media (max-width:991px) {
    .profile__header {
        padding-bottom: 1rem;
        margin-bottom: 1rem
    }
}

.profile__bg-caption {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none
}

.profile-trial {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    row-gap: .5rem;
    column-gap: 1rem;
    padding: .25rem 1rem;
    min-height: 4.375rem;
    color: var(--white);
    background-color: var(--red)
}

@media (max-width:575px) {
    .profile-trial__text {
        font-size: .75rem
    }
}

.profile-trial__button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: 11.25rem;
    height: 2.5rem;
    border-radius: .625rem;
    font-size: .875rem;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--white);
    transition: var(--transition)
}

@media (hover:hover) {
    .profile-trial__button:hover {
        color: var(--red);
        background-color: var(--white)
    }
}

@media (max-width:575px) {
    .profile-trial__button {
        font-size: .75rem;
        height: 1.875rem;
        width: 7.5rem
    }
}

.profile-switch {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0 .5rem auto;
    column-gap: .5rem
}

@media (max-width:575px) {
    .profile-switch {
        justify-content: space-between
    }
}

.profile-switch__item {
    display: block;
    padding: .25rem .5rem;
    border-radius: 10px;
    background: rgba(66, 103, 209, .1)
}

.profile-switch__item.--modifier label:before {
    width: 5.625rem;
    height: 2.5rem
}

@media (max-width:767px) {
    .profile-switch__item.--modifier label:before {
        width: 4.25rem;
        height: 2rem
    }
}

.profile-switch__item.--modifier label span {
    width: 5.625rem;
    height: 2.5rem;
    font-size: 1rem
}

@media (max-width:767px) {
    .profile-switch__item.--modifier label span {
        width: 4.25rem;
        height: 2rem;
        font-size: .75rem
    }
}

.profile-switch__item.--modifier input[type=checkbox]:checked+label:before {
    left: 5.625rem
}

@media (max-width:767px) {
    .profile-switch__item.--modifier input[type=checkbox]:checked+label:before {
        left: 4.25rem
    }
}

.profile-switch__item input[type=checkbox] {
    position: absolute;
    left: -9999%;
    visibility: hidden
}

.profile-switch__item label {
    position: relative;
    z-index: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    flex-flow: row nowrap
}

.profile-switch__item label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 4.25rem;
    height: 2rem;
    transition: var(--transition);
    border-radius: 10px;
    background: var(--blue-dark)
}

.profile-switch__item label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 2rem;
    font-size: .75rem;
    font-weight: 500;
    transition: var(--transition)
}

.profile-switch__item input[type=checkbox]+label span:nth-child(1) {
    color: var(--white)
}

.profile-switch__item input[type=checkbox]:checked+label:before {
    left: 4.25rem
}

.profile-switch__item input[type=checkbox]:checked+label span:nth-child(1) {
    color: var(--black)
}

.profile-switch__item input[type=checkbox]:checked+label span:nth-child(2) {
    color: var(--white)
}

.profile-form {
    border-bottom: 1px solid var(--white);
    margin-bottom: 2rem
}

.profile-form.--modifier {
    border-bottom: 0
}

.profile-form__btn-wrapper {
    display: flex;
    justify-content: flex-end;
    column-gap: .5rem
}

.profile-form__btn {
    align-self: flex-end;
    max-width: 18.75rem;
    width: 100%
}

@media (max-width:991px) {
    .profile-form__btn {
        max-width: 100%
    }
}

.profile-banner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.profile-banner {
    margin-bottom: 1.5rem
}

.profile-banner__title {
    margin-bottom: 1rem
}

.profile-banner__block-title {
    display: flex;
    align-items: center;
    column-gap: 12px
}

@media (max-width:991px) {
    .profile-banner__block-title {
        flex-flow: row wrap
    }
}

.profile-banner__block-title .heading-1 {
    width: 165px
}

@media (max-width:991px) {
    .profile-banner__block-title .heading-1 {
        width: 100%
    }
}

@media (max-width:575px) {
    .profile-banner__block-title .heading-1 {
        font-size: 20px
    }
}

@media (max-width:991px) {
    .profile-banner__block-title {
        font-size: 1.5rem
    }

    .profile-banner__block-title .heading-1 {
        font-size: 1.5rem
    }
}

@media (max-width:767px) {
    .profile-banner__block-title {
        width: 30%;
        font-size: 1.25rem;
        text-transform: none
    }
}

@media (max-width:575px) {
    .profile-banner__block-title {
        width: 50%
    }
}

.profile-banner__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    padding: 0 .5rem 0 1.5rem;
    min-height: 5rem;
    color: var(--white);
    border-radius: 10px;
    background: var(--1, linear-gradient(97deg, #f6cba0 2.6%, #915cf6 96.81%))
}

@media (max-width:767px) {
    .profile-banner__block {
        flex-flow: row wrap
    }
}

@media (max-width:575px) {
    .profile-banner__block {
        padding: .25rem .5rem
    }
}

.profile-banner__block+.profile-banner__block {
    margin-top: 8px
}

.profile-banner__block.--type-1 {
    background: linear-gradient(97deg, #d5e6f9 -11.42%, var(--blue-darck, #4267d1) 58.82%)
}

.profile-banner__block.--type-2 {
    background: var(--Style, linear-gradient(97deg, #4267d1 2.6%, #915cf6 96.81%))
}

.profile-banner__price {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.75rem;
    column-gap: 1rem
}

@media (max-width:991px) {
    .profile-banner__price {
        font-size: 1.3125rem
    }
}

@media (max-width:767px) {
    .profile-banner__price {
        justify-content: flex-end;
        width: 70%;
        white-space: nowrap;
        font-size: 1.25rem
    }
}

@media (max-width:575px) {
    .profile-banner__price {
        justify-content: flex-end;
        width: 50%;
        white-space: nowrap;
        font-size: 1.125rem;
        flex-wrap: wrap
    }

    .profile-banner__price p {
        width: 100%;
        text-align: right
    }

    .profile-banner__price p+p {
        margin-bottom: 4px
    }
}

.profile-banner__offer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 24px;
    border-radius: 10px;
    background: #edf3fb;
    color: var(--black);
    font-size: .75rem;
    font-weight: 500
}

@media (max-width:575px) {
    .profile-banner__offer {
        width: 90px
    }
}

.profile-banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    width: 8.125rem;
    height: 3.125rem;
    border-radius: 10px;
    border: 1px solid var(--white, #fff);
    background-color: transparent;
    transition: var(--transition)
}

@media (max-width:767px) {
    .profile-banner__btn {
        width: 7.1875rem;
        height: 1.875rem;
        font-size: .875rem
    }
}

@media (hover:hover) {
    .profile-banner__btn:hover {
        color: var(--purple);
        background-color: var(--white)
    }
}

.profile-credits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .25rem;
    border-top: 1px solid var(--white);
    margin-bottom: 1rem
}

@media (max-width:767px) {
    .profile-credits {
        flex-flow: row wrap;
        padding-top: 1rem;
        margin-bottom: .5rem
    }
}

.profile-credits__left {
    max-width: 18.75rem
}

@media (max-width:767px) {
    .profile-credits__left {
        width: 100%;
        max-width: 100%
    }
}

.profile-credits__right {
    height: 6.875rem;
    width: 31.25rem;
    column-gap: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(97deg, #f6cba0 2.6%, #915cf6 96.81%)
}

@media (max-width:767px) {
    .profile-credits__right {
        height: 4.6875rem;
        width: 100%;
        margin-top: 1rem;
        font-size: 1.25rem
    }
}

.profile-credits__title {
    margin-bottom: 1rem
}

@media (max-width:767px) {
    .profile-credits__title {
        margin-bottom: .25rem
    }
}

.profile-credits__count {
    font-size: 2.625rem;
    font-weight: 400
}

@media (max-width:767px) {
    .profile-credits__count {
        font-size: 1.75rem
    }
}

.profile-options {
    padding: .75rem 1rem;
    border-radius: 10px;
    background: var(--white);
    margin-bottom: 2rem
}

.profile-options__row {
    margin: 0 -.5rem
}

@media (max-width:575px) {
    .profile-options__row {
        row-gap: .5rem
    }
}

.profile-options__column {
    width: 20%;
    display: flex;
    align-items: center;
    padding: 0 .5rem
}

@media (max-width:575px) {
    .profile-options__column {
        width: 50%
    }
}

@media (max-width:575px) {
    .profile-options__column:nth-last-child(1) {
        width: 100%
    }
}

.profile-options__item {
    position: relative
}

.profile-options__item input[type=radio] {
    position: absolute;
    left: -9999%;
    visibility: hidden
}

.profile-options__item input[type=radio]+label {
    display: block;
    cursor: pointer;
    padding-left: 2rem
}

.profile-options__item input[type=radio]+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: .625rem;
    width: 1.375rem;
    height: 1.375rem;
    border: 2px solid #915cf6;
    border-radius: 3px
}

.profile-options__item input[type=radio]+label:after {
    content: "\e902";
    font-family: icomoon, serif;
    position: absolute;
    left: 4px;
    top: 10px;
    font-size: 14px;
    opacity: 0;
    color: var(--white);
    transition: var(--transition)
}

.profile-options__item input[type=radio]:checked+label:before {
    background-color: var(--light-green);
    border-color: var(--light-green)
}

.profile-options__item input[type=radio]:checked+label:after {
    opacity: 1
}

.profile-options__item span:nth-child(1) {
    display: block;
    font-size: 2.625rem;
    line-height: 2.625rem;
    font-weight: 400;
    background: linear-gradient(97deg, #4267d1 2.6%, #915cf6 96.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media (max-width:575px) {
    .profile-options__item span:nth-child(1) {
        font-size: 1.75rem;
        line-height: 1.75rem
    }
}

.profile-options__item span:nth-child(2) {
    display: block;
    white-space: nowrap;
    line-height: 1rem;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400
}

@media (max-width:575px) {
    .profile-options__item span:nth-child(2) {
        font-size: .625rem
    }
}

.profile-factures__title {
    margin-bottom: 1rem
}

@media (max-width:767px) {
    .profile-factures__title {
        margin-bottom: .5rem
    }
}

.profile-factures__head {
    display: grid;
    grid-template-columns: 25% 25% 35% 15%;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: .375rem
}

@media (max-width:767px) {
    .profile-factures__head {
        display: none
    }
}

.profile-factures__row {
    display: grid;
    grid-template-columns: 25% 25% 35% 15%;
    align-items: center;
    height: 3.125rem;
    padding: 0 1rem;
    border-radius: 10px;
    background: var(--white);
    margin-bottom: .25rem
}

@media (max-width:767px) {
    .profile-factures__row {
        height: 9.375rem;
        grid-template-columns: 1fr;
        padding: .5rem .75rem
    }
}

@media (max-width:767px) {
    .profile-factures__column:before {
        position: absolute;
        content: attr(data-title);
        display: inline-block;
        color: var(--black);
        font-size: 1rem;
        opacity: .9;
        font-weight: 400;
        line-height: normal
    }
}

.profile-factures__text {
    font-weight: 500
}

@media (max-width:767px) {
    .profile-factures__text {
        text-align: right;
        padding-left: 6.25rem
    }
}

.profile-factures__download {
    display: block;
    margin: auto;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    color: var(--blue-dark);
    font-size: 1.25rem;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 84, 82, .08);
    transition: var(--transition)
}

@media (hover:hover) {
    .profile-factures__download:hover {
        color: var(--white);
        background-color: var(--blue-dark)
    }
}

@media (max-width:767px) {
    .profile-factures__download {
        margin: 0 0 0 auto
    }
}

.fie-upload-label {
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    column-gap: .5rem;
    border-radius: 10px;
    color: var(--blue-dark);
    border: 1px solid rgba(162, 199, 252, .3);
    background: var(--white);
    transition: var(--transition)
}

.fie-upload-label:hover {
    background: rgba(162, 199, 252, .3)
}

.fie-upload-label+.fie-upload-label {
    margin-top: .25rem
}

.file-upload-wrapper {
    margin-bottom: 1.5rem
}

.file-upload-wrapper__title {
    color: var(--blue-dark)
}

.file-upload-wrapper #drop-area {
    width: 100%;
    height: 16.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border-radius: 1.25rem;
    border: 1px solid var(--gray);
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    transition: var(--transition)
}

.file-upload-wrapper #drop-area.dragover {
    border-color: var(--blue-dark);
    background-color: var(--gray)
}

.file-upload-wrapper #file-preview {
    margin-top: 1rem
}

.file-upload-wrapper .file-card {
    display: inline-block;
    padding: .625rem;
    border: 1px solid var(--blue-dark);
    border-radius: 5px;
    margin-right: .5rem;
    margin-bottom: .5rem;
    text-align: center;
    width: 6.25rem
}

.file-upload-wrapper .file-card img {
    width: 3.125rem;
    height: 3.125rem;
    object-fit: cover
}

.file-upload-wrapper .file-card p {
    font-size: .75rem;
    margin-top: .25rem
}

.file-upload-wrapper .file-card button {
    width: 2rem;
    height: 2rem;
    text-align: center;
    cursor: pointer;
    padding: 0;
    border: 0;
    color: var(--blue-dark);
    font-size: 1.125rem;
    line-height: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    transition: var(--transition)
}

.file-upload-wrapper .file-card button:hover {
    color: var(--white);
    background-color: var(--blue-dark)
}

.file-upload-wrapper .file-card button:after {
    content: "\e911";
    font-family: icomoon, serif
}

.patient-card {
    border-radius: 10px;
    border: 1px solid var(--blue-dark);
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    margin-bottom: 1rem
}

.patient-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    height: 3.75rem;
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

@media (max-width:575px) {
    .patient-card__header {
        padding: 1rem .5rem
    }
}

.patient-card__body {
    padding: 1rem
}

@media (max-width:575px) {
    .patient-card__body {
        padding: 1rem .5rem
    }
}

.patient-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px
}

@media (max-width:991px) {
    .patient-card__list {
        margin-bottom: 1rem
    }
}

.patient-card__text {
    font-weight: 500
}

.patient-card p {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    row-gap: .25rem;
    column-gap: .25rem
}

.patient-card p img {
    display: block;
    max-width: 100%
}

.profile-tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: 0;
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    background-color: var(--blue-dark);
    transition: var(--transition)
}

.profile-tool-btn.--w-28 {
    min-width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    font-size: 1rem
}

.profile-tool-btn.--w-32 {
    min-width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 1.125rem
}

.profile-tool-btn.--reverse {
    color: var(--blue-dark);
    background-color: var(--white)
}

@media (hover:hover) {
    .profile-tool-btn.--reverse:hover {
        color: var(--white);
        background-color: var(--blue-dark)
    }
}

@media (hover:hover) {
    .profile-tool-btn:hover {
        color: var(--blue-dark);
        background-color: var(--white)
    }
}

.profile-files-header {
    display: grid;
    grid-template-columns: auto 1fr .5fr .5fr;
    row-gap: .75rem;
    column-gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width:1380px) {
    .profile-files-header {
        grid-template-columns: auto auto 290px 50px
    }
}

@media (max-width:991px) {
    .profile-files-header {
        grid-template-rows: auto auto auto;
        grid-template-columns: auto 50px
    }
}

.profile-files-header.--modifier {
    grid-template-columns: auto 390px 50px
}

@media (max-width:991px) {
    .profile-files-header.--modifier {
        grid-template-rows: auto auto auto;
        grid-template-columns: auto;
        align-items: center
    }
}

@media (max-width:991px) {
    .profile-files-header__title {
        grid-column: 1/-1
    }
}

.profile-files-header .btn-primary {
    font-size: .875rem
}

@media (max-width:991px) {
    .profile-files-header .btn-primary {
        grid-column: 1
    }
}

.profile-files-header__filter {
    position: relative
}

@media (max-width:991px) {
    .profile-files-header__filter {
        grid-column: 2
    }
}

.profile-files-header__filter span {
    z-index: 1;
    position: absolute;
    right: -.25rem;
    top: -.25rem;
    width: 1.25rem;
    height: 1.25rem;
    font-size: .875rem;
    text-align: center;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 50%;
    background-color: var(--blue-dark)
}

.profile-files-header-search {
    position: relative;
    z-index: 9;
    /* margin-top: -0.25rem; */
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--white);
    margin-bottom: .625rem;
}

.profile-files-header-search.active .profile-files-header-search__content {
    display: block
}

.profile-files-header-search .form-group {
    z-index: 2
}

.profile-files-header-search .form-input {
    padding: 1rem
}

.profile-files-header-search__content {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    border-radius: 10px;
    background-color: var(--white);
    padding: 4.125rem 1rem 1rem;
    border-top: 1px solid var(--gray);
    border-left: 1px solid var(--blue-dark);
    border-right: 1px solid var(--blue-dark);
    border-bottom: 1px solid var(--blue-dark)
}

.profile-files-header-search__row {
    margin-bottom: 1rem
}

.profile-files-header-search__row.--green .profile-files-header-search__title {
    color: var(--light-green)
}

.profile-files-header-search__row.--green .profile-files-header-search__text p:nth-child(1)>span:nth-child(2) {
    color: var(--light-green)
}

.profile-files-header-search__row.--red .profile-files-header-search__title {
    color: var(--red-1)
}

.profile-files-header-search__row.--red p:nth-child(1)>span:nth-child(2) {
    color: var(--red-1)
}

.profile-files-header-search__row.--blue .profile-files-header-search__title {
    color: var(--light-blue)
}

.profile-files-header-search__row.--blue p:nth-child(1)>span:nth-child(2) {
    color: var(--light-blue)
}

.profile-files-header-search__title {
    margin-bottom: .5rem
}

.profile-files-header-search__text {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    column-gap: 3.75rem;
    margin-bottom: .5rem
}

.profile-files-header-search__text p {
    width: calc(50% - 30px)
}

@media (max-width:767px) {
    .profile-files-header-search__text p {
        width: 100%
    }
}

.profile-files-header-search__text p a {
    display: grid;
    align-items: center;
    grid-template-columns: 200px auto
}

@media (max-width:767px) {
    .profile-files-header-search__text p a {
        grid-template-columns: 50% 50%
    }
}

.profile-files-header-search__text p span+span {
    margin-left: 1.5rem
}

.profile-files-header-search__text p span[style=red] {
    color: var(--red-1)
}

.profile-files-header-search__text p span[style=blue] {
    color: var(--light-blue)
}

.profile-files-header-search__text p span[style=green] {
    color: var(--light-green)
}

.profile-files-error {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: var(--red);
    column-gap: .25rem;
    margin-bottom: 1rem
}

@media (max-width:767px) {
    .profile-files-error {
        align-items: initial
    }
}

.profile-files-error .icon-error {
    min-width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--red);
    text-align: center;
    color: #fff;
    font-size: 1.3125rem;
    line-height: 1.75rem
}

.profile-files-info {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 0 auto;
    max-width: 360px;
    padding: 0 .5rem;
    height: 3.125rem;
    border-radius: 10px;
    border: 1px solid rgba(162, 199, 252, .3);
    background: var(--white)
}

@media (max-width:991px) {
    .profile-files-info {
        justify-content: center;
        grid-column: 1/-1
    }
}

.profile-files-info__item {
    position: relative;
    width: 100%;
    padding: 0 .25rem;
    display: flex;
    column-gap: 2px;
    font-weight: 500;
    justify-content: center;
    align-items: flex-end
}

.profile-files-info__item+.profile-files-info__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 2.5rem;
    background-color: rgba(162, 199, 252, .3)
}

.profile-files-info__item span:nth-child(1) {
    line-height: 1
}

.profile-files-info__item span.--green {
    color: var(--green)
}

.profile-files-info__item span.--blue {
    color: var(--light-blue)
}

.profile-files-info__item span.--red {
    color: var(--purple)
}

.insurance-upload {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid var(--gray);
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    margin-bottom: 1.5rem
}

.insurance-upload__column {
    position: relative;
    height: 25rem;
    width: calc(50% - 4px);
    border-radius: 10px
}

@media (max-width:767px) {
    .insurance-upload__column {
        width: 100%;
        height: 18.4375rem
    }
}

.insurance-upload__caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
    font-size: 5rem
}

.insurance-upload__count {
    position: absolute;
    left: 2rem;
    top: 2rem;
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    opacity: .5
}

@media (max-width:767px) {
    .insurance-upload__count {
        font-size: 1.75rem;
        left: 1rem;
        top: 1rem
    }
}

.insurance-upload .upload-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray);
    transition: var(--transition)
}

.insurance-upload .upload-area.dragging {
    background: var(--blue)
}

.insurance-upload .file-input {
    visibility: hidden
}

.insurance-upload .file-preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}

.insurance-upload .file-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.insurance-upload .delete-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--blue-dark);
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    transition: var(--transition)
}

@media (max-width:767px) {
    .insurance-upload .delete-btn {
        bottom: .5rem;
        right: .5rem
    }
}

.insurance-upload .delete-btn:hover {
    background-color: var(--gray)
}

.profile-filter {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 21.5625rem;
    z-index: 10;
    border-radius: 10px;
    border: 1px solid var(--light-blue-30, rgba(162, 199, 252, .3));
    background: var(--white, #fff)
}

.profile-filter.active {
    display: block
}

.profile-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.4375rem;
    padding: 0 1rem;
    border-bottom: 1px solid var(--blue)
}

.profile-filter__header i {
    font-size: 1.25rem;
    color: var(--blue-dark)
}

.profile-filter__content {
    padding: 1rem
}

.profile-filter__content ul li {
    margin-bottom: .625rem
}

.profile-filter__content ul li ul {
    padding: .75rem 0 0 1.5rem
}

.email-templates {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.5rem 0;
    border-radius: 20px;
    border: 1px solid var(--blue, #a2c7fc);
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08)
}

.email-templates:before {
    content: "";
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 4.375rem;
    left: 45%;
    background: rgba(66, 103, 209, .3)
}

@media (max-width:767px) {
    .email-templates:before {
        display: none
    }
}

.email-templates__left {
    width: 45%
}

@media (max-width:767px) {
    .email-templates__left {
        width: 100%
    }
}

.email-templates__right {
    width: 55%
}

@media (max-width:767px) {
    .email-templates__right {
        width: 100%
    }
}

.email-templates__footer {
    width: 100%;
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid rgba(66, 103, 209, .3)
}

@media (max-width:767px) {
    .email-templates__footer {
        justify-content: center
    }
}

.email-templates__title {
    margin-bottom: 2rem
}

.email-templates__row {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -.5rem
}

.email-templates__row:before {
    content: "";
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 1.875rem;
    left: 50%;
    background: rgba(66, 103, 209, .3)
}

@media (max-width:991px) {
    .email-templates__row:before {
        display: none
    }
}

.email-template {
    width: 50%;
    padding: 0 .5rem;
    margin-bottom: 1.875rem
}

@media (max-width:991px) {
    .email-template {
        width: 100%
    }
}

.email-template__title {
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    padding: .25rem .75rem;
    background: rgba(66, 103, 209, .1);
    margin-bottom: 1.5rem
}

.email-template__item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem
}

.email-template__item .text-row {
    cursor: pointer
}

.email-template__item span {
    font-size: .625rem;
    line-height: normal
}

.email-template__item span:nth-child(2) {
    color: var(--blue-dark)
}

.profile-form-upload-group {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    appearance: none;
    padding: 0 1rem;
    width: 100%;
    height: 3.125rem;
    border-radius: .625rem;
    outline: 0;
    font-style: normal;
    font-weight: 400;
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    line-height: 1.875rem;
    color: var(--black);
    background-color: #fff;
    transition: color .5s cubic-bezier(.23, 1, .32, 1), border .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1);
    border: 1px solid rgba(162, 199, 252, .3)
}

.profile-form-upload-group:active,
.profile-form-upload-group:hover {
    border: 1px solid var(--blue-dark, #4267d1);
    background-color: var(--white)
}

.profile-form-upload-group input[type=file] {
    display: none
}

.profile-form-upload-group img {
    display: none;
    width: 20px;
    height: 20px;
    object-fit: contain
}

.profile-form-upload-group__remove-btn {
    display: none;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%)
}

.profile-form-upload-group__file-display {
    position: relative;
    display: flex;
    column-gap: 4px;
    align-items: center;
    justify-content: center;
    max-width: 225px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--blue-dark);
    font-size: 14px;
    padding: 2px 16px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .1)
}

.patients-wrapper {
    position: relative;
    /* border-radius: 15px; */
}

.patients-table {
    font-size: 0.8rem;
    /* padding: 1rem; */
    /* width: 54%; */
    /* margin-bottom: 2.5rem; */
    /* border-radius: 18px; */
}

.patients-table tr {
    /* display: flex; */
    /* align-items: center; */
    /* background: var(--white); */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08); */
    /* margin-bottom: .25rem; */
}

tbody tr.clickable-row {
    border: 1px solid #e3e3e3;
}

@media (max-width:767px) {
    .patients-table tr {
        flex-flow: row wrap
    }
}

.patients-table tr td {
    padding: .75rem 1rem
}

@media (max-width:767px) {
    .patients-table tr td {
        display: block;
        width: 100% !important;
        padding: .5rem 1rem
    }
}

.patients-table tr td:nth-child(1) {
    width: 30%
}

@media (max-width:767px) {
    .patients-table tr td:nth-child(1) {
        padding-top: 1rem
    }
}

.patients-table tr td:nth-child(2) {
    width: 20%
}

.patients-table tr td:nth-child(3) {
    width: 20%
}

.patients-table tr td:nth-child(4) {
    width: 15%
}

.patients-table tr td:nth-child(5) {
    width: 15%
}

@media (max-width:767px) {
    .patients-table tr td:nth-child(5) {
        padding-bottom: 1rem
    }
}

.patients-table__status {
    position: relative;
    padding-left: .875rem;
    font-size: .9375rem
}

@media (max-width:767px) {
    .patients-table__status {
        font-size: 1rem
    }
}

.patients-table__status:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .625rem;
    height: .625rem;
    border-radius: 50%;
    background-color: currentColor
}

.patients-table__status.--success {
    color: var(--light-green)
}

.patients-table__buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: .5rem
}

@media (max-width:767px) {
    .patients-table__buttons {
        justify-content: flex-start
    }
}

.patients-table__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: 0;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    color: var(--blue-dark);
    font-size: 1.25rem;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 84, 82, .08);
    transition: var(--transition)
}

.patients-table__btn.--small {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    font-size: 1.125rem
}

@media (hover:hover) {
    .patients-table__btn:hover {
        color: var(--white) !important;
        background-color: var(--blue-dark) !important
    }
}

.patient-insurance {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    margin-bottom: 2rem
}

.patient-insurance .slick-arrow[aria-disabled=true] {
    display: none !important
}

.patient-insurance .slick-arrow {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    color: var(--blue-dark);
    text-align: center;
    border-radius: 50%;
    font-size: 0;
    z-index: 3;
    background-color: var(--white);
    transition: var(--transition)
}

@media (hover:hover) {
    .patient-insurance .slick-arrow:hover {
        color: var(--white);
        background-color: var(--blue-dark)
    }
}

.patient-insurance .slick-arrow:before {
    display: none
}

.patient-insurance .slick-arrow:after {
    font-family: icomoon, serif;
    font-size: 1rem
}

.patient-insurance .slick-next {
    right: .5rem
}

.patient-insurance .slick-next:after {
    content: "\e917"
}

.patient-insurance .slick-prev {
    left: .5rem
}

.patient-insurance .slick-prev:after {
    content: "\e919"
}

.patient-insurance__block {
    position: relative;
    height: 17.1875rem;
    overflow: hidden;
    margin: 1px;
    border-radius: 10px
}

.patient-insurance__block.--danger {
    border: 2px solid var(--red-1)
}

@media (max-width:575px) {
    .patient-insurance__block {
        height: 22.5rem
    }
}

.patient-insurance__block-empty {
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: .7
}

.patient-insurance__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.patient-insurance__buttons {
    position: absolute;
    right: .5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    z-index: 3;
    column-gap: .5rem
}

@media (max-width:575px) {
    .patient-insurance__buttons {
        left: .5rem;
        justify-content: center
    }
}

.patient-insurance__expired {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    right: 24px;
    top: 20px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    cursor: pointer
}

@media (max-width:575px) {
    .patient-insurance__expired {
        width: 2.8125rem;
        height: 2.8125rem;
        right: 8px;
        top: 16px;
        font-size: 21px
    }
}

.patient-insurance__expired:hover:before {
    content: attr(data-tooltip);
    position: absolute;
    color: var(--red-1);
    font-size: 12px;
    line-height: 16px;
    right: 30px;
    top: -10px;
    width: 380px;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

@media (max-width:575px) {
    .patient-insurance__expired:hover:before {
        width: 250px
    }
}

.profile-patients-header {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    justify-content: space-between;
}

@media (max-width:991px) {
    .profile-patients-header {
        margin-bottom: 6.25rem
    }
}

@media (max-width:767px) {
    .profile-patients-header {
        margin-bottom: 1.5rem
    }
}

.profile-patients-header .btn {
    margin-right: 310px;
}

@media (max-width:991px) {
    .profile-patients-header .btn {
        margin-right: 0
    }
}

.files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.files-header__title {
    display: flex;
    column-gap: 1rem;
    align-items: center
}

@media (max-width:575px) {
    .files-header__title {
        column-gap: .25rem
    }
}

.files-header__buttons {
    display: flex;
    column-gap: .25rem;
    align-items: center
}

@media (max-width:575px) {
    .files-header .profile-tool-btn {
        width: 1.75rem;
        height: 1.75rem;
        font-size: .875rem
    }
}

.files-nav {
    margin-bottom: .375rem
}

.files-nav__list {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 1.5rem;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: .25rem;
    border-radius: 10px;
    background: var(--blue-darck-10, rgba(66, 103, 209, .1));
    -ms-overflow-style: none;
    scrollbar-width: none
}

.files-nav__list::-webkit-scrollbar {
    display: none;
    width: 0;
    background: 0 0
}

.files-nav__list::-webkit-scrollbar-thumb {
    display: none;
    background: 0 0
}

.files-nav__item {
    opacity: .3;
    white-space: nowrap;
    cursor: pointer;
    padding: .5rem .75rem;
    transition: opacity, background-color, color .3s ease;
    border-radius: 5px
}

@media (hover:hover) {
    .files-nav__item:hover {
        opacity: 1
    }
}

.files-nav__item.active {
    opacity: 1;
    color: var(--white);
    background-color: var(--blue-dark)
}

.files-nav__item p:nth-child(2) {
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 4px
}

.files-wrapper {
    padding: .5rem .25rem;
    border-radius: 10px;
    border: 1px solid var(--blue-dark);
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 84, 82, .08)
}

.files-wrapper__row {
    margin: 0 -.25rem
}

.files-wrapper__column {
    padding: 0 .25rem
}

.files-wrapper__column-inner {
    height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(162, 199, 252, .3);
    background: var(--white)
}

.files-action-row {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    column-gap: .5rem;
    row-gap: .5rem;
    justify-content: flex-end;
    padding: .25rem .75rem;
    margin-bottom: .25rem;
    border-radius: 10px;
    background: rgba(66, 103, 209, .1)
}

.files-action-row__item {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: .25rem;
    flex-wrap: nowrap;
    font-size: .875rem;
    padding: 0 2rem;
}

@media (max-width:575px) {
    .files-action-row__item {
        width: 100%
    }
}

.files-action-row__item label {
    white-space: nowrap
}

.files-action-row__tooltip {
    position: absolute;
    background: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 10px;
    top: -30px;
    text-align: center;
    left: 50%;
    line-height: 16px;
    z-index: 9;
    width: 140px;
    transform: translateX(-50%);
    display: none;
    pointer-events: none;
    transition: opacity .3s ease
}

.files-action-row__label:hover .files-action-row__tooltip {
    display: block
}

.files-action-row__link {
    display: flex;
    align-items: center;
    padding: 2px 6px;
    column-gap: 4px;
    font-weight: 500;
    border-radius: 12px;
    font-size: 12px
}

.files-action-row__link i {
    font-size: 16px;
    color: var(--dark)
}

.files-action-row__link.--tool-tip:hover:before {
    content: attr(data-tooltip);
    position: absolute;
    background: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 10px;
    top: -30px;
    text-align: center;
    left: 50%;
    line-height: 16px;
    z-index: 9;
    width: 140px;
    transform: translateX(-50%)
}

.files-credits {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: .3125rem .75rem;
    row-gap: .25rem;
    min-height: 2.5rem;
    border-radius: 10px;
    margin-bottom: .5rem;
    background: linear-gradient(97deg, #f6cba0 2.6%, #915cf6 96.81%)
}

.files-credits__button {
    width: 13.4375rem;
    height: 1.875rem;
    font-size: 1rem
}

.files-upload-block__header {
    display: flex;
    padding: 0 1rem;
    align-items: center;
    height: 4.1875rem;
    border-bottom: 1px solid rgba(66, 103, 209, .3);
    margin-bottom: 1rem
}

.files-upload-block__info {
    display: flex;
    height: 5.625rem;
    padding: 1rem;
    margin: 0 .5rem .5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--blue-dark);
    text-align: center;
    border: 1px solid rgba(162, 199, 252, .3);
    background: var(--white)
}

.files-upload-box {
    position: relative;
    overflow: hidden;
    height: 13.4375rem;
    border-radius: 10px;
    background: var(--gray);
    margin: 0 .5rem .5rem
}

.files-upload-box.dragover {
    background-color: rgba(66, 103, 209, .1)
}

.files-upload-box__placeholder {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark)
}

.files-upload-box__preview {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    object-fit: contain;
    transform: translate(-50%, -50%)
}

.files-upload-box__actions {
    position: absolute;
    bottom: .5rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5rem
}

.files-upload-box__actions .btn {
    display: flex;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    color: var(--blue-dark);
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    transition: var(--transition)
}

.files-upload-box__actions .btn:hover {
    color: var(--white);
    background-color: var(--blue-dark)
}

.files-tabs .dataTables_wrapper .top {
    display: none
}

.files-tabs__nav {
    padding: .5rem;
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

.files-tabs__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .3125rem 1rem;
    border-radius: 10px;
    background: rgba(66, 103, 209, .1)
}

.files-tabs__item {
    max-width: 125px;
    width: 100%
}

.files-tabs__link {
    display: block;
    max-width: 125px;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    color: rgba(0, 0, 0, .3);
    padding: .5rem;
    transition: var(--transition);
    background-color: transparent
}

@media (max-width:575px) {
    .files-tabs__link {
        padding: .25rem .5rem;
        font-size: .875rem
    }
}

.files-tabs__link.active {
    color: var(--white);
    background-color: var(--blue-dark)
}

.files-tabs__link i {
    position: absolute;
    transform: translateX(2px);
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    background: var(--red);
    font-style: normal;
    font-size: 10px;
    color: var(--white)
}

.files-tabs__tab {
    padding: 1rem 0
}

.files-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .5rem 1rem;
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

.files-table-header__title {
    display: flex;
    align-items: center;
    column-gap: .5rem
}

.files-table-header__form {
    width: 15.625rem
}

@media (max-width:575px) {
    .files-table-header__form {
        width: 10.9375rem
    }
}

.files-table-header__form .form-select,
.files-table-header__form .select2-container--default .select2-selection--multiple,
.select2-container--default .files-table-header__form .select2-selection--multiple {
    font-size: .875rem;
    height: 2.1875rem
}

.files-table {
    font-weight: 500
}

.files-table.--notes tr td:nth-child(1) {
    width: 15%
}

.files-table.--notes tr td:nth-child(2) {
    width: 15%
}

.files-table.--notes tr td:nth-child(3) {
    width: 10%
}

.files-table.--notes tr td:nth-child(4) {
    width: 50%
}

.files-table.--emails tr {
    cursor: pointer;
    transition: var(--transition)
}

.files-table.--emails tr:hover {
    background: rgba(66, 103, 209, .1)
}

.files-table.--emails tr td:nth-child(1) {
    width: 20%
}

.files-table.--emails tr td:nth-child(2) {
    width: 20%;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.files-table.--emails tr td:nth-child(3) {
    width: 30%
}

.files-table.--emails tr td:nth-child(4) {
    width: 15%
}

.files-table.--emails tr td:nth-child(5) {
    width: 15%;
    word-wrap: break-word
}

.files-table.--actions tr td:nth-child(1) {
    width: 28%
}

.files-table.--actions tr td:nth-child(2) {
    width: 20%
}

.files-table.--actions tr td:nth-child(3) {
    width: 35%
}

.files-table.--actions tr td:nth-child(4) {
    width: 17%
}

.files-table.--reminder tr td:nth-child(1) {
    width: 30%
}

.files-table.--reminder tr td:nth-child(2) {
    width: 30%
}

.files-table.--reminder tr td:nth-child(3) {
    width: 30%
}

.files-table.--reminder tr td:nth-child(4) {
    width: 10%
}

.files-table tr {
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

@media (max-width:767px) {
    .files-table tr {
        flex-flow: row wrap
    }
}

.files-table tr td {
    position: relative;
    padding: .5rem
}

@media (max-width:767px) {
    .files-table tr td {
        display: block;
        width: 100% !important;
        padding: .5rem 1rem
    }
}

.files-table tr td.dataTables_empty {
    width: 100% !important
}

.files-table tr td:hover>.action_message_full {
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin: auto;
    width: 300px;
    font-size: 14px;
    padding: 16px 8px;
    z-index: 9;
    border: 1px solid #dbdaee;
    border-radius: 4px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.files-column-wrapper {
    display: flex;
    flex-flow: row nowrap;
    margin: 0 -.25rem
}

@media (max-width:991px) {
    .files-column-wrapper {
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .files-column-wrapper::-webkit-scrollbar {
        display: none;
        width: 0;
        background: 0 0
    }

    .files-column-wrapper::-webkit-scrollbar-thumb {
        display: none;
        background: 0 0
    }
}

.files-column-wrapper.--modifier {
    overflow: auto
}

.files-column {
    width: 33.3333%;
    padding: 0 .25rem
}

@media (max-width:991px) {
    .files-column {
        min-width: 21.5625rem
    }
}

.files-column.--modifier {
    min-width: 16.6666666667% !important
}

@media (max-width:1400px) {
    .files-column.--modifier {
        min-width: 33.3333% !important
    }
}

@media (max-width:991px) {
    .files-column.--modifier {
        min-width: 21.5625rem !important
    }
}

.files-column__inner {
    position: relative;
    min-height: 28.5rem;
    border: 1px solid rgba(162, 199, 252, .3);
    background: rgba(255, 255, 255, .7);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.files-column-header {
    border-top: 3px solid;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-color: rgba(162, 199, 252, .3);
    margin-bottom: .25rem
}

.files-column-header.--green {
    border-top-color: var(--light-green)
}

.files-column-header.--blue {
    border-top-color: var(--light-blue)
}

.files-column-header.--red {
    border-top-color: var(--purple)
}

.files-column-header__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
    padding: 0 .75rem
}

.files-column-header__head .row {
    column-gap: .625rem
}

.files-column-header__head .row label {
    font-size: 1rem
}

.files-column-header__body {
    display: none
}

.files-column-header__body.--modifier {
    position: relative
}

.files-column-header__inner {
    display: grid;
    border-top: 1px solid rgba(162, 199, 252, .3);
    padding: .5rem .75rem 1rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
    row-gap: .75rem;
    min-height: 100px
}

.files-column-header__inner.--modifier {
    display: flex;
    flex-flow: row nowrap;
    min-height: auto;
    overflow: hidden;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 8px;
    position: relative;
    white-space: nowrap
}

.files-column-header__inner-column {
    width: 16.6666666667%;
    min-width: 16.6666666667%;
    padding: 0 12px
}

@media (max-width:1400px) {
    .files-column-header__inner-column {
        width: 33.33333%;
        min-width: 33.33333%
    }
}

@media (max-width:991px) {
    .files-column-header__inner-column {
        min-width: 21.5625rem !important
    }
}

.files-column-header__scroll-left,
.files-column-header__scroll-right {
    display: none;
    position: absolute;
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    height: 30px;
    line-height: 30px;
    color: var(--white);
    background: #f9f7fa
}

.files-column-header__scroll-left:after,
.files-column-header__scroll-right:after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--blue-dark)
}

.files-column-header__scroll-left {
    left: 0
}

.files-column-header__scroll-right {
    right: 0
}

.files-column-header__toggle {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    border: 0;
    font-size: .5rem;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: var(--transition)
}

.files-column-header__toggle i {
    position: relative;
    transition: var(--transition)
}

.files-column-header__toggle.active i {
    transform: scale(-1)
}

@media (hover:hover) {
    .files-column-header__toggle:hover {
        color: var(--white);
        background-color: var(--black)
    }
}

.files-column-header__bell {
    position: relative;
    color: var(--blue-dark);
    font-size: 1.25rem;
    padding: .25rem;
    overflow: initial;
    transition: var(--transition)
}

.files-column-header__bell:hover {
    color: var(--black)
}

.files-column-header__bell span {
    position: absolute;
    width: 1rem;
    height: 1rem;
    z-index: 1;
    top: -.125rem;
    right: -.125rem;
    background: var(--blue-dark);
    border-radius: 50%;
    color: var(--white);
    font-size: .625rem;
    line-height: 1rem
}

.files-notifications {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    max-height: 410px;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.files-notifications.active {
    display: block
}

.files-notifications__title {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 3.75rem
}

.files-notifications__title .icon-close {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    font-size: 16px
}

.files-notifications__item {
    position: relative;
    border-top: 1px solid var(--blue);
    padding: .75rem 3.75rem 1.5rem 1.5rem
}

.files-notifications__item p+p {
    white-space: pre-wrap;
    margin-top: .5rem;
    opacity: .9
}

.files-notifications__item span {
    position: absolute;
    right: .75rem;
    top: .75rem
}

.files-card {
    touch-action: auto !important;
    position: relative;
    padding: 0.5rem 0.5rem;
    border-radius: 10px;
    cursor: grab;
    min-height: 8.875rem;
    margin-bottom: .25rem
}

.files-card.ui-sortable-helper {
    cursor: grabbing
}

.files-card.--green {
    background-color: #def0db
}

.files-card.--green .files-card__date {
    background-color: var(--green)
}

.files-card.--blue {
    background-color: #e4edfc
}

.files-card.--blue .files-card__date {
    background-color: var(--blue)
}

.files-card.--red {
    background-color: var(--red) !important;
}

.files-card.--red .files-card__date {
    background-color: var(--red);
}

.files-card__checkbox {
    position: absolute;
    left: .75rem;
    top: .8125rem
}

.files-card__checkbox label {
    height: 1.25rem
}

.files-card__action {
    position: absolute;
    right: 2.625rem;
    top: .9375rem;
    display: flex;
    padding: .25rem 0;
    border: 0;
    font-size: .375rem;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--black);
    background-color: transparent;
    transition: var(--transition)
}

.files-card__action:hover {
    color: var(--blue-dark)
}

.files-card__actions {
    display: none;
    position: absolute;
    align-items: center;
    justify-content: center;
    right: 1.5rem;
    top: .75rem;
    width: 7.8125rem;
    height: 2.5rem;
    column-gap: .5rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08);
    transition: var(--transition)
}

.files-card__actions.active {
    display: flex
}

.files-card__actions .btn {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.25rem;
    color: var(--blue-dark);
    transition: var(--transition)
}

.files-card__actions .btn:hover {
    color: var(--black)
}

.files-card__toggle {
    position: absolute;
    right: .75rem;
    top: .75rem;
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    border: 0;
    font-size: .5625rem;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: var(--transition)
}

.files-card__toggle i {
    position: relative;
    transition: var(--transition)
}

.files-card__toggle.active i {
    transform: scale(-1)
}

@media (hover:hover) {
    .files-card__toggle:hover {
        color: var(--white);
        background-color: var(--black)
    }
}

.files-card__row:last-child {
    margin-bottom: 0
}

.files-card__row {
    display: grid;
    column-gap: .25rem;
    grid-template-columns: 110px auto;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 12px
}

.files-card__row .form-action-select {
    max-width: 10.625rem;
    width: 100%;
    padding-right: 1.5625rem
}

.files-card__row .form-action-label .status_2_description {
    padding-left: 20px
}

.files-card__content {
    display: none;
    padding-top: .5rem
}

.files-card__c {
    position: absolute;
    right: 2.625rem;
    bottom: .75rem;
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: 0;
    font-size: .875rem;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition)
}

.files-card__date {
    position: absolute;
    right: .5rem;
    bottom: .75rem;
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: 0;
    color: var(--white);
    font-size: .875rem;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition)
}

@media (hover:hover) {
    .files-card__date:hover {
        color: var(--black)
    }
}

.files-card__date[data-tooltip]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    background: #fff;
    width: auto;
    padding: 6px 12px;
    z-index: 1;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: var(--primary-font);
    white-space: nowrap;
    color: var(--red-1);
    font-size: 12px;
    border-radius: 4px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.files-card__buttons {
    display: flex;
    align-items: center;
    column-gap: .375rem;
    position: relative
}

.files-card__buttons .btn.icon-mail:hover+.files-card-mail-tooltip {
    display: block
}

.files-card__buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    color: var(--white)
}

.files-card__buttons .btn.icon-email {
    background-color: var(--light-green)
}

.files-card__buttons .btn.icon-date {
    background-color: var(--red-1)
}

.files-card__buttons .btn.icon-pdf {
    background-color: var(--blue)
}

.files-card__buttons .btn[data-tooltip]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    background: #fff;
    width: auto;
    padding: 6px 12px;
    z-index: 1;
    top: -18px;
    left: -8px;
    text-align: center;
    font-family: var(--primary-font);
    white-space: nowrap;
    color: var(--red-1);
    font-size: 12px;
    border-radius: 4px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.files-card.--modifier {
    padding: 16px 8px 32px
}

.files-card.--modifier .files-card__row {
    grid-template-columns: auto;
    row-gap: 4px
}

@media (max-width:1400px) {
    .files-card.--modifier .files-card__row {
        grid-template-columns: 110px auto
    }
}

.files-card-mail-tooltip {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin: auto;
    width: 300px;
    z-index: 9;
    border-radius: 4px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.files-card-mail-tooltip.--not-show {
    display: none !important
}

.files-card-mail-tooltip__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px 8px;
    border-bottom: 1px solid var(--blue-dark)
}

.files-card-mail-tooltip__header span {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px
}

.files-card-mail-tooltip__header span:nth-child(2) {
    color: var(--red)
}

.files-card-mail-tooltip__body {
    padding: 8px 8px 16px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px
}

.users-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid var(--blue);
    background: var(--white)
}

.users-wrapper__header {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

@media (max-width:767px) {
    .users-wrapper__header {
        border-bottom: 0
    }
}

.mutuelle-row {
    justify-content: center;
    align-items: end;
    border-bottom: 2px solid #4267d1;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.mutuelle-table {
    width: 100%;
    margin-bottom: 2rem
}

.mutuelle-table tbody tr:last-child(1) {
    border-bottom: 0
}

.mutuelle-table tr {
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

@media (max-width:767px) {
    .mutuelle-table tr {
        flex-flow: row wrap
    }
}

.mutuelle-table tr td {
    font-weight: 500;
    word-break: break-word;
    padding: .5rem .25rem
}

@media (max-width:767px) {
    .mutuelle-table tr td {
        display: block;
        padding: .5rem 0;
        width: 100% !important
    }
}

.mutuelle-table tr td:nth-child(1) {
    width: 15%
}

@media (max-width:767px) {
    .mutuelle-table tr td:nth-child(1) {
        padding-top: 1rem
    }
}

.mutuelle-table tr td:nth-child(2) {
    width: 10%
}

.mutuelle-table tr td:nth-child(3) {
    width: 25%
}

.mutuelle-table tr td:nth-child(4) {
    width: 20%
}

.mutuelle-table tr td:nth-child(5) {
    width: 20%
}

.mutuelle-table tr td:nth-child(6) {
    width: 10%
}

.users-table {
    width: 100%
}

.users-table+.bottom .dataTables_paginate {
    margin-top: 2rem
}

.users-table tbody tr:last-child(1) {
    border-bottom: 0
}

.users-table tr {
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid rgba(66, 103, 209, .3)
}

@media (max-width:767px) {
    .users-table tr {
        flex-flow: row wrap
    }
}

.users-table tr td {
    font-weight: 500;
    padding: .5rem 0
}

@media (max-width:767px) {
    .users-table tr td {
        display: block;
        width: 100% !important
    }
}

.users-table tr td:nth-child(1) {
    width: 35%
}

@media (max-width:767px) {
    .users-table tr td:nth-child(1) {
        padding-top: 1rem
    }
}

.users-table tr td:nth-child(2) {
    width: 35%
}

.users-table tr td:nth-child(3) {
    width: 30%
}

.users-table__buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 1rem
}

@media (max-width:767px) {
    .users-table__buttons {
        justify-content: flex-start
    }
}

.users-table__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: 0;
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    text-align: center;
    color: var(--blue-dark);
    font-size: 1.25rem;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 84, 82, .08);
    transition: var(--transition)
}

.users-table__btn.--modifier {
    color: var(--light-green)
}

@media (hover:hover) {
    .users-table__btn.--modifier:hover {
        color: var(--white);
        background-color: var(--light-green)
    }
}

@media (hover:hover) {
    .users-table__btn:hover {
        color: var(--white);
        background-color: var(--blue-dark)
    }
}

.notification-tabs__nav {
    margin-bottom: 1rem
}

.notification-tabs__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .3125rem 1rem;
    border-radius: 10px;
    background: rgba(66, 103, 209, .1)
}

.notification-tabs__item {
    max-width: 8.75rem;
    width: 100%
}

.notification-tabs__link {
    display: block;
    max-width: 8.75rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    color: rgba(0, 0, 0, .3);
    padding: .25rem .5rem;
    transition: var(--transition);
    background-color: transparent
}

@media (max-width:575px) {
    .notification-tabs__link {
        padding: .25rem .5rem;
        font-size: .875rem
    }
}

.notification-tabs__link.active {
    color: var(--white);
    background-color: var(--blue-dark)
}

.notification-tabs__link i {
    position: absolute;
    transform: translateX(2px);
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    background: var(--red);
    font-style: normal;
    font-size: 10px;
    color: var(--white)
}

.notification-tabs__tab {
    padding: 1rem 0
}

.notification-table {
    width: 100%;
    margin-bottom: 1.5rem
}

.notification-table.--all td:nth-child(1) {
    width: 20%
}

.notification-table.--all td:nth-child(2) {
    width: 15%
}

.notification-table.--all td:nth-child(3) {
    width: 20%
}

.notification-table.--all td:nth-child(4) {
    width: 15%
}

.notification-table.--all td:nth-child(5) {
    width: 20%
}

.notification-table.--all td:nth-child(6) {
    width: 10%
}

.notification-table.--notes td:nth-child(1) {
    width: 30%
}

.notification-table.--notes td:nth-child(2) {
    width: 25%
}

.notification-table.--notes td:nth-child(3) {
    width: 25%
}

.notification-table.--notes td:nth-child(4) {
    width: 20%
}

.notification-table.--emails td:nth-child(1) {
    width: 30%
}

.notification-table.--emails td:nth-child(2) {
    width: 30%
}

.notification-table.--emails td:nth-child(3) {
    width: 20%
}

.notification-table.--emails td:nth-child(4) {
    width: 20%
}

.notification-table.--actions td:nth-child(1) {
    width: 30%
}

.notification-table.--actions td:nth-child(2) {
    width: 20%
}

.notification-table.--actions td:nth-child(3) {
    width: 30%
}

.notification-table.--actions td:nth-child(4) {
    width: 20%
}

.notification-table.--reminder td:nth-child(1) {
    width: 30%
}

.notification-table.--reminder td:nth-child(2) {
    width: 30%
}

.notification-table.--reminder td:nth-child(3) {
    width: 20%
}

.notification-table.--reminder td:nth-child(4) {
    width: 20%
}

.notification-table tr {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    margin-bottom: .25rem
}

@media (max-width:767px) {
    .notification-table tr {
        flex-flow: row wrap
    }
}

.notification-table tr td {
    position: relative;
    padding: .75rem 1rem
}

@media (max-width:767px) {
    .notification-table tr td {
        display: block;
        width: 50% !important;
        padding: .5rem 1rem
    }
}

.notification-table tr td:hover>.action_message_full {
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin: auto;
    width: 300px;
    padding: 16px 8px;
    z-index: 9;
    border: 1px solid #dbdaee;
    border-radius: 4px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

.aid-wrapper {
    position: relative;
    z-index: 1
}

.aid-wrapper__title {
    margin-bottom: 1.5rem
}

.aid-item {
    border-radius: 10px;
    background: var(--white, #fff);
    box-shadow: 0 4px 16px 0 rgba(34, 84, 82, .08);
    margin-bottom: .5rem
}

.aid-item.active .aid-item__icon.icon-minus {
    display: block
}

.aid-item.active .aid-item__icon.icon-plus {
    display: none
}

.aid-item__header {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    cursor: pointer;
    padding: .75rem 1rem
}

.aid-item__header.--modifier {
    position: relative;
    cursor: initial
}

@media (max-width:575px) {
    .aid-item__header.--modifier .text-1 {
        font-size: .875rem
    }
}

.aid-item__header.--modifier:after {
    content: "";
    position: absolute;
    right: 3.9375rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--blue)
}

.aid-item__header.--modifier .row {
    flex-flow: row nowrap
}

.aid-item__actions {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-right: 2rem
}

.aid-item__icon {
    display: block;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    padding: 0;
    border: 0;
    cursor: pointer;
    color: var(--blue-dark);
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 84, 82, .08);
    transition: all .3s ease
}

@media (hover:hover) {
    .aid-item__icon:hover {
        color: var(--white);
        background-color: var(--blue-dark)
    }
}

.aid-item__icon.icon-minus {
    display: none
}

@media (hover:hover) {
    .aid-item__icon.icon-pencil:hover {
        color: var(--white);
        background-color: var(--black)
    }
}

@media (hover:hover) {
    .aid-item__icon.icon-trash:hover {
        color: var(--white);
        background-color: var(--red-1)
    }
}

.aid-item__content {
    display: none;
    padding: .75rem 1rem;
    border-top: 1px solid var(--blue)
}

.aid-item__content video {
    width: 100%;
    max-width: 28.75rem;
    height: 13.75rem;
    object-fit: contain
}

.aid-item__content a {
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.3125rem;
    color: var(--blue-dark)
}

.aid-item__content a[download]:after {
    content: "\e903";
    font-family: icomoon, sans-serif;
    margin-left: 4px
}

.aid-files {
    margin-bottom: 1.5rem
}

.aid-files input[type=file] {
    display: none
}

.aid-files .progress-bar {
    display: none;
    width: 100%;
    background-color: var(--gray);
    border: 1px solid var(--light-green);
    margin-top: .5rem;
    height: 10px;
    border-radius: 10px;
    position: relative
}

.aid-files .progress-fill {
    height: 100%;
    background-color: var(--green);
    width: 0;
    transition: width .3s
}

.aid-files .file-preview {
    margin: .5rem 0
}

.statistics-wrapper {
    position: relative;
    z-index: 1
}

.statistics-dates {
    position: relative;
    z-index: 9;
    display: flex;
    column-gap: 8px
}

@media (max-width:575px) {
    .statistics-dates__profile {
        width: 100%
    }
}

.statistics-dates__header {
    display: flex;
    align-items: center;
    column-gap: 8px;
    flex-flow: row nowrap
}

@media (max-width:575px) {
    .statistics-dates__header {
        margin-top: 12px;
        width: 100%
    }
}

@media (max-width:575px) {
    .statistics-dates__headings {
        width: 100%
    }
}

.statistics-dates__title {
    display: flex;
    align-items: center;
    column-gap: 8px;
    justify-content: flex-end;
    flex-flow: row nowrap
}

@media (max-width:575px) {
    .statistics-dates__title {
        justify-content: flex-start;
        flex-flow: row wrap
    }

    .statistics-dates__title+.statistics-dates__title {
        margin-top: 12px
    }
}

@media (max-width:575px) {
    .statistics-dates__title span {
        width: 100%
    }
}

.statistics-dates__title span:nth-child(2) {
    font-weight: 500
}

.statistics-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    width: 525px;
    display: none;
    flex-flow: row wrap;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08)
}

@media (max-width:575px) {
    .statistics-dropdown {
        width: 100%
    }
}

.statistics-dropdown.active {
    display: flex
}

.statistics-dropdown__column {
    position: relative;
    width: 50%;
    padding: 16px
}

@media (max-width:575px) {
    .statistics-dropdown__column {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        column-gap: 10px
    }

    .statistics-dropdown__column .form-group.--small {
        width: calc(50% - 5px)
    }
}

@media (max-width:575px) {
    .statistics-dropdown__column:nth-child(2) {
        border-top: 1px solid var(--gray)
    }
}

.statistics-dropdown__column:nth-child(2):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--gray)
}

@media (max-width:575px) {
    .statistics-dropdown__column:nth-child(2):before {
        display: none
    }
}

.statistics-dropdown__footer {
    border-top: 1px solid var(--gray);
    padding: 16px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    column-gap: 8px
}

.statistics-dropdown__footer button {
    min-height: 30px !important;
    height: 30px !important;
    font-size: 12px !important
}

.statistics-dropdown__footer button:nth-child(1) {
    width: 110px
}

.statistics-dropdown__footer button:nth-child(2) {
    width: 140px
}

.statistics-dropdown__compare {
    margin-top: 40px
}

@media (max-width:575px) {
    .statistics-dropdown__compare {
        margin-top: 12px;
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        column-gap: 10px
    }
}

.statistics-dropdown__title {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px
}

@media (max-width:575px) {
    .statistics-dropdown__title {
        width: 100%
    }
}

.statistics-dropdown-list {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 12px
}

@media (max-width:575px) {
    .statistics-dropdown-list {
        width: 100%
    }
}

.statistics-dropdown-list.--modifier {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0
}

.statistics-dropdown-list__item {
    margin-bottom: 4px
}

.statistics-dropdown-list__link {
    position: relative;
    display: block;
    padding: 6px 0;
    cursor: pointer;
    line-height: normal;
    font-size: 12px;
    transition: all .3s ease
}

.statistics-dropdown-list__link:hover {
    color: var(--blue-dark)
}

.statistics-dropdown-list__link.active {
    color: var(--blue-dark)
}

.statistics-dropdown-list__link.active:before {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: 0;
    bottom: 0;
    background: rgba(66, 103, 209, .1)
}

.statistics-data {
    margin-bottom: 1rem
}

@media (max-width:575px) {
    .statistics-data p {
        width: 100%
    }
}

.statistics-data p+p {
    margin-left: 2.625rem
}

@media (max-width:575px) {
    .statistics-data p+p {
        margin: .5rem 0 0 0
    }
}

.statistics-charts {
    margin: 0 -2px
}

.statistics-charts__column {
    padding: 0 2px;
    margin-bottom: 1rem
}

.statistics-charts__inner {
    position: relative;
    height: 100%;
    padding: 1rem;
    border-radius: 10px;
    background: var(--white)
}

.statistics-charts__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem
}

@media (max-width:575px) {
    .statistics-charts__header {
        flex-flow: row wrap;
        row-gap: .75rem
    }
}

.statistics-charts__header select {
    width: 17.1875rem;
    border: 1px solid rgba(162, 199, 252, .3)
}

@media (max-width:575px) {
    .statistics-charts__header select {
        width: 100%
    }
}

.statistics-switch {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: .5rem
}

.statistics-switch.disabled {
    pointer-events: none
}

@media (max-width:575px) {
    .statistics-switch {
        justify-content: space-between
    }
}

.statistics-switch__item {
    display: block;
    padding: .25rem .5rem;
    border-radius: 10px;
    background: rgba(66, 103, 209, .1)
}

.statistics-switch__item.--modifier label:before {
    width: 3.125rem;
    height: 1.875rem
}

.statistics-switch__item.--modifier label span {
    width: 3.125rem;
    height: 1.875rem;
    font-size: 1rem
}

.statistics-switch__item.--modifier input[type=checkbox]:checked+label:before {
    left: 3.125rem
}

.statistics-switch__item input[type=checkbox] {
    position: absolute;
    left: -9999%;
    visibility: hidden
}

.statistics-switch__item label {
    position: relative;
    z-index: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    flex-flow: row nowrap
}

.statistics-switch__item label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 3.125rem;
    height: 1.875rem;
    transition: var(--transition);
    border-radius: 10px;
    background: var(--blue-dark)
}

.statistics-switch__item label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 1.875rem;
    font-size: 1rem;
    transition: var(--transition)
}

.statistics-switch__item input[type=checkbox]+label span:nth-child(1) {
    color: var(--white)
}

.statistics-switch__item input[type=checkbox]:checked+label:before {
    left: 3.125rem
}

.statistics-switch__item input[type=checkbox]:checked+label span:nth-child(1) {
    color: var(--black)
}

.statistics-switch__item input[type=checkbox]:checked+label span:nth-child(2) {
    color: var(--white)
}

.chart-container {
    display: grid;
    align-items: center;
    column-gap: 24px;
    grid-template-columns: calc(60% - 12px) calc(40% - 12px)
}

@media (max-width:1440px) {
    .chart-container {
        grid-template-columns: calc(50% - 12px) calc(50% - 12px)
    }
}

@media (max-width:575px) {
    .chart-container {
        grid-template-columns: 100%
    }
}


.chart-container .doughnut-chart {
    position: relative
}

.chart-container .doughnut-chart-value {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase
}

@media (max-width:1440px) {
    .chart-container .doughnut-chart-value {
        font-size: 1.5rem
    }
}

@media (max-width:575px) {
    .chart-container .doughnut-chart-value {
        font-size: 2rem
    }
}

.chart-container .doughnut-chart-value p {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none
}

.chart-container .chart-legend div {
    position: relative;
    padding-left: .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
    margin-bottom: .5rem
}

.chart-container .chart-legend div i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    margin-right: 4px
}

.chart-container .chart-legend div span {
    white-space: nowrap
}

.column-chart {
    width: 100%;
    height: 21.875rem
}

.column-chart.--modifier {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin: auto
}

@media (max-width:991px) {
    .column-chart.--modifier {
        position: relative;
        top: 0;
        transform: translateY(0);
        margin: 0
    }
}

.statistics-cells {
    margin: 0 -2px
}

.statistics-cells__column {
    width: 100%;
    padding: 0 2px;
    margin-bottom: 4px
}

.statistics-cells__item {
    display: flex;
    flex-flow: column;
    padding: 1.5rem .75rem;
    height: 8.4375rem;
    border-radius: 10px;
    text-align: center;
    color: var(--dark);
    background: var(--white, #fff);
    align-items: center
}

.statistics-cells__item.--modifier {
    flex-flow: row;
    text-align: initial;
    height: 4.375rem;
    justify-content: space-between
}

.statistics-cells__item span {
    display: block;
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase
}

.record-cards {
    min-height: 22rem !important;
}

.btn-back {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    height: 2.25rem;
    border-radius: 5px;
    font-family: var(--primary-font), sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--blue-dark);
    border: 1px solid var(--blue-dark);
    background-color: var(--white);
    transition: var(--transition);
}