@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&display=swap');
body, html {
    margin: 0;
    padding: 0;
    font-size: 13px;
    word-break: break-word;
}

* {
    font-family: 'Inter', sans-serif;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.07);
}

*::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

h1 {
    margin-top: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

a {
    font-weight: 500;
    color: #309036;
    text-decoration: none;
    cursor: pointer;
}

a[href]:hover {
    text-decoration: underline;
}

b, strong {
    font-weight: 600;
}

p {
    margin-top: 0;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.cdk-overlay-pane.toast-top-animation {
    transition: margin-top 0.2s ease-in-out;
}

/* Remove number input arrows Chrome, Safari, Edge, Opera */

/* Remove number input arrows Firefox */

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input, input::placeholder {
    font-size: 13px;
}

.vngcls-input {
    display: block;
    width: 100%;
    height: 32px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    padding: 0 15px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    outline: 0;
    transition: all 0.2s ease-in-out;
}

.vngcls-input::placeholder {
    color: #a7a7a7;
}

.vngcls-input:not(:disabled):not(:focus):not(.invalid):not(.valid-allowed):hover, .vngcls-input.invalid.pristine:hover {
    border-color: #aaa;
}

.vngcls-input:disabled {
    background: #fafafa;
    color: #666;
}

.vngcls-input.plain-input {
    height: auto;
    padding: 0;
    border: none;
}

.vngcls-input:focus {
    border-color: #309036;
}

.vngcls-input.valid-allowed.valid {
    border-color: #40c646;
}

.vngcls-input:not(.valid-allowed).valid {
    border-color: #309036;
}

.vngcls-input:not(.valid-allowed):not(:focus).valid {
    border-color: #d3d3d3;
}

.vngcls-input.invalid {
    border-color: #ff2633;
}

.vngcls-input.pristine {
    border-color: #d3d3d3;
}

.vngcls-input.pristine:focus {
    border-color: #309036;
}

textarea.vngcls-input {
    padding-top: 8px;
}

.vngcls-btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    border: 0;
    outline: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.vngcls-btn>span {
    vertical-align: middle;
}

.vngcls-btn.bg-large, .vngcls-btn.bg-default {
    box-shadow: rgba(0, 0, 0, 0.12) 0 2px 6px, rgba(0, 0, 0, 0.08) 0 1px 3px;
}

.vngcls-btn.bg-large:hover, .vngcls-btn.bg-default:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 6px 12px, rgba(0, 0, 0, 0.08) 0 2px 6px;
}

.vngcls-btn.bg-large:active, .vngcls-btn.bg-default:active {
    box-shadow: rgba(0, 0, 0, 0.14) 0 0 2px, rgba(0, 0, 0, 0.08) 0 1px 2px;
    transition: all 0.1s ease-in-out;
}

.vngcls-btn .vngcls-icon {
    vertical-align: middle;
}

.vngcls-btn.bg-default {
    height: 32px;
    color: #fff;
    font-weight: 500;
    fill: #fff;
    padding: 0 12px;
    border: 1px solid;
}

.vngcls-btn.bg-default .vngcls-icon {
    margin-right: 12px;
}

.vngcls-btn.bg-default.color-create {
    background: #ff8a00;
    border-color: #ff8a00;
}

.vngcls-btn.bg-default.color-edit {
    background: #5300da;
    border-color: #5300da;
}

.vngcls-btn.bg-default.color-delete {
    background: #ff4138;
    border-color: #ff4138;
}

.vngcls-btn.bg-default.color-close {
    background: #aaa;
    border-color: #aaa;
}

.vngcls-btn.bg-default.color-other {
    background: #309036;
    border-color: #309036;
}

.vngcls-btn.icon-btn {
    height: 32px;
    width: 32px;
    background: transparent;
    border-radius: 100%;
}

.vngcls-btn.icon-btn .vngcls-icon {
    margin: auto;
}

.vngcls-btn.icon-btn.color-default {
    fill: #666;
}

.vngcls-btn.icon-btn.color-default:hover {
    background: rgba(102, 102, 102, 0.1);
}

.vngcls-btn.icon-btn.color-default:active {
    background: rgba(102, 102, 102, 0.2);
}

.vngcls-btn.icon-btn.color-create {
    fill: #ff8a00;
}

.vngcls-btn.icon-btn.color-create:hover {
    background: rgba(255, 138, 0, 0.1);
}

.vngcls-btn.icon-btn.color-create:active {
    background: rgba(255, 138, 0, 0.2);
}

.vngcls-btn.icon-btn.color-edit {
    fill: #5300da;
}

.vngcls-btn.icon-btn.color-edit:hover {
    background: rgba(83, 0, 218, 0.1);
}

.vngcls-btn.icon-btn.color-edit:active {
    background: rgba(83, 0, 218, 0.2);
}

.vngcls-btn.icon-btn.color-delete {
    fill: #ff4138;
}

.vngcls-btn.icon-btn.color-delete:hover {
    background: rgba(255, 65, 56, 0.1);
}

.vngcls-btn.icon-btn.color-delete:active {
    background: rgba(255, 65, 56, 0.2);
}

.vngcls-btn.icon-btn.color-close {
    fill: #888;
}

.vngcls-btn.icon-btn.color-close:hover {
    background: rgba(136, 136, 136, 0.1);
}

.vngcls-btn.icon-btn.color-close:active {
    background: rgba(136, 136, 136, 0.2);
}

.vngcls-btn.icon-btn.color-other {
    fill: #309036;
}

.vngcls-btn.icon-btn.color-other:hover {
    background: rgba(53, 126, 222, 0.1);
}

.vngcls-btn.icon-btn.color-other:active {
    background: rgba(53, 126, 222, 0.2);
}

.vngcls-btn.icon-btn.color-active {
    fill: #309036;
    background: rgba(53, 126, 222, 0.1);
}

.vngcls-btn.icon-btn.color-active:hover {
    background: rgba(53, 126, 222, 0.15);
}

.vngcls-btn.icon-btn.color-active:active {
    background: rgba(53, 126, 222, 0.2);
}

.vngcls-btn.bg-translucent {
    height: 32px;
    padding: 0 12px;
}

.vngcls-btn.bg-translucent .vngcls-icon {
    margin-right: 12px;
}

.vngcls-btn.bg-translucent.color-create {
    background: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
    fill: #ff8a00;
}

.vngcls-btn.bg-translucent.color-create:hover {
    background: rgba(255, 138, 0, 0.15);
}

.vngcls-btn.bg-translucent.color-create:active {
    background: rgba(255, 138, 0, 0.2);
}

.vngcls-btn.bg-translucent.color-edit {
    background: rgba(83, 0, 218, 0.1);
    color: #5300da;
    fill: #5300da;
}

.vngcls-btn.bg-translucent.color-edit:hover {
    background: rgba(83, 0, 218, 0.15);
}

.vngcls-btn.bg-translucent.color-edit:active {
    background: rgba(83, 0, 218, 0.2);
}

.vngcls-btn.bg-translucent.color-delete {
    background: rgba(255, 65, 56, 0.1);
    color: #ff4138;
    fill: #ff4138;
}

.vngcls-btn.bg-translucent.color-delete:hover {
    background: rgba(255, 65, 56, 0.15);
}

.vngcls-btn.bg-translucent.color-delete:active {
    background: rgba(255, 65, 56, 0.2);
}

.vngcls-btn.bg-translucent.color-close {
    background: rgba(136, 136, 136, 0.1);
    color: #888;
    fill: #888;
}

.vngcls-btn.bg-translucent.color-close:hover {
    background: rgba(136, 136, 136, 0.15);
}

.vngcls-btn.bg-translucent.color-close:active {
    background: rgba(136, 136, 136, 0.2);
}

.vngcls-btn.bg-translucent.color-other {
    background: rgba(53, 126, 222, 0.1);
    color: #309036;
    fill: #309036;
}

.vngcls-btn.bg-translucent.color-other:hover {
    background: rgba(53, 126, 222, 0.15);
}

.vngcls-btn.bg-translucent.color-other:active {
    background: rgba(53, 126, 222, 0.2);
}

.vngcls-btn.bg-large {
    height: 38px;
    background: #309036;
    color: #fff;
    text-transform: uppercase;
}

.vngcls-btn.bg-large.color-create {
    background: #ff8a00;
    border-color: #ff8a00;
}

.vngcls-btn.bg-large.color-other {
    background: #309036;
    border-color: #309036;
}

.vngcls-btn.inline-btn {
    height: 23px;
    font-weight: 500;
    font-size: 12px;
    padding: 0 6px;
}

.vngcls-btn.inline-btn .vngcls-icon {
    margin-right: 5px;
}

.vngcls-btn.inline-btn.color-create {
    background: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
    fill: #ff8a00;
}

.vngcls-btn.inline-btn.color-create:hover {
    background: rgba(255, 138, 0, 0.15);
}

.vngcls-btn.inline-btn.color-create:active {
    background: rgba(255, 138, 0, 0.2);
}

.vngcls-btn.inline-btn.color-edit {
    background: rgba(83, 0, 218, 0.1);
    color: #5300da;
    fill: #5300da;
}

.vngcls-btn.inline-btn.color-edit:hover {
    background: rgba(83, 0, 218, 0.15);
}

.vngcls-btn.inline-btn.color-edit:active {
    background: rgba(83, 0, 218, 0.2);
}

.vngcls-btn.inline-btn.color-delete {
    background: rgba(255, 65, 56, 0.1);
    color: #ff4138;
    fill: #ff4138;
}

.vngcls-btn.inline-btn.color-delete:hover {
    background: rgba(255, 65, 56, 0.15);
}

.vngcls-btn.inline-btn.color-delete:active {
    background: rgba(255, 65, 56, 0.2);
}

.vngcls-btn.inline-btn.color-close {
    background: rgba(136, 136, 136, 0.1);
    color: #888;
    fill: #888;
}

.vngcls-btn.inline-btn.color-close:hover {
    background: rgba(136, 136, 136, 0.15);
}

.vngcls-btn.inline-btn.color-close:active {
    background: rgba(136, 136, 136, 0.2);
}

.vngcls-btn.inline-btn.color-other {
    background: rgba(53, 126, 222, 0.1);
    color: #309036;
    fill: #309036;
}

.vngcls-btn.inline-btn.color-other:hover {
    background: rgba(53, 126, 222, 0.15);
}

.vngcls-btn.inline-btn.color-other:active {
    background: rgba(53, 126, 222, 0.2);
}

.vngcls-btn.small-btn {
    height: 17px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
}

.vngcls-btn.small-btn.color-create {
    background: rgba(255, 138, 0, 0.2);
    color: #ff8a00;
}

.vngcls-btn.small-btn.color-create:hover {
    background: rgba(255, 138, 0, 0.15);
}

.vngcls-btn.small-btn.color-create:active {
    background: rgba(255, 138, 0, 0.2);
}

.vngcls-btn.small-btn.color-edit {
    background: rgba(83, 0, 218, 0.1);
    color: #5300da;
}

.vngcls-btn.small-btn.color-edit:hover {
    background: rgba(83, 0, 218, 0.15);
}

.vngcls-btn.small-btn.color-edit:active {
    background: rgba(83, 0, 218, 0.2);
}

.vngcls-btn.small-btn.color-delete {
    background: rgba(255, 65, 56, 0.1);
    color: #ff4138;
}

.vngcls-btn.small-btn.color-delete:hover {
    background: rgba(255, 65, 56, 0.15);
}

.vngcls-btn.small-btn.color-delete:active {
    background: rgba(255, 65, 56, 0.2);
}

.vngcls-btn.small-btn.color-close {
    background: rgba(136, 136, 136, 0.1);
    color: #888;
}

.vngcls-btn.small-btn.color-close:hover {
    background: rgba(136, 136, 136, 0.15);
}

.vngcls-btn.small-btn.color-close:active {
    background: rgba(136, 136, 136, 0.2);
}

.vngcls-btn.small-btn.color-default {
    background: rgba(53, 126, 222, 0.1);
    color: #309036;
}

.vngcls-btn.small-btn.color-default:hover {
    background: rgba(53, 126, 222, 0.15);
}

.vngcls-btn.small-btn.color-default:active {
    background: rgba(53, 126, 222, 0.2);
}

.vngcls-btn:disabled, .vngcls-btn:disabled:hover {
    box-shadow: none;
    cursor: not-allowed;
}

.vngcls-btn.bg-default:disabled, .vngcls-btn.bg-translucent:disabled, .vngcls-btn.inline-btn:disabled, .vngcls-btn.bg-default:disabled:hover, .vngcls-btn.bg-translucent:disabled:hover, .vngcls-btn.inline-btn:disabled:hover {
    background: transparent;
    color: #ccc;
    fill: #ccc;
    border: 1px solid #ccc;
}

.vngcls-btn.bg-large:disabled, .vngcls-btn.bg-large:disabled:hover {
    background: rgba(170, 170, 170, 0.1);
    color: #aaa;
}

.vngcls-btn.icon-btn:disabled, .vngcls-btn.inline-btn:disabled, .vngcls-btn.small-btn:disabled {
    background: transparent;
    color: #ccc;
    fill: #ccc;
}

.vngcls-btn.icon-btn:disabled:hover, .vngcls-btn.inline-btn:disabled:hover, .vngcls-btn.small-btn:disabled:hover, .vngcls-btn.icon-btn:disabled:active, .vngcls-btn.inline-btn:disabled:active, .vngcls-btn.small-btn:disabled:active {
    background: none;
}

.vngcls-btn.smoothing {
    transition: all 0.3s ease-in-out;
}

.vngcls-dropdown-btn {
    height: 32px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    background: #fff;
    color: #309036;
    font-weight: 500;
    fill: #309036;
    white-space: nowrap;
    outline: 0;
    border-radius: 5px;
    padding: 0 12px;
    border: 1px solid #fff;
    cursor: pointer;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.06), 0px 2px 5px rgba(0, 0, 0, 0.06), 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.vngcls-dropdown-btn>span {
    vertical-align: middle;
}

.vngcls-dropdown-btn .vngcls-icon {
    margin-right: 12px;
}

.vngcls-dropdown-btn .vngcls-icon[name="gr-expand"] {
    margin-left: 12px;
    margin-right: 0;
}

.vngcls-dropdown-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 6px 12px, rgba(0, 0, 0, 0.08) 0 2px 6px;
}

.vngcls-dropdown-btn:active {
    box-shadow: rgba(0, 0, 0, 0.14) 0 0 2px, rgba(0, 0, 0, 0.08) 0 1px 2px;
    transition: all 0.1s ease-in-out;
}

.vngcls-dropdown-btn:disabled, .vngcls-dropdown-btn:disabled:hover {
    background: transparent;
    color: #ccc;
    fill: #ccc;
    border: 1px solid #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

.vngcls-dropdown-btn.smoothing {
    transition: all 0.3s ease-in-out;
}

.table-reduced-padding {
    margin-top: -6px;
    margin-bottom: -6px;
}

.btn-group>.icon-btn {
    display: inline-flex;
    margin-right: 2px;
}

.btn-group> :not(.icon-btn) {
    margin-right: 10px;
}

.btn-group> :last-child {
    margin-right: 0;
}

[data-title] {
    position: relative;
}

[data-title]:after {
    content: attr(data-title);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: 5px;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}

[data-title]:hover:after {
    opacity: 1;
    visibility: visible;
}

[data-title].title-top:after {
    left: 50%;
    top: -5px;
    transform: translateY(calc(-100% - 5px)) translateX(-50%);
}

[data-title].title-bottom:after {
    left: 50%;
    bottom: -5px;
    transform: translateY(calc(100% + 5px)) translateX(-50%);
}

[data-title].title-left:after {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(calc(-100% - 5px));
}

[data-title].title-right:after {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(calc(100% + 5px));
}

.vngcls-tooltip {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    white-space: nowrap;
    padding: 5px 9px;
    margin: 5px;
    border-radius: 5px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.vngcls-tooltip.fade {
    visibility: visible;
    opacity: 1;
}

.vngcls-tooltip.no-margined {
    margin: 0;
}

.standard-content {
    padding: 30px;
}

.standard-content.small-padding-top {
    padding-top: 20px;
}

.standard-content.small-padding-bottom {
    padding-bottom: 20px;
}

.standard-content.big-padding {
    padding: 30px 40px;
}

.standard-content.no-padding-h {
    padding-left: 0;
    padding-right: 0;
}

.vngcls-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
    border-spacing: 0;
    box-shadow: 0 0 0 1.5px #eaeaea;
}

.vngcls-table *:not(button) {
    text-align: left;
}

.vngcls-table.choosable tbody tr {
    cursor: pointer;
}

.vngcls-table thead th {
    display: table-cell;
    position: relative;
    background: #f8f8f8;
    font-weight: 600;
    color: #454545;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 12px;
    vertical-align: middle;
}

.vngcls-table thead th:not(.no-separate):not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: #d3d3d3;
    top: calc(50% - 10px);
    right: 0;
    z-index: 1;
}

.vngcls-table thead th:first-child {
    border-radius: 5px 0 0 0;
}

.vngcls-table thead th:last-child {
    border-radius: 0 5px 0 0;
}

.vngcls-table thead th.no-content {
    width: 1px;
    padding-left: 0;
}

.vngcls-table thead th.select-col {
    width: 40px;
}

.vngcls-table thead th.select-col.no-separate {
    width: 30px;
}

.vngcls-table thead th.single-icon-action-col {
    width: 56px;
}

.vngcls-table thead th.single-icon-action-col.icon-btn {
    padding: 0 4px;
}

.vngcls-table thead th.action-th-col {
    width: 40px;
}

.vngcls-table thead th.action-th-col .vngcls-icon {
    margin-left: 0;
    fill: #666;
}

.vngcls-table thead th.action-th-col .vngcls-icon:hover {
    fill: #454545;
}

.vngcls-table thead th.action-th-col.icon-btn {
    padding: 0 4px;
}

.vngcls-table thead th.aligned-right {
    text-align: right;
}

.vngcls-table thead th.aligned-right>* {
    float: right;
}

.vngcls-table thead th:not(.action-th-col):not(.single-icon-action-col) .vngcls-icon {
    fill: #454545;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: top;
}

.vngcls-table thead th .table-th-menu {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.vngcls-table thead th:hover .table-th-menu {
    opacity: 1;
}

.vngcls-table thead th.icon-btn-col {
    padding: 0 4px;
}

.vngcls-table thead.sticky th {
    position: sticky;
    top: 0;
}

.vngcls-table tbody tr {
    transition: box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.vngcls-table tbody tr:not(.disabled):hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.vngcls-table tbody tr:last-child td {
    border-bottom: 0;
}

.vngcls-table tbody tr.chosen {
    background: rgba(53, 126, 222, 0.05);
}

.vngcls-table tbody tr.chosen:first-child:not(.small-padding) td {
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    border-top: 1px solid rgba(53, 126, 222, 0.2);
}

.vngcls-table tbody tr.chosen:first-child.small-padding td {
    padding-top: 5.5px;
    padding-bottom: 5.5px;
    border-top: 1px solid rgba(53, 126, 222, 0.2);
}

.vngcls-table tbody tr.chosen:first-child.medium-padding td {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    border-top: 1px solid rgba(53, 126, 222, 0.2);
}

.vngcls-table tbody tr.chosen td {
    border-color: rgba(53, 126, 222, 0.2);
}

.vngcls-table tbody tr td {
    display: table-cell;
    word-wrap: break-word;
    white-space: normal;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #e3e3e3;
}

.vngcls-table tbody tr td .primary {
    font-weight: 600;
    color: #309036;
}

.vngcls-table tbody tr td a.primary {
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(53, 126, 222, 0.2);
    text-decoration-color: rgba(53, 126, 222, 0.2);
    text-decoration-thickness: 2px;
}

.vngcls-table tbody tr td a.primary:hover {
    -webkit-text-decoration-color: #309036;
    text-decoration-color: #309036;
    text-decoration-thickness: 1px;
}

.vngcls-table tbody tr td .secondary {
    font-size: 12px;
    color: #888;
}

.vngcls-table tbody tr td .tertiary {
    font-weight: 600;
    color: #888;
}

.vngcls-table tbody tr td.primary {
    font-weight: 600;
    color: #309036;
}

.vngcls-table tbody tr td.aligned-right {
    text-align: right;
}

.vngcls-table tbody tr td.aligned-right>* {
    float: right;
}

.vngcls-table tbody tr td.table-notice {
    text-align: center;
    color: #777;
    fill: #777;
}

.vngcls-table tbody tr td.table-notice .vngcls-icon[name="loading"] {
    margin-right: 10px;
}

.vngcls-table tbody tr td.table-notice.aligned-left {
    text-align: left;
}

.vngcls-table tbody tr td.table-big-notice {
    text-align: center;
}

.vngcls-table tbody tr td.table-big-notice .notice-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vngcls-table tbody tr td.table-big-notice .notice-content>* {
    margin-left: auto;
    margin-right: auto;
}

.vngcls-table tbody tr td.table-big-notice .notice-content .logo {
    display: flex;
    height: 36px;
    width: 36px;
    background: rgba(136, 136, 136, 0.1);
    margin-bottom: 5px;
    border-radius: 6px;
}

.vngcls-table tbody tr td.table-big-notice .notice-content .logo .vngcls-icon {
    margin: auto;
    fill: #888;
}

.vngcls-table tbody tr td.table-big-notice .notice-content .notice-title {
    font-weight: 600;
    font-size: 15px;
    color: #666;
}

.vngcls-table tbody tr td.table-big-notice .notice-content .notice-description {
    color: #666;
}

.vngcls-table tbody tr td.status-tr-indicator {
    position: relative;
}

.vngcls-table tbody tr td.status-tr-indicator:after {
    content: " ";
    position: absolute;
    width: 5px;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    border-radius: 0 4px 4px 0;
}

.vngcls-table tbody tr td.status-tr-indicator.danger:after {
    background: #ff2633;
}

.vngcls-table tbody tr td.status-tr-indicator.success:after {
    background: #40c646;
}

.vngcls-table tbody tr td.status-tr-indicator.warning:after {
    background: #ffa800;
}

.vngcls-table tbody tr td.status-tr-indicator.undetermined:after {
    background: #888;
}

.vngcls-table tbody tr .icon-btn.title-top:after {
    transform: translateY(-100%) translateX(-50%);
}

.vngcls-table tbody tr .icon-btn.title-bottom:after {
    transform: translateY(100%) translateX(-50%);
}

.vngcls-table tbody tr.unchoosable {
    cursor: default;
}

.vngcls-table tbody tr.disabled {
    background-color: #fafafa;
    opacity: 0.65;
    cursor: not-allowed;
}

.vngcls-table tbody tr.small-padding td {
    padding: 6px 12px;
}

.vngcls-table tbody tr.medium-padding td {
    padding: 8px 12px;
}

.vngcls-table.no-wrap-th thead th {
    overflow: visible;
    white-space: normal;
}

.vngcls-table-container {
    border-radius: 5px;
    box-shadow: 0 0 0 1.5px #eaeaea;
}

.vngcls-table-container .vngcls-table {
    box-shadow: none;
}

.vngcls-table-container .vngcls-table thead th {
    border-radius: 0;
}

.vngcls-table-container .filter-bar {
    display: flex;
    width: 100%;
    padding: 5px 11px;
    border-bottom: 1px solid #f0f0f0;
}

.vngcls-table-container .filter-bar.no-v-padding {
    padding: 0 11px;
}

.vngcls-table-container .filter-bar .filter-title {
    display: inline-block;
    margin-right: 10px;
}

.vngcls-table-container .filter-bar .filter-title label {
    font-weight: 600;
}

.vngcls-table-container .filter-bar .filter-list {
    display: inline-block;
}

.vngcls-table-container .filter-bar .filter-group {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.vngcls-table-container .filter-bar .filter-group:first-child {
    padding-left: 0;
}

.vngcls-table-container .filter-bar .filter-group:last-child {
    border-right: 0;
}

.vngcls-table-container .filter-bar .filter-group:not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 12px);
    right: 0;
    top: 5px;
    background: #e3e3e3;
}

.vngcls-table-container.vertical-scroll {
    overflow-y: auto;
}

.vngcls-table-container.horizontal-scroll {
    overflow-x: auto;
}

.vngcls-table-container.no-border {
    border-radius: 0;
    box-shadow: none;
}

.filter-chip-group vngcls-filter-chip {
    margin-right: 5px;
}

.filter-chip-group vngcls-filter-chip:last-child {
    margin-right: 0;
}

.filter-box-group vngcls-filter-box {
    margin-right: 10px;
}

.filter-box-group vngcls-filter-box:last-child {
    margin-right: 0;
}

body.vngcls-modal-show {
    overflow: hidden;
}

.vngcls-modal-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 100;
    overflow: hidden;
    transition: opacity 0.2s ease-in-out;
}

.vngcls-modal-backdrop.fade {
    opacity: 1;
}

.vngcls-tab-bar {
    position: relative;
}

.vngcls-tab-bar.normal-separator {
    border-bottom: 1px solid #e3e3e3;
}

.vngcls-tab-bar.bold-separator {
    border-bottom: 2px solid #e3e3e3;
}

.vngcls-tab-bar.low-density .vngcls-tab-item {
    margin-right: 15px;
}

.vngcls-tab-bar .vngcls-tab-item {
    display: inline-flex;
    height: 38px;
    align-items: center;
    font-weight: 500;
    color: #888;
    fill: #888;
    text-decoration: none !important;
    padding: 10px 0;
    margin-right: 25px;
    border-color: rgba(255, 255, 255, 0);
    transition: border-color 0.3s ease-in-out;
}

.vngcls-tab-bar .vngcls-tab-item .vngcls-icon {
    margin-right: 8px;
}

.vngcls-tab-bar .vngcls-tab-item .step {
    display: flex;
    width: 20px;
    height: 20px;
    background: #888;
    margin-right: 8px;
    border-radius: 10px;
}

.vngcls-tab-bar .vngcls-tab-item .step span {
    color: #fff;
    margin: auto;
}

.vngcls-tab-bar .vngcls-tab-item.active {
    font-weight: 600;
    color: #309036;
    fill: #309036;
    transition: none;
}

.vngcls-tab-bar .vngcls-tab-item.active .step {
    background: #309036;
}

.vngcls-tab-bar .vngcls-tab-item.disabled {
    fill: #a7a7a7;
    color: #a7a7a7;
    cursor: default;
}

.vngcls-tab-bar .vngcls-tab-item.disabled .vngcls-icon {
    fill: #a7a7a7;
}

.vngcls-tab-bar .vngcls-tab-item.disabled .step {
    background: #a7a7a7;
}

.vngcls-tab-bar .vngcls-tab-item:last-child {
    margin-right: 0;
}

.vngcls-tab-bar .vngcls-tab-item:not(.active):not(.disabled):hover {
    padding-bottom: 8px;
    border-bottom: 2px solid #e3e3e3;
}

.vngcls-tab-bar .vngcls-tab-item.title-top:after {
    top: 7px;
}

.vngcls-tab-bar .indicator {
    position: absolute;
    height: 2px;
    background: #309036;
    bottom: 0;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.vngcls-hidden-container.initing {
    position: fixed;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    overflow: hidden;
}

.action-bar {
    display: flex;
    width: 100%;
}

.action-bar .left-section {
    display: flex;
    height: 36px;
    align-items: center;
}

.action-bar .left-section .action-group {
    display: inline-flex;
    align-items: center;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #e3e3e3;
}

.action-bar .left-section .action-group:last-child {
    border: 0;
}

.action-bar .right-section {
    display: flex;
    height: 36px;
    align-items: center;
    margin-left: auto;
}

.action-bar .right-section .action-group {
    display: inline-flex;
    align-items: center;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #e3e3e3;
}

.action-bar .right-section .action-group:first-child:not(.icon-btn-rightmost) {
    border: 0;
}

.action-bar .right-section.icon-btn-rightmost {
    margin-right: -8px;
}

.action-bar .re-margin {
    margin-top: -2px;
    margin-bottom: -2px;
}

.badge {
    vertical-align: middle;
    border-radius: 12px;
}

.badge.upper-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 6px;
}

.badge.lower-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 3px 6px;
}

.badge.lower-badge .content {
    display: flex;
    align-items: center;
}

.badge.lower-badge .content .status {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-right: 5px;
}

.badge.lower-badge .content .status.success {
    background: #40c646;
}

.badge.lower-badge .content .status.danger {
    background: #ff2633;
}

.badge.lower-badge .content .status.process {
    background: #0095da;
}

.badge.lower-badge .content .status.warning {
    background: #ffa800;
}

.badge.lower-badge .content .status.undetermined {
    background: #888;
}

.badge.icon-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
}

.badge.icon-badge .vngcls-icon {
    margin-right: 5px;
}

.badge.success {
    color: #40c646;
    fill: #40c646;
    background: rgba(64, 198, 70, 0.15);
}

.badge.danger {
    color: #ff2633;
    fill: #ff2633;
    background: rgba(255, 38, 51, 0.15);
}

.badge.process {
    color: #0095da;
    fill: #0095da;
    background: rgba(0, 149, 218, 0.15);
}

.badge.warning {
    color: #ffa800;
    fill: #ffa800;
    background: rgba(255, 168, 0, 0.15);
}

.badge.undetermined {
    color: #888;
    fill: #888;
    background: rgba(136, 136, 136, 0.15);
}

.pair-item {
    display: flex;
    margin-bottom: 10px;
}

.pair-item .title {
    font-weight: 600;
    color: #333;
}

.pair-item:last-child {
    margin-bottom: 0;
}

.pair-item.form-group>.title {
    margin-top: 8px;
}

.vc-row {
    display: flex;
}

.vc-row .vc-col-1 {
    width: calc(100% / 12);
}

.vc-row .vc-col-2 {
    width: calc(100% / 6);
}

.vc-row .vc-col-3 {
    width: calc(100% / 4);
}

.vc-row .vc-col-4 {
    width: calc(100% / 3);
}

.vc-row .vc-col-5 {
    width: calc(5 * 100% / 12);
}

.vc-row .vc-col-6 {
    width: calc(100% / 2);
}

.vc-row .vc-col-7 {
    width: calc(7 * 100% / 12);
}

.vc-row .vc-col-8 {
    width: calc(2 * 100% / 3);
}

.vc-row .vc-col-9 {
    width: calc(3 * 100% / 4);
}

.vc-row .vc-col-10 {
    width: calc(5 * 100% / 6);
}

.vc-row .vc-col-11 {
    width: calc(11 * 100% / 12);
}

.vc-row .vc-col-12 {
    width: 100%;
}

.vc-row-10 {
    display: flex;
}

.vc-row-10 .vc-col-1 {
    width: 10%;
}

.vc-row-10 .vc-col-2 {
    width: 20%;
}

.vc-row-10 .vc-col-3 {
    width: 30%;
}

.vc-row-10 .vc-col-4 {
    width: 40%;
}

.vc-row-10 .vc-col-5 {
    width: 50%;
}

.vc-row-10 .vc-col-6 {
    width: 60%;
}

.vc-row-10 .vc-col-7 {
    width: 70%;
}

.vc-row-10 .vc-col-8 {
    width: 80%;
}

.vc-row-10 .vc-col-9 {
    width: 90%;
}

.vc-row-10 .vc-col-10 {
    width: 100%;
}

.vngcls-grid {
    display: flex;
}

.required-control:after {
    margin-left: 5px;
    content: "*";
    color: #ff2633;
}

.fee-complex {
    align-items: center;
}

.fee-complex .complex-text {
    font-size: 15px;
}

.fee-complex .complex-text .title {
    font-weight: 700;
    color: #000;
}

.fee-complex .complex-pricing {
    text-align: right;
}

.fee-complex .complex-pricing .complex-fee {
    font-weight: 700;
    font-size: 24px;
    color: #00b907;
}

.fee-complex .description {
    font-style: italic;
    color: #888;
}

.vngcls-l-section {
    display: flex;
    width: 100%;
}

.vngcls-l-section>.indicator {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.vngcls-l-section>.indicator .indicating-item {
    display: flex;
    width: 26px;
    height: 26px;
    background: #309036;
    color: #fff;
    fill: #fff;
    margin-bottom: 10px;
}

.vngcls-l-section>.indicator .indicating-item>* {
    margin: auto;
}

.vngcls-l-section>.indicator .indicating-item.step {
    border-radius: 100%;
}

.vngcls-l-section>.indicator .indicating-item.step span {
    font-weight: 600;
}

.vngcls-l-section>.indicator .indicating-item.icon {
    border-radius: 5px;
}

.vngcls-l-section>.indicator .marker {
    flex: 1;
    width: 3px;
    background: rgba(0, 0, 0, 0.05);
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.vngcls-l-section .main-content {
    flex: 1;
}

.vngcls-l-section .main-content>.section-title {
    margin-bottom: 20px;
}

.vngcls-l-section .main-content>.section-title .title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.vngcls-l-section .main-content>.section-title .title>* {
    vertical-align: middle;
}

.vngcls-l-section .main-content>.section-title .description {
    color: #666;
}

.vngcls-l-section .main-content>.section-title .description>p {
    margin-top: 0;
    margin-bottom: 5px;
}

.vngcls-l-section.indicated .main-content {
    max-width: calc(100% - 46px);
}

.vngcls-m-section .section-title {
    margin-bottom: 20px;
}

.vngcls-m-section .section-title .title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.vngcls-m-section .section-title .description {
    color: #666;
}

.vngcls-s-section .section-title {
    margin-bottom: 20px;
}

.vngcls-s-section .section-title .title {
    font-size: 12px;
    font-weight: 700;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.vngcls-s-section .section-title .description {
    color: #777;
}

.popover-title {
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.popover-text p {
    margin-top: 0;
}

.popover-text p:last-child {
    margin-bottom: 0;
}

.campaign-section {
    padding: 20px 0 15px 0;
    border-bottom: 1px solid #e3e3e3;
}

.campaign-section .pair-item {
    margin-bottom: 8px;
}

.campaign-section .pair-item .title {
    font-weight: 600;
}

.campaign-section .pair-item .pricing {
    font-weight: 700;
    text-align: right;
    color: #309036;
}

.campaign-section .pair-item.saving vngcls-upper-badge {
    margin-right: 5px;
}

.campaign-section .pair-item:last-child {
    margin-bottom: 0;
}

/* Begin dropdown */

.vngcls-dropdown-menu {
    width: auto;
    background: #fff;
    font-size: 13px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 0 8px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    padding: 0;
    border: 0;
    overflow-y: auto;
}

.vngcls-dropdown-menu .dropdown-group {
    padding: 7px 0;
    border-bottom: 1px solid #e3e3e3;
}

.vngcls-dropdown-menu .dropdown-group:last-child {
    border-bottom: 0;
}

.vngcls-dropdown-menu .dropdown-group.v-padding, .vngcls-dropdown-menu .dropdown-group .v-padding {
    padding-left: 20px;
    padding-right: 20px;
}

.vngcls-dropdown-menu .menu-item .check-icon {
    display: none;
}

.vngcls-dropdown-menu.selectable .menu-item .check-icon {
    display: block;
    margin: auto 0 auto auto;
    padding-left: 20px;
}

.vngcls-dropdown-menu.selectable .menu-item .check-icon .vngcls-icon {
    display: none;
}

.vngcls-dropdown-menu.selectable .menu-item.checked .main-content span {
    font-weight: 600;
    color: #309036;
}

.vngcls-dropdown-menu.selectable .menu-item.checked .check-icon .vngcls-icon {
    display: block;
}

.vngcls-dropdown-menu.top {
    margin-bottom: 5px;
}

.vngcls-dropdown-menu.bottom {
    margin-top: 5px;
}

.vngcls-dropdown-menu.sync-width {
    width: 100%;
}

.vngcls-dropdown-menu.visible-overflowed {
    overflow-y: visible;
}

.menu-item {
    flex: 1;
    margin: 2px 0;
    padding: 6px 20px;
    white-space: nowrap;
    align-self: flex-start;
    cursor: pointer;
}

.menu-item .main-content {
    display: flex;
    margin: auto 0;
}

.menu-item .main-content .vngcls-icon {
    fill: #309036;
    margin: auto 10px auto 0;
}

.menu-item .main-content span {
    display: inline-block;
    font-weight: 400;
    margin: auto 0;
    color: #454545;
}

.menu-item .main-content span .description {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}

.menu-item .check-icon {
    width: 36px;
    height: 16px;
}

.menu-item .check-icon .vngcls-icon {
    fill: #309036;
}

.menu-item:not(.disabled):hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-item.danger .main-content span {
    color: #ff4138;
}

.menu-item.danger .main-content .vngcls-icon {
    fill: #ff4138;
}

.menu-item.separated {
    margin: 0;
    border-bottom: 1px solid #eaeaea;
}

.menu-item.display {
    display: flex;
}

.menu-item.chosen {
    background: rgba(0, 0, 0, 0.05);
}

.menu-item.disabled {
    cursor: default;
}

.menu-item.disabled .main-content span {
    color: #888 !important;
}

.menu-item.disabled .main-content .vngcls-icon {
    fill: #888 !important;
}

.title-item {
    display: none;
    color: #888;
    white-space: nowrap;
    align-self: flex-start;
    margin: 2px 0;
    padding: 6px 20px;
}

.title-item span {
    font-size: 11px;
    font-weight: 400;
    margin: auto 0;
    color: #888;
}

.title-item .check-icon {
    display: none;
}

.title-item.uppercase {
    text-transform: uppercase;
}

.title-item.display {
    display: flex;
}

.sticky-top {
    position: sticky;
    top: 0;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
}

:host {
    outline: 0;
}

/* End dropdown */

/* Begin form */

.vngcls-label {
    display: block;
    font-weight: 600;
}

.vngcls-label.inline {
    display: inline-block;
}

.vngcls-label.margined {
    margin-bottom: 5px;
}

.vngcls-label .required {
    display: inline-block;
    color: #ff2633;
    margin-left: 5px;
}

.form-group {
    margin-bottom: 10px;
}

.vngcls-input-with-suffix {
    display: flex;
    width: 100%;
    height: 32px;
    background: #fff;
    padding: 0 15px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    outline: 0;
    transition: width 0.2s ease-in-out;
}

.vngcls-input-with-suffix>* {
    margin-top: 0;
    margin-bottom: 0;
}

.vngcls-input-with-suffix input {
    flex: 1;
    width: 100%;
    height: 100%;
    font-family: Inter, serif;
    border: 0;
    outline: 0;
}

.vngcls-input-with-suffix input::placeholder {
    color: #a7a7a7;
}

.vngcls-input-with-suffix .suffix {
    display: inline-flex;
    width: auto;
    align-items: center;
}

.vngcls-input-with-suffix .suffix .vngcls-icon {
    fill: #454545;
}

.vngcls-input-with-suffix:hover:not(.focus):not(:disabled):not(.invalid) {
    border-color: #aaa;
}

.vngcls-input-with-suffix.focus {
    border-color: #309036;
}

.vngcls-input-with-suffix:disabled {
    background: #fafafa;
    color: #a7a7a7;
}

.vngcls-input-with-suffix:disabled input:disabled {
    background: #fafafa;
}

.vngcls-input-with-suffix:disabled .suffix {
    color: #666;
}

.vngcls-input-with-suffix:disabled .suffix .vngcls-icon {
    fill: #666;
}

.vngcls-input-with-suffix.valid {
    border-color: #40c646;
}

.vngcls-input-with-suffix.valid .suffix .vngcls-icon {
    fill: #40c646;
}

.vngcls-input-with-suffix.invalid {
    border-color: #ff2633;
}

.vngcls-input-with-suffix.invalid .suffix .vngcls-icon {
    fill: #ff2633;
}

.help-text {
    display: block;
    font-weight: 400;
    font-size: 13px;
}

.help-text.default {
    color: #666;
}

.help-text.danger {
    color: #ff2633;
}

.help-text.info {
    color: #309036;
}

.help-text.margined {
    margin-top: 5px;
}

/* End form */

/* Begin notice */

.vngcls-notice {
    border-width: 0 0 0 5px;
    border-style: solid;
    border-radius: 4px;
}

.vngcls-notice .notice-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.vngcls-notice .notice-content p {
    margin-bottom: 5px;
}

.vngcls-notice .notice-content p:last-child {
    margin-bottom: 0;
}

.vngcls-notice.standard {
    padding: 15px 15px 15px 20px;
}

.vngcls-notice.small {
    padding: 12px 15px;
}

.vngcls-notice.info {
    background: rgba(0, 149, 218, 0.1);
    border-color: #0095da;
}

.vngcls-notice.info .notice-title {
    color: #0095da;
}

.vngcls-notice.success {
    background: rgba(64, 198, 70, 0.1);
    border-color: #40c646;
}

.vngcls-notice.success .notice-title {
    color: #40c646;
}

.vngcls-notice.danger {
    background: rgba(255, 38, 51, 0.1);
    border-color: #ff2633;
}

.vngcls-notice.danger .notice-title {
    color: #ff2633;
}

.vngcls-notice.warning {
    background: rgba(255, 168, 0, 0.1);
    border-color: #ffa800;
}

.vngcls-notice.warning .notice-title {
    color: #ffa800;
}

:host {
    display: block;
}

/* End notice */

/* Begin icon */

.vngcls-icon {
    display: inline-block;
}

.loading-animation {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* End icon */

@media (min-width: 576px) {
    .container {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1290px;
    }
}