@font-face {
    font-family: Aqum;
    src: url(../fonts/Aqum/Aqum-2-Classic.otf);
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/*@font-face {
    font-family: Rubik;
    src: url(../fonts/Rubik/Rubik-VariableFont_wght.ttf);
}*/

:root {
    --primary: #54C3B8;
    --bg-site: none;
    --bg-color: #fff;
    --bg-color-second: none;
    --bg-color-third: #fff;
    --bg-color-dropdown: #fff;
    --text-color: #1A1A1A;
    --link-color: #9198A9;
    --border-color: #EFEFEF;
    --bg-tab: #F3F4F5;
    --text-tab-color: #86909D;
    --bg-tab-hover: #ddd;
    --burger-color: #3D3C3C;
    --green: #5DCF7D;
    --red: #E03005;
    --yellow: #E4C35C;
    --orange: #E17258;
    --blue: #54BDDD;
    --cyan: #54C3B8;
    --black: #2e2e36;
    --bg-popup: #fff;
    --primary-green: #44a6b3;
    --grey: #8e8e90;
}

[data-theme="dark"] {
    --bg-site: block;
    --bg-color: #3d3d3d92;
    --bg-color-second: #3d3d3d92;
    --bg-color-third: #99999999;
    --bg-color-dropdown: #3d3d3d;
    --text-color: #fff;
    --link-color: #fff;
    --border-color: rgba(0, 0, 0, 0.08);
    --bg-tab: #3d3d3d92;
    --text-tab-color: #fff;
    --bg-tab-hover: #99999999;
    --burger-color: #fff;
    --bg-popup: #1A1A1A;
}

.header-switch-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.theme-switcher {
    display: flex;
    align-items: center;
}

    .theme-switcher svg path {
        fill: #fff;
    }

.switch-checkbox {
    display: none;
}

.switch-label {
    width: 7rem;
    height: 4rem;
    padding: 0.5rem 1.1rem;
    align-items: center;
    border-radius: 5rem;
    align-items: center;
    background: var(--primary);
    cursor: pointer;
    display: flex;
    position: relative;
    transition: background 0.5s ease;
    justify-content: space-between;
}

.switch-toggle {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0.3rem 0.8rem 0 rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    top: calc(7rem * 0.07);
    left: calc(7rem * 0.07);
    width: 3rem;
    height: 3rem;
    transform: translateX(0);
    transition: transform 0.3s ease, background-color 0.5s ease;
}

.switch-checkbox:checked + .switch-label .switch-toggle {
    transform: translateX(calc(7rem * 0.44));
}

.bg-site {
    z-index: -1;
    display: var(--bg-site);
    position: absolute;
    background: url(../images/sport-report/bg-site.jpg) no-repeat center/cover;
    width: 100vw;
    height: 100vh;
    filter: blur(5px);
}

.mb-hide {
    display: block;
}

.mb-show {
    display: none;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

    select option[disabled] {
        display: none;
    }

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    button:-moz-focusring,
    [type="button"]:-moz-focusring,
    [type="reset"]:-moz-focusring,
    [type="submit"]:-moz-focusring {
        outline: 0.1rem dotted ButtonText;
    }

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -0.2rem;
}

    [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    [type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
        cursor: pointer;
        height: 1.2rem;
        width: 1.2rem;
        background: url(/icons/cancel.png) no-repeat 50% 50%;
        background-size: contain;
        margin-right: 1rem;
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

img {
    max-width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input {
    -webkit-border-radius: 0.5rem;
    -webkit-appearance: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    line-height: 150%;
}

h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 150%;
    color: var(--black);
}

html {
    font-size: 62.5%;
}

@media screen and (max-width: 1485px) {
    html {
        font-size: 0.6734vw;
    }
}

@media screen and (max-width: 1024px) {
    html.adaptive {
        font-size: 2.63158vw;
    }
}

body {
    font-family: "Inter";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
    color: var(--text-color);
    font-size: 62.5%;
    background: #F9F9F9;
    height: 100vh;
    overflow: hidden;
    font-size: 1.6rem;
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

h1, h2, h3, h4 {
    margin: 0;
}

.antropro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1.2rem;
}

    .antropro-logo p {
        color: #3a3a3a;
        font-family: Aqum;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        letter-spacing: 0.05rem;
        max-width: 10.1rem;
        line-height: 2.8rem;
        text-transform: uppercase;
    }

.nice-scrollbar::-webkit-scrollbar {
    width: 0.4rem;
}

.nice-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.nice-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(145, 152, 169, 0.5);
}

    .nice-scrollbar::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

.simple-title {
    font-weight: 500;
    font-size: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media screen and (min-width: 1200px) {
    .desktop--hide {
        display: none !important;
    }
}

@media screen and (max-width: 1200px) {
    .mobile--hide {
        display: none !important;
    }
}

h1 {
    font-size: 4rem;
    margin-bottom: 5rem;
    color: var(--primary-green);
}

.h1-subtitle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
}

    .h1-subtitle > h1,
    .h1-subtitle > .page-title-with-hint {
        margin-bottom: 0;
    }

    .h1-subtitle > p {
        color: var(--grey);
        font-size: 1.8rem;
    }

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.header {
    background: var(--bg-color);
    border-bottom: 0.1rem solid var(--border-color);
    max-height: 10rem;
    /*z-index: 0;*/
}

.header__wrap {
    padding: 2rem 3.2rem 2rem 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1555px) {
    .header__wrap {
        padding-right: calc( ( ( 100% - 24rem - 1200px ) / 2 ) + 1.5rem);
    }
}

@media screen and (max-width: 1480px) {
    .header__wrap {
        padding-right: 1.5rem;
    }
}

.header__logo {
    width: 24rem;
    padding: 0 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header__logo img {
        max-width: 22rem;
        width: 100%;
    }

.header__message {
    position: relative;
    margin-right: 4rem;
}

    .header__message:hover svg * {
        fill: var(--primary);
    }

    .header__message span {
        position: absolute;
        top: 0;
        right: -0.3rem;
        font-size: 1.2rem;
        font-weight: 500;
        background: var(--primary);
        border-radius: 50%;
        color: #fff;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 1.6rem;
        height: 1.6rem;
        line-height: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header__message svg {
        width: 2.5rem;
        height: 2.5rem;
    }

        .header__message svg * {
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

.header__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__profile-name {
    font-size: 1.6rem;
    font-weight: 500;
    margin-right: 1.5rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

    .header__profile-name::after {
        content: '';
        border: 0.4rem solid transparent;
        border-top: 0.6rem solid var(--text-color);
        -webkit-transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        transition: border-color 0.3s;
        margin-left: 1rem;
        margin-top: 0.2rem;
    }

    .header__profile-name:hover .header__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
    }

.header__profile-photo {
    width: 6rem;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.header__profile-photo-ratio {
    position: relative;
    padding-bottom: 100%;
}

.header__profile-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

    .header__profile-photo-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .header__profile-photo-img svg {
        max-width: 50%;
        opacity: 0.7;
    }

.header .search {
    margin-left: auto;
}

.header__menu {
    position: absolute;
    cursor: inherit;
    -webkit-box-shadow: 0 0 1rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    box-shadow: 0 0 1rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    border-radius: 0.6rem;
    background: var(--bg-color);
    white-space: nowrap;
    top: calc(100% + 2.5rem);
    left: calc(50%);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 99;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    .header__menu::before {
        content: '';
        position: absolute;
        border: 0.8rem solid transparent;
        border-bottom: 1.2rem solid var(--bg-color);
        -webkit-transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        transition: border-color 0.3s;
        bottom: 100%;
        left: calc(50% - 0.8rem);
    }

    .header__menu::after {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        height: 3rem;
    }

.header__menu-link {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .header__menu-link svg {
        width: 1.8rem;
        height: 1.8rem;
        margin-right: 1rem;
    }

        .header__menu-link svg * {
            fill: var(--text-color);
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

    .header__menu-link:last-child {
        margin-bottom: 0;
    }

    .header__menu-link:hover a, .header__menu-link.header__menu-link--active {
        color: var(--primary);
        transition: all 0.3s;
    }

        .header__menu-link:hover svg *, .header__menu-link.header__menu-link--active svg * {
            fill: var(--primary);
        }

.footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page {
    z-index: 0;
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.page__content {
    background: var(--bg-color-second);
    -webkit-transition: max-width 0.5s;
    -o-transition: max-width 0.5s;
    transition: max-width 0.5s;
    height: calc(100vh - 10rem);
    overflow: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page__content--open {
    max-width: calc(100% - (3.5rem * 2 + 2.6rem));
}

.page--loginlayout .page__content {
    height: 100vh;
    max-width: 100%;
}

.page__content::-webkit-scrollbar {
    width: 0.4rem;
}

.page__content::-webkit-scrollbar-track {
    background: transparent;
}

.page__content::-webkit-scrollbar-thumb {
    background: rgba(145, 152, 169, 0.5);
}

    .page__content::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

.page__wrap {
    width: 100%;
    position: relative;
}

.page--loginlayout .page__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.page__wrap > section:nth-child(1) {
    /*margin-top: 10rem;*/
}

.page--loginlayout .page__wrap > section:nth-child(1) {
    margin-top: 0;
}

.page__wrap > section:nth-child(1).cats {
    margin-top: 5rem;
}

.page > .nav {
    min-width: calc( 24rem + 3rem);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.page__copyright {
    padding: 2rem 0rem;
    width: 100%;
    gap: 2rem;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
    min-height: auto;
    color: var(--link-color);
    font-weight: 300;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    z-index: 1;
}

    .page__copyright a:hover {
        color: var(--primary);
    }

.page__copyright-links {
    justify-content: space-between;
    display: flex;
    width: 100%;
    margin-bottom: 3rem;
}

.page__copyright-links-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page__footer {
    margin-top: 3rem;
    margin-bottom: 10rem;
}

.content {
    margin: 10rem 0;
}

    .content.content--w100 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .content.content--w100 .center-wrap {
            max-width: 100%;
            min-width: 120rem;
            width: auto;
        }

.center-wrap {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    margin-bottom: 4.2rem;
    padding: 0 2rem;
}

.center-wrap--w100 {
    max-width: 100%;
}

@media screen and (max-width: 1555px) {
    .content.content--w100 .center-wrap .center-wrap {
        min-width: 100%;
    }
}

.nav {
    background: var(--bg-color);
    padding-top: 5rem;
    position: relative;
    border-right: 1px solid #eaedef;
    /*z-index: 2;*/
}

.nav--close {
    width: calc(3.5rem * 2 + 2.6rem) !important;
}

.nav__item {
    background: var(--bg-color);
    margin-bottom: 1rem;
}

.nav__item--active {
    position: relative;
    background: -o-linear-gradient(359.98deg, rgba(84, 195, 184, 0.04) 58.81%, rgba(255, 255, 255, 0) 94.09%);
    background: linear-gradient(90.02deg, rgba(84, 195, 184, 0.04) 58.81%, rgba(255, 255, 255, 0) 94.09%);
}

    .nav__item--active .nav__link {
        color: var(--primary);
        pointer-events: none;
        position: relative;
    }

        .nav__item--active .nav__link svg:not(.nav__error-icon) * {
            fill: var(--primary);
        }

        .nav__item--active .nav__link::before {
            content: '';
            position: absolute;
            left: 0;
            width: 0.3rem;
            top: 0;
            height: 100%;
            background: var(--primary);
        }

        .nav__item--active .nav__link span::after {
            border-top-color: var(--primary) !important;
        }

    .nav__item--active .nav__item-list {
        display: block;
    }

.nav__item-list {
    display: none;
    padding-left: calc(2.6rem + 2.7rem);
}

.nav__item--dropdown .nav__link {
    pointer-events: auto;
}

.nav__item--dropdown > .nav__link span {
    position: relative;
}

    .nav__item--dropdown > .nav__link span::after {
        content: "";
        position: absolute;
        left: calc( 100% + 1rem);
        border: 0.4rem solid transparent;
        border-top: 0.6rem solid #ADADAD;
        top: calc(50% - 0.3rem);
        -webkit-transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        transition: border-color 0.3s;
    }

.nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--link-color);
    line-height: 5.6rem;
    padding-left: 3.5rem;
    padding-right: 2.5rem;
    margin-left: auto;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    white-space: nowrap;
}

.nav--close .nav__link {
    color: transparent !important;
}

    .nav--close .nav__link span::after {
        opacity: 0;
    }

.nav__item-list .nav__link {
    line-height: 4rem;
    font-size: 1.6rem;
    color: #9198A9;
    font-weight: 400;
    background: transparent;
}

    .nav__item-list .nav__link--active, .nav__item-list .nav__link:hover {
        color: var(--primary);
    }

    .nav__item-list .nav__link::before {
        display: none;
    }

.nav__item:not(.nav__item--active) .nav__link:hover {
    color: var(--primary);
}

    .nav__item:not(.nav__item--active) .nav__link:hover svg:not(.nav__error-icon) * {
        fill: var(--primary);
    }

    .nav__item:not(.nav__item--active) .nav__link:hover .nav-link__svg path {
        stroke: var(--primary) !important;
    }

.nav__item:not(.nav__item--active) .nav__link:hover span::after {
    border-top-color: var(--primary) !important;
}

.nav__link svg:not(.nav__error-icon) {
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 2.7rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .nav__link svg:not(.nav__error-icon) * {
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        fill: var(--link-color);
    }

.nav__link--error {
    color: var(--red) !important;
}

    .nav__link--error svg:not(.nav__error-icon) * {
        fill: var(--red);
    }

.nav-link__svg:not(.nav__error-icon) * {
    fill: transparent !important;
}

.nav__error {
    display: none;
    margin-left: 2rem;
}

.nav--close .nav__error {
    position: absolute;
    top: 0;
    right: 1rem;
}

.nav__item--error .nav__error,
.nav__link--error .nav__error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav__error-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.nav--close .nav__error-icon {
    width: 2.2rem;
    height: 2.2rem;
}

.nav__error-icon * {
    fill: var(--red);
}

.nav__error .tooltip__content {
    width: 17rem;
    white-space: normal;
    color: var(--red);
}

.nav__toogle {
    padding-left: 3.5rem;
    font-size: 3rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

    .nav__toogle:hover .nav__toogle-arrow::before {
        background: var(--primary);
    }

.nav__toogle-arrow {
    margin-left: auto;
    background: #9198A9;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translate(50%, 0) rotate(180deg);
    -ms-transform: translate(50%, 0) rotate(180deg);
    transform: translate(50%, 0) rotate(180deg);
    border: 1.4rem solid #F9F9F9;
    -webkit-transition: all 0.3s 0.5s;
    -o-transition: all 0.3s 0.5s;
    transition: all 0.3s 0.5s;
}

.nav--close .nav__toogle-arrow {
    -webkit-transform: translate(50%, 0) rotate(0deg);
    -ms-transform: translate(50%, 0) rotate(0deg);
    transform: translate(50%, 0) rotate(0deg);
}

.nav__toogle-arrow svg {
    fill: #fff;
    max-width: 60%;
    max-height: 60%;
    margin-left: 5%;
}

.nav__toogle-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #9198A9;
    z-index: -1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 20.5rem);
    overflow-x: hidden;
    overflow-y: auto;
}

    .nav__list::-webkit-scrollbar {
        width: 0;
    }

.nav__list--oi {
    overflow: initial;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 82, 103, 0.7);
    z-index: 999;
    color: #fff;
    font-size: 5rem;
    display: none;
}

.overlay--green {
    background: rgba(93, 207, 125, 0.7);
}

.overlay--white {
    background: rgba(255, 255, 255, 0.7);
    color: #000;
}

.overlay--active {
    display: block;
}

.overlay__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: calc(100vh - 10rem);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 30;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.popup-wrap--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popup-wrap--menu {
    -ms-touch-action: none;
    touch-action: none;
}

.popup-wrap--opacity1 {
    opacity: 1;
}

.popup-wrap .popup {
    background: var(--bg-popup);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: calc(100% - 3rem);
    width: 360px;
    position: relative;
    padding: 50px 48px;
    border-radius: 2rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-height: 95%;
    overflow: auto;
    opacity: 0;
    top: -15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity 0.6s, top 0.6s;
    -o-transition: opacity 0.6s, top 0.6s;
    transition: opacity 0.6s, top 0.6s;
}

@media screen and (max-width: 1200px) {
    .popup-wrap .popup {
        padding: 2rem;
        padding-bottom: 40px;
        padding-top: 40px;
    }
}

.popup-wrap .popup--opacity1 {
    opacity: 1;
    top: 0;
}

.popup-wrap .popup--no-scroll {
    overflow: initial;
}

.popup-wrap .popup::-webkit-scrollbar {
    width: 0.5rem;
}

.popup-wrap .popup::-webkit-scrollbar-track {
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.1);
}

.popup-wrap .popup::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #9198A9;
    cursor: -webkit-grab;
    cursor: grab;
}

    .popup-wrap .popup::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

.popup-wrap .popup__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

    .popup-wrap .popup__close:hover {
        opacity: 0.3;
    }

    .popup-wrap .popup__close div {
        -webkit-transition: background 0.2s;
        -o-transition: background 0.2s;
        transition: background 0.2s;
        width: 100%;
        height: 0.1rem;
        border-radius: 25%;
        position: absolute;
        background: var(--text-color);
    }

        .popup-wrap .popup__close div:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .popup-wrap .popup__close div:nth-child(2) {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

.daterangepicker .drp-buttons .btn {
    padding: 0 3rem !important;
    line-height: 4.2rem;
}

.daterangepicker .drp-buttons .btn-primary {
    background: #5DCF7D;
    color: #fff;
    border-color: #5DCF7D;
}

    .daterangepicker .drp-buttons .btn-primary:hover {
        background: transparent;
        color: #5DCF7D;
    }

.daterangepicker .drp-buttons .btn-default {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

    .daterangepicker .drp-buttons .btn-default:hover {
        background: transparent;
        color: var(--primary);
    }

.daterangepicker td.active, .daterangepicker td.active:hover,
.daterangepicker .ranges li.active {
    background-color: #54BDDD !important;
}

.btn {
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    -webkit-box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    border-radius: 5rem;
    /*line-height: 5.2rem;*/
    border: 0.1rem solid var(--primary-green);
    color: #9198A9;
    padding: 0 3rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .btn:not(.tutorial-step--active):hover {
        background: var(--primary-green);
        color: #fff;
    }

    .btn:disabled, .btn[disabled] {
        opacity: 0.5;
        pointer-events: none;
    }

    .btn > img {
        height: 2.6rem;
    }

.btn.actions-panel--btn {
    height: auto !important;
    color: #fff;
    border: unset;
    border-radius: unset;
    background: unset;
    box-shadow: unset;
    padding: unset;
    font-size: 1.4rem;
}

    .btn.actions-panel--btn:hover {
        background: unset;
    }

.btn--primary {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
    padding: 1rem 1.6rem;
    gap: 0.6rem;
    box-shadow: none;
}

    .btn--primary svg {
        width: 2.1rem;
        height: 2.1rem;
    }

    .btn--primary:not(.tutorial-step--active):hover {
        background: transparent;
        color: var(--primary-green);
    }

        .btn--primary:not(.tutorial-step--active):hover svg path {
            stroke: var(--primary-green);
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

    .btn--primary.btn--empty {
        color: var(--primary);
    }

        .btn--primary.btn--empty:hover,
        .btn--primary.btn--empty.tutorial-step--active {
            background: var(--primary);
            color: #fff;
        }

    .btn--primary.btn--medium svg {
            width: 2.4rem;
            height: 2.4rem;
    }

.btn--red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

    .btn--red:hover {
        background: transparent;
        color: var(--red);
    }

    .btn--red.btn--empty {
        color: var(--red);
    }

        .btn--red.btn--empty:hover {
            background: var(--red);
            color: #fff;
        }

        .btn--red.btn--empty:hover svg path {
            stroke: #fff;
        }

.btn--green {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

    .btn--green:hover {
        background: transparent;
        color: var(--green);
    }

    .btn--green.btn--empty {
        border-color: var(--green);
        color: var(--green);
    }

        .btn--green.btn--empty:hover {
            background: var(--green);
            color: #fff;
        }

            .btn--green.btn--empty:hover svg path {
                fill: #fff;
                stroke: none;
            }

.btn--blue {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

    .btn--blue:hover {
        background: transparent;
        color: var(--blue);
    }

    .btn--blue.btn--empty {
        border-color: var(--primary-green);
        color: var(--primary-green);
    }

        .btn--blue.btn--empty:hover {
            background: var(--primary-green);
            color: #fff;
        }

            .btn--blue.btn--empty:hover svg path {
                fill: #fff;
            }

.btn--yellow {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
}

    .btn--yellow:hover {
        background: transparent;
        color: var(--yellow);
    }

    .btn--yellow.btn--empty {
        border-color: var(--yellow);
        color: var(--yellow);
    }

        .btn--yellow.btn--empty:hover {
            background: var(--yellow);
            color: #fff;
        }

.btn--orange {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

    .btn--orange:hover {
        background: transparent;
        color: var(--orange);
    }

    .btn--orange.btn--empty {
        border-color: var(--orange);
        color: var(--orange);
    }

        .btn--orange.btn--empty:hover {
            background: var(--orange);
            color: #fff;
        }

.btn--empty {
    background: transparent;
    min-height: 4.4rem;
}

.btn-login {
    height: 5.2rem;
}

.border-blue:hover {
    background: transparent;
    border-color: var(--blue);
}

.search {
    background-position: left center;
    background-size: contain;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .search:hover svg * {
        stroke: var(--primary);
    }

    .search svg {
        margin-right: 1rem;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

        .search svg * {
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

    .search input {
        border: none;
        font-size: 1.7rem;
        width: 10rem;
        margin-right: 2.5rem;
        /* Firefox 19+ */
        /* Firefox 18- */
    }

        .search input::-webkit-input-placeholder {
            color: #CBCBCB;
        }

        .search input::-moz-placeholder {
            color: #CBCBCB;
        }

        .search input:-moz-placeholder {
            color: #CBCBCB;
        }

        .search input:-ms-input-placeholder {
            color: #CBCBCB;
        }

        .search input:focus + svg * {
            stroke: var(--primary);
        }

.create {
    font-weight: 500;
    font-size: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .create:hover div {
        background: transparent;
    }

        .create:hover div::before, .create:hover div::after {
            background: var(--primary);
        }

    .create div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: var(--primary);
        position: relative;
        width: 3.8rem;
        height: 3.8rem;
        margin-left: 2rem;
        border-radius: 0.6rem;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

        .create div::before, .create div::after {
            content: '';
            position: absolute;
            background: #fff;
            height: 0.2rem;
            width: 55%;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

        .create div::after {
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
        }

.dropdown {
    background: #fff;
    -webkit-box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    display: inline-block;
    line-height: 4.5rem;
    position: relative;
}

    .dropdown:hover .dropdown__content {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
    }

.dropdown__header {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 1.7rem;
    background-position: right center;
    border-radius: 0.4rem;
    background-size: 1.8rem;
    padding-right: calc( 1.6rem + 1.6rem);
    padding: 0 2.2rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .dropdown__header svg {
        margin-left: 1rem;
        margin-bottom: 0.3rem;
    }

        .dropdown__header svg * {
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            fill: var(--primary);
        }

.dropdown__content {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc( 100% + 0.1rem);
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.select {
    font-weight: 300;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 5.2rem;
}

    .select.select--non-blank .select__value p {
        color: var(--text-color);
    }

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: 0.1rem solid #eaedef;
    border-radius: 1.2rem;
    padding: 1rem 1.6rem;
    box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
    background: var(--bg-color);
}

    .select__value:hover {
        border-color: #ADADAD;
    }

    .select__value::before {
        content: "";
        background-size: 2.1rem 2.1rem;
        display: block;
        background-image: url(../icons/select.svg);
        background-repeat: no-repeat;
        position: absolute;
        left: calc(100% - 3rem);
        width: 2.1rem;
        height: 2.1rem;
        top: calc(50% - 1rem);
    }

    .select__value p {
        color: #9198A9;
    }

.select.select--active .select__value::before {
    transform: rotateX(-180deg);
}

.select__variants {
    position: absolute;
    z-index: 2;
    top: 100%;
    width: 100%;
    background: var(--bg-color-dropdown);
    -webkit-box-shadow: 0 0 0.72rem 0.08rem rgba(0, 4, 7, 0.15);
    box-shadow: 0 0 0.72rem 0.08rem rgba(0, 4, 7, 0.15);
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 18.5rem;
    overflow: auto;
    border-radius: 0.8rem;
}

    .select__variants::-webkit-scrollbar {
        width: 0.4rem;
    }

    .select__variants::-webkit-scrollbar-track {
        background: transparent;
    }

    .select__variants::-webkit-scrollbar-thumb {
        background: #e9e9e9;
    }

        .select__variants::-webkit-scrollbar-thumb:hover {
            background: #ccc;
        }

.select__variant {
    padding: 1rem;
    display: block;
    border-bottom: 1px solid #eaedef;
    text-align: left;
    cursor: pointer;
    margin-bottom: -0.1rem;
}

.select__variant:last-child {
    border-bottom: unset;
}

.select__variant--active {
    border-color: #e8e8e8;
}

.select__variant:hover {
    background: #f2f9fa;
    color: var(--primary-green);
}

.select__variant:hover:first-child {
   border-radius: 0.8rem 0.8rem 0rem 0rem;
}

.select__variant:hover:last-child {
   border-radius: 0rem 0rem 0.8rem 0.8rem;
}

.select__variant input {
    display: none;
}

.select--active .select__variants {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.select.select--actions .select__value {
    font-weight: 500;
    border: 0.2rem solid var(--primary);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .select.select--actions .select__value::before {
        border-top-color: var(--primary);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .select.select--actions .select__value p {
        color: var(--primary);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

.select.select--actions .select__variants {
    width: auto;
}

.select.select--actions.select--active .select__value,
.select.select--actions .select__value:hover {
    background-color: var(--primary);
}

    .select.select--actions.select--active .select__value::before,
    .select.select--actions .select__value:hover::before {
        border-top-color: #fff;
    }

    .select.select--actions.select--active .select__value p,
    .select.select--actions .select__value:hover p {
        color: #fff;
    }

.checkbox-container {
    display: block;
    position: relative;
    padding-top: 0.2rem;
    padding-left: 3.4rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 300;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

    .checkbox-container:hover {
        color: #9198A9;
    }

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 0.15rem solid #d5dbe0;
    border-radius: 0.6rem;
}

.checkbox-container input:checked ~ .checkbox-checkmark {
    border-color: var(--primary-green);
    background-color: var(--primary-green);
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 0.6rem;
    top: 0.15rem;
    width: 0.5rem;
    height: 1rem;
    border: solid white;
    border-width: 0 0.2rem 0.2rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radio-container {
    display: block;
    position: relative;
    padding-left: 3.4rem;
    margin-bottom: 1.2rem;
    font-size: 1.65rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 2.2rem;
    width: 2.2rem;
    background-color: #fff;
    border-radius: 50%;
    border: 0.2rem solid var(--primary)
}

    .radio-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.radio-container input:checked ~ .radio-checkmark:after {
    display: block;
}

.radio-container .radio-checkmark:after {
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: var(--primary);
}

.tgl {
    display: none;
}

    .tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl ~ .tgl-btn {
        box-sizing: border-box;
    }

        .tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl ~ .tgl-btn::-moz-selection {
            background: none;
        }

        .tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl ~ .tgl-btn::selection {
            background: none;
        }

        .tgl ~ .tgl-btn {
            outline: 0;
            display: block;
            width: 5.2rem;
            height: 2.7rem;
            position: relative;
            cursor: pointer;
            margin-bottom: 0;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .tgl ~ .tgl-btn:after, .tgl ~ .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 50%;
                height: 100%;
            }

            .tgl ~ .tgl-btn:after {
                left: 0;
            }

            .tgl ~ .tgl-btn:before {
                display: none;
            }

        .tgl:checked ~ .tgl-btn:after {
            left: 50%;
        }

.tgl-btn.tgl-btn--small {
    width: 3.6rem;
    height: 2rem;
}

.tgl-light ~ .tgl-btn {
    background: #dfdfdf;
    border-radius: 2em;
    padding: 0.3rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

    .tgl-light ~ .tgl-btn:after {
        border-radius: 50%;
        background: #fff;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

.tgl-light:checked ~ .tgl-btn {
    background: var(--primary);
}

    .tgl-light:checked ~ .tgl-btn.tgl-btn--blue {
        background: var(--blue) !important;
    }

.block-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /*align-items: baseline;*/
    /*margin-bottom: 3rem;*/
}

    .block-top .simple-title {
        margin-bottom: 0;
    }

    .block-top .btn {
        height: 4.5rem;
        /*line-height: 4.5rem;*/
        font-size: 1.5rem;
        padding: 0 2rem;
    }

.block-top--bb {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    padding-bottom: 1rem;
}

.block-top--buttons {
    display: flex;
    gap: 2rem;
}

.block-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    background: var(--bg-color);
    padding: 2.2rem 3.2rem;
    align-items: center;
}

.block-control--buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.cats {
    margin: 2.4rem 0;
}

.cats__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.cat {
    display: flex;
    flex-direction: column;
    width: calc( ( 100% - 3rem * 2  ) / 3);
    border-radius: 2rem;
    background: #fff;
    padding: 3.2rem;
    gap: 2.4rem;
    -webkit-box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
    box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
}

.cat__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 0.6rem;
}

.cat__link {
    display: flex;
    flex-shrink: 0;
    align-self: flex-start;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 150%;
    color: #fff;
    border-radius: 5rem;
    padding: 1.2rem 2rem;
    align-items: center;
    gap: 0.6rem;
}

    .cat__link.blue {
        background: #155dfc;
    }

        .cat__link.blue:hover {
            background: linear-gradient(135deg, #51a2ff 0%, #2b7fff 100%);
        }

    .cat__link.orange {
        background: #e17100;
    }

        .cat__link.orange:hover {
            background: linear-gradient(135deg, #ffb900 0%, #fe9a00 100%);
        }

    .cat__link.green {
        background: #009689;
    }

        .cat__link.green:hover {
            background: linear-gradient(135deg, #00d5be 0%, #00bba7 100%);
        }

    .cat__link.purple {
        background: #9810fa;
    }

        .cat__link.purple:hover {
            background: linear-gradient(135deg, #c27aff 0%, #ad46ff 100%);
        }

@media screen and (max-width: 768px) {
    .cats__list {
        gap: 2rem;
    }

    .cat {
        padding: 2.5rem;
        width: calc( ( 100% - 2rem * 2  ) / 3);
    }
}

.cat__img {
    border-radius: 1.4rem;
    padding: 1.6rem;
    width: 6.4rem;
    height: 6.4rem;
    align-content: center;
    text-align: center;
}

.cat__img svg {
    width: 3.2rem;
    height: 3.2rem;
}

.cat__title {
    font-weight: 600;
    font-size: 2rem;
    line-height: 150%;
    color: var(--black);
}

.cat__description {
    font-weight: 400;
    font-size: 1.6rem;
    color:#52556a; 
}

.cat__img.cat--blue {
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #51a2ff 0%, #2b7fff 100%);
}

.cat__img.cat--orange {
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffb900 0%, #fe9a00 100%);
}

.cat__img.cat--green {
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #00d5be 0%, #00bba7 100%);
}

.cat__img.cat--purple {
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #c27aff 0%, #ad46ff 100%);
}

.toogles__item-content {
    display: inherit;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    display: none;
}

    .toogles__item-content[style*="display: block"] {
        display: inherit !important;
    }

    .toogles__item-content > div {
        display: inherit;
        -webkit-box-orient: inherit;
        -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
        flex-direction: inherit;
        -ms-flex-wrap: inherit;
        flex-wrap: inherit;
        -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
        justify-content: inherit;
        -webkit-box-align: inherit;
        -ms-flex-align: inherit;
        align-items: inherit;
        width: 100%;
    }

        .toogles__item-content > div > p,
        .toogles__item-content > div > form > p {
            margin-bottom: 2rem;
        }

.toogles__item-title:not([data-toogles]):not(.checkout__step-header) {
    pointer-events: none;
}

.settings {
    margin: 10rem 0;
}

    .settings .progress__item {
        cursor: initial;
    }

    .settings .toogles__item-content {
        min-height: 34rem;
    }

    .settings .fixed-table-body {
        margin-bottom: 3rem;
    }

.settings__tab {
    width: 100%;
}

    .settings__tab:first-child.toogles__item--active ~ .settings__btns .btn--prev {
        display: none !important;
    }

    .settings__tab:nth-last-child(2).toogles__item--active ~ .settings__btns .btn--next {
        display: none !important;
    }

    .settings__tab ~ .settings__btns .btn--green {
        display: none !important;
    }

    .settings__tab:nth-last-child(2).toogles__item--active ~ .settings__btns .btn--green {
        display: block !important;
    }

.settings__tab--big-label .inputs__field-label {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 22rem;
}

.settings__tabs .inputs__field-container {
    max-width: 97rem;
}

.settings__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    /*margin-top: 3rem;*/
}

    .settings__btns .btn + .btn {
        margin-left: 1rem;
    }

.settings .select-image-btn {
    margin-top: 2rem;
}

.settings__logo {
    position: relative;
    width: 100%;
    max-width: 50rem;
    margin-bottom: 2rem;
    border: 0.1rem solid #9198A9;
    border-radius: 0.6rem;
}

.settings__logo-ration {
    padding-bottom: 23%;
}

.settings__logo-container {
    position: absolute;
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .settings__logo-container img {
        max-width: 100%;
        max-height: 100%;
    }

.logreg {
    padding: 6rem 5rem !important;
    margin: 10rem 0 !important;
    width: 1300px !important;
    max-width: 48rem !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border-radius: 0.6rem;
    -webkit-box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
    box-shadow: 0 1rem 2rem rgba(144, 144, 144, 0.1), 0 0.2rem 0.6rem rgba(144, 144, 144, 0.04), 0 0 0.1rem rgba(144, 144, 144, 0.04);
}

@media screen and (max-width: 1024px) {
    .logreg {
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #fff;
        margin: 0 !important;
        padding: 6rem 1.5rem !important;
    }

    .logreg__services {
        justify-content: space-evenly;
    }

        .logreg__services .btn {
            padding: 0 1rem;
            min-width: 5.2rem;
        }
}

.logreg .antropro-logo {
    margin-bottom: 3rem;
    max-width: 40rem;
}

@media screen and (max-width: 1024px) {
    .logreg .antropro-logo {
        max-width: 80%;
    }
}

.logreg__title {
    color: var(--black);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .logreg__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.logreg__sub-title {
    color: #9198A9;
    font-weight: 300;
    font-size: 1.7rem;
    margin-bottom: 4rem;
}

.logreg__form {
    width: 100%;
}

    .logreg__form .btn {
        width: 100%;
        margin: 0 auto;
    }

    .logreg__form .inputs__field-wrap {
        margin-bottom: 1.5rem !important;
    }

@media screen and (max-width: 1024px) {
    .logreg__form .inputs__field-wrap--mobile-col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .logreg__form .inputs__field-wrap--mobile-col .inputs__field__wrap {
            width: 100%;
        }

        .logreg__form .inputs__field-wrap--mobile-col .inputs__field--50 {
            width: 100%;
        }
}

.logreg__form .inputs__field-wrap--mobile-100 {
    width: 100%;
}

.logreg__form .inputs__field-wrap--mobile-mb {
    margin-bottom: 1.5rem !important;
}

.logreg__form .check__parent {
    margin-bottom: 2.5rem;
    margin-top: 1rem;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .logreg__form .check__parent .check__top {
        font-size: 1.4rem;
    }
}

.logreg__form .select__value {
    color: #9198A9;
}

.logreg__links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2rem;
}

.logreg__link {
    font-weight: 500;
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.logreg__link--discover {
    margin-bottom: 4.5rem;
    font-size: 1.5rem;
}

    .logreg__link--discover svg {
        margin-left: 1rem;
        margin-right: 0;
    }

.logreg__link:hover {
    color: #9198A9;
}

    .logreg__link:hover svg {
        fill: #9198A9;
    }

.logreg__link svg {
    width: 1.6rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.logreg__link:nth-child(1) svg {
    margin-right: 1rem;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.logreg__link:nth-child(2) svg {
    margin-left: 1rem;
}

.logreg__btns {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .logreg__btns .btn {
        width: calc( 50% - 0.75rem);
    }

@-webkit-keyframes changeColor {
    80% {
        background: #5DCF7D;
    }

    80.01% {
        background-color: #FFFFFF;
    }

    100% {
        background-color: #FFFFFF;
    }
}

@keyframes changeColor {
    80% {
        background: #5DCF7D;
    }

    80.01% {
        background-color: #FFFFFF;
    }

    100% {
        background-color: #FFFFFF;
    }
}

@-webkit-keyframes op {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes op {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.text-page {
    margin: 10rem 0;
}

    .text-page h2 {
        border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
        padding-bottom: 1.5rem;
    }

    .text-page h1 {
        margin-bottom: 0;
    }

.text-page__sub-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6rem;
    margin-top: 2rem;
}

.numbers-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 40rem;
    margin: 3rem 0;
}

    .numbers-container .check {
        margin-bottom: 1.5rem;
        margin-right: 0;
        width: calc( 50% - 2rem);
    }

.alert {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    font-weight: 400;
    font-size: 1.8rem;
}

    .alert > ul {
        list-style: initial;
    }

.page--loginlayout .page__content > .alert {
    max-width: 48rem !important;
    padding: 0;
}

.logreg__form .alert {
    margin: 2rem auto;
    font-size: 1.5rem;
    padding: 0;
}

.alert-success {
    color: var(--green);
}

    .alert-success button {
        background: var(--green);
    }

.alert-danger {
    color: var(--red);
}

    .alert-danger button {
        background: var(--red);
    }

.alert button {
    color: #fff;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    cursor: pointer;
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 8rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .progress__item:last-child .progress__item-icon::before {
        background: #F9F9F9;
    }

    .progress__item.toogles__item-title--active ~ .progress__item .progress__item-icon {
        background: #F9F9F9;
    }

        .progress__item.toogles__item-title--active ~ .progress__item .progress__item-icon svg * {
            fill: var(--primary);
        }

.progress--white .progress__item.toogles__item-title--active ~ .progress__item .progress__item-icon {
    background: #fff;
}

.progress__item-title {
    font-weight: 500;
    font-size: 1.8rem;
}

.progress__item-icon {
    width: 5rem;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.2rem solid var(--primary);
    margin-bottom: 2rem;
    position: relative;
    background: var(--primary);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .progress__item-icon::before {
        content: '';
        background: var(--primary);
        height: 0.2rem;
        top: calc( 50% - 0.1rem);
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        position: absolute;
        left: 0;
        width: 100vw;
        z-index: -1;
    }

    .progress__item-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }

        .progress__item-icon svg:nth-child(1) {
            display: none;
        }

        .progress__item-icon svg * {
            fill: #fff;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

.progress__item--add .progress__item-title {
    color: #5DCF7D !important;
}

.progress__item--add .progress__item-icon {
    border-color: #5DCF7D;
    background: #5DCF7D !important;
}

    .progress__item--add .progress__item-icon svg * {
        fill: #fff !important;
    }

.progress__item--new .progress__item-icon svg * {
    fill: #fff !important;
}

.toogles__item-title--active .progress__item-icon svg:nth-child(1) {
    display: block;
}

.toogles__item-title--active .progress__item-icon svg:nth-child(2) {
    display: none;
}

.table__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

    .table__btns > a > svg {
        width: 2rem;
        height: 2rem;
    }

        .table__btns > a > svg > path {
            fill: var(--link-color);
        }

    .table__btns > a:hover > svg > path {
        fill: var(--primary);
    }

    .table__btns > a:last-child > svg > path {
        fill: none;
        stroke: var(--link-color);
    }

    .table__btns > a:last-child:hover > svg > path {
        fill: none;
        stroke: var(--primary);
    }

    .table__btns .btn {
        min-width: 13rem;
        margin-right: 1rem;
        height: 4.4rem;
        /*line-height: 4.4rem;*/
        font-size: 1.5rem;
        padding: 0 2rem;
    }

        .table__btns .btn:last-child {
            margin-right: 0;
        }

.table__sort {
    width: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0.5rem;
}

.table__members {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    padding: 0.4rem 0.8rem;
    gap: 0.6rem;
    max-width: 5.2rem;
}

.table__members img {
    width: 2.1rem;
    height: 2.1rem;
}

.sorting_disabled .table__sort {
    display: none;
}

.table__sort-item {
    border: 0.6rem solid transparent;
}

    .table__sort-item:nth-child(1) {
        border-bottom: 0.6rem solid;
        margin-bottom: 0.3rem;
    }

[aria-sort="ascending"] .table__sort-item:nth-child(1) {
    margin-bottom: 0.5rem;
    border-bottom-color: var(--primary);
}

[aria-sort="descending"] .table__sort-item:nth-child(1) {
    display: none;
}

.table__column-name:hover .table__sort-item:nth-child(1) {
    border-bottom-color: var(--primary);
}

.table__sort-item:nth-child(2) {
    border-top: 0.6rem solid;
}

.table__column-name:hover .table__sort-item:nth-child(2) {
    border-top-color: var(--primary);
}

[aria-sort="ascending"] .table__sort-item:nth-child(2) {
    display: none;
}

[aria-sort="descending"] .table__sort-item:nth-child(2) {
    margin-top: 0.5rem;
    border-top-color: var(--primary);
}

.table__column-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
}

.column-center {
    text-align: center;
}

    .column-center div {
        align-items: center;
        justify-content: center;
        /*margin: 0 auto;*/
    }

.column-right {
    text-align: right;
}

    .column-right div {
        text-align: right;
        justify-content: flex-end;
    }

th:not(.sorting_disabled) .table__column-name {
    cursor: pointer;
}

.table__double-name {
    font-weight: 500;
}

.table__double-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 30rem;
}

.table__double-item {
    width: 2rem;
    height: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 1rem;
}

    .table__double-item:last-child {
        margin-right: 0;
    }

    .table__double-item svg {
        width: 100%;
        height: 100%;
    }

        .table__double-item svg * {
            fill: var(--primary-green);
        }

.table__lead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table__lead-name {
    margin-left: 1rem;
    font-weight: 500;
}

.table__lead-img {
    width: 4rem;
    position: relative;
}

.table__lead-img-ration {
    padding-bottom: 100%;
}

.table__lead-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .table__lead-img-wrap img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
    }

.fixed-table-body, .bootstrap-table {
    width: 100%;
}

    .fixed-table-body .datatable-scroll {
        overflow: auto;
        position: relative;
        padding-bottom: 1.2rem;
    }

        .fixed-table-body .datatable-scroll::before {
            content: "";
            display: none;
            position: absolute;
            right: 0;
            width: 300px;
            height: 100%;
            background: -webkit-gradient(linear, right top, left top, color-stop(5%, #f9f9f9), to(rgba(0, 0, 0, 0)));
            background: -o-linear-gradient(right, #f9f9f9 5%, rgba(0, 0, 0, 0) 100%);
            background: linear-gradient(270deg, #f9f9f9 5%, rgba(0, 0, 0, 0) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .fixed-table-body .datatable-scroll::-webkit-scrollbar {
            width: 0.4rem;
            height: 0.6rem;
        }

        .fixed-table-body .datatable-scroll::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
        }

        .fixed-table-body .datatable-scroll::-webkit-scrollbar-thumb {
            background: #ccc;
        }

            .fixed-table-body .datatable-scroll::-webkit-scrollbar-thumb:hover {
                background: #a7a7a7;
            }

        .fixed-table-body .datatable-scroll::after {
            content: "";
            display: none;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            padding-right: 1.5rem;
            -webkit-animation: table-swipe 1.5s infinite;
            animation: table-swipe 1.5s infinite;
            position: absolute;
            bottom: 2rem;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            top: 3rem;
            right: 0;
            width: 2.2rem;
            height: 2.2rem;
            background: url(../images/table-swipe.svg);
            z-index: 3;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

    .fixed-table-body .datatable-scroll--swipe {
        padding-bottom: 0;
        margin-bottom: 2rem;
    }

        .fixed-table-body .datatable-scroll--swipe::before, .fixed-table-body .datatable-scroll--swipe::after {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
        }

    .fixed-table-body .datatable-scroll--scrolled::before, .fixed-table-body .datatable-scroll--scrolled::after {
        display: none !important;
    }

    .fixed-table-body table {
        border-spacing: 0 0;
        width: 100%;
        white-space: nowrap;
        background: #fafafb;
        border-radius: 1.6rem 1.6rem 0rem 0rem;
        margin-top: 3.2rem;
        border-left: 1px solid #eaedef;
        border-right: 1px solid #eaedef;
        border-top: 1px solid #eaedef;
    }

    .fixed-table-body thead th {
        font-size: 1.6rem;
        font-weight: 500;
        text-align: left;
        padding: 1.5rem;
        border-bottom: 1px solid #eaedef;
    }

    .fixed-table-body tbody thead th {
        border-bottom: 0;
        padding-bottom: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
    }

    .fixed-table-body .inputs__field {
        line-height: 3.2rem;
        padding-left: 1rem;
    }

    .fixed-table-body tbody > tr {
        position: relative;
        background: var(--bg-color);
        background-size: 0% 100%;
        -webkit-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
    }

        /*.fixed-table-body tbody > tr:hover {
            background-size: 100% 100%;
        }*/

        .fixed-table-body tbody > tr.selected {
            background: #f2f9fa;
        }

    .fixed-table-body.table--no-filling tbody > tr:hover {
        background-size: 0% 100% !important;
    }

    .fixed-table-body tbody td {
        padding: 1.85rem 0rem 1.85rem 0.2rem;
        position: relative;
        border-bottom: 1px solid #eaedef;
    }

        .fixed-table-body tbody td:first-child {
            border-left: 0.3rem solid transparent;
            padding-left: 2.6rem;
        }

    .fixed-table-body tbody > tr.selected td:first-child {
        border-left: 0.3rem solid var(--primary-green);
    }

    .fixed-table-body thead th:first-child {
        border-left: 0.3rem solid transparent;
        padding-left: 2.6rem;
    }

    .fixed-table-body tbody td:last-child {
        padding-right: 2.4rem;
    }

        .fixed-table-body tbody td.select-checkbox {
            /*pointer-events: none;*/
            padding-right: 0;
        }

            .fixed-table-body tbody td.select-checkbox .checkbox-container {
                pointer-events: all;
                margin-bottom: 1.8rem;
            }

            .fixed-table-body tbody td.select-checkbox .radio-container {
                pointer-events: all;
                margin-bottom: 2rem;
            }

    .fixed-table-body thead th.select-checkbox {
        padding-right: 0;
    }

    .fixed-table-body tbody tr > td:first-child::before {
        content: "";
        position: absolute;
        left: 0;
        width: 0.3rem;
        height: 0%;
        bottom: 0;
        background: var(--primary);
        -webkit-transition: height 0.5s;
        -o-transition: height 0.5s;
        transition: height 0.5s;
        border-radius: 0.6rem 0 0 0.6rem;
    }

    /*.fixed-table-body tbody tr:hover > td:first-child::before {
        height: 100%;
    }*/

    .fixed-table-body.table--no-filling tbody tr:hover > td:first-child::before {
        height: 0 !important;
    }

    .fixed-table-body img {
        max-height: 4rem;
    }

    .fixed-table-body .no-records-found > td {
        text-align: center;
    }

.fixed-table-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color);
    border-left: 1px solid #eaedef;
    border-right: 1px solid #eaedef;
    border-bottom: 1px solid #eaedef;
    border-radius: 0 0 1.6rem 1.6rem;
    padding: 1.8rem 2.4rem;
    margin-bottom: 1rem;
}

    .fixed-table-pagination .page-list {
        display: none;
    }

    .fixed-table-pagination .pagination {
        display: flex;
    }

    .fixed-table-pagination ul.pagination,
    .bootstrap-table .fixed-table-pagination ul.pagination {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

        .fixed-table-pagination ul.pagination li,
        .bootstrap-table .fixed-table-pagination ul.pagination li {
            list-style: none;
        }

    .fixed-table-pagination .page-link {
        padding: 0 0.5rem;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

        .fixed-table-pagination .page-link:hover {
            color: var(--primary);
            cursor: pointer;
        }

    .fixed-table-pagination .page-item.active .page-link {
        color: var(--primary);
        font-weight: 700;
    }

.input-with-icon {
    position: relative;
    display: inline-block;
    width: 100%;
    
}

    .input-with-icon .input-icon {
        position: absolute;
        height: 2.1rem;
        width: 2.1rem;
        left: 1.6rem;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .input-with-icon input {
        border: 0.1rem solid #eaedef;
        border-radius: 5rem !important;
        padding: 1rem 4rem;
        max-height: 4.2rem;
        box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
        background: var(--bg-color);
    }

    .input-with-icon .inputs__field:focus {
        border-color: #ADADAD !important;
    }

.table-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 2rem;
    width: 100%;
    margin-top: 3.2rem;
}

    .table-filters .inputs__field {
        border: 0.1rem solid #eaedef;
        border-radius: 1.2rem !important;
        padding: 1rem 4rem;
        box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
        background: var(--bg-color);
        margin-bottom: 0px !important;
        line-height: 4.3rem;
        max-height: 4.2rem;
        background-image: url(../icons/add.svg);
    }

    .table-filters .btn {
        margin-bottom: 0px !important;
        height: 4.5rem;
    }

    .table-filters .daterange-picker {
        line-height: 4.3rem;
    }

        .table-filters .daterange-picker .icon-arrow-down12 {
            margin-left: 1rem;
        }

        .table-filters .daterange-picker .icon-calendar2 {
            margin-right: 0.5rem;
        }

.table-filters__item .select__value {
    border-radius: 5rem;
}

    .table-filters__item.table-filters__item--right {
        margin-left: auto;
    }

    .table-filters__item .select {
        height: 4.5rem;
        font-size: 1.6rem;
    }

    .table-filters__item:not(.table-filters__item--total) .select {
        min-width: 16rem;
    }

.table-filters__item--total {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-right: 0px !important;
}

.table-filters__item--search {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 21rem;
}

.table-filters__item-label {
    margin-bottom: 0.6rem;
    display: block;
    font-size: 1.4rem;
}

.table-filters__item.table-filters__item--progress-bar {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    gap: 1rem;
}

    .table-filters__item.table-filters__item--progress-bar > div {
        width: 100%;
        flex-shrink: 0;
    }

    .table-filters__item.table-filters__item--progress-bar .help-btn {
        margin-top: -0.22rem;
    }

    .table-filters__item.table-filters__item--progress-bar.mb-show {
        display: none;
    }

a.sport-link {
    cursor: pointer;
}

.sport-preds {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.sport-pred-item {
    border: 0.1rem solid #eaedef;
    border-radius: 5rem;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
    background: var(--bg-color);
    max-width: max-content;
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 500;
}

    .sport-pred-item span, a, button {
        color: var(--black);
    }

.show-more-btn {
    color: var(--black);
    cursor: pointer;
}

.fixed-table-body table {
    font-size: 1.4rem;
}

.fixed-table-body thead th {
    font-size: 1.2rem;
}

.fixed-table-body img {
    max-width: max-content;
}

.actions-panel {
    z-index: 2;
    position: sticky;
    bottom: 3rem;
    margin-bottom: 3.2rem;
    display: flex;
    width: max-content;
    align-items: center;
    border-radius: 4.4rem;
    padding: 1.6rem 2.4rem;
    box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
    background: var(--black);
}

    .actions-panel .table-filters__item {
        display: flex;
        gap: 0.8rem;
    }

        .actions-panel .table-filters__item img {
            width: 2.1rem;
            height: 2.1rem;
        }

        .actions-panel .line {
            border: 0.1rem solid #52556a;
            margin-right: 0.8rem;
        }

    .actions-panel .table-filters__item:last-child {
        margin-left: 4.4rem;
    }

    .datatable-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
.table-filters__item .tgl-container {
    margin-bottom: 0.5rem;
}

.table-filters__item .tgl ~ .tgl-btn {
    width: 7rem;
    height: 4rem;
    padding: 0.52rem 0.52rem;
    border-radius: 5rem;
    -webkit-transition: all 1.4s ease;
    transition: all 1.4s ease;
}

    .table-filters__item .tgl ~ .tgl-btn:after {
        box-shadow: 0 0.3rem 0.8rem 0 rgba(0, 0, 0, 0.15);
    }

.datatable-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.panel-footer {
    margin-top: 3rem;
}

.dataTables_filter label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

td.dataTables_empty {
    text-align: center;
}

.tooltip {
    position: relative;
    /*overflow: hidden;*/
}

    .tooltip:hover {
        overflow: initial;
    }

.tooltip__content {
    background: var(--bg-color);
    -webkit-box-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 0;
    top: calc( 100% + 1.5rem);
    max-width: 25rem;
    width: 1000px;
    padding: 1.5rem;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 110.2%;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.tooltip__content--small {
    white-space: nowrap;
    text-align: center;
    width: auto;
    max-width: initial;
    padding: 1rem;
}

.tooltip__content--right {
    left: auto;
    right: 0;
}

    .tooltip__content--right::before {
        right: 0.5rem;
        left: auto !important;
    }

.tooltip__content--top {
    bottom: auto;
    top: calc(100% - 6.5rem);
}

    .tooltip__content--top::before {
        top: 100%;
        border: 0.8rem solid transparent !important;
        border-top: 0.8rem solid var(--bg-color) !important;
    }

.tooltip:hover .tooltip__content {
    opacity: 1;
    visibility: visible;
}

.tooltip__content::before {
    content: '';
    position: absolute;
    border: 0.8rem solid transparent;
    border-bottom: 0.8rem solid var(--bg-color);
    bottom: 100%;
    left: 0.5rem;
}

.tooltip__content::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 100%;
    left: 0;
    height: 1.5rem;
}

.range-container > div:first-child {
    cursor: pointer;
    font-weight: 300;
    font-size: 1.6rem;
    width: 100%;
    border: 0.1rem solid #ADADAD;
    border-radius: 0.5rem;
    background: transparent;
    line-height: 4.5rem;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    padding: 0 2rem;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

    .range-container > div:first-child > span {
        margin-left: .6rem;
        margin-right: .5rem;
    }

.range-container--right {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

    .range-container--right > div:first-child {
        width: max-content;
    }

.range-container--dashboard > div:first-child {
    background: #fff;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.3rem;
}

.datatable-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .datatable-header .range-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 1.5rem;
        color: rgba(0, 0, 0, 0.5);
    }

        .datatable-header .range-container select {
            margin-top: 0.5rem;
        }

        .datatable-header .range-container.inputs {
            margin-right: 2rem;
        }

    .datatable-header .dataTables_filter {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

        .datatable-header .dataTables_filter label {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

    .datatable-header input {
        line-height: 4.2rem;
        margin-bottom: 0;
        margin-right: 2rem;
    }

.daterange-picker {
    cursor: pointer;
    font-weight: 300;
    font-size: 1.6rem;
    width: 100%;
    border: 0.1rem solid #ADADAD;
    border-radius: 0.5rem;
    background: transparent;
    line-height: 4.5rem;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    padding: 0 2rem;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.datatable-header .daterange-picker {
    line-height: 4.2rem;
    font-size: 1.4rem;
}

.dataTables_paginate .ellipsis {
    padding: 0 0.5rem;
}

@-webkit-keyframes table-swipe {
    0% {
        -webkit-transform: translate3d(-2rem, 0, 0);
        transform: translate3d(-2rem, 0, 0);
        opacity: 0;
    }

    10% {
        -webkit-transform: translate3d(-2rem, 0, 0);
        transform: translate3d(-2rem, 0, 0);
        opacity: 0;
    }

    20% {
        -webkit-transform: translate3d(-2rem, 0, 0);
        transform: translate3d(-2rem, 0, 0);
        opacity: 1;
    }

    70% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    81% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
}

@keyframes table-swipe {
    0% {
        -webkit-transform: translate3d(-2rem, 0, 0);
        transform: translate3d(-2rem, 0, 0);
        opacity: 0;
    }

    10% {
        -webkit-transform: translate3d(-2rem, 0, 0);
        transform: translate3d(-2rem, 0, 0);
        opacity: 0;
    }

    20% {
        -webkit-transform: translate3d(-2rem, 0, 0);
        transform: translate3d(-2rem, 0, 0);
        opacity: 1;
    }

    70% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    81% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
}

.form-container {
    min-width: 100%;
    border-radius: 2rem;
    padding: 3.2rem;
    background: var(--bg-color);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
}

.double-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.double-fields__details {
    width: calc( 100% - 30% - 8rem);
}

.double-fields__photo {
    width: 27%;
    margin-bottom: 3rem;
}

.double-fields__photo-img {
    border: 0.1rem solid #9198A9;
    border-radius: 0.6rem;
}

    .double-fields__photo-img > div {
        position: relative;
        padding-bottom: 100%;
    }

        .double-fields__photo-img > div svg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50%;
            height: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

            .double-fields__photo-img > div svg * {
                fill: #9198A9;
            }

.double-fields__photo .btn {
    width: 100%;
    margin-top: 2rem;
    border-width: 0.1rem;
    font-weight: 400;
}

.double-fields__photo #image-container > img {
    border-radius: 6px;
}

.double-fields__title {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    padding-bottom: 1rem;
    width: 100%;
    height: 5rem;
}

.double-fields .select {
    margin-left: auto;
    height: 5.2rem;
    margin-top: -0.7rem;
}

.double-fields .select__header {
    background: url("https://www.flaticon.com/svg/static/icons/svg/748/748063.svg") no-repeat;
    background-position: right center;
    background-size: 1.8rem;
}

.double-fields__bottom {
    width: 100%;
}

    .double-fields__bottom .check {
        padding-bottom: 3rem;
        margin-bottom: 3rem;
        border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    }

.double-fields__bottom-btns .btn:nth-child(1) {
    margin-right: 1rem;
}

.details__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .details__top .simple-title {
        margin-bottom: 0;
    }

.details__top-btns .btn {
    margin-right: 1.5rem;
}

    .details__top-btns .btn:last-child {
        margin-right: 0;
    }

.details__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 50%;
    font-size: 2.1rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

    .details__item:nth-child(2n-1) {
        padding-right: 2rem;
    }

    .details__item::before {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        background: #9198A9;
        height: 0.0.5rem;
    }

    .details__item p {
        font-weight: 500;
        margin-right: 1rem;
        white-space: nowrap;
    }

    .details__item span {
        font-weight: 300;
    }

.details__item--readonly p {
    color: var(--primary);
}

.details__item--width3 {
    width: auto;
    padding-right: 2rem;
}

.details__item--gray {
    font-size: 1.8rem;
}

    .details__item--gray::before {
        display: none;
    }

    .details__item--gray p {
        color: var(--primary);
    }

.details__sep {
    width: 100%;
}

.file-input {
    width: 100%;
    border: 0.1rem solid #ADADAD;
    border-radius: 0.5rem;
}

.file-preview {
    position: relative;
    padding: 1rem;
}

    .file-preview .fileinput-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
    }

.file-preview-frame img {
    max-width: 30rem;
    max-height: 10rem;
    height: initial !important;
}

.input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -0.1rem;
    margin-right: -0.1rem;
    position: relative;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    margin: 1rem;
    border-radius: 0.5rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .input-group .btn {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 0.8rem;
        padding: 0 2rem;
        position: relative;
    }

.input-group-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 4rem;
    margin: 0.6rem 0.8rem;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.file-input-new .input-group {
    margin: 0;
    border: none;
}

    .file-input-new .input-group .btn {
        padding: 0 2.5rem;
    }

        .file-input-new .input-group .btn:last-child {
            border-bottom-right-radius: inherit;
            border-top-right-radius: inherit;
        }

.file-input-new .input-group-btn {
    margin: 0;
    margin-left: auto;
    height: 5rem;
}

.file-input-new .input-group--tight .input-group-btn {
    align-items: center;
    margin: 0 0.8rem 0 auto;
}

.file-input-new .input-group--tight .btn {
    height: 75%;
    padding: 0 2rem !important;
}

    .file-input-new .input-group--tight .btn:last-child {
        border-radius: 0.6rem !important;
    }

.file-caption {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    margin: 0.6rem 0.8rem;
}

    .file-caption .icon-file-plus {
        margin-right: 0.5rem;
    }

@media screen and (max-width: 1500px) {
    .funnels-create__left .file-caption-name {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        max-width: 9rem;
    }
}

.btn-file input[type='file'] {
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

.file-input-new .file-preview,
.file-input-new .file-caption,
.file-input-new .close,
.file-input-new .fileinput-remove-button,
.file-input-new .fileinput-upload-button {
    display: none;
}

/*ul.num-list {
    padding-left: 1.5rem;
}

    ul.num-list li {
        list-style: decimal;
        margin-bottom: 0.2rem;
    }*/

.popup__content {
    width: 100%;
}

    .popup__content ul {
        padding-left: 1.5rem;
    }

    .popup__content li {
        list-style: initial;
        margin-bottom: 0.5rem;
    }

.popup__title {
    font-weight: 500;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.inputs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.inputs__field {
    border: none;
    font-weight: 300;
    font-size: 1.6rem;
    width: 100%;
    color: var(--text-color);
    border: 0.1rem solid #ADADAD;
    border-radius: 1.2rem !important;
    background: transparent;
    line-height: 5.2rem;
    padding-left: 2rem;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
    /* Firefox 19+ */
    /* Firefox 18- */
}

    .inputs__field::-webkit-input-placeholder {
        color: #9198A9;
    }

    .inputs__field::-moz-placeholder {
        color: #9198A9;
    }

    .inputs__field:-moz-placeholder {
        color: #9198A9;
    }

    .inputs__field:-ms-input-placeholder {
        color: #9198A9;
    }

.inputs__field--invisible {
    border: none;
    border-radius: 0 !important;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
}

.inputs__field-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1.5rem;
}

    .inputs__field-wrap .inputs__field-wrap, .inputs__field-wrap input, .inputs__field-wrap .select {
        margin-bottom: 0 !important;
    }

    .inputs__field-wrap .select {
        width: 100%;
    }

.inputs__field-wrap--invisible {
    margin: 0;
}

    .inputs__field-wrap--invisible .validation-error-label {
        margin: 0 !important;
    }

.inputs__field-wrap--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .inputs__field-wrap--row .inputs__field-wrap--column {
        margin-bottom: 0 !important;
    }

.inputs__field-wrap--row-start {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

    .inputs__field-wrap--row-start > .inputs__field-wrap {
        width: initial;
    }

        .inputs__field-wrap--row-start > .inputs__field-wrap:not(:last-child) {
            margin-right: 5rem;
        }

.inputs__field-wrap--column .inputs__field-container {
    width: 100%;
    margin-left: 0;
}

.inputs__field-label-wrap {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

    .inputs__field-label-wrap .inputs__tooltip {
        /*font-size: 1.5rem;*/
        margin-top: 0rem !important;
        margin-bottom: 1rem;
    }

    .inputs__field-label-wrap > div:first-child {
        display: flex;
        gap: 0.5rem;
    }

.inputs__field--50 {
    width: calc(50% - 1rem);
}

.inputs__field--70 {
    width: calc(70% - 1.5rem);
}

@media screen and (max-width: 1024px) {
    .inputs__field--50 {
        width: calc(50% - 0.5rem);
    }

    .inputs__field--70 {
        width: calc(70% - 0.5rem);
    }
}

.inputs__field--50 .inputs__field--50 {
    width: calc(50% - 0.75rem);
}

.inputs__field--33 {
    width: calc((100% - 2rem * 2) / 3);
}

    .inputs__field--33 .inputs__field--50 {
        width: calc((100% - 0.75rem * 2) / 3);
    }

.inputs__field--100 {
    width: 100%;
}

.inputs__field:focus {
    border-color: #5DCF7D;
    caret-color: #5DCF7D;
}

.inputs__field-label {
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.inputs__field-label--hide {
    opacity: 0;
}

.inputs__field-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

    .inputs__field-container .inputs__field {
        margin-bottom: 0rem;
    }

    .inputs__field-container .select {
        width: 100%;
    }

    .inputs__field-container .cke {
        border: 0.1rem solid #ADADAD !important;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 0.5rem !important;
        width: 100%;
        overflow: hidden;
    }

        .inputs__field-container .cke#cke_edit-email1-body, .inputs__field-container .cke#cke_edit-email2-body {
            padding-left: 0 !important;
        }

.inputs__field-container--row {
    -ms-flex-direction: row;
    flex-direction: row;
}

    .inputs__field-container--row > .inputs__field-wrap:not(:last-child),
    .inputs__field-container--row > .inputs__field:not(:last-child),
    .inputs__field-container--row .btn:not(:last-child) {
        margin-right: 1.5rem;
    }

.inputs textarea.inputs__field {
    line-height: 1;
    padding-top: 1.5rem;
    min-height: 12rem;
    resize: none;
}

.inputs__tooltip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    color: #9198A9;
    margin-top: 1.5rem;
    font-weight: 400;
}

    .inputs__tooltip a {
        color: var(--primary-green);
    }

        .inputs__tooltip a:hover {
            text-decoration: underline;
        }

    .inputs__error,
    .inputs .validation-error-label {
        color: var(--red);
        margin-top: 1rem;
        font-size: 1.2rem;
        font-weight: 500;
    }

.inputs .select {
    margin-bottom: 2.5rem;
}

[aria-invalid="true"] {
    border-color: var(--red);
}

.validation-error-label.field-validation-valid {
    display: none;
}

.jscolor.btn {
    color: #54BDDD;
    width: 20rem;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.text-start {
    text-align: start;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.lowercase {
    text-transform: lowercase !important;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.min-w-100 {
    min-width: 100%;
}

.mt-04 {
    margin-top: 0.4rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-15 {
    margin-top: 1.5rem;
}

.mt-16 {
    margin-top: 1.6rem;
}

.mt-18 {
    margin-top: 1.8rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-25 {
    margin-top: 2.5rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mb-05 {
    margin-bottom: 0.5rem;
}

.mb-08 {
    margin-bottom: 0.8rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 1.2rem;
}

.mb-15 {
    margin-bottom: 1.5rem;
}

.mb-16 {
    margin-bottom: 1.6rem;
}

.mb-18 {
    margin-bottom: 1.8rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-10 {
    margin-bottom: 10rem;
}

.mr-05 {
    margin-right: 0.5rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.ml-05 {
    margin-left: 0.5rem;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-6 {
    margin-left: 6rem;
}

.ml-44 {
    margin-left: 4.4rem;
}

.fs-12 {
    font-size: 1.2rem;
}

.fs-13 {
    font-size: 1.3rem;
}

.fs-14 {
    font-size: 1.4rem;
}

.fs-15 {
    font-size: 1.5rem;
}

.fs-16 {
    font-size: 1.6rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.fs-2 {
    font-size: 2rem;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.mw-25 {
    min-width: 25rem;
}

.color-primary-green {
    color: var(--primary-green);
}

.separator {
    border: 1px solid rgba(218, 222, 226, 0.6);
    width: 100%;
    height: 0px;
}

.usage-instructions {
    margin-top: 2.4rem;
    border-radius: 2rem;
    padding: 2.4rem;
    color: var(--primary-green);
    background: linear-gradient(rgba(68, 166, 179, 0.12), rgba(68, 166, 179, 0.12)), #fff;
    text-align: center;
}

.notify-alert {
    padding: 3.5rem !important;
}

    .notify-alert .swal2-popup {
        min-width: auto !important;
    }

    .notify-alert .swal2-content {
        color: #fff !important;
        font-weight: 600;
    }

    .notify-alert.notify-success .swal2-popup {
        background: var(--green);
    }

    .notify-alert.notify-error .swal2-popup {
        background: var(--red);
    }

.form-tight .inputs__field-wrap {
    margin-bottom: 1.5rem;
}

.form-tight .inputs__tooltip {
    margin-top: .6rem;
}

.form-tight .inputs__field-wrap--column .inputs__field-label {
    font-size: 1.5rem;
    font-weight: 400;
    /*min-height: 3rem;*/
}

.form-tight .validation-error-label {
    margin-top: 0.5rem;
}

.form-tight.form-tight--33 {
    width: calc(100% / 3);
}

.form-tightly .inputs__field-wrap {
    margin-bottom: 1rem;
}

.form-tightly .inputs__field-label {
    font-size: 1.4rem;
    font-weight: 400;
    min-height: 2.5rem;
}

.form-tightly .inputs__field--50 {
    width: calc( 50% - 0.7rem);
}

.form-tightly .checkbox-container {
    margin-top: 0.5rem;
}

.btn--medium {
    min-width: 15rem;
    padding: 1.4rem 4.4rem;
}

.btn--small {
    line-height: 4.5rem;
    font-size: 1.5rem;
    padding: 0 2rem;
}

.btn--lower {
    line-height: 5rem;
}

.btn--instruction {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 5rem;
    padding: 1rem 1.6rem;
    border: 0.1rem solid var(--primary-green);
    background: var(--bg-color);
    color: var(--primary-green);
}

.btn--instruction img {
    width: 2.1rem;
    height: 2.1rem;
}

.btn--import {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 0.1rem solid #eaedef;
    border-radius: 5rem;
    padding: 1rem 1.6rem;
    box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
    background: var(--bg-color);
    color: var(--black);
}

    .btn--import svg {
        width: 2.1rem;
        height: 2.1rem;
    }

    .btn--import:hover svg path {
        stroke: var(--bg-color);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .form-layout {
        background: #fff;
        border-radius: 0.6rem;
        -webkit-box-shadow: 0 1rem 2rem rgb(144 144 144 / 10%), 0 0.2rem 0.6rem rgb(144 144 144 / 4%), 0 0 0.1rem rgb(144 144 144 / 4%);
        box-shadow: 0 1rem 2rem rgb(144 144 144 / 10%), 0 0.2rem 0.6rem rgb(144 144 144 / 4%), 0 0 0.1rem rgb(144 144 144 / 4%);
        padding: 3rem;
    }

.form-title {
    width: 100%;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
}

.hidden {
    display: none !important;
}

span.required::after {
    content: "*";
    color: var(--red);
}

.datatable-title {
    font-weight: 500;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table iframe {
    width: 100%;
    height: 50rem;
    border: none;
}

.table--clickable tbody tr {
    cursor: pointer;
}

.clickable {
    cursor: pointer;
}

.clickable-explicitly {
    text-decoration: underline;
}

.clickable-implicitly:hover {
    text-decoration: underline;
}

table[id^="product"] img,
table[id^="shipment"] img,
table[id^="group"] img,
table[id^="request"] img {
    max-height: 7rem;
}

.shipment-item-card > span {
    font-weight: 500;
}

.shipment-item-card .tooltip__content--top {
    top: calc( 100% - 6rem);
}

.shipment-item-card > div {
    font-style: italic;
    font-size: 1.45rem;
}

    .shipment-item-card > div a:hover {
        text-decoration: underline;
    }

    .shipment-item-card > div:first-of-type {
        margin-top: 1rem;
    }

.shipment-item-card--complete > div:first-of-type {
    margin-top: 1.5rem;
}

.shipment-item-card--complete > div:last-of-type {
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

.color-primary {
    color: var(--primary);
}

.color-green {
    color: var(--green);
}

.color-red {
    color: var(--red);
}

.color-blue {
    color: var(--blue);
}

.color-cyan {
    color: var(--cyan);
}

.color-orange {
    color: var(--orange);
}

.color-yellow {
    color: var(--yellow);
}

.d-flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.direction-column {
    -ms-flex-direction: column;
    flex-direction: column;
}

.direction-row {
    -ms-flex-direction: row;
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.al-sf-end {
    align-self: flex-end;
}

.gap-05 {
    gap: 0.5rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-15 {
    gap: 1.5rem;
}

.gap-2 {
    gap: 2rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.text-break-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 1.5rem 0;
}

    .text-break-line > span {
        flex-shrink: 0;
    }

    .text-break-line > hr {
        width: 100%;
    }

.tabs-container {
}

    .tabs-container .tabs .tab, .tabs-container .tabs input[type=radio] {
        display: none;
    }

        .tabs-container .tabs input[type=radio] + label {
            display: inline-block;
            margin: 0;
            padding: 0.5rem 1.5rem;
            font-size: 2.2rem;
            opacity: 0.6;
            cursor: pointer;
            user-select: none;
        }

        .tabs-container .tabs input[type=radio]:checked + label {
            border-bottom: 0.2rem solid #E75267;
            opacity: 1;
        }

    .tabs-container .tabs .tab {
        margin: 0;
        padding: 2rem 0;
    }

.tabs input:first-of-type:checked + label ~ .tab:first-of-type,
.tabs input:nth-of-type(2):checked + label ~ .tab:nth-of-type(2),
.tabs input:nth-of-type(3):checked + label ~ .tab:nth-of-type(3),
.tabs input:nth-of-type(4):checked + label ~ .tab:nth-of-type(4) {
    display: block;
}

.tabscontainer {
    display: flex;
    overflow: hidden;
    border: none;
    border-radius: 1rem;
    background-color: var(--bg-tab);
    padding: 0.3rem;
    gap: 0.4rem;
}

    .tabscontainer button {
        width: 100%;
        color: var(--text-tab-color);
        background-color: unset;
        border: none;
        border-radius: 1rem;
        outline: none;
        cursor: pointer;
        padding: 1.45rem 1.6rem;
        transition: 0.3s;
    }

        .tabscontainer button:hover {
            background-color: var(--bg-tab-hover);
        }

        .tabscontainer button.active {
            color: #fff;
            background-color: #54C3B8;
        }

.tabcontent {
    display: none;
}

.sport-predispositions-info {
    display: flex;
    flex-direction: column;
    justify-self: center;
}

.grade-settings-page .settings-container {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.8rem;
}

.grade-settings-page .settings-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 0.6rem;
    font-size: 2rem;
    padding: 1.5rem;
    box-shadow: 0 1rem 2rem rgb(144 144 144 / 10%), 0 0.2rem 0.6rem rgb(144 144 144 / 4%), 0 0 0.1rem rgb(144 144 144 / 4%);
}

    .grade-settings-page .settings-line > div:first-child {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .grade-settings-page .settings-line > div:first-child span {
            font-weight: 500;
        }

    .grade-settings-page .settings-line input[type="text"] {
        font-size: 1.8rem;
        width: 3.2rem;
        padding-left: 0.4rem;
        line-height: initial;
    }

    .grade-settings-page .settings-line .three-digit {
        width: 4.2rem !important;
    }

.orthostatic-sample-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.orthostatic-sample {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    flex-shrink: 0;
}

    .orthostatic-sample.orthostatic-sample--excellent {
        background: #45cad9;
    }

    .orthostatic-sample.orthostatic-sample--good {
        background: #2adf8b;
    }

    .orthostatic-sample.orthostatic-sample--warn {
        background: #f5be29;
    }

    .orthostatic-sample.orthostatic-sample--danger {
        background: #ff4343;
    }

.orthostatic-legend {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

    .orthostatic-legend .orthostatic-sample-container {
        align-items: normal;
    }

    .orthostatic-legend .orthostatic-sample {
        width: 1rem;
        height: auto;
        border-radius: 0;
    }

.parcels .inputs__field-label {
    width: 18rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.order-shipment .inputs__field-label {
    width: 13rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.parcels .table-filters__item:not(.table-filters__item--total) .select {
    min-width: 16rem;
}

.clients .tooltip.pr-count-tooltip .tooltip__content::before {
    left: 6.5rem;
}

.clients .tooltip.orthostatic-sample-tooltip > .orthostatic-sample {
    margin: 0 auto;
}

.clients .tooltip.orthostatic-sample-tooltip .tooltip__content::before {
    left: 2.5rem;
}

.svg-buttons-container {
    display: flex;
    align-items: end;
    width: 100%;
    max-width: calc((100% - 4rem) / 2);
}

    .svg-buttons-container input {
        opacity: 0;
    }

.svg-button {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    cursor: pointer;
    height: 4.5rem;
    line-height: 0;
}

    .svg-button svg {
        height: 100%;
    }

.svg-button--active {
    border: 0.1rem solid #adadad;
}

.close-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

    .close-btn:hover {
        opacity: 0.3;
    }

    .close-btn div {
        -webkit-transition: background 0.2s;
        -o-transition: background 0.2s;
        transition: background 0.2s;
        width: 100%;
        height: 0.1rem;
        border-radius: 25%;
        position: absolute;
        background: #000;
    }

        .close-btn div:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .close-btn div:nth-child(2) {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

.attached-files {
    display: flex;
    flex-flow: column;
}

    .attached-files .close-btn {
        margin-left: 0.7rem;
        margin-top: 0.1rem;
    }

    .attached-files > div {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
    }

        .attached-files > div:last-child {
            margin-bottom: 1rem;
        }

.error-message {
    width: 100%;
    color: var(--red);
    text-align: center;
}

.help-btn > svg {
    cursor: pointer;
    fill: #a5a5a5;
    width: 2.4rem;
}

    .help-btn > svg:hover {
        fill: var(--primary);
    }

.info-icon {
    font-size: 0rem;
}

    .info-icon svg {
        fill: #a5a5a5;
        width: 2rem;
    }

    .info-icon .tooltip__content {
        left: -0.3rem;
        top: calc( 100% + 0.3rem);
    }

.inputs__field-label .info-icon svg {
    margin-left: 0.7rem;
}

.inputs__field-label .info-icon .tooltip__content {
    left: 0.4rem;
    top: calc(100% + 0.7rem);
}

.hover-primary:hover {
    color: var(--primary);
}

.hover-green:hover {
    color: var(--green);
}

.hover-red:hover {
    color: var(--red);
}

.toggle-link {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 300;
}

.badge-count {
    display: inline-block;
    border-radius: 50%;
    width: 1.4rem;
    height: 1.4rem;
    background-color: var(--primary);
    position: absolute;
    right: -0.8rem;
    top: -0.6rem;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4rem;
}

.splide__list img {
    height: 26rem;
}

.splide__list {
    gap: 1.3rem;
}

.splide__arrow.splide__arrow--prev {
    left: -2rem !important;
}

.splide__arrow.splide__arrow--next {
    right: -2rem !important;
}

.SumoSelect {
    width: 100%;
}

    .SumoSelect .select-all.partial > span i,
    .SumoSelect .select-all.selected > span i,
    .SumoSelect > .optWrapper.multiple > .options li.opt.selected span i {
        background-color: var(--primary) !important;
    }

    .SumoSelect > .CaptionCont {
        border: 0.1rem solid #eaedef !important;
        border-radius: 1.2rem !important;
        padding: 1rem 1.6rem;
        box-shadow: 0 0.6rem 1rem 0 rgba(75, 85, 99, 0.03);
        background: var(--bg-color) !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 5.4rem;
        font-weight: 300;
        cursor: pointer;
    }

        .SumoSelect > .CaptionCont::before {
            content: "";
            background-size: 2.1rem 2.1rem;
            display: block;
            background-image: url(../icons/select.svg);
            background-repeat: no-repeat;
            position: absolute;
            left: calc(100% - 3rem);
            width: 2.1rem;
            height: 2.1rem;
            top: calc(50% - 1rem);
        }

        .SumoSelect > .CaptionCont > span {
            cursor: pointer !important;
            padding-right: 0 !important;
        }

            .SumoSelect > .CaptionCont > span.placeholder {
                cursor: pointer;
                color: #9198A9 !important;
                font-style: normal !important;
                font-weight: 300;
            }

        .SumoSelect > .CaptionCont > label {
            display: none;
            cursor: pointer;
        }

    .SumoSelect.open > .CaptionCont,
    .SumoSelect:focus > .CaptionCont,
    .SumoSelect:hover > .CaptionCont {
        box-shadow: none !important;
        border-color: #ADADAD !important;
    }

    .SumoSelect.open .CaptionCont::before {
            transform: rotateX(-180deg);
    }

    .SumoSelect > .optWrapper {
        border: none !important;
        -webkit-box-shadow: 0 0 0.72rem 0.08rem rgb(0 4 7 / 15%) !important;
        box-shadow: 0 0 0.72rem 0.08rem rgb(0 4 7 / 15%) !important;
        border-radius: 0.8rem;
    }

        .SumoSelect > .optWrapper > .options {
            max-height: 18.5rem;
        }

            .SumoSelect > .optWrapper > .options li.opt {
                font-weight: 300;
                border: 0.1rem solid transparent !important;
                padding: 1rem !important;
                cursor: pointer;
            }

                .SumoSelect > .optWrapper > .options li.opt:hover {
                    background-color: #f2f9fa !important;
                    color: var(--primary-green);
                }

                .SumoSelect > .optWrapper > .options li.opt.disabled {
                    display: none;
                }

            .SumoSelect > .optWrapper > .options::-webkit-scrollbar {
                width: 0.4rem;
            }

            .SumoSelect > .optWrapper > .options::-webkit-scrollbar-track {
                background: transparent;
            }

            .SumoSelect > .optWrapper > .options::-webkit-scrollbar-thumb {
                background: rgba(145, 152, 169, 0.5);
            }

                .SumoSelect > .optWrapper > .options::-webkit-scrollbar-thumb:hover {
                    background: var(--primary);
                }

        .SumoSelect .select-all > span, .SumoSelect > .optWrapper.multiple > .options li.opt span {
            width: 3rem !important;
            margin-left: -3rem !important;
        }

        .SumoSelect > .optWrapper.multiple > .options li.opt {
            padding: 1rem 1rem 1rem 3rem !important;
        }

    .SumoSelect.open > .optWrapper {
        top: 4.6rem;
    }

    .SumoSelect.open .search-txt {
        height: 100%;
        font-weight: 300;
        font-size: 1.6rem;
        width: 100%;
        padding-left: 2rem;
        background: transparent;
    }

.group-compose-page .table-filters__item {
    position: relative;
}

    .group-compose-page .table-filters__item .table-filters__item-label {
        display: block;
        margin-bottom: 0.6rem;
    }

.group-compose-page .SumoSelect.open > .optWrapper {
    top: 100% !important;
}

.dropdown-menu {
    position: absolute;
    display: none;
    text-align: left;
    list-style: none;
    background: #fff;
    -webkit-box-shadow: 0 0 0.72rem 0.08rem rgba(0, 4, 7, 0.15);
    box-shadow: 0 0 0.72rem 0.08rem rgba(0, 4, 7, 0.15);
    border-radius: 0.8rem;
    margin: 0;
}

    .dropdown-menu.show {
        display: block;
        z-index: 2;
    }

.dropdown-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    font-weight: 300;
    white-space: nowrap;
    padding: 1.4rem;
    border: 0.1rem solid transparent;
    cursor: pointer;
}

    .dropdown-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eaedef;
    }

    .dropdown-item:hover {
        background: #f2f9fa;
        color: var(--primary-green);
    }

    .dropdown-item > input {
        width: 1.45rem;
        height: 1.45rem;
        -webkit-appearance: checkbox;
    }

.dropdown-toggle {
    color: var(--black);
    background-color: var(--bg-color);
    padding: 1rem 1.6rem;
    min-width: 8.2rem;
    justify-content: start;
    border: 0.1rem solid #eaedef;
}

.dropdown-toggle.show::after {
    transform: rotateX(-180deg);
}

    .btn.dropdown-toggle:hover {
        border-color: #ADADAD;
        background: var(--bg-color);
    }

.dropdown-toggle::after {
    content: "";
    background-size: 2.1rem 2.1rem;
    display: block;
    background-image: url(../icons/select.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: calc(100% - 3rem);
    width: 2.1rem;
    height: 2.1rem;
    top: calc(50% - 1rem);
}

.custom-search .table-filters__item {
    
}

.bootstrap-table .fixed-table-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

    .bootstrap-table .fixed-table-toolbar .columns-right {
        margin-left: 0.5rem;
    }

    .bootstrap-table .fixed-table-toolbar .bs-bars,
    .bootstrap-table .fixed-table-toolbar .search,
    .bootstrap-table .fixed-table-toolbar .columns {
        position: relative;
        /*margin-top: 1rem;*/
        /*margin-bottom: 1rem;*/
    }

        .bootstrap-table .fixed-table-toolbar .columns .dropdown-menu {
            text-align: left;
            max-height: 300px;
            overflow-y: auto;
            overflow-x: hidden;
            -ms-overflow-style: scrollbar;
            z-index: 1001;
        }

        .bootstrap-table .fixed-table-toolbar  .btn-group {
            display: flex;
            gap: 1.2rem;
        }

.bootstrap-table .fixed-table-container {
    position: relative;
    clear: both;
    overflow-x: auto;
    overflow-y: hidden;
}

    .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading {
        align-items: center;
        background: #fff;
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        z-index: 1000;
        transition: visibility 0s, opacity .15s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

        .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.open {
            visibility: visible;
            opacity: 1;
        }

        .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap {
            align-items: baseline;
            display: flex;
            justify-content: center;
        }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .loading-text {
                margin-right: 0.6rem;
            }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap {
                align-items: center;
                display: flex;
                justify-content: center;
            }

                .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot, .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after, .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
                    content: "";
                    animation-duration: 1.5s;
                    animation-iteration-count: infinite;
                    animation-name: loading;
                    background: #212529;
                    border-radius: 50%;
                    display: block;
                    height: 0.5rem;
                    margin: 0 0.4rem;
                    opacity: 0;
                    width: 0.5rem;
                }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot {
                animation-delay: .3s;
            }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot, .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after, .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
                content: "";
                animation-duration: 1.5s;
                animation-iteration-count: infinite;
                animation-name: loading;
                background: #212529;
                border-radius: 50%;
                display: block;
                height: 0.5rem;
                margin: 0 0.4rem;
                opacity: 0;
                width: 0.5rem;
            }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after {
                animation-delay: .6s;
            }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot, .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after, .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
                content: "";
                animation-duration: 1.5s;
                animation-iteration-count: infinite;
                animation-name: loading;
                background: #212529;
                border-radius: 50%;
                display: block;
                height: 0.5rem;
                margin: 0 0.4rem;
                opacity: 0;
                width: 0.5rem;
            }

    .bootstrap-table .fixed-table-container .table thead th .sortable {
        cursor: pointer;
        background-position: right;
        background-repeat: no-repeat;
    }

    .bootstrap-table .fixed-table-container .table thead th .both {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7XQMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC);
    }

    .bootstrap-table .fixed-table-container .table thead th .asc {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==);
    }

    .bootstrap-table .fixed-table-container .table thead th .desc {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII=);
    }

.bootstrap-table .float-right {
    float: right;
}

.bootstrap-table .float-left {
    float: left;
}

.bi-list-ul {
    height: 2rem;
}

    .bi-list-ul::before {
        content: "";
        width: 2.1rem;
        height: 2.1rem;
        background-size: 2.1rem 2.1rem;
        display: block;
        background-image: url(/icons/list-ul.svg); 
        background-repeat: no-repeat;
    }

input[type=range].cropit-image-zoom-input {
    width: 100%;
    -webkit-appearance: none;
}

    input[type=range].cropit-image-zoom-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 5px;
        background: #ddd;
        border: none;
        border-radius: 3px;
    }

    input[type=range].cropit-image-zoom-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        border: none;
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background: #00BCD4;
        margin-top: -4px;
    }

    input[type=range].cropit-image-zoom-input:focus {
        outline: none;
    }

        input[type=range].cropit-image-zoom-input:focus::-webkit-slider-runnable-track {
            background: #ccc;
        }

.cropit-image-preview-container {
    border: 1px solid #9198A9;
    border-radius: 6px;
}

    .cropit-image-preview-container > div {
        position: relative;
    }

        .cropit-image-preview-container > div svg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50%;
            height: 50%;
            fill: #9198A9;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

.card-empty-message {
    text-align: center;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .card-header .details-name {
        font-size: 2.7rem;
    }

        .card-header .details-name > input {
            font-weight: inherit;
        }

    .card-header .details-image {
        overflow: hidden;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        width: 5rem;
        height: 5rem;
        margin-right: 1rem;
        flex-shrink: 0;
    }

.card-header--name {
    display: flex;
    align-items: center;
}

.card-header--actions {
    display: flex;
}

    .card-header--actions > a {
        width: 2rem;
        height: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .card-header--actions > a:not(:last-child) {
            margin-right: .5rem;
        }

    .card-header--actions svg {
        width: 100%;
        height: 100%;
    }

        .card-header--actions svg * {
            fill: #54BDDD;
        }

    .card-header--actions .btn {
        height: 4.5rem;
        font-size: 1.5rem;
        padding: 0px 2rem;
    }

.card-body {
    overflow-y: auto;
    max-height: 39rem;
}

    .card-body hr {
        margin-bottom: 0.7rem;
        height: 0.5px;
        border: none;
        background: #1A1A1A;
        opacity: 0.6;
    }

.card-line {
    display: flex;
    font-size: 1.75rem;
}

    .card-line:not(:last-child) {
        margin-bottom: 0.7rem;
    }

    .card-line p {
        font-weight: 500;
        margin-right: 0.7rem;
    }

.details-card form {
    display: block;
}

.notes-card .note-list .note,
.stats-card .stats-list .activity {
    display: flex;
    gap: 0.5rem;
}

    .notes-card .note-list .note:not(:last-child),
    .stats-card .stats-list .activity:not(:last-child) {
        margin-bottom: 1rem;
    }

    .notes-card .note-list .note [class^="icon-"],
    .stats-card .stats-list .activity [class^="icon-"] {
        font-size: 3rem;
        margin-top: 0.3rem;
    }

.group-compose-page .content {
    margin-bottom: 7rem;
}

.group-compose-page .warm-filter {
    font-size: 1.8rem;
}

.group-compose-page .tab {
    background: #fff;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 1.5rem !important;
    box-shadow: 0px 10px 20px rgb(144 144 144 / 10%), 0px 2px 6px rgb(144 144 144 / 4%), 0px 0px 1px rgb(144 144 144 / 4%);
}

.group-compose-page .tabs-container .tabs input[type=radio] + label {
    font-size: 2rem;
}

.group-compose-page .tabs-container .tabs input[type=radio]:checked + label {
    background: #fff;
    border-bottom: none;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    opacity: 1;
    font-size: 2rem;
}

.group-compose-page .dataTables_wrapper thead th {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.contact-details .block-top {
    margin-bottom: 4rem;
}

.group-compose-page .section-divided {
    display: flex;
    justify-content: space-between;
}

    .group-compose-page .section-divided > div {
        width: 49%;
    }

        .group-compose-page .section-divided > div:last-child {
            padding-top: 14.7rem;
        }

.group-compose-page .tooltip__content,
.group-compose-page .tooltip__content {
    max-width: initial;
}

.group-compose-page .contacts-table .dt-body-center .tooltip__content::before {
    left: 2.65rem;
}

.group-compose-page .grade-history-table td.dt-body-center:nth-of-type(2) .tooltip__content::before {
    left: 2.67rem;
}

.group-compose-page .grade-history-table td.dt-body-center:nth-of-type(3) .tooltip__content::before {
    left: 3.1rem;
}

.section-divided {
    display: flex;
    justify-content: space-between;
}

    .section-divided > div {
        width: 49%;
    }

        .section-divided > div:last-child {
            padding-top: 14rem;
        }

    .section-divided .tab .card-header {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .section-divided .details-card .card-header--actions a {
        margin-right: 1rem;
    }

        .section-divided .details-card .card-header--actions a:last-child {
            margin-right: 0px;
        }

    .section-divided .details-card .card-line,
    .section-divided .metrics-card .card-line {
        align-items: baseline;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

        .section-divided .details-card .card-line p,
        .section-divided .metrics-card .card-line p {
            color: #222;
            flex-shrink: 0;
        }

        .section-divided .details-card .card-line span,
        .section-divided .metrics-card .card-line span {
            font-weight: 300;
        }

    .section-divided .details-card hr {
        background: rgba(0, 0, 0, 0.15);
        margin: 1.5rem 0px;
    }

    .section-divided .tab {
        padding: 2.5rem !important;
    }

        .section-divided .tab .card-header .details-name {
            font-size: 2.5rem;
        }

    .section-divided .tabs-container .tabs input[type=radio] + label {
        padding: 1rem 2rem;
        font-size: 1.8rem !important;
    }

    .section-divided .inputs__field-wrap.inputs__field-wrap--invisible {
    }

    .section-divided .notes-card .note svg,
    .section-divided .stats-card .activity svg {
        width: 2rem !important;
        margin-right: 0.5rem;
    }

        .section-divided .notes-card .note svg > *,
        .section-divided .stats-card .activity svg > * {
            fill: #9198A9;
        }

    .section-divided .notes-card .note i,
    .section-divided .stats-card .activity i {
        width: 2rem !important;
        color: #9198A9;
        margin-right: 0.5rem;
        font-size: 2rem !important;
    }

    .section-divided .notes-card .note b,
    .section-divided .stats-card .activity b {
        font-weight: 500;
    }

    .section-divided .notes-card .note,
    .section-divided .stats-card .activity {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

        .section-divided .notes-card .note:last-child,
        .section-divided .stats-card .activity:last-child {
            border-bottom: none;
            margin-bottom: 0px;
            padding-bottom: 0px;
        }

.activity__bottom-text {
    margin-top: 0.7rem !important;
    display: block;
}

.stats-table {
    width: 100%;
    /*   box-shadow: 0rem 1rem 1.8rem 0rem rgb(236, 237, 238, 0.35);*/
}

    .stats-table tbody tr {
        border: none;
    }

        .stats-table tbody tr td {
            padding: 2rem;
        }

.stats-table-name {
    color: #fff;
    font-weight: 700;
    background-color: var(--primary);
    text-transform: uppercase;
}

.stats-table-info {
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.progress-container {
    width: 100%;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 1rem;
    position: relative;
    height: 2rem;
}

.progress-fill {
    height: 100%;
    position: absolute;
}

    .progress-fill:first-of-type {
        border-radius: 1rem 0 0 1rem;
    }

    .progress-fill:last-of-type {
        border-radius: 0 1rem 1rem 0;
    }

.marker-line {
    position: absolute;
    width: 0.5rem;
    height: 2.7rem;
    background-color: darkblue;
    top: -0.3rem;
}

.progress-labels-container {
    position: relative;
    width: 100%;
    margin-top: 0.5rem;
}

.progress-label {
    position: absolute;
    font-size: 1.2rem;
}

.table-month-slider {
    background: #fff;
    box-shadow: 0rem 1rem 1.8rem 0rem #ecedee;
    border-radius: 1.2rem;
    padding: 1rem 3rem;
}

.orthostatic-sample__calendar {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3.2rem 0;
}

.calendar__week-days > th {
    font-weight: 500;
    padding: 1.6rem;
}

.calendar__day {
    flex-grow: 1;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: right;
}

.calendar__pulse {
    font-size: 1.6rem;
}

.calendar__cell {
    vertical-align: text-top;
    border: 0.1rem solid #fff;
    border-top-color: #DEDEDE;
    border-right-color: #DEDEDE;
    padding: 0.8rem 1.6rem;
    height: 7.7rem;
}

    .calendar__cell:last-child {
        border-right-color: transparent;
    }

    .calendar__cell.calendar__cell--no-sample {
        color: #686868;
        background: #FAFAFA;
    }

    .calendar__cell.calendar__cell--fine {
        color: #fff;
        background: #00b0f0;
    }

    .calendar__cell.calendar__cell--good {
        color: #fff;
        background: #92d050;
    }

    .calendar__cell.calendar__cell--warn {
        background: #f7f71b;
    }

    .calendar__cell.calendar__cell--danger {
        color: #fff;
        background: #ff4242;
    }

    .calendar__cell > div {
        height: 100%;
    }

    .calendar__cell a {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #fff;
        text-decoration: none;
        padding: 0.8rem 1.6rem;
        height: 100%;
    }

.calendar__month {
    font-weight: 600;
    font-size: 2rem;
    line-height: 150%;
    text-align: center;
}

#cookie-popup {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #fff;
    padding: 2.5rem;
    border-top: 0.1rem solid var(--border-color);
}

    #cookie-popup > .btn {
        height: 3.8rem;
        padding: 0 1.6rem;
    }

.iti .iti__selected-country-primary {
    padding: 0 0.8rem 0 1.2rem;
}

.iti__search-input {
    padding: 0.6rem 1.2rem;
}

.tutorial-step {
    position: relative;
}

    .tutorial-step.tutorial-step--active {
        border: 0.3rem var(--primary) solid;
        z-index: 2001 !important;
        border-radius: 1.2rem;
    }

        .tutorial-step.tutorial-step--active:not(.btn) {
            background: #fff;
        }

        .btn.tutorial-step.tutorial-step--active {
            border-radius: 5rem;
        }

        .btn.btn--empty.tutorial-step.tutorial-step--active:not(.btn--primary) {
            background: #fff;
        }

        .tutorial-step.tutorial-step--active:not(.inputs__field):hover {
            -webkit-box-shadow: 0rem 0.2rem 1.2rem 0rem #e1e2e3 !important;
            box-shadow: 0rem 0.2rem 1.2rem 0rem #e1e2e3 !important;
        }

.inputs__field.tutorial-step--active {
    background: #fff;
}

.tutorial-popup-wrap {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

    .tutorial-popup-wrap.tutorial-popup-wrap--active {
        display: block;
        opacity: 1;
        overscroll-behavior: none;
        touch-action: none;
    }

html.tutorial-scroll-lock,
body.tutorial-scroll-lock,
.tutorial-scroll-lock {
    overflow: hidden !important;
    overscroll-behavior: none;
}

.tutorial-popup {
    display: none;
    position: fixed;
    z-index: 2002;
    background: var(--bg-popup);
    padding: 1.6rem 3rem 1.6rem 2rem;
    border-radius: 1.2rem;
    max-width: 42rem;
    width: min(42rem, calc(100vw - 3.2rem));
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.18);
}

    .tutorial-popup.tutorial-popup--active {
        display: block;
    }

    .tutorial-popup .tutorial-popup__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: flex;
        align-items: center;
        width: 1.6rem;
        height: 1.6rem;
        cursor: pointer;
        opacity: 1;
    }

        .tutorial-popup .tutorial-popup__close:hover {
            opacity: 0.5;
        }

        .tutorial-popup .tutorial-popup__close div {
            -webkit-transition: background 0.2s;
            -o-transition: background 0.2s;
            transition: background 0.2s;
            width: 100%;
            height: 0.1rem;
            border-radius: 25%;
            position: absolute;
            background: var(--text-color);
        }

            .tutorial-popup .tutorial-popup__close div:nth-child(1) {
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .tutorial-popup .tutorial-popup__close div:nth-child(2) {
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

.tutorial-popup__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

    .tutorial-popup__content > svg {
        width: 3.5rem;
        flex-shrink: 0;
        fill: rgb(250, 130, 19);
    }

.tutorial-popup__title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.tutorial-popup__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.2rem;
}

.tutorial-popup__media:not([hidden]) {
    margin-top: 1.2rem;
}

.page-title-with-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.page-title-with-hint h1,
.page-title-with-hint h2 {
    margin: 0;
}

.tutorial-restart-btn {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

    .tutorial-restart-btn.is-visible {
        display: flex;
    }

    .tutorial-restart-btn svg {
        width: 2.4rem;
        height: 2.4rem;
        fill: #a5a5a5;
    }

    .tutorial-restart-btn:hover svg,
    .tutorial-restart-btn:focus-visible svg {
        fill: var(--primary);
    }

    .tutorial-restart-btn[data-tooltip]::after {
        content: attr(data-tooltip);
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0;
        z-index: 2100;
        width: max-content;
        max-width: 28rem;
        padding: 0.8rem 1.2rem;
        border-radius: 0.8rem;
        background: #2e2e36;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.35;
        text-align: left;
        white-space: normal;
        box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.4rem);
        transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
        pointer-events: none;
    }

    .tutorial-restart-btn[data-tooltip]:hover::after,
    .tutorial-restart-btn[data-tooltip]:focus-visible::after {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.nav__item.tutorial-step--active {
    background: #fff;
    border-radius: 0.8rem;
}

.cats__list.tutorial-step--active {
    background: #fff;
    border-radius: 1.2rem;
    padding: 0.8rem;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 62.5%;
    }

    body {
        overflow: auto;
    }

    .mb-hide {
        display: none !important;
    }

    .mb-show {
        display: block;
    }

    .nav_mobile {
        display: flex;
        justify-content: space-between;
        padding: 1.6rem 1.6rem 1rem 1.6rem;
    }

    .burger-menu {
        display: flex;
        width: 1.8rem;
    }

    .burger-icon {
        z-index: 101;
    }

    .icon-open,
    .burger-toggle:checked + .burger-icon .icon-close,
    .burger-toggle:checked + .burger-icon ~ .menu-box {
        display: flex;
    }

    .icon-close,
    .burger-toggle,
    .burger-toggle:checked + .burger-icon .icon-open,
    .menu-box {
        position: relative;
        display: none;
    }

        .icon-close > img {
            z-index: 101;
            position: relative;
        }

        .burger-toggle:checked ~ .menu-box {
            visibility: visible;
        }

    .burger-menu > .menu-box {
        flex-direction: column;
        position: fixed;
        top: 0rem;
        left: 0;
        right: 0;
        visibility: hidden;
        overflow: hidden;
        background-color: #fff;
        list-style: none;
        padding-top: 7.4rem;
        margin: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
    }

        .burger-menu > .menu-box > .menu-item:first-child {
            border-top: 0.1rem solid #eeeff0;
        }

        .burger-menu > .menu-box > .menu-item {
            display: flex;
            align-items: center;
            padding: 1.6rem 1.5rem;
            border-bottom: 0.1rem solid #eeeff0;
            cursor: pointer;
            color: var(--black)
        }

            .burger-menu > .menu-box > .menu-item > a {
                display: flex;
                align-items: center;
                gap: 1rem;
                width: 100%;
                text-decoration: none;
                line-height: 150%;
            }

            .burger-menu > .menu-box > .menu-item > svg:first-of-type {
                width: 2rem;
                height: 2rem;
                margin-right: 0.5rem;
            }

                .burger-menu > .menu-box > .menu-item > svg:first-of-type path {
                    fill: var(--black);
                }

    .logo-mb {
        z-index: 101;
    }

        .logo-mb > a > svg > path {
            fill: var(--primary);
        }

/*    .page__content {
        height: 100%;
        overflow: hidden;
    }*/

    .content {
        margin: 2rem 0;
    }

    .header-switch-container {
        align-items: center;
    }

    .switch-label {
        z-index: 101;
    }

    .icon-open svg path {
        stroke: var(--burger-color);
    }

    .center-wrap {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .h1-subtitle {
        margin-bottom: 2rem;
    }

    .form-tight.form-tight--33 {
        width: 100%;
    }

    .inputs__field--33 {
        width: 100%;
    }

    .inputs__field-label-wrap {
        align-items: start;
    }

    .flex-column {
        flex-direction: column;
    }

    .tooltip__content--small {
        white-space: wrap;
    }

    .page__copyright {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .page__copyright-links {
        flex-direction: column;
        gap: 1rem;
        text-align: start;
    }

    .tabscontainer {
        flex-direction: column;
    }

    .btn--empty {
        padding: 0 1rem;
    }

    .sport-report svg {
        width: 100% !important;
    }

    .sport-report img {
        width: 100% !important;
    }

    .headline {
        font-size: 2rem;
    }

    .sport-predispositions-info {
        font-size: 1.4rem;
    }

    .stats-table {
        justify-content: center;
        display: flex;
    }

        .stats-table tbody tr td {
            padding: 1rem;
        }

    .content.content--w100 .center-wrap {
        min-width: 100%;
    }

    .fixed-table-body tbody td {
        padding: 1.5rem;
    }

    .fixed-table-body thead th {
        padding: 1.5rem;
    }

    .double-fields__details {
        width: 100%;
    }

        .double-fields__details .inputs__field--50 {
            width: 100%;
        }

    .double-fields {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .double-fields__photo {
        width: 100%;
    }

    .simple-title {
        font-size: 2.4rem;
        margin-top: 0rem;
    }

    .cropit-image-preview-container > div {
        width: 100% !important;
    }

    .double-fields__details .btn {
        margin-top: -2rem;
    }

    .swal2-popup {
        min-width: initial;
    }

    #cookie-popup {
        flex-direction: column;
        align-items: normal;
        gap: 1.5rem;
    }

    .cats__list {
        flex-direction: column;
        gap: 2rem;
    }

    .block-top {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .table-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.5rem;
    }

        .table-filters__item.table-filters__item--progress-bar {
            justify-content: center;
            width: 100% !important;
            padding: 0rem 2rem;
            margin: 3rem 0rem;
        }

            .table-filters__item.table-filters__item--progress-bar.mb-hide {
                display: none;
            }

            .table-filters__item.table-filters__item--progress-bar.mb-show {
                display: flex;
            }

    .table-month-slider {
        padding: 1rem 0rem;
    }

    .calendar__cell {
        padding: 0.5rem 0.5rem;
    }

    .calendar__day {
        font-size: 1.4rem;
    }

    .calendar__pulse {
        text-align: center;
        font-size: 1.2rem;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bootstrap-table .fixed-table-toolbar {
        align-items: unset; 
        flex-direction: column;
        gap: 1rem;
    }

    .bootstrap-table .fixed-table-toolbar .columns-right {
         margin-left: unset; 
    }

    .custom-search {
        width: 100%;
    }

    .actions-panel {
        width: 100%;
        justify-content: space-around;
        padding: 1rem 1.4rem;
        margin-bottom: 3.2rem;
    }

        .actions-panel .table-filters__item {
            justify-content: center;
        }

    .actions-panel .table-filters__item:last-child {
        margin-left: unset;
    }

    .btn.actions-panel--btn {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .actions-panel .table-filters__item {
        flex-direction: column;
        align-items: center;
    }

        .actions-panel .table-filters__item:last-child {
            flex-direction: column-reverse;
        }

    .btn.actions-panel--btn {
        white-space: pre-wrap;
    }
}

@media screen and (max-width: 500px) {
    .block-control {
        flex-direction: column;
        gap: 2rem;
        padding: 2.2rem 1.2rem;
    }

    .actions-panel {
        bottom: 0rem;
    }

@media screen and (max-width: 408px) {
    .flex-column-mb {
        flex-direction: column;
    }

    .block-control--buttons {
        flex-direction: column;
    }

    .btn--primary {
        width: 100%;
    }

    .fixed-table-pagination {
        font-size: 1.3rem;
    }

    .btn.actions-panel--btn {
        font-size: 1rem;
    }

    .table-filters {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile date field & drum picker --- */
.ss-date-field {
    position: relative;
    width: 100%;
}

.ss-date-field--mobile .inputs__field {
    padding-right: 4.8rem;
    text-overflow: clip;
    overflow-x: auto;
    white-space: nowrap;
}

.ss-date-field__wheel-btn {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: none;
    border-radius: 0.8rem;
    background: var(--bg-tab, #F3F4F5);
    color: var(--primary, #54C3B8);
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.ss-date-field__wheel-btn:active {
    opacity: 0.75;
}

.ss-date-field--invalid .inputs__field {
    border-color: var(--red, #E03005);
}

body.ss-has-mobile-date .air-datepicker,
body.ss-has-mobile-date .air-datepicker.-mobile-,
body.ss-has-mobile-date .air-datepicker.-is-mobile-,
body.ss-has-mobile-date .air-datepicker-overlay {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.ss-drum-open {
    overflow: hidden;
}

.ss-drum-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ss-drum-overlay--visible {
    opacity: 1;
}

.ss-drum-sheet {
    width: 100%;
    max-width: 48rem;
    background: var(--bg-color, #fff);
    border-radius: 1.6rem 1.6rem 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.ss-drum-overlay--visible .ss-drum-sheet {
    transform: translateY(0);
}

.ss-drum-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.6rem;
    border-bottom: 0.1rem solid var(--border-color, #EFEFEF);
}

.ss-drum-header__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color, #1A1A1A);
}

.ss-drum-header__btn {
    border: none;
    background: none;
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.ss-drum-header__btn--cancel {
    color: var(--link-color, #9198A9);
}

.ss-drum-header__btn--done {
    color: var(--primary, #54C3B8);
    font-weight: 500;
}

.ss-drum-body {
    position: relative;
    height: 22rem;
    overflow: hidden;
}

.ss-drum-highlight {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    height: var(--ss-drum-item-height, 40px);
    border-top: 0.1rem solid #D8D8D8;
    border-bottom: 0.1rem solid #D8D8D8;
    pointer-events: none;
    z-index: 2;
}

.ss-drum-body::before,
.ss-drum-body::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 35%;
    z-index: 1;
    pointer-events: none;
}

.ss-drum-body::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-color, #fff) 20%, rgba(255, 255, 255, 0));
}

.ss-drum-body::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-color, #fff) 20%, rgba(255, 255, 255, 0));
}

.ss-drum-columns {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 0;
}

.ss-drum-column {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.ss-drum-column__list {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    --ss-drum-item-height: 40px;
}

.ss-drum-column__list::-webkit-scrollbar {
    display: none;
}

.ss-drum-column__pad {
    height: calc(50% - var(--ss-drum-item-height) / 2);
    flex-shrink: 0;
}

.ss-drum-column__item {
    height: var(--ss-drum-item-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-color, #1A1A1A);
    scroll-snap-align: center;
    user-select: none;
}

.ss-drum-overlay--landscape .ss-drum-body {
    height: 16rem;
}

.ss-drum-overlay--landscape .ss-drum-sheet {
    max-height: 90vh;
    overflow: auto;
}

.ss-drum-overlay--tiny .ss-drum-header__title,
.ss-drum-overlay--tiny .ss-drum-header__btn {
    font-size: 1.3rem;
}

.ss-drum-overlay--tiny .ss-drum-column__item {
    font-size: 1.6rem;
}

.ss-date-field--compact .ss-date-field__wheel-btn {
    width: 3.2rem;
    height: 3.2rem;
    right: 0.6rem;
}

.ss-date-field--tiny .inputs__field {
    font-size: 1.4rem;
    line-height: 4.4rem;
    padding-left: 1.4rem;
    padding-right: 4.2rem;
}

.ss-date-field--tiny .ss-date-field__wheel-btn {
    width: 2.8rem;
    height: 2.8rem;
    right: 0.5rem;
}

.ss-date-field--tiny .ss-date-field__wheel-btn svg {
    width: 16px;
    height: 16px;
}

.page-banner--v2 {
    background: #FFF8E6;
    border: 0.1rem solid #E4C35C;
    border-radius: 1.2rem;
    padding: 1.2rem 1.6rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    color: #6B5A1E;
}

@media screen and (max-width: 320px) {
    .ss-drum-body {
        height: 18rem;
    }

    .ss-drum-header {
        padding: 1rem 1.2rem;
    }

    .ss-drum-highlight {
        left: 0.8rem;
        right: 0.8rem;
    }
}

@media screen and (max-width: 1024px) {
}
