﻿@charset "UTF-8";
/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

    .pika-single.is-hidden {
        display: none;
    }

    .pika-single.is-bound {
        position: absolute;
        -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
    }

    .pika-single:before, .pika-single:after {
        content: " ";
        display: table;
    }

    .pika-single:after {
        clear: both;
    }

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

    .pika-title select {
        cursor: pointer;
        position: absolute;
        z-index: 9998;
        margin: 0;
        left: 0;
        top: 5px;
        opacity: 0;
    }

.pika-label {
    display: inline-block;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
}

    .pika-prev:hover,
    .pika-next:hover {
        opacity: 1;
    }

    .pika-prev.is-disabled,
    .pika-next.is-disabled {
        cursor: default;
        opacity: .2;
    }

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-select {
    display: inline-block;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

    .pika-table th,
    .pika-table td {
        width: 14.285714285714286%;
        padding: 0;
    }

    .pika-table th {
        color: #999;
        font-size: 12px;
        line-height: 25px;
        font-weight: bold;
        text-align: center;
    }

    .pika-table abbr {
        border-bottom: none;
        cursor: help;
    }

.pika-button {
    cursor: pointer;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    height: initial;
}

.has-event .pika-button {
    color: #fff;
    background: #33aaff;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    -webkit-box-shadow: inset 0 1px 3px #178fe5;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover {
    color: #fff;
    background: #ff8000;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
}

.pika-button .is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-inrange .pika-button {
    color: #666;
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.ellipsis {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.center {
    text-align: center;
}

.hidden {
    display: none !important;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #373C48;
    background: #F8F9FA;
    font: 16px/1.2 Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    min-width: 320px;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.gm-style img {
    max-width: none;
}

@media only screen and (min-width: 1025px) {
    a[href^="tel"], a[href^="skype"], a[href^="sms"] {
        cursor: default;
        pointer-events: none;
    }
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
    font-family: inherit;
    font-weight: bold;
    margin: 0 0 0.5em;
    color: inherit;
}

h1, .h1 {
    font-size: 30px;
}

h2, .h2 {
    font-size: 27px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 21px;
}

h5, .h5 {
    font-size: 17px;
}

h6, .h6 {
    font-size: 15px;
}

p {
    margin: 0 0 1em;
}

a {
    color: #0046F5;
}

    a:hover, a:focus {
        text-decoration: none;
    }

form,
fieldset {
    margin: 0;
    padding: 0;
    border-style: none;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'],
textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #444D72;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.875rem;
    color: #444D72;
}

    input[type='text']:focus,
    input[type='tel']:focus,
    input[type='email']:focus,
    input[type='search']:focus,
    input[type='password']:focus,
    textarea:focus {
        border-color: #465564;
        outline: none;
    }

    input[type='text']::-webkit-input-placeholder,
    input[type='tel']::-webkit-input-placeholder,
    input[type='email']::-webkit-input-placeholder,
    input[type='search']::-webkit-input-placeholder,
    input[type='password']::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        color: #444D72;
    }

    input[type='text']::-moz-placeholder,
    input[type='tel']::-moz-placeholder,
    input[type='email']::-moz-placeholder,
    input[type='search']::-moz-placeholder,
    input[type='password']::-moz-placeholder,
    textarea::-moz-placeholder {
        opacity: 1;
        color: #444D72;
    }

    input[type='text']:-moz-placeholder,
    input[type='tel']:-moz-placeholder,
    input[type='email']:-moz-placeholder,
    input[type='search']:-moz-placeholder,
    input[type='password']:-moz-placeholder,
    textarea:-moz-placeholder {
        color: #444D72;
    }

    input[type='text']:-ms-input-placeholder,
    input[type='tel']:-ms-input-placeholder,
    input[type='email']:-ms-input-placeholder,
    input[type='search']:-ms-input-placeholder,
    input[type='password']:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        color: #444D72;
    }

    input[type='text'].placeholder,
    input[type='tel'].placeholder,
    input[type='email'].placeholder,
    input[type='search'].placeholder,
    input[type='password'].placeholder,
    textarea.placeholder {
        color: #444D72;
    }

select {
    border-radius: 0;
    padding-right: 24px;
    background: transparent;
    border: none;
    background: url("/assets/images/up-and-down-arrow.svg") 100% 50% no-repeat;
    background-size: 10px;
    -webkit-appearance: none;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.25;
    text-decoration: underline;
}

textarea {
    resize: vertical;
    vertical-align: top;
}

.btn,
button,
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='submit'] {
    -webkit-appearance: none;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #0046f5;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

    .btn:focus,
    button:focus,
    input[type='button']:focus,
    input[type='reset']:focus,
    input[type='file']:focus,
    input[type='submit']:focus {
        outline: none;
    }

a.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 0;
    border-top: 1px solid #EBEBEB;
}

.page-wrapper {
    min-height: calc(100% - 3.75rem);
    display: grid;
    grid-template-columns: 260px 1fr 350px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    .page-wrapper .page-nav {
        width: 260px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .page-wrapper .page-aside {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .page-wrapper .page-content {
        padding: 1.25rem 2.25rem;
    }

    .page-wrapper .page-content__navigation {
        margin-top: 6rem;
        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-with-btn {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    color: #001432;
    font-size: 1.375rem;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    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;
}

    .header-with-btn.no-border {
        border: none;
    }

.page-description {
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.5;
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
}

.page__main .page-nav {
    background-color: #001432;
    background: #001432 url("/assets/images/bg.png") 36% 108% no-repeat;
}

    .page__main .page-nav .logo {
        margin-top: 3.5rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .page__main .page-nav .navigation {
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    }

        .page__main .page-nav .navigation > .navigation-list {
            padding-bottom: 0.625rem;
            position: relative;
        }

            .page__main .page-nav .navigation > .navigation-list:after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                display: block;
                width: calc( 100% - 50px);
                height: 2px;
                background-color: #2D3849;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            .page__main .page-nav .navigation > .navigation-list > .navigation-list-item > a {
                padding-left: 25px;
                padding-right: 25px;
            }

            .page__main .page-nav .navigation > .navigation-list > .navigation-list-item__active > a {
                background-color: #2F394A;
                color: #ffffff;
                border-left: 5px solid #0046f5;
            }

        .page__main .page-nav .navigation.subscription > .navigation-list:after {
            content: none;
        }

    .page__main .page-nav .navigation-title {
        display: block;
        margin-left: 25px;
        margin-right: 25px;
        margin-top: 0.875rem;
        margin-bottom: 1rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #9BABBF;
    }

    .page__main .page-nav .navigation-list {
        list-style: none;
        padding-left: 0;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .page__main .page-nav .navigation-list-item {
        line-height: 1.125rem;
        margin-bottom: 0.5rem;
    }

        .page__main .page-nav .navigation-list-item:last-child {
            margin-bottom: 0;
        }

        .page__main .page-nav .navigation-list-item a {
            padding-top: 0.25rem;
            padding-bottom: 0.25rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #9BABBF;
            text-decoration: none;
        }

    .page__main .page-nav .navigation-list-item-icon + span {
        margin-left: 1rem;
    }

    .page__main .page-nav .navigation-list-item .navigation-list {
        margin-top: 1rem;
        margin-left: 25px;
        margin-right: 25px;
    }

    .page__main .page-nav .navigation-list-item .navigation-list-item {
        margin-bottom: 0.75rem;
        margin-left: calc( 30px + 1rem);
    }

    .page__main .page-nav .navigation-list-item .navigation-list-item__active a {
        color: #709BE7;
    }

    .page__main .page-nav .navigation:last-child .navigation-list:after {
        display: none;
    }

    .page__main .page-nav .navigation-subscription {
        margin-right: 25px;
        margin-left: 25px;
        margin-top: 0.875rem;
        font-size: 0.75rem;
        color: #ffffff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .page__main .page-nav .navigation-subscription-status__active {
        color: #0CE8F9;
    }

    .page__main .page-nav .navigation-subscription-status:before {
        content: '';
        display: inline-block;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        margin-right: 0.375rem;
        background-color: currentColor;
    }

    .page__main .page-nav .navigation.balance {
        margin-top: auto;
    }

        .page__main .page-nav .navigation.balance .navigation-list {
            padding-top: 0.625rem;
        }

            .page__main .page-nav .navigation.balance .navigation-list:before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                display: block;
                width: calc( 100% - 50px);
                height: 2px;
                background-color: #2D3849;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
            }

        .page__main .page-nav .navigation.balance .navigation-list-item > span {
            padding: 0.25rem 25px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #ffffff;
        }

        .page__main .page-nav .navigation.balance .navigation-list-item .navigation-list-item-icon {
            margin-right: 1rem;
        }

        .page__main .page-nav .navigation.balance .balance-nav {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-bottom: 4.25rem;
        }

.page__main .page-aside {
    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;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 1px solid rgba(155, 155, 155, 0.2);
}

    .page__main .page-aside .quick-access {
        margin-top: 30px;
    }

    .page__main .page-aside .aside-section-title {
        display: block;
        margin-bottom: 1.1875rem;
        font-size: 0.75rem;
        color: #9BABBF;
    }

    .page__main .page-aside .btn {
        width: 100%;
        margin-bottom: 0.625rem;
    }

    .page__main .page-aside .aside-apps {
        margin: 0 0 3.375rem 0;
        padding: 0;
        list-style: none;
    }

    .page__main .page-aside .aside-apps-item {
        margin-bottom: 1.25rem;
    }

        .page__main .page-aside .aside-apps-item:last-child {
            margin-bottom: 0;
        }

        .page__main .page-aside .aside-apps-item a {
            display: inline-block;
        }

.page__main .page-content {
    min-width: 0;
    color: #90A1B7;
    font-size: 0.75rem;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

    .page__main .page-content .page-title {
        display: block;
        margin-bottom: 1.875rem;
    }

    .page__main .page-content .page-text {
        font-weight: 300;
        line-height: 1rem;
    }

.page__main .invoice-status {
    color: #FF5D30;
}

.page__main .invoice-status__paid {
    color: #00BF28;
}

.page__reset {
    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-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url("/assets/images/bg_reset.png") #001432 right bottom no-repeat;
}

.page__login {
    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-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url("/assets/images/bg_reset.png") #001432 right bottom no-repeat;
}

.dashboard {
    display: grid;
    grid-template-columns: minmax(auto, 240px) minmax(auto, 190px) minmax(auto, 1fr);
    grid-template-rows: auto;
    grid-gap: 15px;
}

#promotion-stats {
    grid-area: 1 / 1 / 2 / 2;
}

#activePromotions {
    grid-area: 2 / 1 / 3 / 2;
}

#stamps {
    grid-area: 1 / 2 / 3 / 4;
}

#rewards {
    grid-area: 3 / 1 / 4 / 2;
}

#report {
    grid-area: 4 / 1 / 5 / 2;
}

#alerts {
    grid-area: 3 / 2 / 4 / 3;
}

#stampsTotal {
    grid-area: 4 / 2 / 5 / 3;
}

#branchStatistics {
    grid-area: 3 / 3 / 5 / 4;
}

#rewards,
#alerts,
#stampsTotal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard__single #alerts,
.dashboard__single #branchStatistics {
    display: none;
}

.dashboard__single #stampsTotal {
    grid-area: 3 / 2 / 4 / -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dashboard__single #stampsTotalChart {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.dashboard-grid {
    margin-bottom: 2rem;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.ow {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .dashboard-row:last-child {
        margin-bottom: 0;
    }

.dashboard-header {
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 0.75rem;
}

.dashboard-tab {
    background: #ffffff;
    border-radius: 5px;
}

.dashboard-tab-title {
    padding: 0.625rem 1.25rem;
    border-bottom: 1px solid #f6f8f7;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .dashboard-tab-title .status {
        padding: 0.125rem 0.5rem;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 0.5rem;
        border-radius: 1rem;
        background-color: #0046f5;
        color: #ffffff;
    }

        .dashboard-tab-title .status.active {
            margin-left: auto;
            margin-right: 0.375rem;
            background-color: #0ce8f9;
        }

.active-clients {
    margin-top: auto;
    margin-bottom: 1.25rem;
}

.active-clients-wrapper {
    margin: 0;
    padding: 0;
    height: 300px;
    list-style: none;
}

.active-clients .client {
    padding-right: 0.625rem;
    margin-bottom: 0.625rem;
    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;
}

.active-clients .client-avatar {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.active-clients .client-avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.active-clients .client-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
    background: #9CACC0;
}

    .active-clients .client-avatar-status.active {
        background: #FEB800;
    }

    .active-clients .client-avatar-status.inactive {
        background: #FF5D30;
    }

    .active-clients .client-avatar-status.online {
        background: #00BF28;
    }

.active-clients .client-info {
    margin-left: 1.25rem;
    color: #90A1B7;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.625rem;
    font-weight: 300;
    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-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.active-clients .client-activity {
    color: #90A1B7;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.625rem;
    font-weight: 300;
}

#promotion-stats-header {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    #promotion-stats-header .dashboard-header {
        margin-bottom: 0;
    }

.promotion-stats-tabs {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

    .promotion-stats-tabs .promotion-stats-tab {
        padding: 0.5rem;
        min-width: 115px;
        background: #ffffff;
        border-radius: 5px;
    }

    .promotion-stats-tabs .promotion-stats-tab-title {
        margin-bottom: 0.5rem;
        font-size: 0.675rem;
        font-weight: 300;
    }

    .promotion-stats-tabs .promotion-stats-tab-wrapper {
        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;
    }

    .promotion-stats-tabs .promotion-stats-tab-value {
        color: #4a4a4a;
        font-size: 1rem;
        font-weight: 600;
    }

    .promotion-stats-tabs .promotion-stats-tab-change {
        color: #FF5D30;
        font-size: 0.625rem;
    }

        .promotion-stats-tabs .promotion-stats-tab-change:before {
            content: '';
            display: inline-block;
            margin-right: 0.25rem;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 3px 0 3px;
            border-color: currentColor transparent transparent transparent;
        }

        .promotion-stats-tabs .promotion-stats-tab-change:after {
            content: '%';
        }

        .promotion-stats-tabs .promotion-stats-tab-change.positive {
            color: #00BF28;
        }

            .promotion-stats-tabs .promotion-stats-tab-change.positive:before {
                border-width: 0 3px 6px 3px;
                border-color: transparent transparent currentColor transparent;
            }

#custom-promotionStats {
    margin-left: 0;
}

.stamps {
    background: #ffffff;
    border-radius: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.stamps-tabs-list {
    margin: 0;
    padding: 1rem 0.5rem 0 0.5rem;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #f6f8f7;
}

.stamps-tabs-tab {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-bottom: 2px solid transparent;
    position: relative;
    bottom: -1px;
}

    .stamps-tabs-tab a {
        color: #90A1B7;
        text-decoration: none;
        font-weight: 300;
        cursor: pointer;
    }

    .stamps-tabs-tab.active {
        border-color: #40bac2;
    }

        .stamps-tabs-tab.active a {
            color: #4a4a4a;
            font-weight: 500;
        }

.stamps-tabs-content {
    margin-bottom: 2rem;
    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;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.stamps-tabs-content-header {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 300;
}

.stamps-tab-content {
    width: 100%;
    position: absolute;
    left: -9999px;
}

    .stamps-tab-content.active {
        position: static;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .stamps-tab-content .ct-label.ct-horizontal.ct-end {
        font-weight: 300;
        font-size: 0.5rem;
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
        -webkit-transform-origin: 10px 0px;
        -ms-transform-origin: 10px 0px;
        transform-origin: 10px 0px;
    }

    .stamps-tab-content .ct-bar {
        stroke-linecap: square;
    }

    .stamps-tab-content .ct-series-a .ct-bar {
        stroke: #eeeff7;
    }

    .stamps-tab-content .ct-grid {
        stroke: #eaebf4;
        stroke-dasharray: 0;
    }

.active-promotions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

    .active-promotions-wrapper .promotion {
        padding: 0.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: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 5px;
    }

    .active-promotions-wrapper .promotion-icon {
        margin-bottom: 0.5rem;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .active-promotions-wrapper .promotion-valid {
        font-weight: 300;
        font-size: 0.625rem;
    }

    .active-promotions-wrapper .promotion-title {
        color: #4a4a4a;
        font-weight: 300;
        font-size: 0.625rem;
        text-align: center;
    }

.cards-wrapper {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

    .cards-wrapper .ct-chart {
        margin-right: 2rem;
        background: none;
    }

.rewards-list {
    margin: 0;
    padding: 1rem 1.25rem;
    list-style: none;
    font-size: 0.625rem;
    line-height: 1.5;
}

    .rewards-list .rewards-item {
        margin-bottom: 0.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .rewards-list .rewards-item:last-child {
            margin-bottom: 0;
        }

    .rewards-list .rewards-name {
        color: #4a4a4a;
        width: 40%;
    }

    .rewards-list .rewards-description {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        font-weight: 300;
    }

    .rewards-list .rewards-status {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0046f5;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

        .rewards-list .rewards-status.active {
            background: #0ce8f9;
        }

#rewards,
#activePromotions {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    #activePromotions .dashboard-header {
        margin-bottom: 1rem;
    }

#stampsTotal .ct-series-a .ct-line {
    stroke: #0ce8f9;
}

#stampsTotal .ct-series-a .ct-area {
    fill: #19dcf8;
    fill: linear-gradient(90deg, #19dcf8 0%, #09c5f8 10%, #004cf5 50%);
}

.chart-tooltip {
    padding: 0.5rem;
    color: #ffffff;
    background: #001432;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 300;
}

.branch-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .branch-nav li {
        font-weight: 300;
        font-size: 0.625rem;
        color: #90a1b7;
        display: inline-block;
        padding: 0 4px;
        cursor: pointer;
    }

        .branch-nav li.active {
            color: #393c40;
        }

.branch-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dashboard .report {
    padding: 1rem 1.625rem;
    border-radius: 0.375rem;
    background: transparent -webkit-linear-gradient(212deg, #0CE8F9 0%, #0046F5 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(212deg, #0CE8F9 0%, #0046F5 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(238deg, #0CE8F9 0%, #0046F5 100%) 0% 0% no-repeat padding-box;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    color: #ffffff;
    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;
}

.dashboard .report__icon {
    margin-right: 1rem;
    width: 64px;
    fill: #ffffff;
}

.dashboard .report__title {
    padding: 0.5rem 1.375rem;
    font-size: 0.625rem;
    font-weight: 400;
}

.dashboard .report__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dashboard .report__list__item {
    margin-bottom: 0.5rem;
    display: block;
}

    .dashboard .report__list__item:last-child {
        margin-bottom: 0;
    }

.dashboard .report__list__btn {
    padding: 0.5rem 1.375rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 300;
}

.dashboard .alerts__nav {
    padding: 0.625rem 1.25rem;
    margin: 0;
    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;
    list-style: none;
    border-bottom: 1px solid #f6f8f7;
}

.dashboard .alerts__nav__item {
    font-weight: 300;
    font-size: 0.625rem;
    color: #90a1b7;
    cursor: pointer;
}

    .dashboard .alerts__nav__item.active {
        color: #393c40;
    }

.dashboard .alerts__charts {
    padding: 1.125rem 0.75rem 0.5rem 0.75rem;
    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;
    text-align: center;
}

.dashboard .alerts__charts__place {
    margin-bottom: 0.75rem;
    color: #90a1b7;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.5rem;
    text-transform: uppercase;
}

.dashboard .alerts__charts__value {
    margin-top: 0.635rem;
    color: #90a1b7;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.5rem;
    font-weight: 300;
}

    .dashboard .alerts__charts__value .value {
        display: block;
        color: #393c40;
        font-size: 0.85rem;
        font-weight: 400;
    }

.dashboard .alerts__wrapper .btn {
    width: 100%;
    margin: 0.5rem 0.75rem;
}

.dashboard .alerts__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dashboard-table {
    margin: 0;
}

    .dashboard-table td {
        padding: 0.625rem 0.5rem;
        color: #4a4a4a;
        font-size: 0.625rem;
        border-bottom-width: 2px;
    }

    .dashboard-table tr:nth-child(odd) td {
        background: #fcfcfe;
    }

.dashboard-table-header th {
    padding: 1rem 0.25rem;
    background: #0046f5;
    color: rgba(255, 255, 255, 0.4);
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.625rem;
    text-align: center;
}

    .dashboard-table-header th:first-child {
        border-radius: 6px 0 0 0;
    }

    .dashboard-table-header th:last-child {
        border-radius: 0 6px 0 0;
    }

#stampsTotalChart {
    position: relative;
    background: #ffffff;
    border-radius: 6px;
    width: 100%;
}

    #stampsTotalChart .ct-label.ct-horizontal.ct-end {
        color: #ffffff;
        font-weight: 300;
        font-size: 0.5rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #stampsTotalChart .ct-labels foreignObject:last-of-type {
        display: none;
    }

#stampsTotalValue {
    position: absolute;
    top: 0.85rem;
    left: 1rem;
    font-size: 1rem;
}

.visually-hidden {
    position: absolute !important;
    left: -9999;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    /* added line */
}

.loader {
    border: 3px solid rgba(61, 239, 255, 0.2);
    border-top-color: #0ce8f9;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.video__container {
    margin-top: 0.875rem;
}

.video__container__title {
    margin-bottom: 0.75rem;
    color: #2f394a;
    font-size: 0.625rem;
    font-weight: 400;
}

.video__thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 2rem 1rem;
}

.video__thumb__category {
    display: block;
    margin-bottom: 0.375rem;
    color: #0046f5;
    font-size: 0.625rem;
    font-weight: 400;
}

.video__thumb__title {
    margin-bottom: 0.75rem;
    color: #001432;
    font-size: 0.875rem;
    font-weight: 400;
}

.video__thumb__placeholder {
    width: 100%;
    height: 108px;
    margin-bottom: 1rem;
    background: #001432;
    position: relative;
}

.video__thumb__image {
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.video__thumb__link {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-decoration: none;
    display: block;
}

    .video__thumb__link .link-icon {
        width: 58px;
    }

.filters {
    margin-top: 1.875rem;
    margin-bottom: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filters__list {
    margin: 0 1rem 0 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    background: #ebebeb;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filters__category {
    padding: 0.75rem 1rem;
    font-size: 0.625rem;
    display: block;
    color: #2f394a;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

    .filters__category.active {
        color: #0046f5;
        border-color: #0046f5;
    }

.filters__search {
    width: 180px;
    height: 30px;
    border: 1px solid #0046f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.filters__search__input[type="text"] {
    min-width: 0;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    font-size: 0.625rem;
}

.filters__search__btn {
    width: 28px;
    height: 28px;
    margin-left: auto;
    border-radius: 0;
    padding: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
}

.filters__search__icon {
    width: 0.875rem;
}

.report-page__header {
    padding: 1.25rem 2rem;
    background-color: #001432;
    color: #ffffff;
    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;
}

.report-page__title {
    margin: 0;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.report-page__date {
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
}

.report-page__img {
    width: 105px;
    height: auto;
}

.report__content {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, -webkit-max-content));
    grid-template-columns: repeat(3, minmax(150px, max-content));
    grid-template-rows: auto;
    grid-gap: 0.5625rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.report__header {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    color: #7B90A8;
}

.report__card {
    padding: 0.5rem;
    color: #00102B;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 1px #1A1818;
    box-shadow: 0px 0px 1px #1A1818;
    border-radius: 3px;
}

    .report__card .dashboard-tab-title {
        padding-left: 0;
        padding-right: 0;
        color: #7B90A8;
        border-color: #7B90A8;
        font-size: 0.625rem;
    }

        .report__card .dashboard-tab-title .status {
            background-color: #00B5F1;
        }

            .report__card .dashboard-tab-title .status.active {
                background-color: #005CAB;
            }

    .report__card .rewards-list {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

        .report__card .rewards-list .rewards-status {
            background-color: #00B5F1;
        }

            .report__card .rewards-list .rewards-status.active {
                background-color: #005CAB;
            }

        .report__card .rewards-list .rewards-description {
            color: #7B90A8;
        }

    .report__card .alerts__charts {
        padding-left: 0;
        padding-right: 0;
    }

    .report__card .alerts__charts__worst {
        margin-right: 10px;
    }

.report-table {
    margin-top: 0;
    margin-bottom: 0;
}

    .report-table th {
        padding: 0.25rem;
        text-align: center;
        border-bottom: 1px solid #9aaabc;
    }

    .report-table td {
        padding: 0.375rem 0.875rem;
        color: #1A1818;
        border: 1px solid #d8dee5;
    }

        .report-table td:first-child {
            border-left-width: 0;
            font-weight: normal;
        }

        .report-table td:last-child {
            border-right-width: 0;
        }

    .report-table tr:last-child td {
        border-bottom-width: 0;
    }

.card__title {
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.5rem;
    color: #7B90A8;
}

.card__value {
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00102B;
    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;
}

.card__diff {
    font-weight: 500;
    font-size: 0.5rem;
}

.card__diff--plus {
    color: #1de9b6;
}

    .card__diff--plus:before {
        content: '\025B4';
        color: currentColor;
    }

.card__diff--minus {
    color: #f44236;
}

    .card__diff--minus:before {
        content: '\9662';
        color: currentColor;
    }

.card__icon {
    width: 1.375rem;
    height: auto;
    display: block;
    margin: auto;
}

.card__date {
    color: #7B90A8;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 0.5rem;
    text-align: center;
}

.card__subtitle {
    color: #00102B;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 0.5rem;
    text-align: center;
}

.ct-legend {
    margin: 1rem 0 1rem 50px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 10;
    list-style: none;
}

    .ct-legend li {
        position: relative;
        margin-right: 10px;
        margin-bottom: 3px;
        padding-bottom: 4px;
        color: #00102B;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-size: 0.625rem;
        font-weight: bold;
        cursor: pointer;
    }

        .ct-legend li:after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            position: absolute;
            bottom: 2px;
            background-color: red;
        }

        .ct-legend li.inactive:after {
            background: transparent;
        }

    .ct-legend.ct-legend-inside {
        position: absolute;
        top: 0;
        right: 0;
    }

    .ct-legend .ct-series-0:after {
        background-color: #00b5f1;
    }

    .ct-legend .ct-series-1:after {
        background-color: #005cab;
    }

    .ct-legend .ct-series-2:after {
        background-color: #00102b;
    }

    .ct-legend .ct-series-3:after {
        background-color: #d70206;
    }

    .ct-legend .ct-series-4:after {
        background-color: #f05b4f;
    }

    .ct-legend .ct-series-5:after {
        background-color: #f4c63d;
    }

    .ct-legend .ct-series-6:after {
        background-color: #d17905;
    }

    .ct-legend .ct-series-7:after {
        background-color: #453d3f;
    }

    .ct-legend .ct-series-8:after {
        background-color: #59922b;
    }

    .ct-legend .ct-series-9:after {
        background-color: #0544d3;
    }

    .ct-legend .ct-series-10:after {
        background-color: #6b0392;
    }

    .ct-legend .ct-series-11:after {
        background-color: #f05b4f;
    }

    .ct-legend .ct-series-12:after {
        background-color: #dda458;
    }

    .ct-legend .ct-series-13:after {
        background-color: #eacf7d;
    }

    .ct-legend .ct-series-14:after {
        background-color: #86797d;
    }

    .ct-legend .ct-series-15:after {
        background-color: #b2c326;
    }

    .ct-legend .ct-series-16:after {
        background-color: #6188e2;
    }

    .ct-legend .ct-series-17:after {
        background-color: #a748ca;
    }

#stampStatistics .ct-line {
    stroke-width: 1px;
}

#stampStatistics .ct-grid.ct-vertical {
    stroke-dasharray: 0;
    stroke: #bdc7d3;
}

#stampStatistics .ct-grid.ct-horizontal {
    stroke-width: 0;
}

#stampStatistics .ct-label.ct-horizontal.ct-end {
    margin-top: 0.375rem;
    color: #7B90A8;
    font-weight: 300;
    font-size: 0.5rem;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    -webkit-transform-origin: 10px 0px;
    -ms-transform-origin: 10px 0px;
    transform-origin: 10px 0px;
}

#report-promotion-stats {
    margin-bottom: 0.5625rem;
}

#promotions {
    grid-area: 1 / 1 / 2 / 2;
}

#places {
    grid-area: 1 / 2 / 2 / 4;
}

#places-stats {
    grid-area: 2 / 1 / 3 / 4;
}

#prizes {
    grid-area: 3 / 1 / 4 / 2;
}

#alerts {
    grid-area: 3 / 2 / 4 / 3;
}

#stamps-sum {
    grid-area: 3 / 3 / 4 / 4;
}

.form__modal {
    min-width: 35.375rem;
    padding: 2.5rem 7.5rem 3.75rem 7.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: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #001432;
    color: #ffffff;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    border-radius: 0.375rem;
    -webkit-box-shadow: 0 30px 30px rgba(38, 153, 251, 0.1);
    box-shadow: 0 30px 30px rgba(38, 153, 251, 0.1);
}

    .form__modal.form {
        background-color: #001432;
    }

    .form__modal .form {
        width: 100%;
        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: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: transparent;
    }

    .form__modal .btn {
        width: 100%;
    }

        .form__modal .btn.form-link {
            display: inline;
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            color: #ffffff;
            font-size: 0.875rem;
            font-weight: 600;
        }

    .form__modal .form-control {
        width: 100%;
        margin-bottom: 1.25rem;
        background: none;
    }

    .form__modal .form-title {
        font-weight: 500;
        font-size: 1.25rem;
    }

    .form__modal .form-title,
    .form__modal .form-btn {
        text-transform: uppercase;
    }

    .form__modal .form-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .form__modal .form-link {
        color: #709be7;
        font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-weight: 300;
        font-size: 0.875rem;
        text-decoration: none;
        margin-bottom: 1rem;
    }

        .form__modal .form-link:hover {
            text-decoration: underline;
        }

    .form__modal .form-info {
        margin-bottom: 1.375rem;
        font-weight: 300;
        font-size: 0.875rem;
    }

    .form__modal .form-inline {
        display: inline;
        margin: 0 0.25em;
    }

    .form__modal .section__inline {
        margin-bottom: 1.375rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .form__modal .section__inline .form-info {
            margin: 0;
        }

.navigation li ul:not(.active) {
    display: none;
    -webkit-transition: all 1500ms ease-in-out;
    -o-transition: all 1500ms ease-in-out;
    transition: all 1500ms ease-in-out;
}

    .navigation li ul:not(.active):target {
        display: block;
    }

.page-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;
    height: 3.75rem;
    padding: 0 30px;
    background: #0046f5;
}

    .page-header .header-logout {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 0.75rem;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        text-decoration: none;
        color: #ffffff;
    }

        .page-header .header-logout:hover {
            text-decoration: underline;
        }

    .page-header .header-logout-icon {
        margin-right: 0.5rem;
    }

    .page-header .form-control__search {
        min-width: 655px;
        padding: 0.625rem 1.5rem;
        border-color: #979797;
        background: none;
        color: #ffffff;
        font-size: 0.75rem;
    }

        .page-header .form-control__search::-webkit-input-placeholder {
            color: #ffffff;
        }

        .page-header .form-control__search::-moz-placeholder {
            color: #ffffff;
        }

        .page-header .form-control__search::-ms-input-placeholder {
            color: #ffffff;
        }

        .page-header .form-control__search::placeholder {
            color: #ffffff;
        }

        .page-header .form-control__search:focus {
            border-color: #979797;
        }

    .page-header .header-profile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-header .header-profile-logo {
        width: 2.125rem;
        height: 2.125rem;
        border-radius: 50%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .page-header .header-profile-name {
        margin-left: 0.75rem;
        color: #BFC7D5;
        font-size: 1rem;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    }

.btn-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .btn-flex .icon {
        max-width: 20px;
    }

    .btn-flex .label {
        margin: 0 1em 0 0.5em;
        display: inline-block;
        white-space: nowrap;
    }

.btn--icon {
    min-width: 290px;
    min-height: 50px;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

    .btn--icon .btn__icon {
        position: absolute;
        left: 20px;
        display: inline-block;
        width: 20px;
        height: 20px;
    }

.btn--icon__small {
    min-width: 173px;
}

.btn--form {
    min-width: 175px;
    min-height: 30px;
    padding: 0.5rem 1.25rem;
    border-radius: 0.3125rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn--form__small {
    min-width: 108px;
}

.btn--table {
    min-width: 148px;
    min-height: 31px;
    padding: 0.4375rem 0.625rem;
    border-radius: 0.375rem;
    border: 1px solid currentColor;
    font-size: 0.75rem;
}

    .btn--table.btn--inverse {
        color: #0046f5;
    }

.btn--nav {
    min-width: 148px;
    min-height: 50px;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn--large {
    min-width: 250px;
    min-height: 50px;
    padding: 0.875rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
}

    .btn--large.btn--modal {
        min-width: 290px;
        font-size: 0.75rem;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    }

.btn--tab {
    min-width: 133px;
    min-height: 37px;
    padding: 0.625rem 2.25rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn--image {
    padding: 0.5rem;
    background: none;
}

.btn--stroke {
    border: 1px solid #0CE8F9;
}

.btn--alternate {
    background: #001432;
}

.btn--secondary {
    background: #0CE8F9;
}

.btn--inactive {
    background: #9babbf;
}

.btn--inverse {
    background: none;
    border-color: #0046f5;
}

.btn--bold {
    font-weight: 700;
    letter-spacing: 0.0625rem;
}

.btn--uppercase {
    text-transform: uppercase;
}

a.btn--icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.pika-button {
    border-radius: 2px;
    text-align: center;
}

table {
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
    border-collapse: collapse;
    font-size: 0.75rem;
}

    table tr {
        margin-bottom: 6px;
    }

    table th {
        padding-bottom: 1rem;
        text-align: left;
        font-size: 0.625rem;
        color: #90A1B7;
    }

    table td {
        padding: 1.5rem;
        background: #ffffff;
        border-bottom: 6px solid #F8F9FA;
        border-right: 2px solid #F8F9FA;
        text-align: center;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        color: #001432;
    }

        table td:first-child {
            font-weight: 700;
        }

        table td:last-child {
            border-right-width: 0;
        }

    table tfoot td:empty {
        background: none;
    }

.table--bottom-border td {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
    border-right: none;
    border-bottom: 2px solid #F8F9FA;
    text-align: left;
}

    .table--bottom-border td:first-child {
        padding: 1.2rem;
    }

.table__cart .cart__item {
    text-align: left;
}

.table__cart .cart__item__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table__cart .cart__item__quantity__label {
    font-weight: 700;
}

.table__cart .cart__item .quantity-list {
    padding: 0;
    margin-left: 1rem;
    list-style: none;
}

.table__cart .cart__item .quantity-list__item {
    margin-right: 0.75rem;
    min-width: 44px;
    display: inline-block;
    text-align: center;
}

    .table__cart .cart__item .quantity-list__item:last-child {
        margin-right: 0;
    }

.table__cart .cart__item .quantity-list__item__link {
    display: block;
    padding: 2px 5px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    color: #EDEDED;
    background: #9babbf;
}

.table__cart .cart__item .quantity-list__item__link--active {
    background: #0046f5;
}

.table__cart .cart__sum {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 6px solid #0046f5;
    border-bottom-width: 0;
}

.table__cart .cart__sum--value {
    font-size: 1.5rem;
    font-weight: 700;
}

.table__cart .cart__add--price, .table__cart .cart__add--summary {
    text-align: left;
}

.table__cart__update td {
    background: #CFD7DF;
}

.table__cart__update__form.form__section {
    padding: 0;
}

    .table__cart__update__form.form__section .field {
        margin: 0;
    }

.table-address + .table-address {
    margin-top: 1rem;
}

.table-address .address-status {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #CFD7DF;
}

    .table-address .address-status::before {
        content: '';
        display: inline-block;
        margin-right: 0.375rem;
        width: 0.625rem;
        height: 0.625rem;
        border-radius: 50%;
        border: 1px solid #D2D2D2;
        background: #CFD7DF;
    }

.table-address .address-status--active {
    color: #0046f5;
}

    .table-address .address-status--active::before {
        background: #0046f5;
    }

.table-address__add td {
    background: #CFD7DF;
}

.table-address__add__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

    .table-address__add__form.form__section {
        padding: 0;
    }

        .table-address__add__form.form__section .field {
            min-width: 8.75rem;
            margin: 2px;
            -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
            flex: 1 0 auto;
        }

            .table-address__add__form.form__section .field .field__input {
                width: 100%;
            }

.pika-table {
    margin: 0;
}

.pricing-table {
    margin-right: 1.5rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #eceded;
    border-radius: 0.375rem;
    background: #f9fafb;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

    .pricing-table:last-child {
        margin-right: 0;
    }

.pricing-table--active {
    border: 2px solid #0CE8F9;
}

.pricing-table--featured {
    background: #0046f5;
}

    .pricing-table--featured .pricing-table__options {
        background: #0c2561;
        border-color: #023cca;
    }

    .pricing-table--featured .pricing-table__currency,
    .pricing-table--featured .pricing-table__option {
        color: #709BE7;
    }

    .pricing-table--featured .pricing-table__price,
    .pricing-table--featured .pricing-table__plan,
    .pricing-table--featured .pricing-table__value {
        color: #ffffff;
    }

.pricing-table__price {
    margin: 1.875rem 1.875rem 2rem 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0F358E;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 2.5625rem;
    font-weight: 700;
}

.pricing-table__currency {
    margin-left: 0.375rem;
    color: #BFC4CE;
    font-weight: 300;
    font-size: 0.8125rem;
}

.pricing-table__plan {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    color: #595F6F;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
}

.pricing-table__plan-version {
    font-weight: 700;
}

.pricing-table__options {
    margin: 1.1625rem 0 0 0;
    padding: 1.625rem 1.875rem 1.875rem 1.875rem;
    border-top: 1px solid #f5f6f8;
    list-style: none;
    color: #595F6F;
    font-size: 0.6875rem;
}

.pricing-table__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.1875rem;
}

    .pricing-table__option:last-child {
        margin-bottom: 0;
    }

.pricing-table__value {
    font-size: 0.75rem;
    color: #1A47B0;
}

.pricing-table__wrapper {
    padding-top: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pricing-table__status {
    height: 0;
    -webkit-transform: translateY(-2.25rem);
    -ms-transform: translateY(-2.25rem);
    transform: translateY(-2.25rem);
    display: block;
    text-align: center;
}

.pricing-table__status--active {
    color: #0CE8F9;
}

    .pricing-table__status--active:before {
        content: '';
        margin-right: 0.375rem;
        display: inline-block;
        width: 0.625rem;
        height: 0.625rem;
        border-radius: 50%;
        background: #0CE8F9;
    }

.cart {
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
}

.cart__title {
    padding-bottom: 0.875rem;
    margin-bottom: 1.375rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.36);
    font-size: 0.75rem;
    color: #90A1B7;
}

.cart__list {
    padding: 0;
    margin: 0;
    color: #4A4A4A;
    list-style: none;
}

.cart__list__item {
    margin-bottom: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart__list .item__option {
    margin-left: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cart__list .item__value {
    margin-left: auto;
    color: #90A1B7;
}

.cart__list .item__quantity {
    color: #90A1B7;
}

.cart__list .item__name {
    text-transform: uppercase;
}

.order {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
}

.order__list {
    margin: 0;
    padding: 0;
    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;
    list-style: none;
}

.order__list__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-item__details {
    display: none;
}

@media (min-width: 75rem) {
    .order-item__details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.order-item__icon {
    margin-right: 1.25rem;
}

.order-item__title {
    margin-bottom: 0.5rem;
    font-size: 0.5625rem;
    color: #373C48;
}

.order-item__title--active {
    font-weight: 700;
}

.order-item__step {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: #BFC4CE;
}

.form {
    background: #ffffff;
    border-radius: 5px;
}

.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form__row__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form__row > .btn {
    margin-top: auto;
    margin-bottom: auto;
}

.form__row--right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.form__section {
    padding: 1.25rem 1.875rem;
}

    .form__section .field {
        margin-right: 0.625rem;
        margin-left: 0.625rem;
        margin-bottom: 1.25rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .form__section .field__label {
        margin-bottom: 0.5rem;
        font-size: 0.5625rem;
        color: #595F6F;
        text-align: left;
    }

    .form__section .field__label--light {
        font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-weight: 400;
        font-size: 0.75rem;
        color: #90a1b7;
    }

    .form__section .field__input {
        width: 11rem;
        max-width: 100%;
        padding: 0.375rem 0.5rem;
        border: 1px solid #BFC4CE;
        border-radius: 5px;
    }

    .form__section .field__input--half {
        width: 4.875rem;
    }

    .form__section .field__input--full {
        width: 100%;
    }

    .form__section .field__input--large {
        padding: 0.875rem;
        border: 1px solid #9babbf;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        font-weight: 500;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        color: #001432;
    }

    .form__section .field__input--xlarge {
        width: 100%;
        min-height: 66px;
        background: none;
        border: 1px solid currentColor;
        border-radius: 12px;
        text-align: center;
    }

    .form__section .field__input--no-label {
        padding: 0.75rem 1rem;
        border-radius: 0.3125rem;
        border: 1px solid #9BABBF;
        color: #7e8898;
        background: none;
    }

        .form__section .field__input--no-label::-webkit-input-placeholder {
            font-size: 0.5rem;
            text-transform: uppercase;
        }

        .form__section .field__input--no-label::-moz-placeholder {
            font-size: 0.5rem;
            text-transform: uppercase;
        }

        .form__section .field__input--no-label::-ms-input-placeholder {
            font-size: 0.5rem;
            text-transform: uppercase;
        }

        .form__section .field__input--no-label::placeholder {
            font-size: 0.5rem;
            text-transform: uppercase;
        }

    .form__section .field__input__status {
        margin-top: 0.5rem;
        text-transform: uppercase;
        font-size: 0.5rem;
        text-align: right;
    }

    .form__section .field__input__status--success {
        color: #00BF28;
    }

    .form__section .field__input__status--warning {
        color: #FF5D30;
    }

    .form__section .field__textarea {
        padding: 0.875rem;
        border: 1px solid #9babbf;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        font-weight: 500;
        font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        color: #001432;
    }

    .form__section .field__radio + .field__label {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #CFD7DF;
        cursor: pointer;
    }

        .form__section .field__radio + .field__label:before {
            content: '';
            display: block;
            margin-right: 1em;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid #d2d2d2;
            background: #EBEBEB;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

    .form__section .field__radio:checked + .field__label {
        color: #0046f5;
    }

        .form__section .field__radio:checked + .field__label::before {
            background: #0046f5;
        }

    .form__section .field__checkbox + .field__label {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #CFD7DF;
        cursor: pointer;
    }

        .form__section .field__checkbox + .field__label:before {
            content: '';
            display: block;
            margin-right: 1em;
            width: 10px;
            height: 10px;
            border-radius: 2px;
            border: 1px solid #d2d2d2;
            background: #EBEBEB;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

    .form__section .field__checkbox:checked + .field__label {
        color: #0046f5;
    }

        .form__section .field__checkbox:checked + .field__label::before {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.277 10.228'%3E%3Cpath fill='%230046f5' transform='translate(14.276 0) rotate(90)' d='M9.86,9.832l-4.1,4.077a1.255,1.255,0,0,1-1.777-1.772l3.21-3.191L.368,2.139A1.255,1.255,0,1,1,2.145.367L9.86,8.06a1.25,1.25,0,0,1,0,1.772Z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 75%;
        }

    .form__section .field--inline {
        margin-top: 2.25rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .form__section .field--inline .field__label {
            margin: 0 0.375rem;
        }

.form__payment {
    padding-top: 0.625rem;
    border-top: 1px solid #DDDFE7;
}

.form__title {
    margin-right: auto;
    font-weight: 300;
    font-size: 1.125rem;
    color: #373C48;
}

.form__title-inline {
    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;
}

.form__card-details {
    padding: 3.125rem 0.5625rem 0.5625rem;
    border: 1px solid #00BF28;
    border-radius: 0.375rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: url("/assets/images/card_icon.png") 0.5625rem 0.5625rem no-repeat transparent;
}

.form__card {
    padding: 0.375rem;
    margin: 0.5625rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.375rem;
    border: 1px solid #BFC4CE;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form__card__number {
    margin-left: 0.375rem;
}

.form-info-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .form-info-logo .logo {
        max-width: 70px;
        max-height: 70px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .form-info-logo .btn {
        margin-top: 1.25rem;
        margin-right: auto;
    }

.form__invoice .data-list {
    margin: 1.875rem 0 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form__invoice .data-list__item {
    width: 50%;
    min-width: 200px;
    margin-bottom: 1.875rem;
    display: inline-block;
}

.form__invoice .data-list__value {
    margin-top: 0.875rem;
    display: block;
    color: #001432;
}

.form__invoice .data-list__title {
    display: block;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.form-table .form__section {
    padding: 0;
}

.form-table .field__label {
    font-weight: 500;
}

.form-table .form__row__item .btn {
    margin-top: auto;
}

.form--no-bg {
    background: none;
}

    .form--no-bg .form__section {
        padding-left: 0;
        padding-right: 0;
    }

        .form--no-bg .form__section > .form__row > .form__row__item:not(.form__row) {
            max-width: 40%;
        }

        .form--no-bg .form__section > .form__row > .form__row {
            max-width: 40%;
        }

        .form--no-bg .form__section .field {
            margin-bottom: 0.5rem;
        }

    .form--no-bg .field__input,
    .form--no-bg .field__textarea {
        background: none;
    }

.field__input--file input[type=file] {
    display: none;
}

.custom-control .field__checkbox,
.custom-control .field__radio {
    display: none;
}

.error {
    border-color: #FF5D30 !important;
    color: #FF5D30 !important;
}

.field-validation-error {
    padding: 0.25em;
    color: #ff5d30;
}

.custom-control .field__radio + .field__label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #CFD7DF;
    cursor: pointer;
}

    .custom-control .field__radio + .field__label:before {
        content: '';
        display: block;
        margin-right: 1em;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid #d2d2d2;
        background: #EBEBEB;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

.custom-control .field__radio:checked + .field__label {
    color: #0046f5;
}

    .custom-control .field__radio:checked + .field__label::before {
        background: #0046f5;
    }

.custom-control .field__checkbox + .field__label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #CFD7DF;
    cursor: pointer;
}

    .custom-control .field__checkbox + .field__label:before {
        content: '';
        display: block;
        margin-right: 1em;
        width: 10px;
        height: 10px;
        border-radius: 2px;
        border: 1px solid #d2d2d2;
        background: #EBEBEB;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

.custom-control .field__checkbox:checked + .field__label {
    color: #0046f5;
}

    .custom-control .field__checkbox:checked + .field__label::before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.277 10.228'%3E%3Cpath fill='%230046f5' transform='translate(14.276 0) rotate(90)' d='M9.86,9.832l-4.1,4.077a1.255,1.255,0,0,1-1.777-1.772l3.21-3.191L.368,2.139A1.255,1.255,0,1,1,2.145.367L9.86,8.06a1.25,1.25,0,0,1,0,1.772Z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 75%;
    }

.confirmation-box {
    width: 100%;
    min-height: 395px;
    padding: 1.25rem;
    border-radius: 0.3125rem;
    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-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #001432;
}

.confirmation-box__title, .confirmation-box__subtitle {
    color: #ffffff;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 1.6875rem;
}

.confirmation-box__title {
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.confirmation-box__subtitle {
    margin-bottom: 1.125rem;
    font-weight: 300;
}

.confirmation-box__info {
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 1rem;
    text-align: center;
    color: #709BE7;
}

.form__new-promo {
    padding: 1.125rem 2.25rem 1.125rem 3rem;
    background-color: #ffffff;
}

.new-promo__content {
    display: grid;
    grid-gap: 1rem;
}

@media (min-width: 90rem) {
    .new-promo__content {
        grid-gap: 0;
        grid-template-columns: [left-column-start] 20.3488% [left-column-end] 16.2791% [right-column-start] 63.3721% [right-column-end];
    }
}

.new-promo__content__header {
    margin-bottom: 1.75rem;
}

@media (min-width: 90rem) {
    .new-promo__content #datesform {
        grid-area: left-column;
    }
}

@media (min-width: 90rem) {
    .new-promo__content__right {
        grid-area: right-column;
    }
}

.new-promo__content__wrapper {
    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: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 75rem) {
    .new-promo__content__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.new-promo__content__right--first {
    width: 100%;
}

@media (min-width: 75rem) {
    .new-promo__content__right--first {
        width: 45%;
    }
}

.new-promo__content__right--second {
    width: 100%;
}

@media (min-width: 75rem) {
    .new-promo__content__right--second {
        width: 45%;
    }
}

.new-promo__content .field {
    margin: 0;
}

.new-promo__content .field--with-button {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

    .new-promo__content .field--with-button .field {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .new-promo__content .field--with-button .field__input {
        min-height: 34px;
    }

    .new-promo__content .field--with-button .btn {
        min-width: 0;
        margin-left: 0.5rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

.new-promo__content .field__input {
    width: 100%;
}

.new-promo__activation__list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 6rem;
}

.new-promo__activation__list__item {
    display: inline-block;
    margin-bottom: 0.3125rem;
}

.new-promo__activation .btn {
    width: 100%;
    white-space: nowrap;
}

.new-promo__list-options {
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
}

.new-promo__list-options__item {
    min-height: 30px;
    margin-bottom: 0.3125rem;
    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;
    border-radius: 2px;
    color: #EDEDED;
    background: #9babbf;
    font-size: 1rem;
    text-align: center;
}

.new-promo__list-options__item--active {
    background: #0046f5;
    font-weight: 700;
}

.new-promo__label {
    margin-bottom: 1rem;
    color: #595F6F;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.5625rem;
}

.new-promo__marker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .new-promo__marker:before {
        content: '';
        margin-right: 0.875rem;
        display: block;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
        flex: 0 0 10px;
        background: #0046f5;
    }

.promo-code {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 1.125rem;
}

.promo-code__label {
    margin-left: 0.5rem;
}

.promo-code .btn {
    width: auto;
}

.promo-online {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .promo-online .field {
        margin-right: 1rem;
    }

    .promo-online .btn {
        min-width: 0;
        padding: 0.5rem;
    }

        .promo-online .btn .icon {
            margin: 0;
        }

.simplebar-scrollbar {
    width: 1px;
    right: 1px;
    background: #90A1B7;
}

.simplebar-track.simplebar-vertical {
    width: 2px;
    background: #f0f2f5;
}

.js-Dropdown {
    width: auto;
    margin-left: 0.5em;
}

.js-Dropdown-title, .js-Dropdown-list {
    border-radius: 5px;
    border: 1px solid #BFC4CE;
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.75rem;
    color: #595F6F;
}

.js-Dropdown-title {
    padding-right: 30px;
}

    .js-Dropdown-title:after {
        top: 30%;
        right: 20px;
        content: url("../../../assets/images/Down_Arrow.png");
        border: none;
    }

    .js-Dropdown-title.is-open:after {
        right: 10px;
        top: 70%;
        -webkit-transform: rotate(0.5turn);
        -ms-transform: rotate(0.5turn);
        transform: rotate(0.5turn);
    }

.js-Dropdown-list {
    padding: 2px;
}

    .js-Dropdown-list li {
        padding-right: 30px;
        border-bottom-color: #BFC4CE;
    }

        .js-Dropdown-list li:hover, .js-Dropdown-list li.is-selected {
            background: #F8F9FA;
        }

        .js-Dropdown-list li:last-child {
            border: none;
            position: relative;
        }

            .js-Dropdown-list li:last-child:after {
                position: absolute;
                top: 30%;
                right: 20px;
                width: 0;
                height: 0;
                display: block;
                content: url("../../../assets/images/Down Arrow.png");
            }

.tabs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tab {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.25rem;
    margin-right: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #E3EDED;
    border-radius: 0.3125rem;
    background: #F8F9FA;
    color: #5f5f5f;
    -webkit-box-shadow: 0 5px #F6F9FE;
    box-shadow: 0 5px #F6F9FE;
}

@media (min-width: 75rem) {
    .tab {
        width: 21rem;
    }
}

@media (min-width: 90rem) {
    .tab {
        padding: 1rem;
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
}

@media (min-width: 120rem) {
    .tab {
        width: 23.125rem;
        padding: 1.75rem 1.875rem;
    }
}

.tab__info {
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    color: #709BE7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tab__link {
    font-size: 0.75rem;
    font-weight: 300;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.tab__title, .tab__subtitle, .tab__stats__number, .tab__details__value {
    color: #161360;
}

.tab__title {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.tab__subtitle {
    font-size: 0.9375rem;
}

.tab__stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tab__stats__number, .tab__stats__label {
    display: block;
    text-align: center;
}

.tab__stats__number {
    font-size: 1.25rem;
}

.tab__stats__label {
    font-size: 0.9375rem;
}

.tab__stats__column {
    padding: 1rem;
}

    .tab__stats__column:first-child {
        padding-left: 0;
    }

    .tab__stats__column:last-child {
        padding-right: 0;
    }

    .tab__stats__column:not(:first-child):not(:last-child) {
        border-left: 1px solid #f7f8fb;
        border-right: 1px solid #f7f8fb;
    }

.tab__details {
    margin-top: 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tab__details__title, .tab__details__value {
    display: block;
}

.tab__details__value {
    font-size: 0.9375rem;
}

.tab__nav {
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
}

.tab--active {
    background: #ffffff;
}

.promo-icon {
    width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.promo-icon__list {
    height: 200px;
    width: 100%;
    margin: 0;
    padding: 0.25rem;
    list-style: none;
}

.promo-icon__list__wrapper {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    background-color: #f8f9fa;
    border-radius: 0 0 0.375rem 0.375rem;
    border: 1px solid #9BABBF;
    border-top: none;
}

.promo-icon__item {
    min-height: 45px;
    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;
    border-bottom: 1px solid #eeeeee;
}

    .promo-icon__item:last-child {
        border: none;
    }

.card-preview {
    width: 280px;
    height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card-preview--left {
    padding: 1rem;
    background: #ffffff;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    border-radius: 10px 0 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-preview--right {
    background: #001432;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    border-radius: 0 10px 10px 0;
}

.card-preview__logo {
    margin-bottom: auto;
    margin-top: 1rem;
    max-height: 105px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.card-preview__card-number {
    margin-bottom: 0.625rem;
    color: #95989a;
    font-size: 0.5rem;
}

.card-preview__label {
    color: #709BE7;
    font-size: 0.6875rem;
}

.card-preview__title {
    margin-bottom: 0.5rem;
    display: block;
    color: #90A1B7;
    font-size: 0.75rem;
    font-weight: 400;
}

.card-preview__wrapper {
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.card-preview__nav {
    margin-top: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

    .card-preview__nav > .btn {
        margin-right: 0.5rem;
    }

        .card-preview__nav > .btn:last-child {
            margin-right: 0;
        }

#promocardsinfo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.promo-details > .form > .form__section {
    padding: 0 3rem 0 0;
    border-right: 1px solid #ececec;
}

.promo-details .card-preview__wrapper {
    padding-left: 3rem;
}

.form__address-book {
    background: #ffffff;
}

.address-book {
    padding-right: 1.625rem;
    border-right: 1px solid #F8F9FA;
}

.address-book__section {
    margin-top: 1.875rem;
    padding-right: 1.25rem;
    max-height: 220px;
}

.address-book__title {
    margin-bottom: 0.5rem;
    font-size: 0.5625rem;
    font-weight: 400;
    color: #595F6F;
    text-align: left;
}

.address-book__list {
    margin: 0 0 0.75rem 0;
    padding: 0;
    list-style: none;
}

.address-book__list__item {
    padding: 0.625rem;
    margin-bottom: 0.625rem;
    min-height: 2rem;
    display: block;
    border-radius: 0.375rem;
    background: #9BABBF;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.625rem;
    font-weight: 600;
}

    .address-book__list__item:last-child {
        margin-bottom: 0;
    }

.address-book__nav {
    margin-top: 1.5rem;
}

.overlay {
    display: none;
}

.overlay--modal-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    -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, 20, 50, 0.69);
    color: #ffffff;
}

.modal {
    min-height: 46vh;
    min-width: 42vw;
    padding: 40px;
    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;
    background: #001432;
    border: 1px solid #001432;
    border-radius: 0.375rem;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.875rem;
}

.modal--success {
    border-color: #00BF28;
}

.modal--error {
    border-color: #FF5D30;
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.modal__content {
    width: 100%;
    max-width: 52vw;
    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;
}

.modal__content__icon {
    margin-top: auto;
    margin-bottom: 50px;
}

.modal__content__title {
    font-size: 1.25rem;
}

.modal__content__nav {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal__content .form__section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.modal__content .field__input,
.modal__content .reset-link {
    color: #ffffff;
}

.modal__content--scrollable {
    margin-top: 1rem;
    padding: 2rem 3rem 2rem 2rem;
    border-radius: 1rem;
    background: #ffffff;
    color: #90A1B7;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.625rem;
    font-weight: 300;
    line-height: 1.5;
}

    .modal__content--scrollable .simplebar-vertical {
        right: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

.ct-chart {
    background: #ffffff;
}

.ct-bar {
    stroke-width: 1.5rem;
    stroke-linecap: round;
}

.ct-series-a .ct-bar {
    stroke: #f8f9fa;
}

.ct-series-a .ct-slice-donut {
    stroke: #d9e4eb;
    stroke-width: 3px !important;
}

.ct-series-b .ct-bar {
    stroke: #0046f5;
}

.ct-series-b .ct-slice-donut {
    stroke: #0ce8f9;
    stroke-linecap: round;
    stroke-width: 7px !important;
}

.ct-label.ct-horizontal.ct-end {
    font-weight: 600;
}

.ct-square {
    width: 130px;
    height: 130px;
    position: relative;
}

.pie-data {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    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-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .pie-data .pie-name {
        color: #d9e4eb;
    }

    .pie-data .pie-value {
        color: #586579;
        font-size: 1.25rem;
    }

        .pie-data .pie-value:after {
            content: '%';
        }

.ct-chart-bar .ct-bar {
    position: relative;
    opacity: 1;
    -webkit-transition: opacity 200ms ease-in;
    -o-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
}

    .ct-chart-bar .ct-bar:hover {
        opacity: 0.75;
    }

.ct-chart-bar .ct-series-b .ct-bar {
    cursor: pointer;
}

.terms-of-use {
    color: #001432;
    font-size: 0.75rem;
}

    .terms-of-use h1, .terms-of-use h2, .terms-of-use h3, .terms-of-use h4, .terms-of-use h5, .terms-of-use h6 {
        line-height: 1.2;
        text-align: center;
    }

.rewards_tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.reward-tab {
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid #B7D2E5CC;
    background-color: #ffffff;
}

.reward-tab__title {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    letter-spacing: 1.7px;
    color: #8DABC4;
}

.reward-tab__total .total {
    color: #2C405A;
    font-size: 1.5rem;
    font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 300;
}

.reward-tab__total .bar {
    margin: 0.75rem 0;
    width: 100%;
    height: 6px;
    background-color: #E6F4D4;
    border-radius: 6px;
    position: relative;
}

    .reward-tab__total .bar > span {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #00BF28;
        border-radius: 6px;
        height: 6px;
    }

.reward-tab .reward-summary {
    font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    color: #8DABC4;
}

.reward-tab + .reward-tab {
    margin-left: 5px;
}

.form-reward {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px 10px;
}

    .form-reward input {
        padding: 8px 15px;
        border-radius: 5px;
        border: 1px solid #BFC4CE;
        font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-size: 0.75rem;
        color: #595F6F;
    }

    .form-reward #custom-position-list {
        margin-left: 0;
    }

.reward-tooltip {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 2px);
    -ms-transform: translate(-50%, 2px);
    transform: translate(-50%, 2px);
    padding: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 1px 4px #2C405A35;
    box-shadow: 0px 1px 4px #2C405A35;
    background-color: #FFF;
    border: 1px solid #B7D2E5CC;
    display: none;
}

    .reward-tooltip:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        margin-left: -2px;
        top: 0;
        left: 50%;
        border: 4px solid black;
        border-color: #fff #fff transparent transparent;
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-box-shadow: 1px -1px 0 0 #B7D2E5CC;
        box-shadow: 1px -1px 0 0 #B7D2E5CC;
    }

    .reward-tooltip ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .reward-tooltip ul li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            white-space: nowrap;
        }

            .reward-tooltip ul li button {
                -webkit-box-flex: 1;
                -ms-flex: 1;
                flex: 1;
            }

table.table-reward {
    border: 1px solid #B7D2E5CC;
}

    table.table-reward th {
        background-color: #fff;
        padding: 0.875rem 1rem;
        font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        color: #8DABC4;
        font-size: 0.6875rem;
        font-weight: 400;
        letter-spacing: 1.7px;
        text-align: left;
        border-bottom: 1px solid #B7D2E5CC;
    }

    table.table-reward td {
        padding: 1rem;
        text-align: left;
        font-family: Nunito, Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-weight: 400;
        border-right: none;
        border-bottom: 1px solid #B7D2E5CC;
    }

        table.table-reward td::first-child {
            font-weight: 400;
        }

    table.table-reward tr:last-child td {
        border: none;
    }

    table.table-reward .quantity {
        color: #0093EE;
    }

    table.table-reward .status--ok {
        color: #4ECE3D;
    }

    table.table-reward .status--wait {
        color: #FF5D30;
    }

    table.table-reward .trigger {
        color: #3F536E;
        text-decoration: underline;
        cursor: pointer;
    }

        table.table-reward .trigger:hover {
            text-decoration: none;
        }

    table.table-reward .mute {
        color: #8DABC4;
    }

    table.table-reward .align-left {
        text-align: left;
    }

    table.table-reward .align-center {
        text-align: center;
    }

    table.table-reward .history-wrapper {
        max-height: 260px;
        overflow: auto;
    }

    table.table-reward .history-row {
        padding: 10px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: left;
        color: #3F536E;
        border-bottom: 1px solid #E5EEF5;
    }

        table.table-reward .history-row:last-child {
            border: none;
        }

        table.table-reward .history-row span {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

    table.table-reward .btn {
        font-weight: 300;
        padding: 0.75rem;
        min-width: 0;
        white-space: nowrap;
    }

    table.table-reward .tooltip {
        position: relative;
        cursor: pointer;
        display: inline-block;
    }

    table.table-reward .hide {
        display: none;
    }

    table.table-reward tr.active td {
        background-color: #FAFBFC;
    }

        table.table-reward tr.active td:first-child {
            border-left: 3px solid #0046F5;
        }

/*# sourceMappingURL=style.min.css.map */
