body {
    background: #ffffff;
    background: -moz-linear-gradient(45deg, #ffffff 30%, #ffffff);
    background: -webkit-linear-gradient(45deg, #E5E5E5 30%, #ffffff);
    background: linear-gradient(45deg, #ffffff 30%, #ffffff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
    background-attachment: fixed;
    font-family: "PT Root UI", "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-main-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-hover);
}

a:hover {
    opacity: var(--opacity-active);
    text-decoration: none;
}

h1, h2, h3 {
    border-bottom: 8px solid var(--primary-color);
    /*border-bottom-width: 8px;*/
    /*border-bottom-style: solid;*/
}

h1 {
    margin: 10px;
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    /*color: #515151;*/
    color: var(--text-main-color);
    display: inline-block;
}

h2 {
    /*margin: 45px 0 0 0;*/
    margin: 16px 0 0 5px;
    font-size: 36px;
    line-height: 32px;
    color: var(--text-main-color);
    font-weight: 700;
    display: inline-block;
}

h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-main-color);
    word-break: break-all;
    line-height: 24px;
    display: inline-block;
}

table {
    color: var(--text-main-color);
}

th {
    padding: 8px 0;
    font-weight: normal;
    color: var(--text-main-color);
    font-size: 16px;
}

label {
    color: #a9b1ba;
    margin-top: 4px;
}

.app-label {
    font-size: 13px;
    color: #000000;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 5px 0 #ffffff, inset 0 0 0 50px #ffffff;
    -webkit-text-fill-color: #000000;
}

.input-label, label {
    display: inline-block;
    padding-left: 24px;
    margin: 0;
    letter-spacing: 1px;
    font-size: 12px;
    /*color: #8ea2c8;*/
    /*font-weight: 300;*/
    color: var(--text-secondary-color);
    font-weight: 400;
}

.input-text-login {
    /*width: 95% !important;*/
    /*font-size: 13px;*/
    /*font-weight: 400;*/
    /*height: 29px;*/
    /*color: #000000;*/
    border: 0;
    /*border-bottom: 1px solid #c9cbd0;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /*new*/
    font-size: 12px;
    font-weight: 700;
    height: 60px;
    color: var(--text-main-color);
}

/*here input customization*/
.input-text-note {
    font-size: 12px;
    font-weight: 400;
}

.input-text, .form-full, .table-new-gemba .data-line .app-label {
    height: 60px;
    width: 100%;

    border-radius: 30px;
    border: 1px solid var(--input-background-color);
    background: var(--input-background-color);

    font-size: var(--font-size-input);
    font-weight: var(--font-weight-input);
    color: var(--text-main-color);

    overflow: hidden;
    padding: 0 var(--spacing-xxl);

    box-shadow: var(--shadow-input-text);
    box-sizing: border-box;
}


.input-wrapper {
    position: relative;
}

.button-copy {
    background: none;
    border: none;

    cursor: pointer;
}

.button-copy:hover, .button-copy:active {
    opacity: var(--opacity-active);
}

.button-copy svg {
    fill: var(--text-secondary-color);
}

.button-copy--success svg {
    fill: var(--success-color);
}

.button-copy .js-copy-icon-success {
    display: none;
}

.button-copy.button-copy--success .js-copy-icon-success {
    display: block;
}

.button-copy.button-copy--success .js-copy-icon {
    display: none;
}


.input-wrapper .button-copy {
    position: absolute;

    right: 24px;
    top: 7px;
    bottom: 0;
    margin: auto 0;

}

.input-text-file::-webkit-file-upload-button {
    padding: 19px 24px;
    visibility: hidden;
}

.input-text-file::before {
    content: 'Select';
    display: inline-flex;
    background: var(--primary-color);
    color: var(--primary-contrast-color);
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    overflow: hidden;
    height: 26px;
    padding: 0 10px;
    border-radius: var(--border-sm);
    line-height: 20px;
    font-size: 13px;
    transition: var(--transition-hover);
    align-items: center;

    position: absolute;
    bottom: 24px;
}

.input-text-file:hover::before {
    border-color: black;
}

.input-text-file:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.input-text:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.input-select {
    padding: 0;
}

.input-textarea {
    height: 100px;
    padding: 28px;
    border-radius: 16px;
    resize: none;
    overflow-y: scroll;
}

.input-textarea-mail {
    /*height: 160px;*/
    /*font-size: 13px;*/
    /*padding: 5px 10px;*/
    /*border: 1px solid #c9cbd0;*/
    /*color: #000000;*/
    padding: 24px;
    resize: none;
    min-height: 160px;
    border-radius: 16px;
}

/*old button*/
/*.button {*/
/*    width: 100%;*/
/*    height: 39px;*/
/*    padding: 0 20px;*/
/*    display: block;*/
/*    background-color: #ffffff;*/
/*    border: 1px solid #2066E6;*/
/*    border-radius: 3px;*/
/*    -webkit-box-sizing: border-box;*/
/*    -moz-box-sizing: border-box;*/
/*    box-sizing: border-box;*/
/*    color: #2066E6;*/
/*    font-size: 12px;*/
/*    font-weight: 700;*/
/*    letter-spacing: 0.05em;*/
/*    text-transform: uppercase;*/
/*    text-align: center;*/
/*    text-decoration: none;*/
/*    line-height: 37px;*/
/*    cursor: pointer;*/
/*    overflow: hidden;*/
/*}*/

/*new*/

.section-separator {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
}

.button-new, .button, .button-primary:not(h1):not(h2):not(h3) {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    overflow: hidden;

    height: var(--height-md);
    padding: 0 var(--spacing-xl);

    border-radius: var(--border-sm);

    line-height: 20px;
    font-size: 13px;

    transition: var(--transition-hover);

    a {
        color: inherit;
        opacity: 1;
    }
}

.button-primary.button-primary--xxs {
    width: unset;
    padding: 5px;
    height: 25px;
    font-weight: 400;
}

.button-gray {
    background-color: #F5F7FA;
    border: 1px solid #F5F7FA;

    color: var(--text-main-color);
}

.button-gray:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-gray:active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    opacity: var(--opacity-active);
}


.button, .button-secondary {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);

    color: var(--primary-color);
}

.button.button--sm, .button-secondary--sm {
    font-size: 10px;
    height: 32px;
}

.button:hover:not(.button-loading),
.button-secondary:hover:not(.button-loading) {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: var(--opacity-hover);
}

.button:active,
.button-secondary:active {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    opacity: var(--opacity-active);
}

.button-primary:not(h1):not(h2):not(h3) {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-contrast-color);
}

.button-primary:hover:not(.button-loading):not(h1):not(h2):not(h3):not([disabled]) {
    color: var(--primary-contrast-color);
    opacity: var(--opacity-hover);
}

.button-primary:active:not(h1):not(h2):not(h3):not([disabled]) {
    background-color: transparent;
    color: var(--primary-color);
    opacity: var(--opacity-active);
}

.button-small {
    width: 100%;
    min-width: 72px;
    height: 30px;
    padding: 0 8px 0 8px;
    display: block;
    background-color: #ffffff;
/ / background: url("img/arrow_right_blue.svg") no-repeat 90 %;
/ / background-size: 6 px 10 px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
/ / color: #2066E6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    line-height: 29px;
    cursor: pointer;
    overflow: hidden;
}

.button-green {
    width: 100%;
    min-width: 72px;
    height: 30px;
    padding: 0 8px;
    display: block;
    background-color: #20C261;

    background-size: 6px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    box-sizing: border-box;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    line-height: 29px;
    cursor: pointer;
    overflow: hidden;
}

.button-wait {
    min-width: 72px;
    height: 30px;
    padding: 0 18px 0 8px;
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    line-height: 29px;
    cursor: pointer;
    overflow: hidden;
}

.button-wait:disabled {
    border-color: #dedede;
    color: #888888;
    cursor: wait;
}

.btn-border {
    background: #566fe0;
    border: 1px solid #566fe0;
    color: white !important;
}

.btn-border:hover {
    background-color: #5365ca;
    border-color: #5365ca;
    color: white !important;
}

.btn-border:active {
    background-color: #505db9;
    border-color: #505db9;
    color: white !important;
}

.ico-card-add-new {
    padding-left: 20px !important;
    padding-right: 0px !important;
    background: #566fe0 url("img/card_add_new.svg") no-repeat 15px;
    background-size: 22px 20px;
}

.required {
    /*color: #ff0000;*/
    color: var(--primary-color);
    vertical-align: super;
}

.datepicker {
    cursor: pointer;
}

.checkbox label {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    height: 17px;
    line-height: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
}

/*here?*/
.wrapper {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
}

.navigation a {
    color: #515151;
    text-decoration: none;
}

.navigation a:hover {
    color: #f2b74e;
}

.header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /*max-width: 1600px;*/
    /*width: 100%;*/
    /*max-width: 1400px;*/
    /*height: 84px;*/
    /*padding: 0 34px 0 7px;*/
    /*display: table;*/
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/


    box-sizing: border-box;
    border-bottom: 1px solid var(--border-color);

    padding: 24px 80px 24px var(--nav-bar-width);

    color: var(--text-secondary-color);

    font-size: 12px;
    line-height: 20px;
}

.header-user-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
}

.header-user .btn-user-profile .header-user-name .ico {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 12px;
    font-weight: 600;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.header-language-current {
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 37px;
    text-decoration: none;
    background-image: url("img/arrow_down_white.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 10px 6px;
}

.header-language-current:hover {
/ / background-image: url("img/arrow_down_active.svg");
    color: var(var(--primary-color));
}

.header-theme-current {
    font-size: 14px;
    font-weight: 300;
    color: #283d54;
    line-height: 36px;
    margin-right: 20px;
    display: block;
    width: 40px;
    text-decoration: none;
    background-image: url("img/arrow_down_white.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 10px 6px;
}

.header-theme-current:hover {
    background-image: url("img/arrow_down_active.svg");
}

/*.box {*/
/*    position: relative;*/
/*    margin: 20px 10px;*/
/*    padding: 10px;*/
/*    background: #ffffff;*/
/*    -webkit-box-sizing: border-box;*/
/*    -moz-box-sizing: border-box;*/
/*    box-sizing: border-box;*/
/*    box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.06);*/
/*    border-radius: 6px;*/
/*}*/

.wrapper-appshell-main {

}

.box {
    position: relative;
    padding: var(--spacing-md);
    /* margin: 20px 10px; */
    /*padding: 10px;*/
    /*background: #ffffff;*/
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
    /*box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.06);*/
    /*border-radius: 6px;*/
    margin-bottom: 2em;
}

.box .flash-success,
.message {
    background: rgba(41, 204, 57, 0.25);
    color: #29CC39;
    padding: 20px 25px;
    border-radius: 16px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
}

.box .flash-fail {
    background: rgba(230, 46, 46, 0.25);
    color: #E62E2E;
    padding: 20px 25px;
    border-radius: 16px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
}

.flash-warning {
    background: rgba(255, 203, 51, 0.25);
    color: #CC7429;
    padding: 20px 25px;
    border-radius: 16px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
}

.box-email {
    /*position: relative;*/
    /*margin: 20px 10px;*/
    /*padding: 10px;*/
    /*background: #ffffff;*/
    /*border: #c9cbd0 1px solid;*/
    /*border-radius: 3px;*/
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
}

.box-title-right span {
    display: inline-block;
    font-size: 21px;
    line-height: 24px;
}

.box-title-right .dropdown-sm {
    top: 28px;
}

.box-filters {
    padding: 10px 20px 0 20px;
}

.box-content {
    margin: 0 0 24px 0;
    /*padding: 0 20px;*/
    overflow: hidden;
}

.box-footer {
    padding: 0 20px 14px 20px;
}

table img {
    vertical-align: middle;
}

.table-report {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
}

.table-report a {
    text-decoration: none;
    /*color: #566fe0;*/
    color: var(--primary-color);
    font-weight: 700;
}

.table-report tr {
    border-bottom: 1px solid var(--border-color);
}

.table-report tr:first-child {
    @media (min-width: 768px) {
        border-bottom: none;
    }
}

.card-icon-status-success {
    width: 22px;
    height: 18px;
    margin: -2px 4px 0 0;
    display: inline-block;
    background: url("img/card_successfully.svg") no-repeat center;
    background-size: 22px 18px;
    vertical-align: middle;
}

.icon-status-waiting {
    width: 16px;
    height: 16px;
    margin: 0 8px 4px 0;
    display: inline-block;
    background: url("img/status_pending.svg") no-repeat center;
    background-size: 16px 16px;
    vertical-align: middle;
}

.icon-status-error {
    width: 16px;
    height: 16px;
    margin: 0 4px 0 0;
    display: inline-block;
    background: url("img/status_declined.svg") no-repeat center;
    background-size: 16px 16px;
    vertical-align: middle;
}

.card-icon-status-hard-error {
    width: 22px;
    height: 18px;
    margin: -2px 4px 0 0;
    display: inline-block;
    background: url("img/card_hard_blocked.svg") no-repeat center;
    background-size: 22px 18px;
    vertical-align: middle;
}

.card-icon-status-error {
    width: 22px;
    height: 18px;
    margin: -2px 4px 0 0;
    display: inline-block;
    background: url("img/card_blocked.svg") no-repeat center;
    background-size: 22px 18px;
    vertical-align: middle;
}

.card-icon-status-waiting {
    width: 22px;
    height: 18px;
    margin: -2px 4px 0 0;
    display: inline-block;
    background: url("img/card_new.svg") no-repeat center;
    background-size: 22px 18px;
    vertical-align: middle;
}

.template-icon i {
    position: relative;
    width: 42px;
    height: 54px;
    display: inline-block;
    border-radius: 3px;
    background: #3b8ba9;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: #283d54;
    text-align: center;
    line-height: 54px;
}

.template-icon i:after {
    position: absolute;
    top: -1px;
    right: 0;
    content: " ";
    width: 14px;
    height: 15px;
    display: block;
    background: url("img/attachment_corner.svg") no-repeat right top;
    background-size: 20px 20px;
}

.template-title {
    width: calc(100% - 56px);
    height: 54px;
    padding: 0 0 0 14px;
}

.footer {
    color: #283d54;
}

.footer a {
    color: #283d54;
}

.footer-info {
    color: #626e7c;
}

.footer-additional-info {
    color: #626e7c;
}

.dropdown-sm {
    position: absolute;
    right: 0;
    display: none;
    /*background: #ffffff;*/
    white-space: nowrap;
    /*color: #555555;*/
    /*text-align: right;*/
    /*-webkit-box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);*/
    /*-moz-box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);*/
    /*box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);*/
    /*-webkit-border-radius: 3px;*/
    /*-moz-border-radius: 3px;*/
    /*border-radius: 3px;*/
    z-index: 3;

    /* new styles */
    box-shadow: 0 30px 60px rgba(38, 51, 77, 0.2);
    border-radius: 16px;
    color: var(--text-secondary-color);
    background-color: var(--color-white);
    overflow: hidden;
}

.dropdown-sm a {
    /*padding: 5px 10px;*/
    display: block;
    /*color: #555555;*/
    font-size: 12px;
    /*font-weight: 400;*/
    text-decoration: none;

    /* new styles */
    padding: 8px 16px;
    font-weight: 700;
    color: var(--text-secondary-color);
    text-align: left;

    border-bottom: 2px solid var(--border-color);
}

.dropdown-sm ul li a:last-child {
    border-bottom: none;
}

.dropdown-sm a:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
    opacity: 1;
}

.dropdown-sm-light {
    position: absolute;
    right: 0;
    display: none;
    background: #000000;
    border: 1px solid #3b8ba9;
    border-radius: 3px;
    white-space: nowrap;
    color: #3b8ba9;
    text-align: right;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(54, 55, 81, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(54, 55, 81, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(54, 55, 81, 0.1);
    z-index: 3;
}

.dropdown-sm-light ul {
    margin: 0;
    padding: 0;
}

.dropdown-sm-light li {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #c9cbd0;
}

.dropdown-sm-light li:last-child {
    border: 0;
}

.dropdown-sm-light a {
    padding: 5px 10px;
    display: block;
    text-decoration: none;
}

.dropdown-sm-light a:hover {
    background-color: #d1ebf5;
}

.table-draft-list tr th:nth-child(2),
.table-draft-list tr td:nth-child(2) {
    /*padding: 0;*/
    text-align: center;
}

.table-draft-list tr td:last-child {
    position: relative;
    width: 65px;
    text-align: right;
    overflow: visible !important;
}

.table-draft-list tr th:first-child,
.table-draft-list tr td:first-child {
    width: 17px;
    padding-left: 0;
    padding-right: 0 !important;
}

.table-draft-list .checkbox {
    margin: 6px 0 6px 8px;
}

.table-draft-list .checkbox i {
    margin-right: 8px;
}

.table-draft-list tr td:nth-child(2) {
    width: 70px;
    white-space: nowrap;
    text-align: left;
}

.table-draft-list tr td:nth-child(3) {
    width: 70px;
    white-space: nowrap;
}

.table-draft-list tr td:nth-child(4) {
    width: 120px;
    white-space: nowrap;
}

.table-draft-list tr td:nth-child(5),
.table-draft-list tr td:nth-child(6) {
    width: 65px;
    /*font-size: 13px;*/
    /*font-weight: 900;*/
    white-space: nowrap;
}

.table-draft-list tr td:nth-child(6) {
    width: 50px;
    text-align: center;
    white-space: nowrap;
}

.table-draft-list tr td:nth-child(7) {
    width: 300px;
    white-space: nowrap;
}

.table-draft-list tr td:nth-child(8) {
    width: 100px;
    white-space: nowrap;
}

.table-cards-list tr th:first-child,
.table-cards-list tr td:first-child {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
}

.table-statement tr {
    border-bottom: 1px solid #c9cbd0;
}

.email-info {
    width: 100%;
    border: 0;
    border-top: 1px solid #e7e7e7;
    border-collapse: collapse;
}

.email-add-reply {
    padding: 34px 0 0 0;
    border-top: 1px solid #e7e7e7;
}

.attached-file-name {
    background: url("img/icon_file_attached.svg") no-repeat left;
    background-size: 24px 24px;

    padding-left: 32px;
    margin-left: 5px;

    max-width: 250px;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap;
}

.attached-file-name--full-width {
    flex: 1;
    width: 100%;
    max-width: unset;
}

.attached-item-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #283d54;
    z-index: 2;
}

.table-email-acc tr {
    border-bottom: 1px solid #c9cbd0;
}

.table-email-list tr {
    border-bottom: 1px solid #c9cbd0;
}

.email-list-time {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: #9a9a9a;
}

/* jQuery-UI Styles */

.ui-button {
    margin-right: 0;
}

.ui-selectmenu-button {
    width: 100%;
    height: 29px;
    font-size: 13px;
    wont-weight: 400;
    padding: 0;
    color: #000000;
    border: 0;
    border-bottom: 1px solid #c9cbd0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 28px;
}

.ui-selectmenu-menu .ui-menu {
    margin-top: -1px;
    padding: 0;
    /*background: #ffffff;*/
    /*color: #000000;*/
    font-size: 13px;
    /*font-weight: 400;*/
    max-height: 220px;
    /*-webkit-box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);*/
    /*-moz-box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);*/
    /*box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);*/
    /*-webkit-border-radius: 3px;*/
    /*-moz-border-radius: 3px;*/
    /*border-radius: 3px;*/

    /* new styles */
    box-shadow: 0 30px 60px rgba(38, 51, 77, 0.2);
    border-radius: 16px;
    color: var(--text-secondary-color);
    background-color: var(--color-white);
    /*overflow: hidden;*/
}

.ui-menu .ui-state-active {
    margin: 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

.ui-menu .ui-menu-item-wrapper {
    padding: 16px;
}

.ui-datepicker {
    margin: -1px 0 0 0;
    background-color: #ffffff;
    -webkit-box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);
    box-shadow: 10px 10px 23px 10px rgba(0, 0, 0, 0.24);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.ui-datepicker td a {
    border-radius: 3px;
    color: #555555;
    text-align: center;
}

.ui-datepicker td a:hover,
.ui-datepicker td a.ui-state-highlight {
    background-color: var(--primary-color);
    color: #ffffff;
}

#errors {
    color: #ff6060;
    font-style: oblique;
    font-weight: 400;
}

.amount {
    /*color: #515151;*/
    color: var(--text-secondary-color);
    font-size: 16px;
    font-weight: normal;
}

.amount a {
    color: var(--primary-color);
}

.adesc {
    color: #515151;
    font-size: 16px;
    font-weight: normal;
/ / padding-left: 27 px !important;
/ / background: url("img/icon_account.svg") no-repeat left;
/ / background-size: 17 px 17 px;
}

.statement-total-title {
/ / color: #283d54;
    font-size: 13px;
    font-weight: 500;
}

.statement-total-amount {
/ / color: #283d54;
    font-size: 13px;
    font-weight: 500;
}

.empty {
    text-align: right;
}

.table-collapse:after {
    content: "";
    display: table;
    clear: both;
}

.mobile-header {
    background-repeat: no-repeat;
    background-position: center top;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
    background-size: 30px 26px;
}

.desktop-header {
    background-repeat: no-repeat;
    background-position: center top;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
    background-size: 30px 26px;
}

.bubble {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-contrast-color);
    text-align: center;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    margin-top: 0;
    font-weight: 700;
    font-size: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 3px;
}

.warning {
    position: relative;
    margin: 20px 10px;
    min-height: 26px;
    margin-left: 10px;
    vertical-align: bottom;
    color: #41b2c9;
    background: url("img/sign_attention.svg") no-repeat left;
    background-size: 28px 24px;
    padding: 10px 0 0 36px;
}

.tooltip:hover:before {
    content: attr(data-title);
    white-space: pre-line;
    position: absolute;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 18px;

    width: 240px;

    margin-left: -280px;
    padding: 10px;

    border: 2px solid #5C7099;

    color: #FFFFFF;
    background-color: #5C7099;

    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 1px 0 rgba(255, 255, 255, .5) inset;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 1px 0 rgba(255, 255, 255, .5) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 1px 0 rgba(90, 90, 90, .2) inset;

    z-index: 999;
}

.tooltip:hover:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #5C7099;
    transform: rotate(45deg);
    margin-left: -15px;
}

/* :: Main left menu :: */

.ico svg {
    /*fill: #BDBDBD;*/
    fill: var(--text-secondary-color);
}

#menu .active .ico svg {
    fill: var(--primary-color);
}

#menu a:hover .ico svg, #menu a:focus .ico svg {
    fill: var(--primary-color);
}

.menu li a:hover,
.menu .active a {
    color: var(--primary-color);
}

.menu li a:hover .dropdown-menu-icon svg {
    fill: var(--primary-color);
}

.tr-info {
    border-bottom: 1px solid #F5F5F5 !important;
}

.tr-info.last-tr {
    border-bottom: 1px solid #c9cbd0 !important;
}

.cell-name {
    color: #939ea9;
}

.trans-id {
    color: #979DBC;
}

.btn-activate-now {
    background: #566fe0 url(img/card_activate.svg) no-repeat 10px;
    color: #FFFFFF;
}

.payinst-list {
    padding-left: 15px;
}

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    margin-top: 7px;
    margin-bottom: 7px;
    padding: 2px 5px;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

table.search-results {
    width: 100%;
}

table.search-results td {
    padding-left: 5px;
    color: #000000;

}

/* :: Swift :: */
.autocomplete-suggestions {
    background: #FFF;
}

.autocomplete-suggestion {
    color: #283d54;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-group strong {
    border-bottom: 1px solid #000;
}

table.search-results td {
    padding-left: 5px;
}

.error-status {
    color: #ff6060;
}

@media all and (max-width: 1000px) {
    .autocomplete-suggestion {
        border-bottom: 1px solid #c9cbd0;
    }
}

.autocomplete-suggestion, .search-results {
    border-bottom: 1px solid #c9cbd0;
}

.sw-data {
    color: #566fe0;
}

.search-results td {
    color: #939ea9 !important;
}

/* :: END Swift :: */

/** Fee */
.fee-title {
    color: #283d54;
}

.fee-table tr {
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: none;
}

.fee-table tr:last-child {
    border-bottom: 1px solid var(--border-color);
}

.fee-table tr td:last-child {
    width: 120px;
}

.mob-col-name {
    color: #939ea9;
}

/** Fee END */
.attached-label {
    color: #a9b1ba;
}

.dropdown-menu:before {
    color: white;
}

.dropdown-menu:after {
    background-color: rgba(40, 61, 84, 0.4);
}

.dropdown-container:after {
    /*background-color: rgba(40, 61, 84, 0.3);*/
    background-color: var(--border-color);
}

.box-title-left .-name {
    color: #283D54;
}

.api.-header {
    color: #283D54;
    border-bottom: 1px solid #C9CBD0;
}

.api.-in-row .-label {
    color: #283D54;
}

.api .-validuntil {
    color: #939EA9;
}

.invisible {
    display: none;
}


/* new gemba styles */

.box.box-new-gemba { /* margin-bottom: 2em; */
}

.box.box-new-gemba .box-new-gemba-title-text {
    padding: 24px 0;
    width: 100%;
}

.box.box-new-gemba .box-new-gemba-title-text h2 {
    margin: 0;
}

/* END *** new gemba styles */

/* new gemba cards front-end styles */

.cards-activate {
    padding: 0 20px;
    padding-bottom: 100px;
}

.cards-activate td {
    font-size: 15px;
}

/* END *** new gemba cards front-end styles */

.flex-column {
    display: flex;
    flex-direction: column;
}

.page-footer {
    margin-top: auto;
    font-size: 8px;
    line-height: 13px;
    padding: 2px 6px;
}