    .card-footer {
        text-align:center;
    }	

    .hr_down {
        height: 6px;
        background: #ECEEEF;
    }

    #my_sum, #customer_sum {
        padding-right: 50px;
    }

    .read_your_sum {
        position: relative
    }

    .input_right_style {
        margin: 0;
        position: absolute;
        width: auto;
        height: 100%;
        right: 0;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ECEEEF;
        border: 1px solid #CCCCCC;
        /* box-sizing: border-box; */
        border-radius: 4px;
    }

/*    #openModal {
        font-family: Roboto !important;
    }*/

    .choice_currency .your_sum {
        display: flex;
        align-items: center
    }

        .choice_currency .your_sum div {
            margin-left: 20px
        }

            .choice_currency .your_sum div label {
                margin: 0;
                padding: 0;
                text-decoration: underline;
                color: #5BC0DE;
                cursor: pointer
            }

                .choice_currency .your_sum div label:hover {
                    opacity: 0.7
                }

    .head-title {
        font-size: 16px !important;
    }

    .currency_type-select {
        width: 170px;
        height: 35px;
        padding: 0 10px;
        border: 1px solid #ECEEEF;
        font-weight: 500;
        border-radius: 4px;
        outline: none
    }

    .currency_departament .personal .personal-course {
        color: #0275D8;
        font-style: normal;
        font-weight: 300;
        font-size: 12px;
        text-decoration: underline;
    }

    .currency_departament_pay .personal span {
        color: #5CB85C;
    }

    .currency_departament_sell .personal span {
        color: #0275D8;
    }

    .currency_departament .personal span {
        font-weight: bold;
        font-size: 24px;
        text-decoration: none;
    }

    .currency_departament {
        padding: 15px 0;
    }

        .currency_departament span {
            font-size: 24px;
            font-weight: normal
        }

    .currency_box {
        display: flex;
        width: 100%;
        justify-content: space-between
    }

        .currency_box p {
            margin: 0 0 5px 0;
            font-size: 12px;
        }

    .control_btn_box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer_cart {
        padding: 0 0 19px 0
    }

    .customer_cart_info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 0
    }

        .customer_cart_info p {
            margin: 0
        }

            .customer_cart_info p.title {
                font-size: 14px;
            }

            .customer_cart_info p.balance {
                font-size: 12px;
            }

                .customer_cart_info p.balance span {
                    font-size: 20px
                }

    .pay_box {
        display: flex;
        justify-content: space-between;
/*        align-items: center;*/
/*        padding: 19px*/
        padding-top: 20px;
    }

        .pay_box p {
            margin: 0
        }

    .to_sell-sum span {
        font-weight: 300;
        font-size: 36px;
        color: #2f80ed;
        word-break: break-word;
    }

    .to_pay-sum span {
        font-weight: 300;
        font-size: 36px;
        color: #5CB85C;
        word-break: break-word;
    }

    .from_customer .read_your_sum {
        margin: 10px 0
    }

    .bonus_score span {
        font-size: 18px;
    }

    .bonus_score_pay span {
        color: #5CB85C;
    }

    .bonus_score_sell span {
        color: #0275D8;
    }

    .error_box {
        background: #EBCCCC;
        border: 1px solid #DDDDDD;
        border-radius: 4px;
        padding: 20px
    }

        .error_box p {
            font-size: 16px;
            color: #A94442;
            margin: 0
        }

    .control_btn_box .btn:last-child {
        margin-left: 20px;
    }
    /* свойства модального окна по умолчанию */
    .modal {
        position: fixed; /* фиксированное положение */
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.5); /* цвет фона */
        z-index: 1050;
        display: none;
        -webkit-transition: opacity 200ms ease-in;
        -moz-transition: opacity 200ms ease-in;
        transition: opacity 200ms ease-in; /* анимация перехода */
        pointer-events: none; /* элемент невидим для событий мыши */
        margin: 0;
        padding: 0;
    }
        /* при отображении модального окно */
        .modal:target {
            opacity: 1; /* делаем окно видимым */
            pointer-events: auto; /* элемент видим для событий мыши */
            overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
        }
    /* ширина модального окна и его отступы от экрана */
    .modal-dialog {
        position: relative;
        width: auto;
        margin: 10px;
    }

    @media (min-width: 576px) {
        .modal-dialog {
            max-width: 500px;
            margin: 30px auto; /* для отображения модального окна по центру */
        }
    }

    .modal-button {
        padding: 15px 0
    }
    /* свойства для блока, содержащего контент модального окна */
    .modal-content {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        background-color: #fff;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid rgba(0,0,0,.2);
        border-radius: .3rem;
        outline: 0;
    }

    @media (min-width: 768px) {
        .modal-content {
            -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
            box-shadow: 0 5px 15px rgba(0,0,0,.5);
        }
    }
    /* свойства для заголовка модального окна */
    .modal-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #eceeef;
    }

    .modal-title {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.5;
        font-size: 1.25rem;
        font-weight: 500;
    }
    /* свойства для кнопки "Закрыть" */
    .close {
        float: right;
        font-family: sans-serif;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        color: #000;
        text-shadow: 0 1px 0 #fff;
        opacity: .5;
        text-decoration: none;
    }
        /* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
        .close:focus, .close:hover {
            color: #000;
            text-decoration: none;
            cursor: pointer;
            opacity: .75;
        }
    /* свойства для блока, содержащего основное содержимое окна */
    .modal-body {
        position: relative;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 15px;
        overflow: auto;
    }

    .modal-header {
        font-size: 18px
    }

    .center_styles {
        text-align: center
    }

    #curr_info {
        overflow-x: hidden
    }

    @media(max-width: 767px) {
        .center_styles {
            text-align: left
        }

        .set_currency_departament_list_hidden {
            overflow-x: hidden !important
        }

        #exchange-rates-list {
            display: flex
        }

        #balanse-list {
            display: flex
        }

        #cashflow-list {
            display: flex
        }

        .cash-box {
            width: 100% !important
        }

        .operation_title {
            min-width: 100% !important;
            flex-direction: column;
            align-items: unset !important
        }

            .operation_title button {
                margin-top: 10px
            }

        #operation_list_box {
            overflow-x: auto
        }

        .operation_title h2 {
            width: 100%
        }

        .cashflow__item {
            grid-template-columns: repeat(1, 2fr) !important;
        }

        .rates__item {
            grid-template-columns: repeat(1, 1fr) !important;
        }

        .balance__item {
            grid-template-columns: repeat(1, 1fr) !important;
        }

        #operations {
            flex-direction: column;
        }

        #curr_info {
            overflow-x: auto
        }

        .set_course_item {
            grid-template-columns: 70px 70px 100px 100px !important
        }

        .currency_box {
            flex-wrap: wrap
        }

            .currency_box .currency_box_style {
                width: 100%
            }

                .currency_box .currency_box_style select, .currency_box .currency_box_style input {
                    width: 100%
                }

        .pay_box {
            flex-wrap: wrap
        }

            .pay_box input {
                width: 100%
            }

        .from_customer {
            width: 100%
        }

        .depositing_office {
            align-items: start !important;
            flex-direction: column;
        }

            .depositing_office div {
                margin: 0 0 10px 0
            }

            .depositing_office div, .depositing_office select, .depositing_office input {
                width: 100% !important
            }

        .set_currency_departament_list {
            overflow-x: auto
        }
    }

    .set_department_course {
        overflow-y: auto;
        max-height: 400px;
        padding-bottom: 20px
    }

    .set_course_item {
        display: grid;
        grid-template-columns: 70px 150px 1fr 1fr;
        align-items: center;
    }

        .set_course_item p {
            font-weight: bold;
            font-size: 12px;
            color: #373A3C;
        }

        .set_course_item p, .set_course_item div {
            margin: 0;
            padding: 15px 5px;
        }

        .set_course_item.set_course_title p {
            background: #ECEEEF;
        }

        .set_course_item input {
            width: 100%
        }

    .destination_department_type, .collector {
        padding: 10px 0
    }

        .destination_department_type p, .collector p {
            margin: 0
        }

    .department_select {
        width: 100%
    }

    .set_currency_departament_list_item {
        display: grid;
        align-items: center;
        grid-template-columns: 50px 100px minmax(60px, 1fr) 180px;
    }

    .depositing_from_office_list_item {
        display: grid;
        align-items: center;
        grid-template-columns: 50px 100px minmax(60px, 1fr) 180px 60px;
    }

    .making_a_record_of_expenses_list_item {
        display: grid;
        align-items: center;
        grid-template-columns: 50px 100px 200px 114px;
    }

        .set_currency_departament_list_item .render_sum, .making_a_record_of_expenses_list_item .render_sum, .depositing_from_office_list_item .render_sum {
            text-align: right;
            font-weight: 300;
            font-size: 24px;
            color: #373A3C;
            text-overflow: ellipsis;
            max-width: 100%;
            white-space: nowrap;
            overflow-x: hidden
        }

        .making_a_record_of_expenses_list_item .render_sum {
            text-align: left
        }

    .render_course {
        font-weight: 300;
        font-size: 24px;
        color: #373A3C;
        text-overflow: ellipsis;
        max-width: 100%;
        white-space: nowrap
    }

    .set_currency_departament_list_item p, .set_currency_departament_list_item div, .making_a_record_of_expenses_list_item p, .making_a_record_of_expenses_list_item div, .depositing_from_office_list_item p, .depositing_from_office_list_item div {
        margin: 0;
        padding: 15px 10px
    }

    .set_currency_departament_list_item_title p {
        margin: 0;
        background: #ECEEEF;
    }

    .remainder p {
        padding: 0
    }

    .remainder .remainder_sum {
        max-width: 100%;
        text-overflow: ellipsis;
        overflow-x: hidden
    }

    .remainder .remainder_curr {
        font-weight: 300;
        font-size: 14px;
        color: #999999;
    }

    #SetCourseFromGroup_comment {
        margin-bottom: 20px;
        width: 100%;
    }

    select[disabled] {
        background: #ECEEEF;
    }

    .depositing_office {
        display: flex;
        align-items: center;
        padding: 0 0 15px 0
    }

        .depositing_office div {
            padding: 0 10px;
            white-space: nowrap
        }

            .depositing_office div p {
                margin: 0 0 10px 0
            }

            .depositing_office div .currency_type-select {
                width: auto
            }

    .depositing_comment {
        padding: 15px 0
    }

    #curr_info {
        max-height: 300px;
        overflow-y: auto;
    }

    .remove_dep {
        background: none;
        border: none;
    }

    .empty_box {
        padding: 20px;
        font-size: 20px;
        text-align: center;
    }

    .making_a_record_of_expenses .head-title {
        font-size: 14px !important
    }

    .control_btn {
        display: flex;
        justify-content: flex-end
    }

    .remove_dep {
        cursor: pointer
    }

        .remove_dep:active, .remove_dep:focus {
            outline: none;
            border: none
        }

    .Modal {
        position: fixed;
        display: none;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999999;
        background: rgba(0,0,0,0.7);
    }

        .Modal:target {
            display: flex;
            pointer-events: auto;
        }

    .Modal_Body {
        position: relative;
        z-index: 2;
        display: block;
        margin: auto;
        top: 30%;
        padding: 15px;
        background: #FFF;
        max-width: 400px;
        z-index: 999;
    }

    .close_comment_modal {
        cursor: pointer;
        font-size: 22px
    }

    .close_box {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-bottom: 1px solid #ECEEEF;
        margin-bottom: 10px
    }

    .making_a_record_of_expenses_depositing_comment {
        padding: 15px 10px;
    }

    .m-r5 {
        margin-right: 5px;
    }

    .title {
        font-weight: bold;
        font-size: 16px;
    }

    .title-money {
        font-weight: bold;
    }

    .buy {
        color: #5CB85D;
    }

    .sell {
        color: #D9534F;
    }

    .ul-optimiz {
        margin: 0 0 20px 0;
        padding: 0;
    }

        .ul-optimiz li {
            overflow-x: auto;
            list-style: none;
        }

        .ul-optimiz p {
            margin: 0;
            padding: 0 5px;
        }

    .cash-box {
        margin: 10px 0;
        padding: 10px;
        width: 370px;
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        border-radius: 10px;
    }

        .cash-box p {
            margin: 0;
        }

        .cash-box a {
            text-decoration: underline;
            color: #5BC0DE;
        }

    .reload {
        margin: 0 0 0 5px;
        padding: 0;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .settings {
        padding: 0;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

        .settings i {
            color: #5BC0DE;
        }

    .rates__item {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 5px;
        border-bottom: 2px solid #ECEEEF;
    }

    .balance__item {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 5px;
        border-bottom: 2px solid #ECEEEF;
    }

    .cashflow__item {
        display: grid;
        grid-template-columns: repeat(5, 2fr);
        padding: 5px;
        border-bottom: 2px solid #ECEEEF;
    }

        .cashflow__item p {
            white-space: nowrap;
        }

    .rates__item_head,
    .balance__item_head,
    .cashflow__item_head {
        border-bottom: none;
    }

    .cash-box-title,
    .cashflow-head {
        display: flex;
        justify-content: space-between;
        margin: 0 0 10px 0;
    }

    .last-synch {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-size: 8px;
        color: #979797;
    }

        .last-synch i {
            font-size: 13px;
            margin: 0 5px 0 0;
        }

    #operations {
        display: flex;
    }

    #operations-box {
        padding: 15px
    }

    .operation_title {
        padding: 20px 0;
        border-bottom: 2px solid #ECEEEF;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 550px
    }

        .operation_title .btn {
            font-size: 16px
        }

        .operation_title h2 {
            font-size: 36px;
            margin: 0
        }

    #filter_box {
        display: flex;
        padding: 14px 0
    }

        #filter_box .filter {
            font-weight: 300;
            font-size: 14px;
            text-decoration-line: underline;
            color: #5BC0DE;
            background: none;
            border: none;
            cursor: pointer
        }

            #filter_box .filter:hover {
                color: #3a93ad
            }

            #filter_box .filter:active, #filter_box .filter:focus {
                border: none;
                outline: none
            }

            #filter_box .filter.filter_all {
                font-weight: 700
            }

            #filter_box .filter:not(:first-child) {
                margin-left: 15px
            }

    #operation_list {
        font-weight: 300;
        font-size: 14px;
        color: #000000;
        display: grid;
        grid-template-columns: 80px 1fr 90px 90px 100px 1fr 100px;
        align-items: center
    }

        #operation_list .btn {
            margin: 0;
            padding: 1px 0;
            width: 100%;
            text-align: center;
            color: #fff
        }

        #operation_list div {
            padding: 0 7px
        }

            #operation_list div.price_info {
                text-align: right
            }

                #operation_list div.price_info p {
                    margin: 0;
                    font-weight: normal
                }

                #operation_list div.price_info span {
                    font-size: 10px;
                    font-weight: 300
                }

            #operation_list div.control_btn_box button {
                border: none;
                background: none;
                cursor: pointer
            }

                #operation_list div.control_btn_box button:active, #operation_list div.control_btn_box button:focus {
                    border: none;
                    outline: none;
                    opacity: 0.7
                }

            #operation_list div.currency {
                font-weight: 700
            }

    .operation_list_item {
        border-bottom: 2px solid #ECEEEF;
        padding: 15px 0
    }

    #operation_list_box {
        max-height: 400px;
        overflow-y: auto
    }