* {
    outline: 0;
}

em {
    font-style: normal;
}

td {
    font-size: 13px;
    font-weight: 400;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.clear {
    clear: both;
}

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

.alt {
    overflow: auto;
    word-break: break-all;
    white-space: pre-wrap;
}

.input-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    /*width: calc(100% + 10px);*/
    /*margin: 0 -5px;*/
}

.input-group .col-1 {
    width: calc(20% - 10px);
    /*margin: 0 5px;*/
    /*float: left;*/
}

.input-group .col-2 {
    width: calc(40% - 10px);
    /*margin: 0 5px;*/
    /*float: left;*/
}

.input-group .col-3 {
    width: calc(60% - 10px);
    margin: 0 5px;
    float: left;
}

.input-group .col-4 {
    width: calc(80% - 10px);
    margin: 0 5px;
    float: left;
}

.input-group .col-half {
    width: calc(50% - 10px);
    margin: 0 5px;
    float: left;
}

.checkbox label input {
    display: none;
}

.checkbox label i {
    width: 18px;
    height: 18px;
    margin: 0 5px 0 0;
    display: inline-block;
    vertical-align: top;
    background: url("img/checkbox_empty.svg") no-repeat left top;
}

.checkbox input:checked + i {
    background: url("img/checkbox_active.svg") no-repeat left top;
}

.checkbox label span {
    height: 17px;
    color: #0a7298;
    line-height: 17px;
}

.checkbox-inline {
    margin: 0 20px 10px 0;
    display: inline-block;
    vertical-align: middle;
}

.row-selected {
    background-color: #fffde2;
}

.content-section {
    height: auto !important;
    min-height: 100vh;
}

.wrapper,
.navigation,
.content-section {
    position: relative;
}

.content-footer {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 56px 0;
}

.navigation {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*width: 290px;*/
    width: 100vw;
    background: transparent;
    color: #eef3f7;
    z-index: 2;

    @media all and (min-width: 976px) {
        position: unset;
        width: 290px;
        min-width: auto;
    }
}

.logo {
    position: absolute;
    top: 0;
    left: 37px;
    height: 99px;
    width: 290px;
    z-index: 2;
}

.logo-login {
    /*//    height: 99px;*/
    /*text-align:center;*/
}

.logo-login img {
    max-width: 100%;
    max-height: 50px;

    @media all and (min-width: 976px) {
        max-width: 400px;
        max-height: 100px;
    }
}

.logo img {
    margin: 35px 0px 0px 30px;
    display: block;
    height: 23px;
    width: 80px;
}

.navigation-wrapper {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*padding: 0;*/


    @media all and (min-width: 976px) {
        /*position: unset;*/
    }
}

.wrapper-appshell-main {
    position: relative;
    @media all and (min-width: 976px) {
        display: flex;
    }
}

.navigation .mCSB_scrollTools {
    right: -5px;
}

.navigation .header-user,
.navigation .header-language,
.navigation .footer,
.navigation .navigation-logo {
    display: none;
}

.support {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 84px;
    display: table;
    background-color: #2c2d41;
}

.support-container {
    width: 100%;
    padding: 0 24px;
    display: table-cell;
    vertical-align: middle;
    line-height: 18px;
}

.support-container > a {
    display: block;
}

.support-avatar {
    position: relative;
    width: 37px;
    height: 37px;
    margin: 0 20px 0 0;
    display: block;
    float: left;
    border-radius: 18px;
}

.support-title i {
    font-size: 13px;
    font-style: normal;
    opacity: 0.65;
}

.content-section {
    padding: 20px var(--spacing-section-mob);

    width: 100vw;

    box-sizing: border-box;

    @media all and (min-width: 768px) {
        width: calc(100% - var(--nav-bar-width));

        padding: 40px var(--spacing-section-desk);
        margin-left: var(--nav-bar-width);

        border-left: 1px solid var(--border-color);
    }

    @media all and (min-width: 976px) {
        width: 100%;

        padding: 40px var(--spacing-section-mob);
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    @media all and (min-width: 1200px) {
        padding: 40px var(--spacing-section-desk);
    }
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    position: absolute;
    top: 16px;
    left: 10px;
    width: 23px;
    height: 23px;
    display: none;
    float: left;
    background: url("img/mobile_mainmenu_default.svg") no-repeat left top;
    cursor: pointer;
    z-index: 4;
}

.menu-toggle:hover {
    background: url("img/mobile_mainmenu_active.svg") no-repeat left top;
}

.menu-toggle.toggling {
    background: url("img/mobile_close_default.svg") no-repeat left top;
}

.menu-toggle.toggling:hover {
    background: url("img/mobile_close_active.svg") no-repeat left top;
}

.header-user {
    /*float: left;*/
    /*display: inline-block;*/
    /*white-space: nowrap;*/
    /*text-align: left;*/
}

.header-user-avatar {
    display: none;

    /*width: 50px;*/
    /*height: 50px;*/
    /*margin: 0 10px 0 0;*/
    /*float: left;*/
    /*border-radius: 25px;*/
}

.navigation-user .header-user-name {
    background-position: left 58%;
}

.header-user-name i {
    font-size: 13px;
    font-style: normal;
    opacity: 0.85;
}

.header-language {
    position: relative;
    height: 34px;
    margin: 0 10px 0 60px;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    text-align: left;
}

.header-theme {
    position: relative;
    height: 34px;
    margin: 0 0 0 10px;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    text-align: left;
}

.header-language-icon {
    width: 34px;
    height: 34px;
    display: inline-block;
}

.header-language .dropdown-sm,
.header-theme .dropdown-sm {
    right: 0;
    left: auto;
    min-width: 80px;
    text-align: center;
}

.header-language .dropdown-sm i {
    margin: 0;
    display: none;
    vertical-align: middle;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.theme {
    width: 85px;
    height: 25px;
}

.icon-theme {
    background-image: url("img/top_theme.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: 24px 16px;
}

.icon-theme:hover {
    background-image: url("img/top_theme_active.svg");
}

.theme-dark {
    background: #303d53;
    background: -moz-linear-gradient(45deg, #303d53 30%, #495276);
    background: -webkit-linear-gradient(45deg, #303d53 30%, #495276);
    background: linear-gradient(45deg, #303d53 30%, #495276);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303d53', endColorstr='#495276', GradientType=1);
}

.theme-medium {
    background: #616b95;
    background: -moz-linear-gradient(45deg, #616b95 30%, #95ecdc);
    background: -webkit-linear-gradient(45deg, #616b95 30%, #95ecdc);
    background: linear-gradient(45deg, #616b95 30%, #95ecdc);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#616b95', endColorstr='#95ecdc', GradientType=1);
}

.theme-light {
    background: #edeef0;
}

.header-date {
}

.header-date i {
    font-size: 13px;
    font-style: normal;
    opacity: 0.85;
}

.header-session {
    height: 36px;
    padding: 7px 0;
    display: inline-block;
}

.session-progress {
    width: 100%;
    height: 3px;
    margin: 10px 0 0 0;
    display: block;
    background: #2a2944;
}

.session-progress b {
    width: 60%;
    height: 3px;
    display: block;
    background: #9594a2;
}

.header-chart {
    /*width: 39%;*/
    /*display: table-cell;*/
    /*padding-top: 28px;*/
    /*vertical-align: top;*/
    /*text-align: right;*/
}

.session-progress-wide {
    display: none;
}

.content {
    display: flex;
    flex-direction: column;
    /*min-height: 500px;*/
    /*padding: 0 5px 0 5px;*/
    /*max-width: 1400px;*/

    /*padding: 0 80px;*/
}

.content-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: -1000px;
    left: 0;
    background: rgba(55, 56, 83, 0.4);
    display: none;
    z-index: 3;
}

.column-left {
    /*width: 60%;*/
    /*float: left;*/
}

.column-right {
    /*width: 40%;*/
    /*float: right;*/
}

.column-left .box:last-child,
.column-right .box:last-child {
    /* margin-bottom: 2em; */
}

.box-title {
    /*padding: 14px 20px;*/
    font-weight: 400;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .box-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.box-title-left {
    float: left;
    text-align: left;
    width: 100%;
}


.box.-api {
    padding: 80px 180px;
}

.box.-api .box-title {
    padding: 0;
}

.box-title-left .-name {
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    margin: 0;
}

.api.-wrapper {
    width: 380px;
}

.api.-header {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding-top: 41px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.api.-in-list .-in-row:last-child {
    margin-bottom: 0;
}

.api.-in-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.api.-in-row .-label img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.api.-in-row .-label {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
}

.api.-in-row .-label .-label-cell {
    display: flex;
    align-items: center;
}

.api .-validuntil {
    font-style: normal;
    font-weight: normal;
    font-size: 9px;
    line-height: 9px;
}

.api.-in-row .-action {
    width: 90px;
    height: 24px;
    font-weight: bold;
    font-size: 10px;
    line-height: 24px;
    padding: 0px;
}

.box-title-left a,
.box-title-left span {
    display: inline-block;
    font-size: 21px;
    color: #0a7298;
    line-height: 24px;
}

.box-title-left span.box-title-breadcrumb {
    position: relative;
    padding-left: 23px;
    color: #858586;
}

.box-title-left span.box-title-breadcrumb:before {
    position: absolute;
    left: 0;
    content: "";
    margin: 0 0 0 5px;
    color: #d3d3d3;
}

.box-title-right {
    /*position: absolute;*/
    /*top: 15px;*/
    /*right: 20px;*/
    /*text-align: right;*/
}

.table-col-1 {
    width: 40%;
}

.table-col-2 {
    width: 20%;
}

.table-col-3 {
    width: 16%;
}

.table-col-4 {
    width: 24%;
}

.table-report th {
    text-align: left;
}

@media all and (min-width: 768px) {
    .table-report th {
        padding: 20px 0;
        /* font-weight: 700; */
        color: var(--text-secondary-color);
        font-weight: 300;
        margin-bottom: 0;
    }
}

.table-report tr:last-child {
    border: 0;
}

.table-report tr th:nth-child(2),
.table-report tr th:nth-child(3) {
    text-align: center;
}

.table-report tr th:last-child {
    text-align: center;
}

.table-report td {
    padding: 8px 0;
    overflow: auto;
}

.table-report tr td:nth-child(2) {
    text-align: center;
}

.table-report tr td:nth-child(3) {
    text-align: center;
}

.table-report tr td:last-child {
    text-align: right;
    overflow: visible !important;
}

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

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

.table-total {
    padding: 0 20px 14px 20px;
    line-height: 24px;
}

.table-total-title {
    display: inline-block;
    float: left;
}

.table-total-amount {
    display: inline-block;
    float: right;
    font-size: 18px;
    line-height: 24px;
}

.table-total-amount b {
    display: inline-block;
    vertical-align: top;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

.box-balance {
    padding: 24px 30px;
    background-color: #fffdea;
}

.box-balance-item {
    width: 50%;
    float: left;
}

.box-balance-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

.box-balance-content {
    position: relative;
    margin: 10px 0 0 0;
    display: inline-block;
}

.box-balance-content .show-dropdown {
    font-size: 18px;
    font-weight: 400;
}

.box-template-item {
    padding: 7px 0;
}

.box-template-item .template {
    width: 100%;
    display: table;
}

.box-template-item .template .template-icon,
.box-template-item .template .template-title {
    display: table-cell;
    vertical-align: middle;
}

.template-icon {
    width: 42px;
}

.footer-phone-icon {
    background: url("img/footer_icon_phone.svg") no-repeat;
}

.footer-phone-uk {
    background: url("img/footer_flag_uk.svg") no-repeat 0px / 36px;
}

.footer-phone-pol {
    background: url("img/footer_flag_poland.svg") no-repeat 0px / 36px;
}

.footer-message-icon {
    background: url("img/footer_icon_chat.svg") no-repeat;
}

.footer-skype-icon {
    background: url("img/footer_icon_skype.svg") no-repeat;
}

.footer-email-icon {
    background: url("img/footer_icon_email.svg") no-repeat;
}

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

.dropdown-sm li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-settings .column-left,
.content-settings .column-right {
    width: 50%;
}

.content-wire {
    position: relative;
}

.content-wire .column-left {
    width: 100%;
    float: none;
}

.table-wire {
    width: 100%;
    /*width: 90%;*/
    /*margin: 14px 24px;*/
}

.table-wire td {
    padding: var(--spacing-sm) 0;
}

.table-wire tr td:first-child {
    width: 22%;
    padding-right: 20px;
    text-align: right;
}

.login-content .table-wire .data-line td:first-child {
    display: none;
}

.table-wire .data-line td:first-child {
    /*display: none;*/
}

.table-wire tr td:last-child {
    width: 100%;
    text-align: left;
    position: relative;
}

.table-wire .checkbox {
    padding-top: 11px;
}

.table-wire .table-buttons tr td {
    padding: 0 5px;
}

.table-wire .table-buttons tr td:first-child {
    width: auto;
    padding: 0 5px 0 0;
}

.table-wire .table-buttons tr td:last-child {
    padding: 0 0 0 5px;
    width: unset;
}

.wire-total {
    font-size: 18px;
    font-weight: 400;
}

.content-draft .column-left {
    width: 100%;
    float: none;
}

.draft-filter {
    margin: 14px 0;
}

.table-draft-filter {
    width: 100%;
    /*width: 90%;*/
    /*margin: 0 24px;*/
}

.table-draft-filter td {
    /*padding-top: 10px;*/
}

.table-draft-filter tr td:first-child {
    /*width: 20%;*/
    /*padding-right: 20px;*/
    /*padding-top: 16px;*/
    /*text-align: right;*/
}

.table-draft-filter tr td:last-child {
    /*width: 80%;*/
    /*text-align: left;*/
}

.table-draft-filter .checkbox {
    /*padding-top: 11px;*/
}

.table-draft-filter .table-buttons {
    /*margin: 24px 0;*/
}

.table-draft-filter .table-buttons tr td {
    /*padding: 0 5px;*/
}

.table-draft-filter .table-buttons tr td:first-child {
    /*width: auto;*/
    /*padding: 0 5px 0 0;*/
}

.table-draft-filter .table-buttons tr td:last-child {
    /*padding: 0 0 0 5px;*/
}

.draft-filter-extended {
    display: none;
}

.draft-search-button {
    display: none;
}

.draft-action {
    margin: 0 24px;
    padding: 10px 0;
    border-top: 1px solid #c9cbd0;
    border-bottom: 1px solid #c9cbd0;
}

.draft-action a {
    margin: 0 34px 0 0;
    padding: 4px 0 4px 22px;
    display: inline-block;
}

.table-draft-sort {
    display: none;
}

.table-draft-list {
    width: calc(100% - 48px);
    /*margin: 0 24px 24px 24px;*/
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

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

.table-draft-list th {
    white-space: nowrap;
    text-align: left;
}

.table-draft-list tr th:nth-child(3) {
    text-align: center;
    padding-right: 20px;
}

.table-draft-list tr th:nth-child(5) {
    text-align: right;
}

.table-draft-list tr th:last-child {
    text-align: right;
}

.table-draft-list td, .table-draft-list th {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    overflow: auto;
}

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

.draft-list-more {
    width: 23px;
    height: 23px;
    margin-bottom: -3px;
    display: inline-block;
    background: url("img/list_actions.svg") no-repeat left top;
    background-size: 3px 15px;
}

.draft-list-more:hover {
/ / background: url("img/list_actions_active.svg") no-repeat left top;
}

.table-draft-list .dropdown-sm {
    right: 8px;
}

.table-holds-list {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

.table-holds-list th {
    padding: 8px 11px 8px 9px;
    white-space: nowrap;
    text-align: center;
}

.table-holds-list tr {
    border-bottom: 1px solid #EBF1F3;
}

.table-holds-list td {
    padding: 8px;
    overflow: auto;
    text-align: center;
}

.table-holds-list tr th:first-child,
.table-holds-list tr td:first-child {
    width: 80px;
    text-align: left;
}

.table-holds-list tr th:nth-child(2),
.table-holds-list tr td:nth-child(2) {
    width: 80px;
    white-space: nowrap;
}

.table-holds-list tr th:nth-child(6),
.table-holds-list tr td:nth-child(6),
.table-holds-list tr th:last-child,
.table-holds-list tr td:last-child {
    text-align: left;
}

.table-holds-list tr th:nth-child(4),
.table-holds-list tr th:nth-child(5) {
    text-align: right;
}

.table-holds-list tr td:nth-child(4),
.table-holds-list tr td:nth-child(5) {
    width: 80px;
    font-weight: 900;
    white-space: nowrap;
    text-align: right;
}

.table-cards-list {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 0;
    text-align: center;
    border: 0;
    border-collapse: collapse;
}

.table-cards-list tr {
    border-bottom: 1px solid #EBF1F3;
}

.table-cards-list tr:last-child {
    border: 0;
}

.table-cards-list th {
    padding: 8px 11px 8px 9px;
    white-space: nowrap;
    text-align: center;
}

.table-cards-list td {
    padding: 8px;
    text-align: center;
}

.table-cards-list tr td:nth-child(5),
.table-cards-list tr td:nth-child(6) {
    font-weight: 900;
    white-space: nowrap;
    text-align: right;
}

.table-template-list {
    width: calc(100% - 48px);
    margin: 0 4px;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

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

.table-template-list th {
    padding: 8px 11px 8px 0;
    white-space: nowrap;
    text-align: left;
}

.table-template-list tr th:first-child {
    text-align: left;
}

.table-template-list tr th:last-child {
    text-align: right;
}

.table-template-list td {
    padding: 8px 0;
    overflow: auto;
}

.table-template-list tr td:first-child {
    /*position: relative;*/
    /*text-align: left;*/
    /*padding-left: 24px;*/
    /*background: url("img/icon_template_list.svg") no-repeat left center;*/
    /*background-size: 14px 18px;*/
}

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

.table-statement {
    width: calc(100% - 48px);
    margin: 0 0 20px 20px;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

.table-statement th {
    padding: 8px;
    padding-right: 0;
    white-space: nowrap;
    text-align: left;
}

.table-statement td {
    padding: 8px;
    padding-right: 0;
    overflow: hidden;
    white-space: pre-line;
}

.table-statement tr th:first-child,
.table-statement tr td:first-child {
    text-align: center;
    padding: 8px 0;
}

.table-statement tr th:nth-child(2),
.table-statement tr td:nth-child(2) {
    text-align: center;
    padding: 8px 0;
}

.table-statement tr th:nth-child(5),
.table-statement tr th:nth-child(6),
.table-statement tr th:nth-child(7) {
    text-align: right;
}

.label-xxs {
    display: none;
}

.show-draft-filter.toggled {
    background-position: left bottom;
}

.content-email-single .column-left,
.content-email .column-left,
.content-email-new .column-left,
.content-cards-order .column-left {
    width: 100%;
    float: none;
}

.content-email-search {
    margin: 14px 14px 0 14px;
    display: none;
}

.content-email .content-email-search {
    margin: 0;
}

.content-email-search .input-group {
    padding: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.email-single-header {
    position: relative;
    padding-bottom: 21px;
}

.email-single-header h3 {
    float: left;
}

.email-single-header .dropdown-sm {
    top: 38px;
    right: 20px;
}

.email-info tr td {
    /*padding: 24px 0 14px 0;*/
}

.email-info tr td:first-child {
    /*width: 40%;*/
}

.email-info tr td:last-child {
    /*width: 30%;*/
    text-align: right;
}

.email-info-avatar {
    width: 38px;
    height: 38px;
    margin: 0 10px 0 0;
    display: inline-block;
    float: left;
    background: url("img/tsupport_avatar.svg") no-repeat left top;
    bacground-size: 38px 38px;
}

.email-info-avatar img {
    max-width: 100%;
}

.email-info-from {
    display: inline-block;
    font-weight: 400;
}

.email-info-to {
    display: inline-block;
}

.email-info-time {
    display: block;
    color: var(--text-secondary-color);
}

.email-info-reply {
    width: auto;
    display: inline-block;
}

.email-content {
    padding: 0 0 24px 0;
}

.email-content p {
    margin: 10px 0 0 0;
}

.reminder-info {
    list-style-type: none;
    margin: 0px;
}

.email-info .dropdown-sm-light {
    right: 30px;
}

.table-add-reply {
    width: 100%;
    border: 0;
    margin: 14px 0 0 0;
    padding: 0;
    border-collapse: collapse;
    vertical-align: top;
}

.table-add-reply tr td {
    vertical-align: top;
}

.table-add-reply tr td:first-child {
    /*width: 60%;*/
}

.table-add-reply tr td:last-child {
    /*width: 40%;*/
}

.table-add-reply .input-group div {
    margin-bottom: 10px;
}

.table-add-reply .button-primary:not(h1),
.table-add-reply .button-primary:not(h2),
.table-add-reply .button-primary:not(h3),
.table-add-reply .button-primary,
.table-add-reply .button {
    padding: 0;
}

.new-email-xxs {
    display: none;
}

.attached-file {
    height: 24px;
    margin: 8px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;
}

.attached-file-remove {
    width: 16px;
    height: 16px;
    display: block;
    float: left;
    background: url("img/close1_default.svg") no-repeat center;
    background-size: 16px 16px;
}

.attached-file-remove:hover {
    background: url("img/close1_active.svg") no-repeat center;
    background-size: 16px 16px;
}

.attached-content {
    margin: 24px 0 0 0;
}

.attached-content-info {
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: 400;
}

.attached-item {
    position: relative;
    width: 110px;
    min-height: 134px;
    margin: 0 24px 8px 0;
    float: left;
    background: #5edcdb;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(94, 220, 219, 0.3);
    -moz-box-shadow: 0px 2px 3px 0px rgba(94, 220, 219, 0.3);
    box-shadow: 0px 2px 3px 0px rgba(94, 220, 219, 0.3);
}

.attached-item:after {
    position: absolute;
    top: -3px;
    right: -3px;
    content: " ";
    width: 24px;
    height: 24px;
    display: block;
    background: url("img/attachment_corner.svg") no-repeat left top;
    background-size: 24px 24px;
    z-index: 3;
}

.hasattachment {
    height: 30px;
    background: url("img/attachment_staple.svg") no-repeat left top;
    background-size: 8px 18px;

    background-position: right 0;
}

.attachment-item-download {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    display: block;
    background: url("img/attachment_button.svg") no-repeat center;
    background-size: 32px 32px;
}

.attached-item img {
    max-width: 100%;
    display: block;
    border-radius: 3px;
}

.attached-item:hover .attached-item-overlay {
    display: block;
}

.attachment-item-file {
    /*position: absolute;*/
    /*top: 10px;*/
    /*left: 10px;*/
    /*display: inline-block;*/
    /*font-weight: 400;*/

    position: absolute;
    top: 25px;
    left: 7px;
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    cursor: default;
}

.attachment-item-size {
    position: absolute;
    top: 30px;
    left: 10px;
    display: inline-block;
}

.email-content-reply {
    position: relative;
    padding-top: 24px;
    text-align: right;
}

.email-content-reply .dropdown-sm {
    right: 10px;
}

.table-email-acc {
    width: 100%;
    border: 0;
    margin: 2px 2px;
    padding: 0;
    border-collapse: collapse;
    text-align: left;
}

.table-email-acc td {
    padding: 8px;
    overflow: auto;
}

.table-email-acc tr td:first-child,
.table-email-acc tr th:first-child {
    padding-left: 0 !important;
}

.table-email-acc tr td:last-child {
    font-size: 12px;
}

.table-email-list {
    width: calc(100% - 48px);
    border: 0;
    margin: 14px 14px;
    padding: 0;
    border-collapse: collapse;
    text-align: left;
}

.table-email-list td {
    padding: 8px;
    overflow: auto;
}

.table-email-list tr td:first-child,
.table-email-list tr th:first-child {
    padding-left: 24px;
}

.table-email-list tr td:nth-child(2) {
    /*min-width: 250px;*/
    /*font-weight: 400;*/
}

.table-email-list tr td:nth-child(4) {
    width: 24px;
}

.table-email-list tr td:nth-child(5) {
    text-align: center;
    font-size: 12px;
}

.email-unread {
/ / background: url("img/new_message.svg") no-repeat left 50 %;
/ / background-size: 16 px 12 px;
}

.email-read {
/ / background: url("img/read_message.svg") no-repeat left 50 %;
/ / background-size: 16 px 18 px;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap;
}

.email-list-more {
    width: 23px;
    height: 23px;
    margin-bottom: -3px;
    display: inline-block;
    background: url("img/list_actions.svg") no-repeat center center;
    background-size: 3px 15px;
}

.email-list-more:hover {
/ / background: url("img/list_actions_active.svg") no-repeat center center;
    background-size: 3px 15px;
}

.table-email-list .dropdown-sm {
    right: 34px;
}

.email-list-footer {
    padding: 10px 24px 14px 24px;
}

.email-list-footer .paginator {
    float: right;
}

.email-list-rows {
    position: relative;
    height: 30px;
    float: left;
    font-size: 18px;
    line-height: 30px;
}

.email-list-rows a {
    font-weight: 400;
}

.email-list-rows .dropdown-sm-light {
    text-align: center;
}

.email-list-rows .dropdown-sm-light a {
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.table-email-create,
.email-create-body {
    /*margin: 14px 24px;*/
}

.table-email-create {
    /*width: calc(100% - 48px);*/
    width: 100%;
}

.table-email-create td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.table-email-create tr td:first-child {
    width: 65px;
}

.email-create-body .input-textarea {
    height: 300px;
}

.column-wide {
    width: 100%;
    float: none;
}

.ui-selectmenu-button.ui-button {
    width: calc(100% + 8px);
    height: 60px;
    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 calc(var(--spacing-xxl) + 4px);
    box-shadow: var(--shadow-input-text);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-left: -4px;
}

.ui-selectmenu-icon {
    width: 28px;
    height: 28px;
    background: transparent url("img/arrow_down.svg") no-repeat 100% 50%;
    background-size: 10px 6px;
}

.ui-selectmenu-icon:hover {
/ / background: transparent url("img/arrow_down_active.svg") no-repeat 100 % 50 %;
    background: transparent url("img/arrow_down.svg") no-repeat 100% 50%;
    background-size: 10px 6px;
}


.ui-menu .ui-menu-item {
    /*min-height: 30px;*/
    padding: 0;
    line-height: 30px;
    overflow: hidden;

    /*new styles*/
    font-weight: 500;

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

.ui-menu .ui-menu-item:last-child {
    border: none;
}

.ui-datepicker th {
    font-weight: 300;
    font-size: 12px;
    color: #b5b5b5;
    text-transform: uppercase;
}

.ui-datepicker td {
    font-weight: 400;
    font-size: 12px;
}

.ui-datepicker-prev {
    background: url("img/arrow_left.svg") no-repeat center;
    background-size: 6px 10px;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev-hover {
    background: url("img/arrow_left_active.svg") no-repeat center;
    background-size: 6px 10px;
    top: 2px;
    left: 2px;
}

.ui-datepicker-next {
    background: url("img/arrow_right.svg") no-repeat center;
    background-size: 6px 10px;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next-hover {
    background: url("img/arrow_right_active.svg") no-repeat center;
    background-size: 6px 10px;
    top: 2px;
    right: 2px;
}

.print-logo {
    position: relative;
    width: 300px;
    height: 114px;
}

.print-name {
    position: absolute;
    color: #000000;
    width: 100%;
    top: 55px;
    left: 150px;
    font-family: 'Homenaje';
    font-size: 24pt;
}

#disclaimer_text {
    word-break: normal !important;
}

#amountto_text,
    /*#balance_text,*/
#balancedebit_text,
#balancecredit_text,
#balancesell_text,
#balancebuy_text,
currency_text {
    margin-top: 8px;
}

input.moneyFormat {
    font-weight: bold;
}

label.error {
    color: red;
}

.info {
    max-width: 300px;
    owerflow: auto;
    word-break: normal;
    white-space: pre-wrap !important;
}

.thread {
    background: url("img/thread.svg") no-repeat left;
    background-size: 18px 15px;
    padding-left: 22px !important;
    font-size: 12px;
}

.additional-logo {
    position: absolute;
    top: 14px;
    left: 45px;
}

.hide {
    display: none;
}

.tooltip {
    border-bottom: 1px dotted #0077AA;
    cursor: help;
}

/* :: OpenAPI page :: */
.open-api-tbl .-action {
    width: 124px;
    float: right;
}

.open-api-tbl .-action-td {
    width: 200px !important;
    text-align: right;

}

.open-api-tbl .-action-th {
    width: 200px !important;
    text-align: right;
}

.open-api-tbl .-action-td {
    width: 200px !important;
    display: block !important;
    text-align: right;
    float: right;
}

@media (max-width: 640px) {
    .open-api-tbl .-action {
        margin-top: 5px;
        float: inherit;
    }

    .open-api-tbl .-action-td {
        text-align: left;
        float: inherit;
    }

    .open-api-tbl tr td:first-child {
        padding-left: 0 !important;
    }
}

/* dropdown-owner */
.switch-owner {
    margin-bottom: 20px;
}

.switchAccount ._title {
    /*color: #566fe0;*/
}

.OwnerSwitch:before, .OwnerSwitch:after {
    content: unset !important;
}

.switch-owner {
    width: 100%;
    display: inline-flex;
    align-items: center;
    color: black;
}

.switch-owner .header-user-name {
    height: 13px;

    margin-left: 0;
    padding: 7px 0 7px 0;
    display: inline-block;
    background: none;
}

.dropdown-owner {
    display: inline-flex;
}

.dropdown-owner .ui-selectmenu-button {
    color: white;
}

.switch-owner .ui-selectmenu-icon {
    width: 28px;
    height: 28px;
    background: transparent url("img/arrow_down_active2.svg") no-repeat 100% 50%;
    background-size: 10px 6px;
}

.switch-owner .ui-selectmenu-icon:hover {
    background: transparent url("img/arrow_down_active2.svg") no-repeat 100% 50%;
    background-size: 10px 6px;
}

.hidden {
    display: none !important;
}

.switchAccount.ui-dropdown-field {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    z-index: 100;
    width: 100%;
    background-color: transparent;
}

.switchAccount.ui-dropdown-field .dropdown-toggle {

    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;

    padding: 0;
    position: relative;
    margin: 0;
    line-height: 30px;
    height: 30px;
    /*border-bottom: solid 1px rgba(51, 167, 165, 0.38);*/
    transition: all 250ms ease 0s;

    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 400;
    /*color: #33A7A5;*/

    border: none;
    border-radius: 0;
    border-bottom: solid 1px;
    background-color: unset;
}

.switchAccount.ui-dropdown-field .dropdown-toggle:hover {
    /*border-bottom: solid 1px #33A7A5;*/
}

.switchAccount.ui-dropdown-field .dropdown-toggle:hover .ico {
    opacity: 1;
}

.switchAccount.ui-dropdown-field .dropdown-menu {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 24;
    display: none;

    margin-top: -1px;
    padding: 0;
    background: #ffffff;
    color: #000000;
    font-size: 13px;

    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;
}

.switchAccount.ui-dropdown-field.open {
    z-index: 101;
}

.switchAccount .dropdown-menu.open {
    display: flex;
    width: 100%;
}

.rs-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    color: black;

    height: 30px;
    padding: 0 10px;
    line-height: 30px;
    overflow: hidden;
}

.rs-link.selected {
    /*background-color: #566fe0;*/
    /*color: #ffffff;*/
    opacity: var(--opacity-active);
}

.rs-link:hover {
    /*background-color: rgba(86, 111, 224, 0.09);*/
    /*color: #566fe0;*/
    opacity: var(--opacity-hover);
}

.switchAccount.ui-dropdown-field .dropdown-toggle .ico {
    position: absolute;
    right: 5px;
    top: 11px;
    opacity: .5;
    z-index: 1001;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

.ico.caret-default {
    width: 12px;
    height: 7px;
    background-image: url('img/arrow_down_white.svg');
}

.switchAccount.ui-dropdown-field.open .dropdown-toggle .ico {
    opacity: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -9px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--input-background-color);
    border: 2px solid var(--border-color);
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--primary-contrast-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.table-onboarding-list {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

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

.table-onboarding-list th {
    white-space: nowrap;
    text-align: left;
}

.table-onboarding-list tr th:last-child, .table-onboarding-list tr td:last-child {
    text-align: center;
}

.table-onboarding-list td, .table-onboarding-list th {
    padding-top: 8px;
    padding-bottom: 8px;
    overflow: auto;
}


/* *** NEW GEMBA STYLES *** */
.table-buttons {
    width: 100%;
}

.form-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-new-input label {
    margin-bottom: var(--spacing-sm);
}

.form-new-input {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 24px;*/
}

.form-new-footer {
    margin-top: 32px;
}

/*code form*/

.content-code-form .box.box-code-form {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 24px 0;
}

.form-new.form-code {
    width: 100%;
}

/*statement screen*/

.account-search-form {
    margin-bottom: 6em;
}

.account-search-form-period {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);

    @media screen and (min-width: 768px) {
        align-items: flex-end;
        flex-direction: row;
    }
}

.account-search-form-period .account-search-form-period-select {
    flex: 1;
}

.account-search-form .form-new-footer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);

    @media screen and (min-width: 768px) {
        flex-direction: row;
    }
}

/*statement screen - table*/
.statement-grid {
    max-width: 100vw;
    overflow: scroll;
}

.table-list-new-gemba {
    width: 100%;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

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

.table-list-new-gemba th {
    padding: 6px 6px 14px 6px;
    white-space: nowrap;
    text-align: left;
    color: var(--text-secondary-color);
    font-weight: 300;
    margin-bottom: 0;
    font-size: 0.8em;
}

.table-list-new-gemba td {
    /*padding: 20px 6px;*/
    padding: 20px 12px;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-main-color);
    box-sizing: border-box;
}

.table-list-new-gemba td.accent {
    color: var(--text-main-color);
}

.table-draft-list.table-list-new-gemba tr th:nth-child(3) {
    text-align: left;
}

.table-draft-list.table-list-new-gemba tr td:nth-child(7) {
    width: 100px;
}

/*table debbit styles*/
@media all and (min-width: 1201px) {
    .table-draft-list tr td:nth-child(5),
    .table-draft-list tr th:nth-child(6) {
        text-align: center !important;
    }
}

@media all and (max-width: 1200px) {
    .table-collapse.table-list-new-gemba-debbit tr {
        padding: 8px 0;

        display: flex;
        flex-wrap: wrap;
    }

    .table-collapse.table-list-new-gemba-debbit tr th {
        display: none !important;
    }

    .table-collapse.table-list-new-gemba-debbit tr td {
        padding: 0 !important;
        text-align: left !important;
        margin-bottom: 8px;
        font-size: 16px;

        width: 100% !important;
    }

    .table-collapse.table-list-new-gemba-debbit tr td.amount {
        font-weight: 700;
    }

    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(1),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(2),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(4),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(5),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(7),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(8) {
        width: 50% !important;
    }

    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(2),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(5),
    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(8) {
        text-align: right !important;
    }

    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(4) {
        text-align: left !important;
    }

    .table-collapse.table-list-new-gemba-debbit tr td:nth-child(6) {
        text-align: left !important;
        font-size: 18px;
    }
}

/*table referals mob styles*/
.table-list-new-gemba-referals-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 0;

    border-bottom: 1px solid #E8E8E8;

    @media all and (min-width: 1201px) {
        /*padding: 28px 54px 28px 28px;*/
        padding: 20px 0;
    }
}

.table-collapse.table-list-new-gemba-referals tr th:nth-child(2) {
    text-align: left !important;
}

.table-collapse.table-list-new-gemba-referals tr td:nth-child(4),
.table-collapse.table-list-new-gemba-referals tr th:nth-child(4) {
    text-align: center !important;
}

.table-collapse.table-list-new-gemba-referals tr td:nth-child(2) {
    font-weight: 500;
}

.table-collapse.table-list-new-gemba-referals tr td:nth-child(5) {
    text-align: right !important;
}

@media all and (min-width: 1201px) {
    .table-collapse.table-list-new-gemba-referals tr th:nth-child(2),
    .table-collapse.table-list-new-gemba-referals tr td:nth-child(2) {
        width: auto;
    }

}

@media all and (max-width: 1200px) {
    .table-collapse.table-list-new-gemba-referals tr td:nth-child(1):not(.empty.not-found) {
        width: 0 !important;
    }

    .table-collapse.table-list-new-gemba-referals tr td:nth-child(4),
    .table-collapse.table-list-new-gemba-referals tr td:nth-child(2) {
        text-align: left !important;
    }

    .table-collapse.table-list-new-gemba-referals tr td:nth-child(4),
    .table-collapse.table-list-new-gemba-referals tr td:nth-child(5) {
        margin-bottom: 0;
    }
}

/*table referals onboarding styles*/
/*.table-list-new-gemba-onboarding {*/
/**/
/*}*/

@media all and (min-width: 1201px) {
    .table-collapse.table-list-new-gemba-onboarding tr th:nth-child(5),
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(5) {
        text-align: left !important;
    }

    .table-collapse.table-list-new-gemba-onboarding tr th:first-child,
    .table-collapse.table-list-new-gemba-onboarding tr td:first-child {
        padding: 6px 6px 14px 6px !important;
    }
}

@media all and (max-width: 1200px) {
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(1),
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(3),
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(6) {
        width: 50% !important;
    }

    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(7) {
        width: 100% !important;
        margin-bottom: 0;
    }

    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(2),
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(4),
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(6),
    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(7) {
        text-align: right !important;
    }

    .table-collapse.table-list-new-gemba-onboarding tr td:nth-child(5) {
        text-align: left !important;
    }
}

/*table template mob styles*/
@media all and (max-width: 1200px) {
    .table-collapse.table-list-new-gemba--template tr:first-child { /*this is thead */
        display: none !important;
    }

    .table-collapse.table-list-new-gemba--template tr {
        padding: 8px 0;

        display: flex;
        flex-wrap: wrap;
    }

    .table-collapse.table-list-new-gemba--template tr td {
        padding: 8px 0;

        width: 100% !important;
    }

    .table-collapse.table-list-new-gemba--template tr td:nth-child(1) {
        padding: 0 !important;
    }

    .table-collapse.table-list-new-gemba--template tr td:nth-child(2) {
        width: 80% !important;
    }

    .table-collapse.table-list-new-gemba--template tr td:nth-child(3) {
        width: 1% !important;
    }

    .table-collapse.table-list-new-gemba--template tr td:nth-child(4) {
        width: 19% !important;
        text-align: right !important;
    }
}

/*table-statement styles*/
.table-list-new-gemba.table-statement-new-gemba td {
    max-width: 150px;
}

/*message section styles*/
.new-mail-button {
    @media all and (min-width: 768px) {
        max-width: 200px;
        margin-left: auto;
    }
}

/*table-email-widget styles*/
.table-email-acc-new-gemba {

}


/*table-transaction-widget styles*/

.table-transactions-new-gemba {
    @media all and (min-width: 641px) {
        border-radius: 8px;
        overflow: hidden;

        box-shadow: 0 2px 10px rgba(38, 51, 77, 0.05);
    }
}

.table-transactions-new-gemba .date-time {
    display: flex;
    justify-content: left;
    gap: 8px;

    @media all and (min-width: 641px) {
        justify-content: center;
    }
}

.table-transactions-new-gemba .date-time .email-list-time {
    color: var(--text-main-color);
    font-weight: 400;
    /*background-color: var(--color-white);*/
    font-size: 14px;
}

.table-transactions.table-transactions-new-gemba tr {
    padding: 16px 0;

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

    @media all and (min-width: 641px) {
        /*display: table-row;*/
    }
}

.table-transactions-new-gemba th {
    color: var(--text-secondary-color);
    font-weight: 500;
    margin-bottom: 0;
    padding: 24px;
    background-color: var(--color-white);
}

.table-transactions-new-gemba tr:nth-child(1) {
    border-top: none;
}

.table-transactions-new-gemba tr:nth-child(2) {
    border-top: none;

    @media all and (min-width: 641px) {
        border-top: 1px solid var(--border-color);
    }
}

.table-transactions-new-gemba tr:last-child {
    border-bottom: none;
}

.table-transactions-new-gemba tr td {
    font-size: 14px;
    font-weight: 500;

    @media all and (min-width: 641px) {
        color: var(--text-secondary-color);
        font-weight: 500;
        margin-bottom: 0;
        padding-top: 24px;
        padding-bottom: 24px;

        background-color: var(--color-white);
    }
}

.table-transactions-new-gemba tr td:first-child {
    @media all and (min-width: 641px) {
        padding-left: 24px;
    }
}

.table-transactions-new-gemba tr td:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-main-color);

    @media all and (min-width: 641px) {
        padding-right: 24px;
    }
}

/*table-email styles*/
.table-items-list-new-gemba.table-email-list {
    line-height: normal;
    color: var(--text-main-color);
    font-weight: 500;

    box-sizing: border-box;
    margin: 0;

    @media all and (min-width: 641px) {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;

        box-shadow: 0 2px 10px rgba(38, 51, 77, 0.05);
    }
}

.table-items-list-new-gemba.table-email-list tr:first-child {
    padding: 0;
    display: none;

    @media all and (min-width: 641px) {
        display: table-row;
    }
}

.table-items-list-new-gemba.table-email-list th {
    display: none;

    @media all and (min-width: 641px) {
        color: var(--text-secondary-color);
        font-weight: 500;
        display: table-cell;
        margin-bottom: 0;
        padding-top: 24px;
        padding-bottom: 24px;

        background-color: var(--color-white);
    }
}

.table-items-list-new-gemba.table-email-list th:last-child {
    text-align: end;
    padding-right: 24px;
}

.table-items-list-new-gemba.table-email-list tr {
    display: flex;
    flex-wrap: wrap;

    padding: 16px 0;
    /*width: 99%;*/

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

    @media all and (min-width: 641px) {
        display: table-row;
    }
}

.table-items-list-new-gemba.table-email-list tr:first-child {
    @media all and (min-width: 641px) {
        border-top: none;
    }
}

.table-items-list-new-gemba.table-email-list tr:last-child {
    border-bottom: none;
}

.table-items-list-new-gemba.table-email-list tr:nth-child(2) {
    border-top: none;
}

.table-items-list-new-gemba.table-email-list tr td {
    margin-bottom: 12px;

    @media all and (min-width: 641px) {
        margin-bottom: 0;
        padding-top: 24px;
        padding-bottom: 24px;

        background-color: var(--color-white);
    }
}

.table-items-list-new-gemba.table-email-list .email-list-time, .table-items-list-new-gemba.table-email-list tr td {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary-color);
}

.table-items-list-new-gemba.table-email-list tr td:first-child {
    color: var(--text-main-color);
}


.table-items-list-new-gemba.table-email-list tr td.empty-cell {
    margin-bottom: 0;
    width: 100%;

    @media all and (min-width: 641px) {
        padding: 0;
        width: 0;
    }
}

.table-items-list-new-gemba.table-email-list tr td:first-child {
    font-weight: 700;

    @media all and (max-width: 640px) {
        padding: 0;
    }
}

.table-items-list-new-gemba.table-email-list tr td:nth-child(1),
.table-items-list-new-gemba.table-email-list tr td:nth-child(2) {
    @media all and (max-width: 640px) {
        width: 50%;
    }
}

.table-items-list-new-gemba.table-email-list tr td:nth-child(1) {
    margin-right: auto;
    box-sizing: border-box;

    @media all and (min-width: 641px) {
        margin-right: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
    }

    @media all and (min-width: 1200px) {
        max-width: 50px;
    }
}

.table-items-list-new-gemba.table-email-list tr td:nth-child(3) {
    width: 100%;
    @media all and (min-width: 641px) {
        width: auto;
    }
}

.table-items-list-new-gemba.table-email-list tr td.thread {
    min-width: unset;
    width: 30px;
    text-align: center !important;
}

.table-items-list-new-gemba.table-email-list tr td:nth-child(2):not(.thread) {
    margin-bottom: 0;
}

.table-items-list-new-gemba.table-email-list tr td:nth-child(5) {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 0;

    @media all and (min-width: 641px) {
        flex-direction: column;
        gap: 4px;
        /*max-width: 100px;*/
        align-items: end;
        padding-right: 24px;
    }
}

/*single message page*/

.content-email-single.content-email-single-new-gemba .box-title h3,
.content-email-single.content-email-single-new-gemba .table-email-create h3 {
    padding: 0;

    font-size: 21px;
    font-weight: 700;
}

.content-email-single.content-email-single-new-gemba .box-content {
    padding: 0;
    border: none;
}

.content-email-single.content-email-single-new-gemba .box-email {
    margin-top: 56px;
}

.content-email-single.content-email-single-new-gemba .table-add-reply .data-line {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-email-single.content-email-single-new-gemba .table-add-reply tr td {
    width: 100%;
}

.content-email-single.content-email-single-new-gemba .table-add-reply tr td.attached-files {
    padding: 24px 0;

    @media all and (min-width: 640px) {
        width: 50%;
        margin-left: auto;
    }
}

.content-email-single.content-email-single-new-gemba .table-add-reply tr td.buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media all and (min-width: 640px) {
        flex-direction: row;
        width: 100%;
        justify-content: end;
    }
}

.content-email-single.content-email-single-new-gemba .table-add-reply tr td.buttons-wrapper .button-primary {
    min-width: 200px;
}

.email-info-new-gemba {
    margin-bottom: 12px;
    padding: 8px 16px;

    background-color: var(--input-background-color);

    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(38, 51, 77, 0.05);
}

.email-info-new-gemba .email-info-new-gemba {
    padding: 8px 8px 8px 16px;
    margin-left: 8px;
    margin-bottom: 16px;
    box-shadow: none;
    border-radius: 0;
    border-left: 1px solid var(--border-color);
}

.email-info-new-gemba .email-info.table-collapse {
    border: none;
}

.email-info-new-gemba .email-info.table-collapse tr {
    display: flex;
    flex-wrap: wrap;

    width: 100%;
    padding: 0;
}

.email-info-new-gemba .email-info.table-collapse td {
    width: 100%;
}

.email-info-new-gemba .email-info.table-collapse td:nth-child(2),
.email-info-new-gemba .email-info.table-collapse td:nth-child(3) {
    width: 49%;
}

.email-info-new-gemba .email-info.table-collapse td:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-info-new-gemba .email-info.table-collapse td:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.email-info-new-gemba .email-info.table-collapse .email-info-date,
.email-info-new-gemba .email-info.table-collapse .email-info-time {
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}

.email-info-new-gemba .email-info.table-collapse .email-info-avatar {
    margin-right: 0;
}

.email-info-new-gemba .email-info.table-collapse .email-info-from {
    font-weight: 700;
}

.email-info-new-gemba .email-content p {
    @media all and (min-width: 640px) {
        margin-top: 24px;
    }
}

/*table badges*/

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 4px 12px;

    font-size: 10px;
    font-weight: 700;
    background-color: var(--secondary-color);
    color: var(--primary-color);

    border-radius: 12px;
}

.badge--new {
    background-color: var(--primary-color);
    color: #ffffff;
}

.badge--sent {
    background-color: var(--success-color);
    color: #ffffff;
}

.badge--in-process, .badge--awaiting-signatures {
    background-color: rgba(46, 230, 202, 0.1);
    color: #2EE6CA;
}

.badge--active, .badge--executed, .badge--completed {
    background-color: rgba(41, 204, 57, 0.1);
    color: var(--success-color);
}

/*.badge--application-under-review*/
.badge--unpaid, .badge--draft {
    background-color: rgba(242, 190, 36, 0.1);
    color: var(--warning-color);
}

/*.badge--completed {*/
/*    background-color: #007bff;*/
/*    color: #fff;*/
/*}*/

.badge--canceled {
    background-color: rgba(64, 85, 128, 0.1);
    color: var(--text-main-color);
}

.badge--rejected {
    background-color: rgba(230, 69, 69, 0.1);
    color: var(--danger-color);
}


/*form table accounts styles*/
.table-accounts-new-gemba tr td.amount:last-child,
.table-accounts-new-gemba th:last-child {
    padding-right: 24px;
}

#search-form {
    margin-bottom: 4em;
}

.table-accounts-new-gemba th:first-child {
    padding-left: 24px;
}

/*form table custom styles*/
.table-new-gemba, .table-buttons-new-gemba, .content-email-single-new-gemba {
    @media (min-width: 1200px) {
        padding-right: 0;
    }
}

.table-new-gemba--bulk .table-buttons-new-gemba {
    padding-right: 0 !important;
}

.design.table-new-gemba .data-line .input-label {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.design.table-new-gemba .data-line .input-text {
    margin: var(--spacing-sm) 0;
}

.table-new-gemba tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.table-new-gemba .data-block-title:not(:first-child) {
    width: 100%;
    padding-top: 3em;
}

.table-new-gemba .data-line {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.table-new-gemba .data-line.auto-width {
    width: auto;
    flex: 1;
}

.table-new-gemba .data-line .labelStandart {
    width: 100%;
    text-align: left;
}

.table-new-gemba .data-line .i-two {
    width: 100%;
}

.table-new-gemba .data-line {
    /*position: relative;*/
}

.table-new-gemba .data-line .tooltip {
    position: absolute;
    bottom: 17px;
    right: 15px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--secondary-color);
    border-radius: 50%;

    padding: 0;
    overflow: visible;

    @media (min-width: 640px) {
        bottom: 24px;
    }
}

.table-new-gemba .data-line.data-line-checkbox {
    flex-direction: row;
    align-items: center;
}

.table-new-gemba .data-line.data-line-checkbox .labelStandart {
    width: auto !important;
    margin: 0;
    margin-right: 14px;

    @media (min-width: 768px) {
        width: auto;
    }
}

.table-new-gemba .data-line.data-line-checkbox .i-two {
    width: auto;
    padding: 0;
    margin: 0;
}

.table-new-gemba .data-line .alt.error.prepend-1 {
    position: absolute;
    bottom: 7px;
    left: 30px;
}

.table-new-gemba .data-line .button--sms {
    position: absolute;
    max-width: 100px;
    bottom: 21px;
    right: 30px;
}

.table-new-gemba .data-line .app-label {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary-color) !important;

    @media (min-width: 768px) {
        width: 100% !important;
        min-width: 170px;
    }
}

.table-new-gemba .data-line.full-width-app-label .app-label {
    width: 100% !important;
}

.table-new-gemba .data-line .input-group {
    position: relative;
}

.table-new-gemba .attachment-button-wrapper {
    display: flex;
    justify-content: end;
    gap: 12px;
}

.table-new-gemba .signed-files-list {
    @media (min-width: 768px) {
        width: 50%;
        margin-left: auto;
        margin-bottom: 24px;
    }
}

.table-new-gemba .attachment-button-wrapper .table-buttons-new-gemba {
    width: auto;
    padding: 0;
}

.table-new-gemba .attachment-button-wrapper .table-buttons-new-gemba tr td,
.table-new-gemba .attachment-button-wrapper .table-buttons-new-gemba tr {
    padding: 0;
    margin: 0;
}

.table-new-gemba .data-line .input-group .input-amount,
.table-new-gemba .data-line .input-group .input-debitaccountid,
.table-new-gemba .data-line .input-group .input-currtoby.col-1,
.table-new-gemba .data-line .input-group .input-currtosale.col-1 {
    width: 100%;
}

.table-new-gemba .data-line .input-group .input-balancebuy,
.table-new-gemba .data-line .input-group .input-balancesell {
    position: absolute;
    top: 0;
    right: 50px;

    padding: 0;
    width: auto;
}

.table-new-gemba .data-line .input-group .input-balancebuy .app-label,
.table-new-gemba .data-line .input-group .input-balancesell .app-label {
    margin: 0 !important;

    min-width: auto;
    padding: 0;

    background: transparent;
    box-shadow: none;
}

.table-new-gemba .data-line .input-group .input-debitaccountid .ui-selectmenu-button.ui-button .ui-selectmenu-text {
    max-width: 60%;
}

.ui-selectmenu-text {
    margin-right: 0;
}

/*here*/
.table-new-gemba .data-line .input-group .input-currencyid,
.table-new-gemba .data-line .input-group .input-currency {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    width: auto;
}

.table-new-gemba .data-line .input-group .input-currencyid .ui-selectmenu-button.ui-button {
    box-shadow: none;
    border: none;
    background: transparent;
}

.table-new-gemba .data-line .input-group .input-balance {
    position: absolute;
    width: auto;
    margin: 0;

    right: 45px;
    top: 4px;

    @media (min-width: 768px) {
        top: 0;
        right: 55px;
    }
}

.table-new-gemba .data-line .input-group .input-currency .app-label,
.table-new-gemba .data-line .input-group .input-currencyid .app-label {
    box-shadow: none;
    border: none;
    justify-content: right;
    background: transparent;

    padding-right: 60px;
}

.table-new-gemba .data-line .input-group .input-balance .app-label {
    box-shadow: none;
    border: none;
    justify-content: right;
    background: transparent;
    min-width: auto;
    padding: 0;
}

.table-new-gemba .error-status {
    position: absolute;
    bottom: 10px;
    left: 0;
}

.table-new-gemba .extbankswift-validation-status, .table-new-gemba .intbankswift-validation-status {
    position: absolute;
    right: -30px;
    top: 20px;
}

.table-new-gemba .input-group.input-group--period {
    display: flex;
    flex-direction: column;

    @media all and (min-width: 641px) {
        flex-direction: row;
    }
}

.table-new-gemba .flex-row {
    display: flex;
    gap: var(--spacing-sm);
}

.table-pager-new-gemba {
    padding-top: 36px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/*wrapper for pure buttons footer, without table*/
.no-table-footer-new-gemba {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 32px;

    @media all and (min-width: 768px) {
        flex-direction: row;
        justify-content: flex-end;
    }
}

.no-table-footer-new-gemba .button-primary,
.no-table-footer-new-gemba .button {
    width: auto;
}

.table-buttons-new-gemba {
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-buttons-new-gemba tbody tr {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-sm);
    /*flex-wrap: wrap;*/
}

.table-buttons-new-gemba.table-buttons-new-gemba--flex-right {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.table-buttons-new-gemba .table-button-wrapper-new-gemba {
    width: 100%;

    @media all and (min-width: 768px) {
        width: unset;
    }
}

.table-buttons-new-gemba.table-buttons-new-gemba--spacing-md {
    padding-top: 36px;
    padding-bottom: 56px;
}

.txt {
    margin-top: 87px;
    width: 90%;
    color: var(--text-main-color);
    opacity: 1;
}

.txt .h1 {
    font-size: 36px;
    line-height: 60px;
    font-weight: 700;
}

.txt .h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.txt .h3 {
    font-size: 22px;
    font-weight: 500;
}

.txt .p1, .txt p {
    font-size: 16px;
    line-height: 24px;
    margin: 8px 0;
}

.txt .p2 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0 10px;
}

.txt .p3 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0 20px;
}

.txt .g {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
}

.txt .f {
    font-size: 6pt;
    float: right;
    text-align: right;
}

.warning-screen {
    color: var(--text-main-color);
    padding: 20px;
    @media all and (min-width: 976px) {
        padding: 80px 120px;
    }
}

.warning-screen .warning-screen-heading {
    text-align: center;
}

.warning-screen .warning-screen-heading .warning-screen-heading-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: var(--text-main-color);
}

.warning-screen .warning-screen-heading .warning-screen-heading-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-main-color);
    margin-top: 48px;
}

.warning-screen .warning-screen-body {
    padding: 32px 0 56px 0;
}

.warning-screen .warning-screen-body .input-text,
.warning-screen .warning-screen-body .input-label {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

@media all and (min-width: 976px) {
    .warning-screen .warning-screen-body,
    .warning-screen .warning-screen-footer {
        max-width: 400px;
        margin: 0 auto;
    }
}

/*OTP screen*/
.content-otp {

}

.content-otp .content-otp-section {
    padding: 16px 0;
}

.content-otp .content-otp-section .checkbox-container {
    padding: 0;
}

.content-otp .content-otp-section .checkbox-container .checkmark {
    top: 6px;
    left: -8px;
}

.content-otp .content-otp-section--flex-end {
    display: flex;
    justify-content: flex-end;
}

.content-otp .qr-wrapper {
    display: flex;
    align-items: center;

    flex-wrap: wrap;
}

.content-otp .qr-wrapper-left, .content-otp .qr-wrapper-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;

    padding: 8px;
    box-sizing: border-box;

    @media all and (min-width: 768px) {
        padding: 16px;
    }
}

.content-otp .qr-wrapper-right {
    align-items: flex-start;
}

.content-otp .content-otp-footer {
    padding-top: 32px;

    @media all and (min-width: 768px) {
        padding-top: 48px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/*White Labeling*/

.design-colors {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.design-colors-block.design-colors-block--left {
    order: 1;
}

.design-colors-footer {
    display: flex;
    flex-direction: column;
    gap: 48px;

    order: 2;
}

.design-colors-presets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.design-colors-footer .design-colors-presets .checkmark {
    top: 0;
}

.design-colors-block.design-colors-block--right {
    order: 3;
}

@media all and (min-width: 920px) {
    .design-colors {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .design-colors-block {
    }

    .design-colors-block.design-colors-block--left {
        width: calc(55% - 24px);
        order: 1;
    }

    .design-colors-block.design-colors-block--right {
        width: 45%;
        order: 2;
    }

    .design-colors-footer {
        width: 100%;
        order: 3;

        /*flex-direction: row;*/
        align-items: center;
        /*justify-content: space-between;*/
        gap: 12px;
    }

    .design-colors-footer .design-colors-presets {
        /*flex-direction: row;*/
        /*align-items: center;*/
        padding-bottom: 24px;
        gap: 12px;
        flex: 1;

        /*min-width: 450px;*/
        /*justify-content: flex-end;*/
        width: 100%;
    }

    .design-colors-footer .design-colors-section-buttons {
        /*max-width: 200px;*/
    }
}

.design-colors-title, .cards-heading {
    margin-bottom: 24px;
}

.design-colors-section, .cards-section {
    padding: 24px 0;
}

.design-colors-section-buttons .input-text-note {
    width: 100%;
    text-align: right;
    display: inline-block;
}

.design-colors-section-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

    align-items: flex-start;
    padding: 24px 0;

    @media all and (min-width: 920px) {
        justify-content: flex-end;
    }
}

.design-colors-section-buttons .button,
.design-colors-section-buttons .button-primary {
    @media all and (min-width: 920px) {
        width: auto;
    }
}

.design-colors-load-presets {
    display: flex;
    flex-direction: column;

    gap: 24px;

    @media all and (min-width: 920px) {
        align-items: flex-end;
    }
}

.design-colors-load-presets .button-primary {
    width: auto;
}

.design-colors-presets {
}

.design-colors-presets .checkbox-container {
    margin-left: 16px;
    min-width: 100px;
}

.design-colors-presets .design-colors-preset-input-container {
    width: 100%;
    margin-top: 0;
}

.design-colors-pickers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

    @media all and (min-width: 700px) {
        grid-template-columns: 1fr 1fr;
    }

    @media all and (min-width: 920px) {
        grid-template-columns: 1fr;
    }

    @media all and (min-width: 1440px) {
        grid-template-columns: 1fr 1fr;
    }
}

.design-colors-pickers.design-colors-pickers--short {
    /*flex-direction: row;*/
    /*gap: 24px;*/
}


.color-picker-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary-color);
}

input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background: none;

    box-shadow: 4px 3px 15px -4px rgba(0, 0, 0, 0.1);
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
}

input[type="color"]:hover {
    opacity: 0.8;
}


.design-input-textarea {
    min-height: 150px;
    width: 100%;

    border-color: transparent;
    background-color: var(--input-background-color);
    box-shadow: var(--shadow-input-text);
}

.design-sizes-input {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 12px;
}

.hint-text {
    width: 100%;
    text-align: right;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
}

.cards {

}

.cards-account {
    margin-bottom: 48px;
}

.cards-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media all and (min-width: 640px) {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }
}

.cards-account .button-primary:not(h1):not(h2):not(h3), .cards-heading .button-primary:not(h1):not(h2):not(h3) {
    @media all and (min-width: 640px) {
        width: auto;
    }
}

.cards-account-header {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

    margin-top: 48px;
    margin-bottom: 64px;

    @media all and (min-width: 640px) {
        flex-direction: row;
    }
}

.cards-account-left {
    width: 100%;
    max-width: 400px;

    padding: 24px 24px 24px 0;
    border-radius: 16px;
    background: white;

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

.cards-account-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;

    @media all and (min-width: 640px) {
        width: unset;
    }
}

.cards-account-header, .cards-account-body {
    display: flex;
    justify-content: space-between;
}

.cards-account-row {
    padding: 8px 0;
    justify-content: space-between;
}

.card-status, .cards-account-status, .cards-account-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cards-account-list-item {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.cards-account-list-item:first-child {
    border-top: none;
}

.cards-account-list-item:last-child {
    border-bottom: none;
}

.cards-account-username {
    margin-right: auto;
}

.cards-list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr 1fr;*/

    gap: 24px;
}

.card {
    padding: 24px;
    border-radius: 16px;
    box-sizing: border-box;
    width: 100%;

    background-color: var(--color-white);
    /*background-color: var(--primary-color);*/
    /*color: var(--color-white);*/
    border: 1px solid var(--border-color);

    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);

    @media all and (min-width: 768px) {
        width: calc(50% - 12px); /*minus gap / 2*/
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;

    margin-bottom: 32px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    gap: 12px;

    @media all and (min-width: 768px) and (max-width: 1199px) {
        gap: 16px;
    }
    @media all and (min-width: 1199px) {
        flex-direction: row;
        gap: 24px;
    }
}

.card-footer-right {
    @media all and (min-width: 1199px) {
        align-items: flex-end;
    }
}

.card-footer-left, .card-footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card .card-name {
    text-transform: uppercase;
    font-weight: 500;
}

.card-number {

}

.card-action {
    font-size: 14px;
}

.card-action-suspend {
    margin-left: auto;
}

/*.cards-account-edit {*/
/*}*/

/*.cards-account-issue {*/
/*}*/


.card-limits {
    display: flex;
    flex-direction: column;
    gap: 4px;

    font-size: 14px;

    @media all and (min-width: 768px) and (max-width: 1199px) {
        width: 100%;
    }
}

.card-limits-header {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    font-weight: 500;
}

.card-limits-link {
    font-size: 14px;
    cursor: pointer;
}

.card-limits-body {
    display: flex;
    gap: 4px;
}

.card-pin {
    margin-left: 10px;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-sm);
    padding: 5px;
    height: 25px;
    font-size: 14px;
    text-align: center;
    width: 60px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

.card-number-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

/*wl-covers*/
body .content-section .box {
    background-color: transparent !important;
}

h1.button-primary, h2.button-primary, h3.button-primary {
    background-color: transparent !important;
    color: inherit !important;
}

/*DOMAIN*/

.table-new-gemba.domain {
    width: 100%;
}

.txt-text {
    /*font-size: 16px;*/
}

.domain-sub-title {
    margin: 12px 0;
    display: inline-block;
    font-size: 16px;
}

.data-line-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.data-line-flex-wrapper .domain-sub-title {
    width: 100%;
}

.data-line-flex-wrapper .data-line {
    flex: 1;
}

.data-line-flex-wrapper .data-line .input-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 54px;
}

.content-select-client {
    margin: 0 auto;
    max-width: 600px;
}

.content-select-client .form-new {
    gap: 0;
}

.content-select-client .form-new-footer {
    margin-top: 0;
}


@media all and (min-width: 920px) {
    .design-files-wrapper {
        display: flex;
        gap: 48px;
    }

    .design-files-form {
        width: calc(50% - 24px);
    }

    .design-files-form--logo {
        width: 70%;
    }

    .design-sizes-section {
        display: flex;
        gap: 24px;
    }

    .design-sizes-input {
    }

    .design-sizes-input-wrapper {

    }

    .design-links-fields .fields-remove.button {
        background-color: transparent !important;
        border: none !important;
    }
}

.table-cardsmanagement-list {
    width: 100%;
}

.table-cardsmanagement-list th {
    display: none;
    @media all and (min-width: 1440px) {
        display: table-cell;
        padding: 6px 6px 14px 6px;
        white-space: nowrap;
        text-align: left;
        color: var(--text-secondary-color);
        font-weight: 300;
        margin-bottom: 0;
        font-size: 0.8em;
    }
}

.table-cardsmanagement-list tr {
    display: flex;
    flex-direction: column;
    padding: 20px 12px;
    border-bottom: 1px solid var(--border-color);

    @media all and (min-width: 1440px) {
        display: table-row;
    }
}

.table-cardsmanagement-list td {
    overflow: hidden;
    font-size: 14px;
    color: var(--text-main-color);
    box-sizing: border-box;
    @media all and (min-width: 1440px) {
        padding: 12px 4px;
    }
}