* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
}

:root {
    --font-heading: "Montserrat", serif;
    --font-body: "Inter", sans-serif;
    --red: #ed5e5e;
    --green: #13c56b;
    --blue: #6691e7;
    --orange: #f77f2a;
    --yellow: #e8bc52;
    --purple: #865ce2;
    --magenta: #fa3788;
    --light: #f3f6f9;
    --dark: #363d48;
    --gray: #1a2e4c;
    --red-dim: #fce7e7;
    --green-dim: #dcf6e9;
    --blue-dim: #e8effb;
    --orange-dim: #fff2e8;
    --yellow-dim: #fcf5e5;
    --purple-dim: #ede7fb;
    --magenta-dim: #ffe8f2;
    --light-dim: #f9fbfc;
    --dark-dim: #e9ebec;
    --gray-dim: #deebff;
    --link-color: #007bff;
    --link-color-hover: #005bbd;
    --nav-item: #6d7080;
    --medium-gray: #dcdcdc;
    --text-light: #878a99;
    --text-lighter: #bbbdc7;
    --brand-color1: #14145b;
    --brand-color2: #f18826;
    --brand-color3: #f66327;
}

body {
    background-color: #fff;
}

.page {
    margin-top: 60px;
    width: 100%;
    min-width: 1230px;
}

.content {
    width: 100%;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
}


.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    align-items: stretch;
}

.row-center {
    justify-content: center !important;
}

.row-vertical-center {
    align-items: center;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.padding-5 {
    padding: 5px;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.padding-25 {
    padding: 20px;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.font-size-big {
    font-size: 20px !important;
}

.font-size-normal {
    font-size: 16px !important;
}

.font-size-small {
    font-size: 12px !important;
}

.font-size-tiny {
    font-size: 10px !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semibold {
    font-weight: 600 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-align-left {
    text-align: left !important;
}

.text-align-center {
    text-align: center !important;
}

.text-align-right {
    text-align: right !important;
}

.text-align-left-mobile-center {
    text-align: left;
}

.text-align-right-mobile-center {
    text-align: right !important;
}

.color-black {
    color: #000000 !important;
}

.color-white {
    color: #ffffff !important;
}

.color-red {
    color: var(--red) !important;
}

.color-green {
    color: var(--green) !important;
}

.color-blue {
    color: var(--blue) !important;
}

.color-orange {
    color: var(--orange) !important;
}

.color-yellow {
    color: var(--yellow) !important;
}

.color-purple {
    color: var(--purple) !important;
}

.color-magenta {
    color: var(--magenta) !important;
}

.color-light {
    color: var(--light) !important;
}

.color-dark {
    color: var(--dark) !important;
}

.color-gray {
    color: var(--gray) !important;
}

.color-text-light {
    color: var(--text-light) !important;
}

.color-text-lighter {
    color: var(--text-lighter) !important;
}

.color-red-dim {
    color: var(--red-dim) !important;
}

.color-green-dim {
    color: var(--green-dim) !important;
}

.color-blue-dim {
    color: var(--blue-dim) !important;
}

.color-orange-dim {
    color: var(--orange-dim) !important;
}

.color-yellow-dim {
    color: var(--yellow-dim) !important;
}

.color-purple-dim {
    color: var(--purple-dim) !important;
}

.color-magenta-dim {
    color: var(--magenta-dim) !important;
}

.color-light-dim {
    color: var(--light-dim) !important;
}

.color-dark-dim {
    color: var(--dark-dim) !important;
}

.color-gray-dim {
    color: var(--gray-dim) !important;
}

.bg-color-black {
    background-color: #000000 !important;
}

.bg-color-white {
    background-color: #ffffff !important;
}

.bg-color-red {
    background-color: var(--red) !important;
}

.bg-color-green {
    background-color: var(--green) !important;
}

.bg-color-blue {
    background-color: var(--blue) !important;
}

.bg-color-orange {
    background-color: var(--orange) !important;
}

.bg-color-yellow {
    background-color: var(--yellow) !important;
}

.bg-color-purple {
    background-color: var(--purple) !important;
}

.bg-color-magenta {
    background-color: var(--magenta) !important;
}

.bg-color-light {
    background-color: var(--light) !important;
}

.bg-color-dark {
    background-color: var(--dark) !important;
}

.bg-color-gray {
    background-color: var(--gray) !important;
}

.bg-color-red-dim {
    background-color: var(--red-dim) !important;
}

.bg-color-green-dim {
    background-color: var(--green-dim) !important;
}

.bg-color-blue-dim {
    background-color: var(--blue-dim) !important;
}

.bg-color-orange-dim {
    background-color: var(--orange-dim) !important;
}

.bg-color-yellow-dim {
    background-color: var(--yellow-dim) !important;
}

.bg-color-purple-dim {
    background-color: var(--purple-dim) !important;
}

.bg-color-magenta-dim {
    background-color: var(--magenta-dim) !important;
}

.bg-color-light-dim {
    background-color: var(--light-dim) !important;
}

.bg-color-dark-dim {
    background-color: var(--dark-dim) !important;
}

.bg-color-gray-dim {
    background-color: var(--gray-dim) !important;
}

a.link {
    text-decoration: none;
    color: var(--link-color);
    cursor: pointer;
    user-select: none;
}

    a.link:hover {
        color: var(--link-color-hover);
    }

    a.link:active {
        color: var(--orange);
    }

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.3;
}

h2 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.4;
}

h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.card {
    background-color: #fff;
    border: 1px solid var(--gray-dim);
    height: 100%;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: top;
}

.card-shadow {
    box-shadow: 0 0 10px 2px var(--light);
}

.card.card-border-blue {
    border: 2px dashed var(--blue);
}

.card.card-border-green {
    border: 2px dashed var(--green);
}

.card.card-border-orange {
    border: 2px dashed var(--orange);
}

.card.card-border-red {
    border: 3px dashed var(--red);
}

.card-content {
    padding: 14px;
}

.no-user-select {
    user-select: none;
}

p,
span {
    font-family: var(--font-body);
}

.card-content p {
    color: var(--gray);
    font-size: 14px;
}

.card-content ul {
    font-family: var(--font-body);
    color: var(--gray);
    display: block;
    font-size: 14px;
    margin-left: 25px;
}

    .card-content ul li::marker {
        color: var(--text-lighter);
    }

.card-title {
    display: flex;
    align-items: center;
    padding: 14px;
}

    .card-title.underline {
        border-bottom: 1px solid var(--light);
    }

    .card-title .heading {
        flex: 1 1 auto;
    }

    .card-title .options {
        flex: 0 0 auto;
    }

        .card-title .options a {
            font-family: var(--font-body);
            display: inline-block;
            margin-left: 4px;
            font-size: 12px;
            margin-left: 10px;
        }

.flex-col {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .flex-col .stretch {
        flex: 1 auto;
    }

    .flex-col .fit {
        flex: 0 auto;
    }

.button {
    font-family: var(--font-body);
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 8px;
    min-width: 110px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--dark-dim);
    color: var(--gray);
    text-decoration: none;
    margin-right: 2px;
    margin-bottom: 5px;
    text-align: center;
    user-select: none;
    border-radius: 2px;
}

    .button.button-big {
        padding: 12px;
        font-size: 14px;
    }

.button-green:enabled:hover,
.button-red:enabled:hover,
.button-blue:enabled:hover,
.button-purple:enabled:hover,
.button-orange:enabled:hover,
.button-yellow:enabled:hover,
.button-magenta:enabled:hover {
    filter: brightness(90%);
}

.button:enabled:active {
    filter: brightness(110%);
}

.button i {
    margin-right: 4px;
}

.button img {
    display: inline-block;
    vertical-align: middle;
    height: 14px;
    width: 14px;
    margin-right: 4px;
}

.button:disabled {
    cursor: not-allowed;
    background-color: #fff;
    border: 1px solid var(--light);
    color: var(--text-lighter);
}

.button-green {
    background-color: var(--green);
    border: 1px solid var(--green);
    color: #fff;
}

.button-red {
    background-color: var(--red);
    border: 1px solid var(--red);
    color: #fff;
}

.button-blue {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
}

.button-purple {
    background-color: var(--purple);
    border: 1px solid var(--purple);
    color: #fff;
}

.button-orange {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: #fff;
}

.button-yellow {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    color: #fff;
}

.button-magenta {
    background-color: var(--magenta);
    border: 1px solid var(--magenta);
    color: #fff;
}

.button-green-outline {
    background-color: #fff;
    border: 1px solid var(--green);
    color: var(--green);
}

    .button-green-outline:hover {
        background-color: var(--green);
        color: #fff;
    }

.button-red-outline {
    background-color: #fff;
    border: 1px solid var(--red);
    color: var(--red);
}

    .button-red-outline:hover {
        background-color: var(--red);
        color: #fff;
    }

.button-blue-outline {
    background-color: #fff;
    border: 1px solid var(--blue);
    color: var(--blue);
}

    .button-blue-outline:hover {
        background-color: var(--blue);
        color: #fff;
    }

.button-purple-outline {
    background-color: #fff;
    border: 1px solid var(--purple);
    color: var(--purple);
}

    .button-purple-outline:hover {
        background-color: var(--purple);
        color: #fff;
    }

.button-orange-outline {
    background-color: #fff;
    border: 1px solid var(--orange);
    color: var(--orange);
}

    .button-orange-outline:hover {
        background-color: var(--orange);
        color: #fff;
    }

.button-yellow-outline {
    background-color: #fff;
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

    .button-yellow-outline:hover {
        background-color: var(--yellow);
        color: #fff;
    }

.button-magenta-outline {
    background-color: #fff;
    border: 1px solid var(--magenta);
    color: var(--magenta);
}

    .button-magenta-outline:hover {
        background-color: var(--magenta);
        color: #fff;
    }

.button-green-dim {
    background-color: var(--green-dim);
    border: 1px solid var(--green-dim);
    color: var(--green);
}

    .button-green-dim:enabled:hover {
        background-color: var(--green);
        border: 1px solid var(--green);
        color: #fff;
    }

.button-red-dim {
    background-color: var(--red-dim);
    border: 1px solid var(--red-dim);
    color: var(--red);
}

    .button-red-dim:enabled:hover {
        background-color: var(--red);
        border: 1px solid var(--red);
        color: #fff;
    }

.button-blue-dim {
    background-color: var(--blue-dim);
    border: 1px solid var(--blue-dim);
    color: var(--blue);
}

    .button-blue-dim:enabled:hover {
        background-color: var(--blue);
        border: 1px solid var(--blue);
        color: #fff;
    }

.button-purple-dim {
    background-color: var(--purple-dim);
    border: 1px solid var(--purple-dim);
    color: var(--purple);
}

    .button-purple-dim:enabled:hover {
        background-color: var(--purple);
        border: 1px solid var(--purple);
        color: #fff;
    }

.button-orange-dim {
    background-color: var(--orange-dim);
    border: 1px solid var(--orange-dim);
    color: var(--orange);
}

    .button-orange-dim:enabled:hover {
        background-color: var(--orange);
        border: 1px solid var(--orange);
        color: #fff;
    }

.button-yellow-dim {
    background-color: var(--yellow-dim);
    border: 1px solid var(--yellow-dim);
    color: var(--yellow);
}

    .button-yellow-dim:enabled:hover {
        background-color: var(--yellow);
        border: 1px solid var(--yellow);
        color: #fff;
    }

.button-magenta-dim {
    background-color: var(--magenta-dim);
    border: 1px solid var(--magenta-dim);
    color: var(--magenta);
}

    .button-magenta-dim:enabled:hover {
        background-color: var(--magenta);
        border: 1px solid var(--magenta);
        color: #fff;
    }

.key-value {
    font-family: var(--font-body);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid var(--dark-dim);
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

    .key-value:last-child {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .key-value a {
        text-decoration: none;
    }

    .key-value p:first-child {
        font-size: 12px;
        color: var(--gray);
    }

    .key-value p:last-child {
        font-size: 14px;
        font-weight: 500;
        color: var(--black);
        margin-top: 2px;
    }

.icon-button {
    font-family: var(--font-body);
    background-color: #fff;
    border: 1px solid var(--dark-dim);
    padding: 6px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    user-select: none;
    cursor: pointer;
    display: inline-block;
    margin-right: 1px;
    margin-bottom: 2px;
    text-decoration: none;
    text-align: center;
}

    .icon-button i {
        color: var(--dark);
    }

    .icon-button img {
        width: 14px;
        height: 14px;
    }

    .icon-button p {
        color: var(--dark);
        text-align: center;
        font-size: 12px;
        min-width: 50px;
        margin-top: 4px;
    }

    .icon-button:hover {
        background-color: var(--yellow-dim);
        border: 1px solid var(--text-lighter);
    }

.tag {
    font-family: inherit;
    font-weight: inherit;
    padding: 2px;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
}

.tag-red {
    background-color: var(--red);
}

.tag-green {
    background-color: var(--green);
}

.tag-blue {
    background-color: var(--blue);
}

.tag-orange {
    background-color: var(--orange);
}

.tag-yellow {
    background-color: var(--yellow);
}

.tag-gray {
    background-color: var(--gray);
}

.tag-purple {
    background-color: var(--purple);
}

.tag-magenta {
    background-color: var(--magenta);
}

.tag-light {
    background-color: var(--light);
    border: 1px solid var(--dark-dim);
    color: var(--dark);
}

.tag-white {
    background-color: #fff;
    border: 1px solid var(--dark-dim);
    color: var(--gray);
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

    .table-wrap::-webkit-scrollbar {
        width: 10px;
        height: 10px;
        background-color: #fff;
    }

    .table-wrap::-webkit-scrollbar-thumb {
        background-color: #dcdcdc;
    }

.table {
    border-collapse: collapse;
    width: 100%;
}

    .table a {
        cursor: pointer;
        text-decoration: none;
        user-select: none;
        color: var(--link-color);
    }

        .table a:hover {
            color: var(--link-color-hover);
        }

    .table img {
        height: 18px;
        width: auto;
        display: inline-block;
        vertical-align: middle;
    }

    .table th,
    .table td {
        font-size: 13px;
        padding: 8px;
        border-bottom: 1px solid var(--light);
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
        color: var(--gray);
    }

    .table th {
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .table td {
        font-family: var(--font-body);
    }

        .table td .tag {
            font-size: 11px;
        }

    .table.table-hover tr:not(:first-child):hover {
        background-color: var(--light);
    }

    .table.table-stripes tr:nth-child(2n + 2) {
        background-color: var(--light-dim);
    }

    .table.table-grid th,
    .table.table-grid td {
        border: 1px solid var(--light);
    }

.table-data {
    border-collapse: collapse;
    width: 100%;
}

    .table-data img {
        height: 18px;
        width: 18px;
        vertical-align: middle;
    }

    .table-data i {
        display: inline-block;
        margin-left: 2px;
        margin-right: 2px;
    }

    .table-data th,
    .table-data td {
        font-family: var(--font-body);
        font-size: 12px;
        padding: 8px;
        border-bottom: 1px solid var(--light);
        vertical-align: middle;
        white-space: nowrap;
        color: var(--gray);
    }

    .table-data th {
        font-weight: 500;
        text-align: left;
    }

    .table-data td {
        font-weight: 400;
        text-align: right;
    }

        .table-data td .tag,
        .table-data th .tag {
            font-size: 11px;
        }

    .table-data input {
        font-family: var(--font-body);
        font-size: 12px;
        width: 70px;
        padding-left: 3px;
        padding-right: 3px;
        background-color: var(--light);
        border-bottom: 1px dashed var(--dark-dim);
        display: inline-block;
        margin-left: 3px;
        margin-right: 3px;
    }

.pagination {
    font-family: var(--font-body);
    text-align: center;
    margin-bottom: 15px;
}

    .pagination a {
        display: inline-block;
        min-width: 24px;
        font-size: 12px;
        padding: 6px;
        background-color: #fff;
        border: 1px solid var(--blue-dim);
        color: var(--blue);
        margin: 1px;
        margin-bottom: 5px;
        cursor: pointer;
        user-select: none;
        text-decoration: none;
        border-radius: 4px;
    }

        .pagination a:hover {
            border: 1px solid var(--blue);
            background-color: var(--blue-dim);
            color: var(--gray);
        }

        .pagination a.active,
        .pagination a:active {
            border: 1px solid var(--gray);
            background-color: var(--blue);
            color: #fff;
        }

        .pagination a.disabled {
            color: var(--text-light);
            border: 1px solid var(--dark-dim);
        }

            .pagination a.disabled:hover {
                border: 1px solid var(--dark-dim);
                background-color: #fff;
                color: var(--text-light);
                cursor: not-allowed;
            }

.alert {
    font-family: var(--font-body);
    width: 100%;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 5px;
    border-radius: 6px;
    background-color: var(--blue-dim);
    color: #004086;
    border: 1px solid var(--blue);
    display: flex;
    justify-content: space-between;
}

    .alert strong {
        font-weight: 500;
    }

    .alert i {
        margin-right: 5px;
    }

    .alert a {
        color: inherit;
        text-decoration: underline;
        cursor: pointer;
    }

        .alert a:hover {
            filter: brightness(50%);
        }

.alert-purple {
    background-color: var(--purple-dim);
    color: var(--purple);
    border: 1px solid var(--purple);
}

.alert-red {
    background-color: var(--red-dim);
    color: var(--red);
    border: 1px solid var(--red);
}

.alert-orange {
    background-color: var(--orange-dim);
    color: var(--orange);
    border: 1px solid var(--orange);
}

.alert-green {
    background-color: var(--green-dim);
    color: var(--green) !important;
    border: 1px solid var(--green);
}

.alert-yellow {
    background-color: var(--yellow-dim);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.alert-light {
    background-color: var(--light);
    color: var(--gray);
    border: 1px solid var(--dark-dim);
}

.link-bar {
    font-family: var(--font-body);
    display: block;
    text-decoration: none;
    user-select: none;
    padding: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--dark-dim);
    font-size: 13px;
    font-weight: 500;
    color: var(--link-color);
    cursor: pointer;
}

    .link-bar i {
        margin-right: 6px;
        margin-left: 6px;
        color: var(--text-light);
    }

    .link-bar:hover {
        color: var(--link-color-hover);
        background-color: var(--purple-dim);
    }

    .link-bar:active {
        background-color: var(--orange-dim);
    }

    .link-bar:last-child {
        border-bottom: none;
    }

input[type="file"] {
    width: 100%;
    overflow: hidden;
}

.input-label {
    font-family: var(--font-body);
    font-size: 11px !important;
    display: block;
    color: var(--gray);
    margin-bottom: 6px;
    user-select: none;
}

    .input-label i {
        margin-right: 2px;
        color: var(--text-light);
    }

input.input,
select.input {
    font-family: var(--font-body);
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    border: 1px solid var(--text-lighter);
    height: 32px;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 0;
}

select.input {
    cursor: pointer;
}

.input-bg {
    background-size: 16px 16px;
    background-position-y: center;
    background-position-x: 5px;
    padding-left: 28px !important;
    background-repeat: no-repeat;
}

input.input:disabled,
select.input:disabled {
    cursor: not-allowed;
    background-color: var(--light);
}

input.input:read-only {
    background-color: #fff;
    cursor: pointer;
}

input.input:focus,
select.input:focus,
textarea.input:focus,
textarea:focus,
.autoComplete_wrapper > input:focus {
    border: 1px solid var(--purple);
}

.input.input-error {
    border: 1px solid var(--red);
    background-color: var(--red-dim);
}

.input-error-text {
    font-family: var(--font-body);
    color: var(--red);
    font-size: 11px;
    display: block;
    margin-top: 4px;
    display: none;
}

.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button,
.table-data input::-webkit-outer-spin-button,
.table-data input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.flatpickr-calendar {
    font-family: var(--font-body);
}

textarea {
    font-family: var(--font-body);
    resize: none;
    width: 100%;
    font-size: 13px;
    color: var(--gray);
    border: 1px solid var(--text-lighter);
    padding: 10px;
    line-height: 18px;
    min-height: 100px;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #969696;
    height: 15px;
    width: 15px;
    margin-right: 2px;
    border-radius: 0;
    cursor: pointer;
    vertical-align: middle;
}

label {
    font-family: var(--font-body);
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    user-select: none;
    font-size: 13px;
    color: var(--gray);
}

    label:hover {
        color: var(--blue);
    }

    label:last-child {
        margin-right: 0;
    }

.full-width {
    width: 100%;
}

.dialog {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.dialog-box {
    display: block;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 0.1);
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    width: 500px;
}

    .dialog-box.tiny {
        width: 250px;
    }

    .dialog-box.small {
        width: 320px;
    }

    .dialog-box.big {
        width: 1000px;
    }

    .dialog-box .card-content {
        max-height: 70vh;
        overflow-y: auto;
    }

        .dialog-box.card-content::-webkit-scrollbar {
            width: 10px;
            height: 10px;
            background-color: #fff;
        }

        .dialog-box.card-content::-webkit-scrollbar-thumb {
            background-color: var(--light);
        }

.title-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 96px;
    height: auto;
}

    .title-icon.mini {
        width: 64px;
        height: auto;
    }

    .title-icon.micro {
        width: 48px;
        height: auto;
    }

.captcha {
    width: 100%;
    height: 64px;
    overflow: hidden;
    margin-top: 5px;
    border: 1px solid var(--text-lighter);
    background-color: #f9f9f9;
}

    .captcha div {
        width: 200px;
        overflow-x: hidden;
        position: relative;
        top: -1px;
        left: -1px;
    }

.uppercase {
    text-transform: uppercase !important;
}

.popup {
    font-family: var(--font-body);
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid var(--text-lighter);
    border-left: 6px solid var(--purple);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 12000;
    background-color: #fff;
    box-shadow: 0 0 8px 4px rgb(200 200 200 / 0.8);
    color: var(--gray);
    font-size: 14px;
    user-select: none;
    display: none;
    vertical-align: middle;
}

    .popup img {
        display: inline-block;
        margin-right: 6px;
        vertical-align: middle;
        height: 22px;
        width: auto;
    }

.tabs {
    width: 100%;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--dark-dim);
    overflow-x: auto;
}

.tab {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-light);
    background-color: unset;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    border-bottom: 3px solid #fff0;
    font-size: 14px;
    white-space: nowrap;
}

    .tab:hover {
        background-color: var(--light);
    }

    .tab.active {
        border-bottom-color: var(--link-color);
        color: var(--link-color);
    }

.tab-panel {
    display: none;
    padding: 14px;
}

    .tab-panel.active {
        display: block;
    }

.accordion {
    border: 1px solid var(--dark-dim);
    border-radius: 4px;
}

    .accordion summary {
        font-family: var(--font-heading);
        font-size: 14px;
        cursor: pointer;
        user-select: none;
        font-weight: 600;
        list-style: none;
        background-color: var(--light);
        border-bottom: 1px solid var(--dark-dim);
        padding: 10px;
    }

    .accordion details p {
        padding: 20px;
        font-size: 16px;
        line-height: 1.7;
    }

    .accordion summary::marker {
        display: none;
    }

    .accordion summary::after {
        content: "+";
        float: right;
        color: var(--blue);
    }

    .accordion details[open] summary::after {
        content: "x";
        color: var(--text-lighter);
    }

.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    z-index: 9500;
    background-color: #fff;
    border-left: 1px solid var(--dark-dim);
    display: none;
}

    .side-menu .card-content {
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

.progress-bar {
    display: block;
    height: 10px;
    border-radius: 2px;
    background-color: var(--light);
}

    .progress-bar div {
        width: 0;
        height: 10px;
        border-radius: 2px;
        background-color: var(--blue);
    }

canvas {
    display: block;
    width: 100%;
    height: auto;
}

hr {
    border-bottom: 1px solid var(--dark-dim);
    display: block;
}

.product {
    display: block;
    position: relative;
    user-select: none;
    background-color: #fff;
    height: 100%;
}

    .product:hover img {
        filter: brightness(1.15);
    }

    .product.product-box {
        border: 1px solid var(--gray-dim);
        border-radius: 8px;
    }

    .product.product-box-horizontal {
        border: 1px solid var(--gray-dim);
        border-radius: 8px;
    }

        .product.product-box-horizontal img {
            margin-bottom: 0;
        }

    .product a {
        color: unset;
        text-decoration: none;
        display: block;
    }

    .product img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
        object-fit: cover;
        margin-bottom: 8px;
        font-family: var(--font-body);
        font-size: 10px;
        color: var(--text-lighter);
        background-color: var(--light);
    }

    .product.product-box img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .product .product-tag,
    .product .product-title,
    .product .product-text,
    .product .product-price {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 8px;
    }

    .product .product-promo {
        position: absolute;
        top: 10px;
        left: 10px;
        display: inline-block;
        background-color: rgb(0 0 0 / 0.7);
        color: #fff;
        font-size: 12px;
        padding: 2px;
        padding-left: 4px;
        padding-right: 4px;
        border-radius: 4px;
    }

    .product .product-tag {
        font-size: 12px;
        color: var(--text-lighter);
    }

        .product .product-tag i {
            color: var(--orange);
        }

    .product .product-title {
        font-weight: 500;
        font-size: 16px;
        color: var(--gray);
    }

    .product .product-features {
        font-size: 11px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 4px;
    }

        .product .product-features span {
            color: var(--purple);
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 4px;
        }

            .product .product-features span i {
                color: var(--green);
                margin-right: 4px;
            }

    .product .product-text {
        font-size: 12px;
        color: var(--text-light);
    }

    .product .product-price {
        font-size: 11px;
        color: var(--dark);
    }

        .product .product-price span {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
        }

.overlay-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .overlay-box a {
        color: unset;
        text-decoration: none;
    }

    .overlay-box:hover div {
        background-color: rgb(0 0 0 / 0.2);
    }

    .overlay-box img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
        object-fit: cover;
    }

    .overlay-box div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        background-color: rgb(0 0 0 / 0.4);
    }

    .overlay-box p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        color: #fff;
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        font-family: var(--font-heading);
        text-align: center;
    }

.hero {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: cover;
    background-position-x: left;
    background-position-y: top;
}

    .hero.hero-border {
        border-bottom: 1px solid var(--gray-dim);
    }

    .hero p {
        line-height: 1.5;
    }

nav {
    font-family: var(--font-body);
    background-color: #fff;
    border-bottom: 1px solid var(--gray-dim);
    user-select: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 7777;
}

.menu {
    height: 60px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
}

    .menu a.logo {
        flex: 0 0 auto;
        text-decoration: none;
    }

        .menu a.logo img {
            height: 36px;
            width: auto;
            margin-right: 30px;
        }

    .menu .menu-nav {
        flex: 1;
        height: 36px;
    }

    .menu .menu-mobile {
        flex: 1;
        height: 36px;
        text-align: right;
        display: none;
    }

    .menu .menu-nav .menu-link .menu-close {
        display: none;
    }

    .menu .menu-link {
        float: left;
    }

    .menu .menu-right {
        float: right;
    }

    .menu .menu-nav .menu-link a {
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        line-height: 36px;
        text-decoration: none;
        color: var(--gray);
        user-select: none;
        transition: color linear 0.2s;
    }

    .menu .menu-link a:hover {
        color: var(--purple);
    }

    .menu .menu-nav .menu-link a:not(:last-child)::after {
        content: "|";
        color: var(--light);
        user-select: none;
        display: inline-block;
        margin-left: 8px;
        margin-right: 4px;
    }

    .menu .menu-icon {
        display: inline-block;
        line-height: 36px;
        font-size: 18px;
        font-weight: 500;
        vertical-align: middle;
        margin-left: 4px;
        text-align: center;
        padding: 0;
        padding-left: 8px;
        padding-right: 8px;
        color: var(--gray);
        cursor: pointer;
    }

        .menu .menu-icon:hover {
            background-color: var(--purple-dim);
        }

footer {
    border-top: 1px solid var(--gray-dim);
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

    footer .footer-links {
        display: block;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }

        footer .footer-links p {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--gray);
        }

        footer .footer-links a {
            font-family: var(--font-body);
            display: block;
            font-size: 13px;
            margin-bottom: 10px;
            color: var(--text-light);
            text-decoration: none;
            padding-bottom: 6px;
            border-bottom: 1px dashed var(--purple-dim);
        }

            footer .footer-links a:hover {
                color: var(--purple);
                border-bottom: 1px solid var(--purple-dim);
            }

    footer .footer-info {
        margin-top: 25px;
        border-top: 1px solid var(--gray-dim);
        border-bottom: 1px solid var(--gray-dim);
        padding-top: 2px;
        padding-bottom: 2px;
    }

        footer .footer-info img {
            display: inline-block;
            height: 28px;
            width: auto;
        }

        footer .footer-info a {
            line-height: 28px;
            font-size: 16px;
            display: inline-block;
            color: var(--gray);
            background-color: var(--dark-dim);
            min-width: 28px;
            text-align: center;
            vertical-align: middle;
            margin-left: 5px;
        }

            footer .footer-info a i {
                vertical-align: middle;
                display: inline-block;
            }

            footer .footer-info a:hover {
                color: var(--green);
                background-color: var(--green-dim);
            }

article {
    display: block;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 25px;
}

    article h1,
    article h2,
    article > img,
    article ol,
    article ul,
    article div.table-wrap,
    article .feature-strip,
    article div.alert,
    article section.accordion,
    article div.tabs,
    article > p {
        margin-bottom: 30px;
    }

    article h1 {
        color: var(--brand-color1);
    }

    article h2 {
        border-left: 4px solid var(--purple);
        padding-left: 10px;
    }

    article table.table td {
        font-size: 14px;
    }

    article table.table th {
        font-size: 14px;
        background-color: var(--light);
        color: var(--purple);
    }

    article > p {
        color: var(--gray);
        font-size: 16px;
        line-height: 1.7;
    }

        article > p.publish-date {
            font-size: 12px;
            margin-top: -20px;
            margin-bottom: 10px;
            color: var(--text-light);
        }

    article .alert {
        font-size: 15px;
        line-height: 1.7;
    }

    article img {
        width: 100%;
        display: block;
        border-radius: 15px;
    }

        article img.no-curve {
            border-radius: 0;
        }

    article ul,
    article ol {
        font-family: var(--font-body);
        padding-left: 26px;
        color: var(--text);
    }

        article ul li,
        article ol li {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.7;
            padding-left: 6px;
            margin-bottom: 8px;
        }

            article ul li::marker,
            article ol li::marker {
                color: var(--purple);
                display: inline-block;
            }

    article .alert {
        margin-bottom: 20px;
    }

    article a {
        color: #2563eb;
    }

        article a:hover {
            color: var(--green);
        }

    article .feature-strip {
        font-size: 13px;
    }

        article .feature-strip span {
            display: inline-block;
            color: var(--purple);
            margin-right: 4px;
            margin-bottom: 6px;
            border: 1px solid var(--dark-dim);
            border-radius: 4px;
            padding: 4px;
            user-select: none;
        }

            article .feature-strip span i {
                margin-right: 2px;
                color: var(--green);
            }

            article mark,
            article em{
                color: var(--purple);
                background-color: var(--yellow-dim);
                padding-left: 4px;
                padding-right: 4px;
                font-style: normal;
            }

.page-text {
    padding-top: 25px;
    margin-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
    border-top: 1px dashed var(--gray-dim);
}

    .page-text h3 {
        font-size: 15px;
        margin-bottom: 15px;
        color: var(--gray);
    }

    .page-text p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 15px;
        color: var(--text-light);
    }

.breadcrumb {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 22px;
}

    .breadcrumb a {
        text-decoration: none;
        color: var(--gray);
    }

    .breadcrumb li::after {
        content: "\203A";
        margin-left: 5px;
        margin-right: 5px;
        color: var(--text-lighter);
    }

    .breadcrumb li:last-child::after {
        content: "";
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    .breadcrumb li {
        display: inline-block;
    }

.slide {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

    .slide img {
        width: 100%;
        display: block;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        font-family: var(--font-body);
    }

    .slide p {
        user-select: none;
        font-family: var(--font-heading);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 20px;
        max-height: 100%;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    }
