﻿:root {
    --light-background: #fff;
    --light-color: #353535;
    --light-box: #fff;
    --dark-background: #0f0f0f;
    --dark-color: #fff;
    --dark-box: #212121;
    --color-blue: #0095ff;
    --color-green: #3bb001;
    --color-red: #dc3545;
    --transition: 0.8s;
}


/* ------------------------------------------------------------ *\ 
	- Reset
\* ------------------------------------------------------------ */

body {
    margin: 0;
    padding: 0;
}

/* ------------------------------------------------------------ *\ 
	- Fonts
\* ------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ------------------------------------------------------------ *\ 
	- Animations
\* ------------------------------------------------------------ */

@keyframes animateGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes animateRadioButton {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(3);
    }
}

@keyframes animateMarker {
    0% {
        stroke-width: 0px;
    }

    50% {
        stroke-width: 6px;
    }

    100% {
        stroke-width: 0px;
    }
}

@keyframes animateTick {
    0% {
        stroke-width: 4px;
    }

    50% {
        stroke-width: 6px;
    }

    100% {
        stroke-width: 4px;
    }
}

@keyframes animateNumbers {
    0% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    25% {
        transform: matrix3d(1, 0, -0.5, -0.01, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    50% {
        transform: matrix3d(1, 0, 0.5, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    75% {
        transform: matrix3d(1, 0, -0.5, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@keyframes moveGradient {
    50% {
        background-position: 100% 50%;
    }
}

@keyframes boxHover {
    to {
        background-position: 200% center;
    }
}

.animation-value {
    display: flex;
    align-items: center;
    perspective: 10000px;
}

    .animation-value .animation__value {
        display: block;
        position: relative;
    }

    .animation-value .animation__value-top {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 50%;
        overflow: hidden;
        transform-style: preserve-3d;
        transform-origin: bottom;
        z-index: 10;
        transition: transform var(--transition);
    }

        .animation-value .animation__value-top span {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            background-color: #fff;
            transition: opacity var(--transition);
        }

            .animation-value .animation__value-top span:first-child {
                transform: rotateX(180deg);
            }

            .animation-value .animation__value-top span:last-child {
                bottom: 0;
            }

    .animation-value .animation__value-bottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 50%;
        background-color: #fff;
        overflow: hidden;
    }

        .animation-value .animation__value-bottom span {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .animation-value.active .animation__value {
        animation: animateNumbers 0.8s 1;
    }

    .animation-value.active .animation__value-top {
        transform: rotateX(180deg);
    }

        .animation-value.active .animation__value-top span:last-child {
            opacity: 0;
        }

    .animation-value.end .animation__value-top,
    .animation-value.end .animation__value-bottom {
        opacity: 0;
    }

/* ------------------------------------------------------------ *\ 
	- Main
\* ------------------------------------------------------------ */

.paytrim-main {
 /*   background-color: var(--light-background);
    color: var(--light-color);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 100vh;*/
}

    .paytrim-main h1,
    .paytrim-main h2,
    .paytrim-main h3,
    .paytrim-main h4,
    .paytrim-main h5,
    .paytrim-main h6,
    .paytrim-main p,
    .paytrim-main ul,
    .paytrim-main ol,
    .paytrim-main blockquote {
        margin: 0;
    }

    .paytrim-main * {
        padding: 0;
        margin: 0;
        outline: 0;
        box-sizing: border-box;
    }

        .paytrim-main *:before,
        .paytrim-main *:after {
            box-sizing: inherit;
            pointer-events: none;
        }

    .paytrim-main article,
    .paytrim-main aside,
    .paytrim-main details,
    .paytrim-main figcaption,
    .paytrim-main figure,
    .paytrim-main footer,
    .paytrim-main header,
    .paytrim-main hgroup,
    .paytrim-main menu,
    .paytrim-main nav,
    .paytrim-main section,
    .paytrim-main summary {
        display: block;
    }

    .paytrim-main .paytrim-main__shell {
  /*      width: 100%;
        max-width: 1226px;
        margin-left: auto;
        margin-right: auto;*/
    }

    .paytrim-main[data-style="dark"] {
        color: var(--dark-color);
        background-color: var(--dark-background);
    }

        .paytrim-main[data-style="dark"] .section-box {
            background-color: var(--dark-box);
        }

        .paytrim-main[data-style="dark"] .block-value .block__group {
            background-color: #333333;
        }

            .paytrim-main[data-style="dark"] .block-value .block__group:before {
                background: linear-gradient(to right, #333333 20%, #333333 40%, var(--color-blue) 50%, var(--color-blue) 55%, #333333 70%, #333333 100%);
                background-size: 200% auto;
                animation-play-state: paused;
            }

        .paytrim-main[data-style="dark"] .block-value--type-one {
            box-shadow: 5px 6px 150px rgba(255,255,255,0.12), 0px 14.7754px 12.7962px rgba(0,0,0,0.0656105), 0px 5.34398px 3.31502px rgba(0,0,0,0.0455089);
        }

        .paytrim-main[data-style="dark"] .block-value .block__head-icon path {
            fill: var(--dark-color);
        }

        .paytrim-main[data-style="dark"] .block-table--primary tbody tr.active td {
            background-color: #383838;
        }

        .paytrim-main[data-style="dark"] .animation-value .animation__value-top span,
        .paytrim-main[data-style="dark"] .animation-value .animation__value-bottom {
            background-color: #333333;
        }

        .paytrim-main[data-style="dark"] div.block-table--primary .active .ico-radio-button[data-animation="true"]:after {
            border-color: rgba(255,255,255,0.5);
        }

        .paytrim-main[data-style="dark"] div.block-table--secondary .active .ico-radio-button[data-animation="true"]:after {
            border-color: rgba(255,255,255,0.5);
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main text {
            fill: white !important;
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main .highcharts-series rect {
            stroke-width: 0;
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main .highcharts-label-box {
            fill: #333;
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main .highcharts-tooltip span {
            color: white;
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main .highcharts-yaxis-grid > * {
            stroke: rgba(240, 240, 240, 0.04);
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main .highcharts-scrollable-mask {
            fill: #333;
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-primary:before {
            background: linear-gradient(to right, rgba(51,51,51,1) 14%,rgba(51,51,51,0) 100%);
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary text {
            fill: white !important;
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-series rect {
            stroke-width: 0;
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-label-box {
            fill: #333;
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-tooltip span {
            color: white;
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-yaxis-grid > * {
            stroke: rgba(240, 240, 240, 0.04);
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-scrollable-mask {
            fill: #333;
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-series-group:hover ~ .highcharts-xaxis-labels > .current {
            fill: var(--color-blue) !important;
        }

        .paytrim-main[data-style="dark"] .fragment-graph-main .highcharts-series > path {
            filter: drop-shadow(0 0 10px rgba(254, 251, 234, 0.3));
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-secondary .highcharts-series > path {
            filter: drop-shadow(0px 0px 9px rgba(82, 205, 255, 0.8));
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-primary[data-color="#60cd18"] .highcharts-series > path {
            filter: drop-shadow(0 0 3px #3bb001);
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-primary[data-color="#0095FF"] .highcharts-series > path {
            filter: drop-shadow(0 0 3px #52CDFF);
        }

        .paytrim-main[data-style="dark"] .fragment-diagram-primary[data-color="#F14455"] .highcharts-series > path {
            filter: drop-shadow(0 0 3px #DC3545);
        }

        .paytrim-main[data-style="dark"] .highcharts-markers > * {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover) {
    .paytrim-main[data-style="dark"] .block-value .block__group:hover:before {
        animation: boxHover 3s linear infinite;
    }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover) {
    .paytrim-main[data-style="dark"] .block-table .block__body tbody tr:hover td {
        background-color: #383838;
    }
}

@media ( max-width: 767px ) {
    .paytrim-main[data-style="dark"] .block-table--primary tbody tr.active {
        background-color: #383838;
    }

    .paytrim-main[data-style="dark"] div.block-table--primary tr,
    .paytrim-main[data-style="dark"] div.block-table--secondary tr {
        background-color: #333333;
    }
}

/* ------------------------------------------------------------ *\ 
	- Sections
\* ------------------------------------------------------------ */

/*  - Box  */
.section-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 6px 2px rgba(0,0,0,0.12);
    padding: 20px 32px 24px 32px;
    margin: 27px 0;
}

    .section-box:first-child {
     /*   margin-top: 62px;*/
    }

    .section-box:last-child {
       /* margin-bottom: 62px;*/
    }

    .section-box .section__head {
        width: 100%;
        margin-bottom: 18px;
    }

        .section-box .section__head h2 {
            font-size: 18px;
            line-height: 1.3889;
            font-weight: 300;
        }

    .section-box .section__body {
        width: 100%;
    }

    .section-box .section__boxes {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

        .section-box .section__boxes:not(:last-child) {
            margin-bottom: 20px;
        }

    .section-box .section__boxes-medium {
        min-width: 293px;
    }

    .section-box .section__boxes-small ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        margin: -18px;
    }

    .section-box .section__boxes-small li {
        padding: 18px;
        flex-grow: 1;
    }

    .section-box .section__boxes-small:not(:first-child) ul {
        justify-content: flex-end;
    }

    .section-box .section__boxes-small .block-value {
        min-width: 0;
        min-height: 100%;
        display: flex;
    }

        .section-box .section__boxes-small .block-value .block__group {
            min-height: 100%;
        }

    .section-box .section__boxes-secondary {
        width: 100%;
    }

        .section-box .section__boxes-secondary > ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            position: relative;
            margin: -20px;
            justify-content: center;
        }

            .section-box .section__boxes-secondary > ul > li {
               /* padding: 20px;*/
            }

        .section-box .section__boxes-secondary .block-value {
            min-width: 0;
            min-height: 100%;
            display: flex;
        }

            .section-box .section__boxes-secondary .block-value .block__group {
                padding-left: 23px;
                padding-right: 20px;
                min-height: 100%;
            }

    .section-box .section__box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

        .section-box .section__box .block-value .block__group {
            padding-left: 23px;
            padding-right: 20px;
        }

        .section-box .section__box:not(:last-child) {
            margin-bottom: 20px;
        }

    .section-box .section__box-left {
        margin-right: auto;
    }

    .section-box .section__box-right {
        margin-left: auto;
        text-align: right;
    }

        .section-box .section__box-right > p {
            font-size: 14px;
            line-height: 1.4286;
        }

            .section-box .section__box-right > p:not(:last-child) {
                margin-bottom: 8px;
            }

    .section-box .section__graph {
        width: 100%;
    }

        .section-box .section__graph:not(:last-child) {
            margin-bottom: 20px;
        }

/*  -- Type One  */
.section-box--type-one{
    margin-top:4px;
}

section.section-box--type-one .section__body {
    display: flex;
    align-items: flex-end;
}

section.section-box--type-one .section__body-left:last-child {
    margin-left: auto;
    margin-right: auto;
}

section.section-box--type-one .section__body-right {
    width: 100%;
}

    section.section-box--type-one .section__body-right:not(:first-child) {
        width: 100%;
        padding-left: 32px;
    }

        section.section-box--type-one .section__body-right:not(:first-child) .block-table {
            margin-left: auto;
            max-width: 668px;
        }

@media ( max-width: 1200px ) {
    .section-box .section__boxes-small ul {
        margin: -9px;
    }

    .section-box .section__boxes-small li {
        padding: 9px;
        width: calc(100% / 3);
        min-width: 240px;
        max-width: 50%;
    }
}

@media ( max-width: 985px ) {
    .section-box .section__boxes-secondary .block-value .block__group {
        min-width: 390px;
    }

    section.section-box--type-one .section__body {
        flex-direction: column;
        align-items: center;
    }

    section.section-box--type-one .section__body-right:not(:first-child) {
        padding-left: 0;
        margin-top: 30px;
    }

        section.section-box--type-one .section__body-right:not(:first-child) .block-table {
            max-width: 100%;
        }
}

@media ( max-width: 767px ) {
    .section-box:first-child {
        margin-top: 30px;
    }

    .section-box:last-child {
        margin-bottom: 30px;
    }

    .section-box .section__boxes {
        flex-wrap: wrap;
    }

    .section-box .section__boxes-medium {
        width: 100%;
        min-width: 0;
    }

    .section-box .section__box-left {
        width: 100%;
    }

    .section-box .section__boxes-small .block-value {
        display: block;
    }

    .section-box .section__boxes-small li {
        max-width: 100%;
    }

    section.section-box {
        padding: 20px 15px;
    }

    section.section-box--type-one .section__body-right {
        width: 100%;
    }

    section.section-box--type-one .block-value .block__value h4 {
        justify-content: center;
    }
}

@media ( max-width: 475px ) {
    .section-box .section__boxes-secondary .block-value .block__group {
        min-width: 0;
        width: 100%;
    }

    .section-box .section__boxes-secondary > ul > li {
        width: 100%;
    }
}


/* ------------------------------------------------------------ *\ 
	- Boxes
\* ------------------------------------------------------------ */

/*  - Value  */

.block-value {
    width: 100%;
    position: relative;
}

    .block-value .block__group {
        width: 100%;
        padding: 22px 30px 22px 63px;
        box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.14);
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        z-index: 10;
        background-color: white;
        display: flex;
        flex-direction: column;
    }

        .block-value .block__group:before,
        .block-value .block__group:after {
            content: ' ';
            position: absolute;
            pointer-events: none;
            background-color: inherit;
            border-radius: inherit;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .block-value .block__group:after {
            left: 1px;
            right: 1px;
            top: 1px;
            bottom: 1px;
        }

        .block-value .block__group:before {
            opacity: 0;
            transition: opacity var(--transition);
            transform: rotate(-45deg) scale(2.5);
            background: linear-gradient(to right, #fff 20%, #fff 40%, var(--color-blue) 50%, var(--color-blue) 55%, #fff 70%, #fff 100%);
            background-size: 200% auto;
            animation-play-state: paused;
        }

        .block-value .block__group > * {
            position: relative;
            z-index: 10;
        }

    .block-value .block__head {
        width: 100%;
        position: relative;
    }

        .block-value .block__head:not(:last-child) {
            margin-bottom: 20px;
        }

    .block-value .block__head-icon {
        width: 18px;
        position: absolute;
        left: -32px;
        top: calc(50% + 4px);
        transform: translateY(-50%);
    }

        .block-value .block__head-icon path {
            fill: var(--light-color);
        }

    .block-value .block__head-title {
        width: 100%;
    }

        .block-value .block__head-title h3 {
            font-size: 15px;
            line-height: 1.362;
            font-weight: 400;
        }

    .block-value .block__head--type-secondary {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        min-height: 40px;
    }

        .block-value .block__head--type-secondary .block__head-title {
            width: auto;
            margin-right: auto;
        }

            .block-value .block__head--type-secondary .block__head-title h3 {
                font-size: 13px;
                line-height: 1.5385;
                max-width: 216px;
            }

        .block-value .block__head--type-secondary .block__content p {
            max-width: 180px;
        }

        .block-value .block__head--type-secondary:not(:last-child) {
            margin-bottom: 0;
        }

    .block-value .block__value {
        width: 100%;
        text-align: center;
    }

        .block-value .block__value h4 {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            font-size: 80px;
            line-height: 1.00;
            font-weight: 300;
        }

            .block-value .block__value h4 small {
                font-size: 26px;
                line-height: 1.5;
                text-transform: uppercase;
            }

        .block-value .block__value:not(:last-child) {
            margin-bottom: 30px;
        }

    .block-value .block__value--type-secondary {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-top: auto !important;
        margin-bottom: auto !important;
        padding: 20px 0;
        min-height: 129px;
    }

        .block-value .block__value--type-secondary h4 {
            gap: 2px;
        }

    .block-value .block__foot {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        padding-right: 33px;
    }

        .block-value .block__foot p {
            font-size: 16px;
            line-height: 1.3619;
        }

        .block-value .block__foot img {
            width: auto;
            height: 38px;
            max-width: none;
        }

    .block-value .block__status {
        width: 100%;
    }

        .block-value .block__status:not(:first-child) {
            margin-top: 8px;
        }

    .block-value .block__content {
        font-size: 13px;
        line-height: 1.3615;
        margin-top: auto;
    }

    .block-value[data-size="large"] {
        min-width: 364px;
    }

    .block-value[data-size="medium"] .block__group {
        padding: 19px 20px 19px 43px;
        min-width: 294px;
    }

    .block-value[data-size="medium"] .block__head:not(:last-child) {
        margin-bottom: 8px;
    }

    .block-value[data-size="medium"] .block__value h4 {
        font-size: 52px;
    }

        .block-value[data-size="medium"] .block__value h4 small {
            font-size: 20px;
        }

    .block-value[data-size="medium"] .block__value:not(:last-child) {
        margin-bottom: 10px;
    }

    .block-value[data-size="medium"] .block__head-title h3 {
        font-size: 13px;
    }

    .block-value[data-size="small"] .block__group {
        padding: 19px 20px 19px 37px;
        min-width: 234px;
        border-radius: 5px;
    }

    .block-value[data-size="small"] .block__head:not(:last-child) {
        margin-bottom: 8px;
    }

    .block-value[data-size="small"] .block__value h4 {
        font-size: 26px;
    }

        .block-value[data-size="small"] .block__value h4 small {
            font-size: 20px;
            line-height: 1;
        }

    .block-value[data-size="small"] .block__value:not(:last-child) {
        margin-bottom: 10px;
    }

    .block-value[data-size="small"] .block__head-title h3 {
        font-size: 13px;
    }

@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover) {
    .block-value .block__group:hover:before {
        opacity: 1;
        animation: boxHover 3s linear infinite;
    }
}

@media ( max-width: 767px ) {
    .block-value {
        display: flex;
        justify-content: center;
    }

        .block-value .block__group {
            padding: 15px 20px 15px 43px;
            width: auto;
            min-width: 290px;
        }

        .block-value .block__value h4 {
            font-size: 54px;
        }

        .block-value[data-size="large"] {
            min-width: 380px;
        }
}

@media ( max-width: 470px ) {
    .block-value {
        display: block;
    }

        .block-value[data-size="large"] {
            min-width: 0;
        }
}

@media ( max-width: 360px ) {
    .block-value .block__value--type-secondary h4 {
        font-size: 39px;
    }

        .block-value .block__value--type-secondary h4 small {
            font-size: 13px;
        }
}

/*  -- Fade Animation  */

div.block-value--fade-animation:before {
    content: ' ';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 30px;
    bottom: 10px;
    background: linear-gradient(270deg, #0fffc1, #7e0fff);
    background-size: 200% 200%;
    opacity: 0.4;
    border-radius: 16px;
    z-index: 1;
    filter: blur(30px);
    animation: animateGlow 4s ease infinite;
}

/*  - Table  */

.block-table {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .block-table > a {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        font-size: 0;
        line-height: 0;
        text-decoration: none;
        text-indent: -4000px;
        z-index: 10;
    }

    .block-table .block__head {
        width: 100%;
        margin-bottom: 6px;
    }

        .block-table .block__head h4 {
            font-size: 13px;
            line-height: 1.3615;
            font-weight: 400;
            display: inline-block;
            position: relative;
        }

            .block-table .block__head h4:before {
                content: ' ';
                position: absolute;
                left: 0;
                right: 0;
                top: calc(100% + 2px);
                height: 2px;
                background-color: var(--color-blue);
                opacity: 0;
                transform: translateX(-100%);
                transition: opacity var(--transition), transform var(--transition);
            }

    .block-table .block__body {
        width: 100%;
    }

        .block-table .block__body table {
            width: 100%;
            border: 0;
            border-collapse: collapse;
        }

        .block-table .block__body thead th {
            text-align: left;
            font-size: 13px;
            line-height: 1.5385;
            font-weight: 300;
            padding: 0 14px 6px 14px;
        }

        .block-table .block__body tbody td {
            text-align: left;
            font-size: 13px;
            line-height: 1.5385;
            font-weight: 300;
            padding: 5px 14px;
            transition: background var(--transition);
            white-space: nowrap;
        }

            .block-table .block__body tbody td:first-child {
                border-radius: 8px 0 0 8px;
            }

            .block-table .block__body tbody td:last-child {
                border-radius: 0 8px 8px 0;
            }

        .block-table .block__body tbody tr.active td {
            font-weight: 400;
        }

        .block-table .block__body img {
            display: block;
            height: 24px;
            width: auto;
            max-width: none;
        }

@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover) {
    .block-table .block__body tbody tr:hover td {
        background-color: #e0f1ff;
    }

    .block-table:hover > a ~ .block__head h4:before {
        opacity: 1;
        transform: translateX(0%);
    }
}

@media ( max-width: 767px ) {
    .block-table {
        overflow: visible;
    }

        .block-table .block__body tbody td:first-child,
        .block-table .block__body tbody td:last-child {
            border-radius: 0;
        }
}

/*  -- Primary  */

div.block-table--primary tbody td:last-child {
    width: 44px;
}

div.block-table--primary tbody td:nth-child(1) {
    min-width: 166px;
}

div.block-table--primary tbody td:nth-child(3) {
    min-width: 100px;
}

div.block-table--primary tbody td:nth-child(4) {
    width: 100%;
    color: var(--color-blue);
}

div.block-table--primary tbody tr.active td {
    background-color: #e0f1ff;
}

    div.block-table--primary tbody tr.active td:nth-child(2) {
        color: var(--color-blue);
    }

div.block-table--primary .active .ico-radio-button[data-animation="true"]:after {
    border-color: rgba(0,148,255,0.5);
}

@media ( max-width: 1200px ) {
    div.block-table--primary tbody td:nth-child(1),
    div.block-table--primary tbody td:nth-child(3) {
        min-width: 0;
    }
}

@media ( max-width: 767px ) {
    div.block-table--primary tbody,
    div.block-table--primary table,
    div.block-table--primary tr,
    div.block-table--primary td,
    div.block-table--primary th {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

        div.block-table--primary td[data-title]:before {
            content: attr(data-title)':';
            display: inline-block;
            margin-right: 5px;
            font-weight: 400;
        }

    div.block-table--primary tr {
        padding: 10px;
        box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.14);
        border-radius: 5px;
        background-color: white;
    }

        div.block-table--primary tr:not(:last-child) {
            margin-bottom: 10px;
        }

    div.block-table--primary tbody td:last-child {
        width: 100%;
    }

    div.block-table--primary tbody tr.active {
        background-color: #e0f1ff;
    }

    div.block-table--primary th:empty,
    div.block-table--primary td:empty,
    div.block-table--primary thead {
        display: none;
    }

    div.block-table--primary .block__body tbody td {
        padding-left: 0;
        padding-right: 0;
    }
}

/*  -- Secondary  */

div.block-table--secondary {
    max-width: 1110px;
    margin-left: auto;
    margin-right: auto;
}

    div.block-table--secondary tbody td:last-child {
        width: 44px;
    }

    div.block-table--secondary thead th:last-child {
        text-align: center;
    }

    div.block-table--secondary blockquote {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    div.block-table--secondary .block__head {
        margin-bottom: 15px;
    }

        div.block-table--secondary .block__head h4 {
            font-size: 14px;
        }

    div.block-table--secondary .block__body {
        padding-left: 15px;
        padding-right: 15px;
    }

        div.block-table--secondary .block__body tbody td {
            font-size: 14px;
        }

        div.block-table--secondary .block__body img {
            height: 16px;
        }

    div.block-table--secondary .ico-radio-button {
        margin-left: auto;
        margin-right: auto;
    }

    div.block-table--secondary .active .ico-radio-button[data-animation="true"]:after {
        border-color: rgba(0,148,255,0.5);
    }

@media ( max-width: 767px ) {
    div.block-table--secondary .block__body {
        padding-left: 0;
        padding-right: 0;
    }

    div.block-table--secondary tbody,
    div.block-table--secondary table,
    div.block-table--secondary tr,
    div.block-table--secondary td,
    div.block-table--secondary th {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

        div.block-table--secondary td[data-title]:before {
            content: attr(data-title)':';
            display: inline-block;
            margin-right: 5px;
            font-weight: 400;
        }

    div.block-table--secondary tr {
        padding: 10px;
        box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.14);
        border-radius: 5px;
        background-color: white;
    }

        div.block-table--secondary tr:not(:last-child) {
            margin-bottom: 10px;
        }

    div.block-table--secondary tbody td:last-child {
        width: 100%;
    }

    div.block-table--secondary th:empty,
    div.block-table--secondary td:empty,
    div.block-table--secondary thead {
        display: none;
    }

    div.block-table--secondary .block__body tbody td {
        padding-left: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: flex-start;
    }

    div.block-table--secondary blockquote {
        display: inline-flex;
    }

    div.block-table--secondary .ico-radio-button {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }
}

/* ------------------------------------------------------------ *\ 
	- Icons
\* ------------------------------------------------------------ */

/*  - Radio Button  */

.ico-radio-button {
    width: 16px;
    height: 16px;
    background: rgba(0, 149, 255, 0.2);
    border-radius: 50%;
    position: relative;
    display: block;
    font-size: 0;
    line-height: 0;
    text-indent: -4000px;
    pointer-events: none;
}

    .ico-radio-button:before {
        content: ' ';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        transform: translate(-50%,-50%);
        background-color: #0e42d3;
    }

    .ico-radio-button[data-animation="true"]:after {
        content: ' ';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
        border-radius: 50%;
        border: 1px solid #0e42d3;
        z-index: 2;
        animation: animateRadioButton 3s ease infinite;
    }

    .ico-radio-button[data-type="green"] {
        background: rgba(173, 219, 42, 0.14);
    }

        .ico-radio-button[data-type="green"]:before {
            background: #a2ee12;
        }

        .ico-radio-button[data-type="green"]:after {
            border-color: #a2ee12;
        }

/*  - Calendar  */

.ico-calendar {
    width: 21px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    text-indent: -4000px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-top: -1px;
}

    .ico-calendar svg {
        display: block;
        width: inherit;
        height: inherit;
    }

    .ico-calendar path {
        fill: #acb0b4;
        transition: fill var(--transition);
    }

@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover) {
    a.ico-calendar:hover path {
        fill: var(--color-blue);
    }
}

/* ------------------------------------------------------------ *\ 
	- Fragments
\* ------------------------------------------------------------ */

/*  - Status  */

.fragment-status {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .fragment-status .fragment__icon {
        width: 16px;
        height: 18px;
    }

        .fragment-status .fragment__icon svg {
            width: inherit;
            height: inherit;
            transform: rotate(-90deg);
            vertical-align: baseline;
        }

        .fragment-status .fragment__icon path {
            fill: var(--color-blue);
        }

    .fragment-status .fragment__value {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-blue);
    }

    .fragment-status[data-status="down"] .fragment__icon svg {
        transform: rotate(0deg);
    }

    .fragment-status[data-status="down"] .fragment__icon path {
        fill: #f14455;
    }

    .fragment-status[data-status="down"] .fragment__value {
        color: var(--color-red);
    }

    .fragment-status[data-status="up"] .fragment__icon svg {
        transform: rotate(180deg);
    }

    .fragment-status[data-status="up"] .fragment__icon path {
        fill: #60cd18;
    }

    .fragment-status[data-status="up"] .fragment__value {
        color: var(--color-green);
    }

/*  - Actions  */

.fragment-actions {
    width: 100%;
}

    .fragment-actions > ul {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }

        .fragment-actions > ul > li {
            font-size: 12px;
            line-height: 1.3617;
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .fragment-actions > ul > li > i {
                display: block;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                position: relative;
                margin-top: -1px;
            }

            .fragment-actions > ul > li > span {
                font-size: 12px;
                line-height: 1.3617;
                font-weight: 400;
            }

/* ------------------------------------------------------------ *\ 
	- Graph Main
\* ------------------------------------------------------------ */

.fragment-graph-main {
    width: 100%;
    position: relative;
}

    .fragment-graph-main .fragment__head {
        width: 100%;
        margin-bottom: 28px;
    }

    .fragment-graph-main .highcharts-background,
    .fragment-graph-main .highcharts-legend,
    .fragment-graph-main .highcharts-series-label,
    .fragment-graph-main .highcharts-series-label,
    .fragment-graph-main .highcharts-yaxis-grid > *:first-child,
    .fragment-graph-main .highcharts-axis-line {
        position: absolute;
        left: -4000px;
        opacity: 0;
    }

    .fragment-graph-main .highcharts-grid > path {
        stroke: #f0f0f0;
    }

    .fragment-graph-main .highcharts-tick {
        transition: stroke 0.4s, opacity 0.4s, d 0.4s;
        stroke-linecap: round;
    }

        .fragment-graph-main .highcharts-tick.active {
            stroke: #0F43D4;
        }

        .fragment-graph-main .highcharts-tick.current {
            stroke: #0F43D4;
            animation: animateTick 4s ease infinite;
        }

    .fragment-graph-main .highcharts-series {
        transition: opacity 1s;
    }

    .fragment-graph-main .highcharts-markers > path {
        filter: drop-shadow(0px 2px 10px rgba(124, 141, 181, 0.12));
    }

    .fragment-graph-main .highcharts-scrollable-mask {
        transform: translateY(-32px);
    }

    .fragment-graph-main rect {
        height: calc(100% + 30px) !important;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(1) {
        opacity: 0.00;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(2) {
        opacity: 0.20;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(3) {
        opacity: 0.25;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(4) {
        opacity: 0.30;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(5) {
        opacity: 0.35;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(6) {
        opacity: 0.40;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(7) {
        opacity: 0.45;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(8) {
        opacity: 0.50;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(9) {
        opacity: 0.55;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(10) {
        opacity: 0.60;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(11) {
        opacity: 0.65;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(12) {
        opacity: 0.70;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(13) {
        opacity: 0.75;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(14) {
        opacity: 0.80;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(15) {
        opacity: 0.85;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(16) {
        opacity: 0.90;
    }

    .fragment-graph-main .highcharts-xaxis > *:not(.active):nth-last-child(17) {
        opacity: 0.95;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(1) {
        stroke: #52CDFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(2) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(3) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(4) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(5) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(6) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(7) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(8) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(9) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(10) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(11) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(12) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(13) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(14) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(15) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(16) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(17) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(18) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(19) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(20) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(21) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(22) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(23) {
        stroke: #53CEFF;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(24) {
        stroke: #50C7FE;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(25) {
        stroke: #4DC1FC;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(26) {
        stroke: #4ABBFA;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(27) {
        stroke: #47B5F8;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(28) {
        stroke: #43AEF6;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(29) {
        stroke: #41A9F4;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(30) {
        stroke: #3EA2F2;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(31) {
        stroke: #3A9CF0;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(32) {
        stroke: #3896EE;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(33) {
        stroke: #3590EC;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(34) {
        stroke: #328AEA;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(35) {
        stroke: #2E83E8;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(36) {
        stroke: #2C7EE6;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(37) {
        stroke: #2877E4;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(38) {
        stroke: #2571E2;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(39) {
        stroke: #226BE0;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(40) {
        stroke: #2065DE;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(41) {
        stroke: #1D5FDD;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(42) {
        stroke: #1958DA;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(43) {
        stroke: #1652D8;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(44) {
        stroke: #134CD7;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(45) {
        stroke: #1046D5;
    }

    .fragment-graph-main .highcharts-xaxis > *.active:nth-child(46) {
        stroke: #0F43D4;
    }

    .fragment-graph-main .highcharts-markers .highcharts-point {
        stroke: white;
        stroke-location: center;
    }

    .fragment-graph-main .highcharts-markers .highcharts-point-hover {
        animation: animateMarker 4s ease infinite;
    }

    .fragment-graph-main .highcharts-tooltip span {
        display: block;
        text-align: center;
        font-weight: 400;
        font-size: 11px;
    }

    .fragment-graph-main .highcharts-tooltip strong {
        display: block;
        font-weight: 300;
        font-size: 13px;
    }

    .fragment-graph-main .highcharts-xaxis,
    .fragment-graph-main .highcharts-xaxis-labels {
        transform: translateY(10px);
    }

    .fragment-graph-main.active .highcharts-tick {
        stroke: #0F43D4;
    }

        .fragment-graph-main.active .highcharts-tick.active ~ * {
            stroke: #747474;
        }

/*  - Graph Primary  */

.fragment-diagram-primary {
    width: 100%;
    max-width: 174px;
    position: relative;
    overflow: hidden;
}

    .fragment-diagram-primary:before {
        content: ' ';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 50%;
        background: linear-gradient(to right, rgba(255,255,255,1) 14%,rgba(255,255,255,0) 100%);
        z-index: 10;
        pointer-events: none;
    }

    .fragment-diagram-primary .highcharts-xaxis,
    .fragment-diagram-primary .highcharts-background,
    .fragment-diagram-primary .highcharts-legend,
    .fragment-diagram-primary .highcharts-series-label,
    .fragment-diagram-primary .highcharts-series-label,
    .fragment-diagram-primary .highcharts-xaxis-grid,
    .fragment-diagram-primary .highcharts-yaxis-grid {
        position: absolute;
        left: -4000px;
        opacity: 0;
    }

    .fragment-diagram-primary .highcharts-series {
        transition: opacity 1s;
    }

    .fragment-diagram-primary defs rect {
        height: 100% !important;
    }

/*  - Graph Secondary  */

.fragment-diagram-secondary {
    width: 100%;
    position: relative;
}

    .fragment-diagram-secondary .highcharts-xaxis,
    .fragment-diagram-secondary .highcharts-background,
    .fragment-diagram-secondary .highcharts-legend,
    .fragment-diagram-secondary .highcharts-series-label,
    .fragment-diagram-secondary .highcharts-series-label,
    .fragment-diagram-secondary .highcharts-xaxis-grid,
    .fragment-diagram-secondary .highcharts-yaxis-grid > *:first-child {
        position: absolute;
        left: -4000px;
        opacity: 0;
    }

    .fragment-diagram-secondary .highcharts-yaxis-grid {
        opacity: 0.5;
    }

    .fragment-diagram-secondary .highcharts-markers .highcharts-point {
        stroke: white;
        stroke-location: center;
    }

    .fragment-diagram-secondary .highcharts-markers .highcharts-point-hover {
        animation: animateMarker 4s ease infinite;
    }

    .fragment-diagram-secondary .highcharts-tooltip span {
        display: block;
        text-align: center;
        font-weight: 400;
        font-size: 11px;
    }

    .fragment-diagram-secondary .highcharts-tooltip strong {
        display: block;
        font-weight: 300;
        font-size: 13px;
    }

    .fragment-diagram-secondary .highcharts-series {
        transition: opacity 1s;
    }

    .fragment-diagram-secondary .highcharts-xaxis-labels > * {
        transition: fill 1s;
    }

    .fragment-diagram-secondary .highcharts-series-group:hover ~ .highcharts-xaxis-labels > .current {
        fill: var(--color-blue) !important;
    }

    .fragment-diagram-secondary .highcharts-series > rect {
        rx: 2px;
    }

    .fragment-diagram-secondary .highcharts-scrollable-mask {
        transform: translateY(-19px);
    }

    .fragment-diagram-secondary defs rect {
        height: 100% !important;
    }

/* ------------------------------------------------------------ *\ 
	- Custom -.-
\* ------------------------------------------------------------ */



.transaction-status-mobile {
    display: none !important;
}

@media ( max-width:445px ) {
    /* ----------------------- Orders -------------------------- */
    .order-box:hover > td {
        background: none !important;
        width: max-content !important;
    }



    .order-box {
        height: 80px;
        position: relative;
    }

    .order-amount {
        top:10px;
        left: 250px;
        position: absolute;
    }

    .order-ref {
        left: 60px;
        bottom: 8px;
        position: absolute;
    }

    .order-status {
        bottom: 9px;
        left: 345px;
        position: absolute;
    }

    /* ----------------------- Transactions -------------------------- */

    .transaction-box:hover > td {
        background: none !important;
        width: max-content !important;
    }

    .transaction-box {
        height: 110px;
        position: relative;
    }

    .transaction-time {
        top: 10px;
        left: 200px;
        position: absolute;
    }

    .transaction-status {
        display: none !important;
    }

    .transaction-status-mobile {
        top: 8px;
        left: 340px;
        position: absolute;
        display: block !important;
    }

    .transaction-card {
        top: 40px;
        position: absolute;
    }

    .transaction-amount {
        top: 40px;
        left: 200px;
        position: absolute;
    }

    .transaction-type {
        top: 70px;
        position: absolute;
    }
}


@media ( max-width: 414px ) {
    
    /* ----------------------- Orders -------------------------- */

    .order-box {
        height: 80px;
        position: relative;
    }

    .order-amount {
        top: 10px;
        left: 195px;
        position: absolute;
    }

    .order-ref {
        left: 70px;
        bottom: 8px;
        position: absolute;
    }

    .order-status {
        bottom: 9px;
        left: 300px;
        position: absolute;
    }

    /* ----------------------- Transactions -------------------------- */

    .transaction-box:hover > td {
        background: none !important;
        width: max-content !important;
    }

    .transaction-box {
        height: 110px;
        position: relative;
    }

    .transaction-time {
        top: 10px;
        left: 170px;
        position: absolute;
    }

    .transaction-status {
        display: none !important;
    }

    .transaction-status-mobile {
        top: 10px;
        left: 300px;
        position: absolute;
        display: block !important;
    }

    .transaction-card {
        top: 40px;
        position: absolute;
    }

    .transaction-amount {
        top: 40px;
        left: 170px;
        position: absolute;
    }

    .transaction-type {
        top: 70px;
        position: absolute;
    }
    
}

#rotation {
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

