* {
    outline: 0;
}

body {
    overflow-x: hidden;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-main-color);
    font-weight: 400;
}

.content-section ul {
    list-style: none;
    padding-left: 36px;
    position: relative;
}

.content-section ul li {
    margin-bottom: 1em;
}

.content-section ul li:last-child {
    margin-bottom: 0;
}

.content-section ul li::before {
    content: "\2014";
    position: absolute;
    left: 12px;
    color: var(--primary-color);
}

.content-section ol {
    list-style: decimal;
    padding-left: 36px;
}

.content-section ol li {
    margin-bottom: 0.4em;
    position: relative;
    padding-left: 10px; /* Отступ между маркером и текстом */
}

.content-section ol li:last-child {
    margin-bottom: 0;
}

.content-section ol li::marker {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px; /* Отступ от маркера */
}

/* Явно указываем стили для вложенных списков с буквами */
.content-section ol ol {
    list-style-type: lower-alpha; /* Используем нижние буквы для вложенных списков */
    padding-left: 20px; /* Отступ для вложенного списка */
}

.content-section ol ol li {
    margin-bottom: 0;
    margin-top: 0.4em;
    padding-left: 0; /* Убираем отступ для элементов вложенных списков */
}

.content-section ol ol li::marker {
    color: var(--primary-color);
}



.content-section ul.pager li::before {
    display: none;
}

.content-section .dropdown-sm ul {
    padding-left: 0;
}

.content-section .dropdown-sm ul li::before {
    display: none;
}

em {
    font-style: normal;
}

.navigation-wrapper {
    /*bottom: 10px;*/
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 100vh;

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

.card-name {
    font-weight: bolder;
}

.account-number {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #515151;
}


/* :: Main left menu :: */

.menu {
    /*margin: 105px 5px 0 0;*/
    /*padding: 32px 0 56px 0;*/
    padding: 32px 0 156px 0;
    max-width: var(--nav-bar-width);
}

.menu ul {
    margin: 0;
    padding: 0;
    transition: all 450ms ease 0s;
}

.menu li {
    margin: 0;
    /*padding: 0 20px 0 40px;*/
    /*padding: 0 0 18px 40px;*/
    list-style: none;
    transition: all 450ms ease 0s;
}

/*.menu li a {*/
/*    padding: 0 20px 0 40px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    transition: all 250ms ease 0s;*/
/*    margin-bottom: 15px;*/
/*    overflow: hidden;*/
/*    !*white-space: nowrap;*!*/
/*    font-weight: 600;*/
/*    font-size: 15px;*/
/*    background: no-repeat left center;*/
/*    background-size: 22px 20px;*/
/*    vertical-align: baseline;*/
/*    line-height: 1.2em;*/
/*    min-width: 230px;*/
/*    max-width: 230px;*/
/*    position: relative;*/
/*    z-index: 17;*/
/*}*/

.menu li a {
    display: flex;
    align-items: center;

    font-weight: 600;
    font-size: 12px;
    line-height: 20px;

    background: no-repeat left center;
    background-size: 22px 20px;
    /*vertical-align: baseline;*/
    /*min-width: 230px;*/
    /*max-width: 230px;*/
    position: relative;
    z-index: 17;

    width: 224px;
    padding: 8px 34px 8px 40px;
    margin-bottom: 8px;
    color: var(--text-main-color);
}

.menu li .dropdown-container a {
    width: unset;
}

.menu li a:hover, .menu li a:hover svg path {
    /*color: var(--primary-color);*/
    /*fill: var(--primary-color);*/
    opacity: 1;
}

.menu li a .ico {
    padding-right: 16px;

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

.menu li.active a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 4px;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    /*background-color: red;*/
}

.dropdown-menu li.active a:before {
    display: none;
}

.dropdown-menu {
    position: relative;
    cursor: pointer;
}

/*.dropdown-menu:before {*/
/*    transition: all 250ms ease 0s;*/
/*    display: inline-block;*/
/*    width: 0;*/
/*    height: 0;*/
/*    margin-left: 10px;*/
/*    vertical-align: 4px;*/
/*    content: "";*/
/*    border-top: 4px solid;*/
/*    border-right: 4px solid transparent;*/
/*    border-bottom: 0;*/
/*    border-left: 4px solid transparent;*/
/*    position: absolute;*/
/*    right: 25px;*/
/*    top: 24px;*/
/*    z-index: 9;*/
/*    transform: rotate(0deg);*/
/*}*/

.dropdown-menu.open:before {
    top: 24px;
    transform: rotate(180deg);
}

/*.dropdown-menu:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    right: 22px;*/
/*    top: 19px;*/
/*    border-radius: 40px;*/
/*}*/

.dropdown-menu-icon {
    content: '';
    position: absolute;
    right: 42px;
    top: 12px;

    transition: 0.2s;
}
.dropdown-menu-icon svg {
    fill: var(--text-secondary-color);
}

.dropdown-menu.open .dropdown-menu-icon {
    transform: rotate(180deg);
}

.dropdown-arrow {
    position: absolute;
    background-color: transparent;
    width: 20px;
    height: 30px;
    display: block;
    top: 0px;
    right: 20px;
    border-radius: 15px 15px 0 0;
}

.dropdown-block {
    overflow: hidden;
    position: relative;
    border-radius: 7px 0 7px 7px;
    /*margin-left: -10px;*/
}

.dropdown-container {
    position: relative;
    height: 0;
    transition: all 450ms ease 0s;
    overflow-y: hidden;
    padding: 0;
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
}

.dropdown-container:after {
    content: '';
    position: absolute;
    width: 1px;
    height: calc(100% - 14px);
    left: 62px;
    top: 0;
}

.dropdown-menu.open .dropdown-container {
    -webkit-transform: translate(0, 0%);
    -moz-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    transform: translate(0, 0%);
    height: 100%;
}

.dropdown-container ul li {
    padding: 0px 0px 0px 45px;
}

.dropdown-container a {
    font-size: 13px !important;
    min-width: inherit !important;
    max-width: inherit !important;
}

.ico svg {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    /*transition: all 250ms ease 0s;*/
    width: 18px;
    height: 18px;
}

.dropdown-container .ico svg {
    width: 20px;
    height: 20px;
}

.dropdown-container .ico.euro svg {
    width: 16px;
    height: 16px;
}

/* :: Table :: */

@media (max-width: 640px) {
    .table-report tr td:last-child {
        position: unset !important;
    }
}


/* :: BTN :: */

.btn-border {
    transition: all 250ms ease 0s;
    border-radius: 3px;
    min-width: 170px;
    /*width: 100%;*/
    /*min-width: 72px;*/
    display: inline-block;
    padding: 0 18px 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    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;
}

.btn-activate-now {
    margin-top: 6px;
    background-size: 22px 20px;
    transition: all 250ms ease 0s;
    border-radius: 3px;
    width: 157px;
    /*width: 100%;*/
    /*min-width: 72px;*/
    display: inline-block;
    padding: 0 0px 0 11px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    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;
}

.activate-now-column {
    display: flex;
    flex-flow: column;
}


/* :: DECTA-TC :: */

.ui-dialog.cards-tc {
    background: white;
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
    font-size: 15px;
    font-weight: 900;
    color: #283d54;
    background: white;
}

.ui-dialog-titlebar-close {
    visibility: hidden;
}

.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-dialog-buttonset {
    text-align: right;
}

ol.toc {
    counter-reset: item;
}

ol.toc > li {
    display: block;
    position: relative;
}

ol.toc > li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: 5px;
    /* space between number and text */
}

.ui-widget-overlay {
    background-color: rgba(0, 0, 0, 0.50);
}

.ui-dialog.cards-tc {
    z-index: 101;
    max-height: 700px;
    max-width: 850px;
    margin: 1.75rem auto;
    width: auto !important;
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: flex;
    flex-flow: column;
    border-radius: 7px;
}

#toc-dialog .box, .modal-dialog .box {
    margin: 0px;
    padding: 0 40px 0 40px;
    display: flex;
    flex-flow: column;
    border: none;
    border-radius: 0px;
    color: #283d54 !important;
    background: white;
}

.ui-dialog-buttonset .button {
    width: 100%;
    height: 39px;
    padding: 0 20px;
    display: block;
    background-color: #ffffff;
    border: 1px solid #566fe0;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #566fe0;
    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;
}

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

.ui-dialog-buttonset .button-primary.disabled {
    background-color: #bdbdbd !important;
    border: 1px solid #bdbdbd !important;
    cursor: unset !important;
}

#toc-dialog a {
    color: #1763B6 !important;
}

.ui-dialog .ui-dialog-content {
    margin: 0px;
    padding: 0px;
}

.modal-open {
    overflow: hidden !important;
}

.ui-dialog-title {
    font-size: 21px;
    font-weight: bold;
    padding: 0px;
}

.ui-dialog .ui-dialog-titlebar {
    border: none;
    padding: 50px 0 30px 40px;
    border-radius: 7px 7px 0 0;
}

.ui-dialog-buttonset {
    padding: 40px 55px 40px 40px;
    display: flex;
    flex-flow: row-reverse;
}

.ui-dialog-buttonset .ui-button {
    width: 200px;
}

.ui-dialog-buttonset .ui-button:last-child {
    margin-right: 20px;
}

#decta-modal {
    position: absolute;
    right: 40px;
    top: 47px;
    width: 140px;
}

@media (max-width: 640px) {
    .ui-dialog.cards-tc {
        margin: 0px;
        border-radius: 0px;
        max-height: inherit;
        overflow: auto;
    }

    .ui-dialog .ui-dialog-content {
        overflow: unset;
        min-height: unset !important;
    }

    #decta-modal {
        position: absolute;
        right: inherit;
        left: 18px;
        top: 40px;
        width: 80px;
    }

    .ui-dialog .ui-dialog-titlebar {
        padding: 80px 17px 30px 17px;
    }

    #toc-dialog .box {
        margin: 0px;
        padding: 0 17px 0 17px;
        box-shadow: none;
    }

    .ui-dialog-buttonset {
        padding: 40px 32px 40px 17px;
    }
}

.ui-dialog-content h2 {
    font-size: 21px;
    font-weight: bold;
    padding: 50px 0 30px 0;
    margin: 0px;
    color: #283d54 !important;
}

.ui-dialog-content p {
    margin: 0 0 20px 0;
}

.ui-dialog-content .no-m {
    margin: 0px !important;
}

.ui-dialog-content .h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    padding: 0px;
}

.ui-dialog-content .h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0px 0 20px 0;
    padding: 0px;
}

.first-toc {
    padding: 0px 0px 0px 30px;
    margin: 0px;
}

.first-toc > li:before {
    font-size: 18px;
    font-weight: bold;
}

.second-toc > li:before {
    font-weight: bold;
}

.second-toc > li {
    padding-bottom: 20px;
}

.second-toc > li:last-child {
    padding-bottom: 0px;
}

.second-toc {
    margin: 0px;
    padding: 0px 0px 0px 40px;
}

.second-toc ol {
    margin: 0px;
    padding-top: 20px;
}

.second-toc ol li:before {
    font-weight: bold;
}

.ui-dialog-content fieldset {
    border: 1px solid #566fe0;
    border-radius: 4px;
    margin: 50px 0 0 0;
    padding: 28px;
}

.ui-dialog-content fieldset p {
    margin: 0;
}

.ui-dialog-content fieldset [type="checkbox"] {
    margin-right: 20px;
}

.list-a {
    counter-reset: myCounter;
    padding-left: 20px;
}

.list-a > li {
    list-style: none;
}

.list-a > li:before {
    content: counter(myCounter, lower-latin) ". ";
    counter-increment: myCounter;
    position: absolute;
    left: 0px;
}

.list-i {
    counter-reset: myCounter;
    padding-left: 20px;
}

.list-i > li {
    list-style: none;
}

.list-i > li:before {
    content: counter(myCounter, upper-roman) ". ";
    counter-increment: myCounter;
    position: absolute;
    left: 40px;
    font-weight: bold;
}


/* :: Footer :: */

.footer {
    /*display: flex;*/
    /*flex-flow: column;*/
    /*width: 100%;*/
    /*padding-top: 100px;*/
    /*padding-left: 15px;*/

    /*font-size: 12px;*/
}

.footer a {
    text-decoration: none;
}

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

.footer-title {
    font-size: 21px;
}

.footer-time {
    padding-top: 10px;
}

.footer-phones {
    padding-top: 30px;
    font-size: 14px;
    font-weight: 500;
}

.footer-phone-icon {
    width: 36px;
    height: 24px;
}

.footer-phone-line {
    display: inline-flex;
}

.footer-phone-container {
    display: inline-flex;
    flex-flow: column;
}

.footer-phone-uk {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding-left: 37px;
}

.footer-phone-pol {
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    height: 24px;
    padding-left: 37px;
}

.footer-message-icon {
    margin-left: 40px;
    width: 36px;
    height: 24px;
}

.footer-skype {
    display: inline-flex;
}

.footer-skype-links {
    display: flex;
    align-items: center;
}

.footer-skype-icon {
    width: 28px;
    height: 24px;
    padding-left: 5px;
}

.footer-mail {
    display: inline-flex;
}

.footer-email-icon {
    margin-left: 40px;
    width: 36px;
    height: 24px;
}

.footer-mail a {
    display: inline-flex;
    align-items: center;
}

.footer-address {
    font-size: 14px;
    padding-top: 60px;
}

.footer-address a {
    margin-left: 24px;
}

.footer-info {
    margin-top: 30px;
    font-size: 12px;
}

.footer-additional-info {
    margin-top: 10px;
}

.footer-links {
    margin-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a.next-link {
    margin-left: 40px;
}

@media (max-width: 975px) {
    .footer-phone-line {
        display: flex;
    }

    .footer-skype {
        display: flex;
    }

    .footer-skype,
    .footer-phone-icon,
    .footer-mail,
    .footer-message-icon,
    .footer-email-icon,
    .footer-address a {
        margin-left: 0px !important;
    }

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

    .footer-time {
        padding-top: 30px !important;
    }

    .footer-phones {
        padding-top: 70px !important;
    }

    .footer-skype,
    .footer-mail {
        margin-top: 30px !important;
    }

    .footer-address {
        padding-top: 70px !important;
    }

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

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

    .navigation .footer {
        width: 225px !important;
    }

    .footer-links a.next-link {
        margin-left: 0 !important;
    }
}


/* :: END Footer :: */


/* :: Table :: */

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

.not-found span {
    font-weight: bolder;
}

.exchange-note {
    font-size: 12px;
    font-weight: normal;
    /*margin: 40px 0;*/
}

.exchange-note span {
    font-weight: bold;
}

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


/*.table-draft-list th, .table-draft-list td {
    padding-right: 0 !important;
}*/

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

.tbl-head {
}

.table-draft-list tr.open {
    border-color: transparent !important;
}

.trans-id-cell {
    min-width: 90px !important;
}

.tr-info {
    display: none;
}

.tr-info .cell-content {
    font-weight: bolder;
}

.cell-name {
    font-weight: 400;
    text-align: right;
    padding-right: 17px !important;
}

.trans-row-link {
    cursor: pointer;
}

.trans-row-link td,
.tbl-head th {
    padding-right: 8px !important
}

@media (max-width: 640px) {
    .tr-info {
        display: none !important;
    }

    .trans-row-link {
        display: block !important;
    }

    .tr-info.show {
        display: block !important;
    }
}

.trans-amount-cell,
.trans-fee-cell,
.fee2 {
    text-align: right !important
}

.trans-id {
    font-weight: bolder;
}

.trans-desk-cell,
.trans-date-cell,
.trans-date-common-cell {
    text-align: left !important;
}

.trans-date-common-cell {
    min-width: 90px;
}

.trans-amount-cell {
    min-width: 100px;
}


/* :: END Table :: */

.dropdown-cont {
    position: relative;
    display: flex;
    width: 23px;
    height: 23px;
}

.table-scrollable {
    overflow-x: auto;
}


/* :: Swift :: */

.autocomplete-suggestion {
    margin: 0;
    padding: 8px 0;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
}


.autocomplete-group strong {
    display: block;
}

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

table.search-results td {
    color: #000000;
}

.iban-validation-status, .extbankswift-validation-status, .intbankswift-validation-status {
    margin-left: 0;
}

.error-status {
    display: inline-block;
    margin-left: 30px;
    font-style: oblique;
}

.iban-validation, .extbankswift-validation, .intbankswift-validation {
    display: none;

}

.ajax-loader {
    margin-left: 3px;
    margin-top: -6px;
}

.input-size-3 {
    /*width: 350px !important;*/
}

.extbankswift-validation-status, .intbankswift-validation-status {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
}

.i-two {
    position: relative;
}

.autocomplete-suggestions {
    overflow: auto;
    margin-right: 30px;
    width: calc(50% - 50px) !important;
}

@media all and (max-width: 639px) {
    .autocomplete-suggestions {
        width: calc(100% - 50px) !important;
    }
}

@media all and (max-width: 975px) {
    .input-size-3 {
        /*width: 72% !important;*/
    }

    .iban-validation-status {
        margin-left: 7px !important;
        width: 88px !important;
    }
}

@media all and (max-width: 1138px) {


}

@media all and (max-width: 1000px) {
    .autocomplete-suggestion {
        flex-flow: column;
    }

    .autocomplete-suggestion > div {
        width: 100%;
    }

    .autocomplete-suggestions .search-results {
        display: none;
    }
}

.autocomplete-suggestion > div {
    padding-left: 5px;
}


.sw-data {
    width: 25%;
}

.sw-name {
    width: 30%;
}

.sw-address {
    width: 30%;
}

.sw-country {
    width: 15%;
}

.search-results td {
    padding: 8px 0;
    font-weight: 400;
    font-size: 12px;
}

/* :: END Swift :: */

/** IBAN */
.formBlockStandart nobr {
    display: inline;
}

.iban-validation-status {
    display: inline-block;
    margin-left: 18px;
    font-style: oblique;
    width: 100px;
    position: absolute;

}


.iban-validation {
    display: none;

}

.iban-status {
    display: none;
}

.ajax-loader {
    margin-left: 10px;
}

/** IBAN END */


/** Fee */
.fee-title {
    margin-top: 40px;
    margin-bottom: 10px;
    padding: 0 4px;
    font-size: 17px;
    font-weight: bold;
}

.fee-table tr td:first-child {
    padding-left: 15px !important;
    background: none;
}

.fee-table tr td:last-child {
    padding-right: 15px !important;
}

.fee-table td {
    padding: 15px 0 !important;
    line-height: 29px;
}

.fee-table tr:first-child {
    border: none !important;
}

.fee-rule {
    text-align: right !important;
    padding-right: 15px !important;
}

.mob-col-name {
    display: none;
    font-size: 15px;
}

.fee-bank {
    padding-left: 15px !important;
}

@media all and (max-width: 640px) {
    .fee-table tr td:first-child {
        padding: 0 30px !important;
    }

    .fee-table tr td:last-child {
        padding: 0 30px 20px 30px !important;
    }

    .mob-col-name {
        display: block;
        padding-top: 20px;
    }

    .fee-table tr td:first-child {
        font-size: 24px;
        max-width: 85% !important;
    }

    .fee-rule {
        font-size: 24px;
        padding-bottom: 20px;
    }
}

/** Fee END */

/* :: Profile dropdown :: */
.header-user {
    position: relative;
}

.btn-user-profile {
    cursor: pointer;
    padding-right: 20px;
}

.btn-user-profile:hover {
    opacity: var(--opacity-active);
}

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

    padding-left: 40px;

    color: var(--text-main-color);
    padding-right: 0;
}

.dropdown-content {
    /*display: none;*/
    display: block;
    position: absolute;
    top: 35px;
    width: 260px;
    min-height: 300px;
    background-color: white;
    z-index: -1;
    padding: 20px 20px 25px 20px;
    border-radius: 7px;

    white-space: normal;
    box-shadow: 0 32px 56px 3px rgba(0, 0, 0, 0.22);

    transform: translate(-220px, 0);
    transition: all 250ms ease 0s;
    opacity: 0;
}


.dropdown.open .dropdown-content {
    z-index: 79;
    opacity: 1;
    transform: translate(0, 0);
}

.navigation-user .dropdown.open .dropdown-content {
    z-index: 79;
    opacity: 1;
    width: 250px;
    transform: translate(20px, 0);
    border-radius: 0px;

    @media all and (min-width: 976px) {
        transform: translate(-40px, 0);
    }
}

.wrapper-appshell {
    background-color: var(--background-color);
}

.designation {
    display: none;
}

.account-properties .btn-user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 60px;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 30px;
    border: 1px solid var(--input-background-color);
    background: var(--input-background-color);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main-color);
    overflow: hidden;
    padding: 0 var(--spacing-xxl);
    box-shadow: var(--shadow-input-text);
    box-sizing: border-box;
}

.icon-chevron-down {
    width: 12px;
    height: 8px;

    background-image: url('img/chevron_down.svg');
}

.account-properties .end-adornment {
    margin-left: auto;

    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-collapse td .account-description-row {
    display: flex;
    align-items: center;
    gap: 8px;

    height: 40px;
    width: 100%;
    margin-bottom: 5px;

    font-size: 16px;
    font-weight: 400;
    color: var(--text-main-color);

    margin-top: 16px;
}

.table-collapse td .account-description-row .ico, .btn-user-profile .ico {
    /* width: 24px; */
    height: 20px;
}

.table-collapse tr td.account-number {
    padding: 8px 0;
    font-weight: 700;
}

@media (min-width: 768px) {
    .table-collapse td .account-description-row {
        margin-top: 26px;
    }

    .table-collapse tr td.account-number {
        /*padding: 16px 0;*/
    }

    .account-properties .btn-user-profile {
        margin-bottom: 20px;
    }

    .table-collapse td .account-description-row {
        display: flex;
        align-items: center;
        gap: 8px;

        height: 60px;
        width: 100%;
        margin-bottom: 20px;

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

        font-size: 16px;
        font-weight: 700;
        color: var(--text-main-color);

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

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

    .table-collapse tr td.account-number {
        font-size: 0;
    }

    .designation {
        display: inline-block;
        font-weight: 500;
    }

    .account-description-row .end-adornment {
        margin-left: auto;
    }
}

.table-collapse tr td.amount b,
.table-collapse tr td.amount {
    /*padding: 8px 0;*/
    font-weight: 500;
}

.account-properties .dropdown-content {
    border-radius: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0);
    transform: translate(0, -35px);
    min-height: 0;
}

.account-properties .dropdown.open .dropdown-content {
    position: relative;
    z-index: 79;
    transform: translate(0, -25px);
    opacity: 1;
    /*width: 250px;*/

    /*new*/
    padding: 24px;

    font-size: 13px;
    line-height: 19px;
    font-weight: 600;

    width: 100%;
    border-radius: 16px;

    box-shadow: 0 30px 60px rgba(38, 51, 77, 0.03);
    box-sizing: border-box;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background-color: #293D53;
    margin-bottom: 20px;
}

.profile-info {
    padding-top: 10px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #D4D5D6;
}

.profile-fio {
    color: #283d54;
    font-size: 21px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 10px;
}

.profile-address, .profile-phone {
    font-weight: 400;
    color: #939ea9;
    font-size: 13px;
    margin-bottom: 10px;
}

.profile-city, .profile-address {
    font-size: 13px;
}

.profile-phone {
    font-size: 15px;
}

.change-payment-pas a, .change-login-pas a {
    color: #283d54;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    transition: all 250ms ease 0s;
}

.change-payment-pas a:hover, .change-login-pas a:hover {
    color: #566fe0;
}

.change-payment-pas {
    margin-bottom: 20px;
}


/* Menu euro */
.ico.euro {
    /*padding-right: 22px !important;*/
}

.ico.euro svg {
    /*height: 31px;*/
    /*width: 31px;*/
}


.popup {
    width: 80%;
    padding: 15px;
    left: 0;
    margin-left: 5%;
    border: 1px solid rgb(1, 82, 73);
    border-radius: 10px;
    color: rgb(1, 82, 73);
    background: white;
    position: absolute;
    top: 15%;
    box-shadow: 5px 5px 5px #000;
    z-index: 10001;
    font-weight: 700;
    text-align: center;
}

.overlay {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 10000;
    display: none;
}

@media (min-width: 768px) {
    .popup {
        width: 66.66666666%;
        margin-left: 16.666666%;
    }
}

@media (min-width: 992px) {
    .popup {
        width: 80%;
        margin-left: 25%;
    }
}

@media (min-width: 1200px) {
    .popup {
        width: 33.33333%;
        margin-left: 33.33333%;
    }
}

/* disabled submit button styles*/
button[disabled],
input[type="submit"][disabled] {
    cursor: default;
    opacity: 0.6;
    text-decoration: none;
}

.button-loading {
    position: relative;
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

button.button-loading {
    color: transparent !important;
}

button.button-loading::after {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 25px;
    height: 25px;

    margin: auto;

    border: 3px solid #00000026;
    border-top-color: #FFF;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

/* END *** disabled submit button styles*/

/*https://cssloaders.github.io/*/
/* HTML: <div class="loader"></div> */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

.limit-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}