:root {
    --h1: 58px;
    --h2: 38px;
    --h3: 28px;
    --h4: 20px;
    --h5: 16px;
    --h6: 14px;
    --small_text: 12px;
    --width-base: 1160;
    --width-current: 100vw;
    --width-multiplier: 1px
}

@media screen and (max-width: 1256px) {
    :root {
        --width-multiplier:var(--width-current) /var(--width-base)
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --h1:38px;
        --h2: 28px;
        --h3: 20px;
        --h4: 16px;
        --width-base: 1024
    }
}

@media screen and (max-width: 680px) {
    :root {
        --h1:28px;
        --h2: 20px;
        --h3: 16px;
        --h4: 14px;
        --h5: 14px;
        --small_text: 12px;
        --width-base: 680
    }
}


.box_shadow {
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08)
}

.box_shadow_clear {
    box-shadow: none
}

.border_radius {
    border-radius: 2px
}

.border_radius_4 {
    border-radius: 4px
}

.border_radius_8 {
    border-radius: 8px
}

.border_radius_20 {
    border-radius: 20px
}

.border_radius_clear {
    border-radius: 0
}

.circle {
    border-radius: 50%
}

.box {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    padding: 8px
}

.flex_direction_column {
    flex-direction: column
}

.transition {
    transition: .2s ease-in-out
}

.transition_directive_animate {
    transition: .5s linear
}

.default_translate {
    transform: translateY(-5px)
}

.default_box_shadow {
    box-shadow: 3px 4px 9px 0 rgba(34,60,80,.2)
}

.border_radius_32 {
    border-radius: 32px
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,input,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,select,small,span,strike,strong,sub,summary,sup,table,tbody,td,textarea,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    background: transparent;
    border: 0;
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    font-size: 13px;
    margin: 0;
    outline: none;
    padding: 0;
    vertical-align: baseline
}

sub {
    vertical-align: sub
}

sup {
    vertical-align: super
}

table {
    border-spacing: 0
}

table,td,th {
    font-weight: 400
}

td,th {
    line-height: 17px;
    text-align: left;
    vertical-align: top
}

img {
    border: none
}

:focus {
    outline: 0
}

body,html {
    background: #fff;
    color: #000;
    font-family: Roboto,sans-serif;
    overflow-x: hidden
}

input {
    -webkit-appearance: none
}

::-webkit-scrollbar {
    -webkit-appearance: none
}

::-webkit-scrollbar:vertical {
    width: 10px
}

::-webkit-scrollbar:horizontal {
    height: 10px
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.1);
    border: 2px solid #fff
}

::-webkit-scrollbar-track {
    background-color: #fff
}

a {
    color: #61a8eb;
    cursor: pointer;
    text-decoration: underline;
    transition: color .2s ease-in-out
}

a:hover {
    color: #e31e25
}

a.disabled {
    color: #9ba0b2
}

.disabled {
    background: #fbfbfb!important
}

p {
    line-height: 1.5
}

label {
    cursor: pointer
}

.left {
    float: left
}

.right {
    float: right
}

.rght_txt {
    text-align: right
}

.lft_txt {
    text-align: left
}

.center_txt {
    text-align: center
}

.small {
    font-size: 12px
}

.clear {
    clear: both
}

.nowrap {
    white-space: nowrap
}

.hidden {
    display: none
}

[v-cloak],[x-cloak] {
    display: none!important
}

.wrapper,.wrapper_content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1256px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%
}

.adaptive {
    display: none
}

.notauth {
    background: #ff969f url(/img/user.svg) no-repeat 50% 20%;
    background-size: 15px 15px;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: 50%;
    padding-top: 20px;
    position: fixed;
    top: 50%;
    z-index: 1000
}

.notauth .wrp {
    padding: 10px;
    position: relative;
    text-align: center;
    width: 190px
}

.notauth .lnk {
    color: #000
}

.notauth .close {
    display: block;
    font-size: 28px;
    height: 24px;
    line-height: 24px;
    position: absolute;
    right: 0;
    text-align: center;
    top: -20px;
    width: 24px
}

.notauth .close,.notauth .close:hover {
    color: #000;
    text-decoration: none
}

.visually-hidden {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.full {
    width: 100%
}

.top_5 {
    margin-top: 5px
}

.top_10 {
    margin-top: 10px
}

.top_15 {
    margin-top: 15px
}

.top_20 {
    margin-top: 20px
}

.top_30 {
    margin-top: 30px
}

.top_40 {
    margin-top: 40px
}

.top_50 {
    margin-top: 50px
}

.top_60 {
    margin-top: 60px
}

.top_70 {
    margin-top: 70px
}

.top_80 {
    margin-top: 80px
}

.top_90 {
    margin-top: 90px
}

.left_5 {
    margin-left: 5px
}

.left_10 {
    margin-left: 10px
}

.left_20 {
    margin-left: 20px
}

.left_30 {
    margin-left: 30px
}

.left_40 {
    margin-left: 40px
}

.left_50 {
    margin-left: 50px
}

.right_5 {
    margin-right: 5px
}

.right_10 {
    margin-right: 10px
}

.right_20 {
    margin-right: 20px
}

.right_30 {
    margin-right: 30px
}

.right_40 {
    margin-right: 40px
}

.right_50 {
    margin-right: 50px
}

.bottom_5 {
    margin-bottom: 5px
}

.bottom_10 {
    margin-bottom: 10px
}

.bottom_20 {
    margin-bottom: 20px
}

.bottom_30 {
    margin-bottom: 30px
}

.bottom_40 {
    margin-bottom: 40px
}

.bottom_50 {
    margin-bottom: 50px
}

.red {
    color: #e31e25
}

.orange {
    color: #ef5f31
}

.green {
    color: #5cb585
}

.greenback,.greenback td {
    background: #eaf8f3
}

.greenback td {
    border-bottom: 1px solid #fff
}

.coincidence {
    background: #ffdf4b
}

.old {
    color: #9ba0b2
}

.noactive {
    color: #e8e8e8
}

.alertGray,.alertGreen,.alertRed {
    border-radius: 2px;
    color: #000;
    display: inline-block;
    padding: 9px 10px
}

.alertGreen {
    background: #d1e9e8;
    border-left: 4px solid #5cb585
}

.alertRed {
    background: #fbe5e0;
    border-left: 4px solid #e31e25
}

.alertGray {
    background: #fbfbfb;
    border-left: 4px solid #e8e8e8
}

.w-20 {
    width: 20%
}

.w-25 {
    width: 25%
}

.w-50 {
    width: 50%
}

.w-75 {
    width: 75%
}

.w-80 {
    width: 80%
}

.w-100 {
    width: 100%
}

.separator {
    background: #e8e8e8;
    border: none;
    height: 1px
}

.forDirectory {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    position: relative
}

.forDirectory .directory {
    background-color: #d1d1d2;
    display: inline-block;
    height: 20px;
    margin-left: 4px;
    -webkit-mask-image: url(../img/icons/stack.svg#question-fill);
    mask-image: url(../img/icons/stack.svg#question-fill);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    text-decoration: none;
    width: 20px
}

.forDirectory .directory:hover {
    opacity: .8
}

.hoverDirectory .tooltip {
    display: none
}

.hoverDirectory:hover .tooltip {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    color: #000;
    display: block;
    font-weight: 400;
    line-height: 1.2;
    padding: 5px;
    position: absolute;
    right: 0;
    text-transform: none;
    top: 100%;
    width: 150px;
    z-index: 10
}

.roll_table thead th:first-child .hoverDirectory:hover .tooltip {
    left: 0;
    right: auto
}

.tooltipMulty {
    color: #bbb;
    font-size: 11px;
    line-height: 1;
    margin-bottom: 4px;
    margin-top: 1px
}

.input,textarea {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    padding: 8px
}

textarea {
    resize: none
}

.autocompl {
    background-color: #fff;
    border-radius: 2px;
    position: relative
}

.autocompl:before {
    background-color: #d7dfe8;
    content: "";
    height: 24px;
    -webkit-mask-image: url(../img/icons/stack.svg#search);
    mask-image: url(../img/icons/stack.svg#search);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px
}

.autocompl.simple {
    background: #fff url(../img/icons/stack.svg#arrow-down) no-repeat 96% 50%;
    background-size: 12px 12px
}

.autocompl input {
    height: 100%;
    width: 100%
}

.checkbox,.checkbox .check,.radioButton,.radioButton .check {
    display: inline-block;
    position: relative
}

.checkbox .check,.radioButton .check {
    background-color: #fff;
    border: 1px solid #d7dfe9;
    float: left;
    height: 20px;
    width: 20px;
    z-index: 2
}

.checkbox .check {
    border-radius: 2px
}

.radioButton .check {
    border-radius: 50%
}

.checkbox .active {
    background-image: url(../img/icons/stack.svg#check);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    border-color: #eee
}

.checkbox .readonly,.radioButton .readonly {
    border-color: #000;
    opacity: .1
}

.checkbox.readonly-label {
    cursor: auto
}

.checkbox .readonly-ttl {
    opacity: .25
}

.checkbox .ttl,.radioButton .ttl {
    display: inline-block;
    margin-left: 5px;
    margin-top: 2px;
    position: relative
}

.radioButton .active {
    position: relative
}

.radioButton .active:before {
    background: #000;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 6px
}

.checkbox input[type=checkbox],.radioButton input[type=radio] {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1
}

.select {
    position: relative
}

.select_dflt_width:nth-child(4n) {
    margin-right: 0
}

.select_dflt_width_indent {
    margin-right: 5%
}

.select .switch {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    display: block;
    padding: 8px 28px 8px 8px;
    position: relative;
    text-decoration: none;
    z-index: 1
}

.select .switch:before {
    background-color: #232b43;
    content: "";
    height: 12px;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px
}

.select_dflt_width .delete {
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    height: 38px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 2px;
    width: 38px;
    z-index: 10
}

.select_dflt_width .delete,.select_dflt_width .delete:hover {
    color: #000;
    text-decoration: none
}

.select_dflt_width {
    width: calc(25% - 15px)
}

@media screen and (max-width: 1024px) {
    .select_dflt_width {
        width:calc(50% - 10px)
    }
}

@media screen and (max-width: 680px) {
    .select_dflt_width {
        width:100%
    }
}

.select .select_wrapper {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    left: 0;
    max-height: 320px;
    overflow: auto;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 20
}

.select_wrapper .ttl {
    font-weight: 700;
    margin: 10px
}

.select_wrapper .line {
    background: #f2f2f2;
    border: none;
    height: 1px
}

.select_wrapper ul {
    list-style: none
}

.select .item,.select .select_wrapper li {
    position: relative
}

.select .item {
    color: #000;
    display: block;
    padding: 10px 30px 10px 10px;
    text-decoration: none
}

.select .item:hover {
    background: #fbfbfb
}

.btn_blue,.btn_blue_border,.btn_cancel,.btn_green,.btn_grey,.btn_orange,.btn_red {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    padding: 9px 40px;
    text-align: center;
    text-decoration: none;
    transition: all .2s ease-in-out
}

.btn_blue,.btn_cancel,.btn_green,.btn_grey,.btn_orange,.btn_red {
    color: #fff
}

.btn_blue:hover,.btn_blue:visited,.btn_green:hover,.btn_green:visited,.btn_grey:hover,.btn_grey:visited,.btn_orange:hover,.btn_orange:visited,.btn_red:hover,.btn_red:visited {
    color: #fff;
    text-decoration: none
}

.btn_orange:hover {
    background-color: #e63c06
}

.btn_green {
    background: #5cb585
}

.btn_green:hover {
    background-color: #4fb07c
}

.btn_cancel {
    background: #e8e8e8;
    color: #000
}

.btn_cancel:hover,.btn_cancel:visited {
    color: inherit
}

.btn_grey {
    background: #e8e8e8
}

.btn_red {
    background: #e31e25
}

.btn_blue {
    background: #344066
}

.btn_orange {
    background: #ef5f31
}

.btn_blue_border {
    border: 1px solid #6393c9;
    color: #000
}

.btn_blue_border:hover,.btn_blue_border:visited {
    color: inherit
}

.btn_border_action,.btn_border_active,.btn_border_active_green,.btn_border_active_red,.btn_border_green {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    transition: border-color .2s ease-in-out,background-color .2s ease-in-out
}

.btn_border_action {
    border: 1px solid #e8e8e8
}

.btn_border_active {
    border: 1px solid #ef5f31
}

.btn_border_active_green,.btn_border_green {
    border: 1px solid #5cb585
}

.btn_border_active_red {
    border: 1px solid #e31e25
}

.found_result {
    color: #9ba0b2;
    flex-grow: 1;
    float: none;
    line-height: 36px
}

.found_result * {
    color: inherit
}

#control_table .button-control .excel_file,#control_table .button-control .zip_file {
    float: none;
    margin-left: 0
}

.button-control {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

.button-control-right {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end
}

@media screen and (max-width: 680px) {
    .button-control-right {
        display:grid;
        grid-auto-flow: dense;
        grid-template-columns: repeat(6,1fr);
        width: 100%
    }

    .button-control-right-item {
        align-items: center;
        display: flex;
        flex-basis: content;
        grid-column: span 3
    }
}

@media screen and (max-width: 480px) {
    .button-control-right-item {
        max-width:none;
        min-width: 100%
    }
}

@media screen and (max-width: 680px) {
    .button-control-right .addinBtnSearch,.button-control-right .apiBtnSearch,.button-control-right .excel_file {
        grid-column:span 2;
        grid-row-end: 2;
        grid-row-start: 1
    }
}

.button-control-right-img {
    align-items: center;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    display: flex;
    height: 36px;
    justify-content: center;
    min-width: 36px
}

@media screen and (max-width: 680px) {
    .button-control-right-img {
        height:48px;
        min-width: 48px
    }

    .button-control-right .reportingColumn {
        display: none
    }
}

.button-control-right .addinBtnSearch,.button-control-right .apiBtnSearch,.button-control-right .excelLoad,.button-control-right .reportingColumn,.button-control-right .switchColumn {
    padding-bottom: 10px;
    padding-right: 10px;
    padding-top: 10px
}

@media screen and (max-width: 680px) {
    .button-control-right .addinBtnSearch,.button-control-right .apiBtnSearch,.button-control-right .excelLoad,.button-control-right .reportingColumn,.button-control-right .switchColumn {
        padding-right:4px
    }

    .button-control-right--two-col .button-control-right-item {
        grid-column: span 3;
        grid-row-end: auto;
        grid-row-start: auto
    }
}

.lastBid {
    align-items: baseline;
    background: #f7f7f7;
    background: #fbfbfb;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding: 8px
}

.resultButtonCntrl .flexBlock {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.resultButtonCntrl .flexBlock .lft {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap
}

.resultButtonCntrl .btn_search {
    border: 1px solid #5cb585;
    padding-left: 70px;
    padding-right: 70px
}

.resultButtonCntrl .save_lnk {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    cursor: pointer;
    display: block;
    padding: 9px 20px 9px 40px;
    position: relative;
    text-decoration: none
}

.resultButtonCntrl .clear_form {
    color: #000;
    white-space: nowrap
}

.resultButtonCntrl .save_panel {
    margin-left: 2%;
    position: relative
}

.resultButtonCntrl .save_panel .save_lnk {
    background-color: #fff
}

.resultButtonCntrl .save_panel .save_lnk:hover {
    background-color: #fbfbfb;
    color: #000
}

.resultButtonCntrl .save_panel .save_lnk:before {
    background-color: #9ba0b2;
    content: "";
    height: 24px;
    left: 8px;
    -webkit-mask-image: url(../img/icons/stack.svg#save);
    mask-image: url(../img/icons/stack.svg#save);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px
}

.resultButtonCntrl .save_panel .save_input {
    margin-top: 10px;
    width: 100%
}

.resultButtonCntrl .save_panel .wrp {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: 0;
    padding: 20px;
    position: absolute;
    top: 100%;
    width: 200%;
    z-index: 11
}

.resultButtonCntrl .save_panel .solution {
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.resultButtonCntrl .save_panel .solution .btn {
    padding-left: 0;
    padding-right: 0;
    width: 48%
}

.resultButtonCntrl .save_panel .solution .btn_cancel {
    color: #000;
    text-decoration: none
}

.fixedPanelBtn .save_panel .wrp {
    bottom: 100%;
    top: auto
}

.text_small {
    font-size: 12px
}

.datepicker .mx-input-append {
    display: none
}

.datepicker {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.datepicker:before {
    background-color: #d7dfe8;
    content: "";
    height: 20px;
    -webkit-mask-image: url(../img/icons/stack.svg#calendar);
    mask-image: url(../img/icons/stack.svg#calendar);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px
}

.datepicker input {
    cursor: pointer;
    padding: 10px 30px 9px 10px;
    width: 100%
}

.filter_range .datepicker input {
    padding: 0 28px 0 0;
    width: 100%
}

.filter_range .datepicker:before {
    top: calc(50% - 5px)
}

.datepicker .mx-datepicker {
    width: 100%
}

.forLoading {
    height: 100px;
    position: relative
}

.forLoading .loading {
    background-position: 50% 50%
}

.loading {
    background: #fff url(/img/loading_table_.gif) no-repeat 50% 10%;
    height: 100%;
    left: 0;
    opacity: .5;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1000
}

.category_list {
    list-style: none;
    overflow: hidden
}

.category_list li {
    float: left;
    margin-right: 25px;
    position: relative
}

.category_list li:after {
    color: #e8e8e8;
    content: "/";
    position: absolute;
    right: -15px;
    top: 1px
}

.category_list li:last-child:after {
    display: none
}

.doc_file,.excel_file,.gif_file,.jpeg_file,.jpg_file,.other_file,.pdf_file,.rar_file,.xls_file,.youtb_file,.zip_file {
    display: inline-block;
    padding-left: 24px
}

.pdf_file {
    background: url(../img/icons/stack.svg#pdf) no-repeat 0 0;
    background-size: 20px 20px
}

.doc_file {
    background: url(../img/icons/doc_icon.svg) no-repeat 0 0;
    background-size: auto 15px
}

.zip_file {
    background: url(../img/icons/stack.svg#zip) no-repeat 0 0;
    background-size: 20px 20px
}

.rar_file {
    background: url(/img/rar_icon.svg) no-repeat 0 0;
    background-size: 15px auto
}

.excel_file,.xls_file {
    background: url(../img/icons/stack.svg#excel) no-repeat 0 0;
    background-size: 20px 20px
}

.jpeg_file,.jpg_file {
    background: url(../img/jpeg_icon.svg) no-repeat 0 0;
    background-size: 15px auto
}

.other_file {
    background: url(../img/other_icon.svg) no-repeat 0 0;
    background-size: 15px auto
}

.gif_file {
    background: url(../img/gif_file.svg) no-repeat 0 0;
    background-size: 15px auto
}

.youtb_file {
    background: url(../img/icons/stack.svg#video) no-repeat 0 0;
    background-size: 20px 20px
}

.swtchGraph,.swtchTable {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    display: inline-block;
    height: 40px;
    width: 40px
}

.swtchGraph {
    background-image: url(../img/icons/stack.svg#graph)
}

.swtchGraph,.swtchTable {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px
}

.swtchTable {
    background-image: url(../img/icons/stack.svg#table)
}

.activeSwitchView {
    background-color: #ef5f31;
    border-color: #ef5f31
}

.api_addin {
    position: absolute;
    right: 20px;
    top: 0
}

.api_list {
    background: url(/img/excel_add_inn_blue.svg) no-repeat 0 50%;
    background-size: 30px 11px;
    margin-left: 20px;
    padding-left: 35px
}

.api_list,.excel_add_in {
    display: inline-block;
    margin-top: 10px
}

.excel_add_in {
    background: url(../img/icons/stack.svg#excel) no-repeat 0 1px;
    background-size: 16px 16px;
    margin-left: 10px;
    padding-left: 20px
}

.fileInstruction,.videoInstruction {
    color: #000;
    display: inline-block;
    margin-left: 20px;
    margin-top: 5px;
    padding-left: 25px;
    text-decoration: none
}

.videoInstruction {
    background: url(/img/video_icon.svg) no-repeat 0 2px;
    background-size: 20px auto
}

.fileInstruction {
    background: url(/img/instruction_icon.svg) no-repeat 0 2px;
    background-size: 20px auto
}

.getAccess {
    background: #e8e8e8;
    color: #000;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    width: 100%
}

.getAccess .lnk {
    color: #000
}

.getAccess .close {
    color: #000;
    margin-left: 20px
}

.fixedTopMessage {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

.topPanel {
    background: #fff;
    margin: 0 auto;
    width: 100%
}

.bottomPanel {
    background: #344066;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 20000
}

.bottomPanel .wrapper {
    padding: 0
}

.bottomPanel .item {
    height: auto!important;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden
}

.bottomPanel img {
    float: left;
    max-height: 80px
}

.indent_for_catfish {
    background: #283254;
    height: 80px
}

.bottomPanel .close {
    background: url(/img/bks_bckgr.png) repeat 0 0;
    color: #fff;
    display: block;
    font-size: 30px;
    height: 20px;
    left: 0;
    line-height: 20px;
    opacity: .8;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: -20px;
    width: 100%
}

.header {
    background: #fff;
    padding: 16px 0 0;
    text-align: center
}

.header .wrapper {
    min-width: 270px
}

.header .wrapper,.header .wrapper .lft {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.header .wrapper .lft {
    margin-right: 16px
}

.header .wrapper .rght {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.header .wrapper .rght .item {
    flex: 1 1 auto
}

.header .wrapper .rght .item:not(:first-child) {
    margin: 0 0 0 8px
}

.header .logo {
    background: url(/img/cbonds_logo.svg) no-repeat 0 50%;
    background-size: 100%;
    display: flex;
    height: 48px;
    width: 180px
}

.header .openMenu {
    background: #fbfbfb url(../img/icons/stack.svg#context-menu) no-repeat 50% 50%;
    background-size: 50%;
    border-radius: 50%;
    display: none;
    height: 48px;
    margin-right: 16px;
    position: relative;
    width: 48px
}

.header .lineUser {
    align-items: center;
    background-color: #fbfbfb;
    display: flex;
    flex-wrap: wrap;
    position: relative
}

.header .userNameScreen {
    align-items: center;
    color: #000;
    display: flex;
    height: 48px;
    padding: 0 8px;
    transition: background-color .2s ease-in-out
}

.header .userNameScreen:hover {
    background-color: #f2f2f2;
    text-decoration: none
}

.header .userNameMobile {
    background-color: #ef5f31;
    background-position: 50% 0;
    background-size: cover;
    border: 4px solid #e8e8e8;
    display: none;
    height: 48px;
    min-width: 48px;
    text-decoration: none
}

.header .countSuport,.header .userNameMobile {
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    justify-content: center
}

.header .countSuport {
    background: #e31e25;
    display: flex;
    font-size: 10px;
    height: 20px;
    line-height: 18px;
    margin-right: 8px;
    text-align: center;
    width: 20px
}

.header .userInput {
    align-items: center;
    background: #fbfbfb;
    border-radius: 2px;
    border-right: 1px solid #e8e8e8;
    color: #000;
    display: flex;
    height: 48px;
    justify-content: center;
    padding: 0 8px;
    transition: background-color .2s ease-in-out
}

.header .userInput:hover {
    background-color: #f2f2f2;
    text-decoration: none
}

.header .language .active,.header .language .active:hover {
    color: #000
}

.header .loginFB,.header .loginLdn {
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    padding: 5px 5px 5px 30px;
    text-decoration: none;
    width: 100%
}

.header .loginFB {
    background: #385694 url(/img/social/fb.svg) no-repeat 2% 50%;
    background-size: auto 20px;
    margin-top: 20px
}

.header .loginLdn {
    background: #0075b0 url(/img/social/ldn.svg) no-repeat 2% 50%;
    background-size: 15px auto;
    margin-top: 10px
}

.header .logout {
    background: url(/img/logout.svg) no-repeat 50% 50%;
    background-size: 30%;
    border-left: 1px solid #e8e8e8;
    display: flex;
    height: 48px;
    opacity: .5;
    transition: background-color .2s ease-in-out;
    width: 48px
}

.header .logout:hover {
    background-color: #f2f2f2;
    opacity: 1
}

.header .language {
    border-radius: 2px;
    display: flex;
    height: 48px;
    position: relative;
    width: 50px
}

.header .language .active {
    align-items: center;
    background-color: #fbfbfb;
    display: flex;
    height: 48px;
    justify-content: center;
    transition: background-color .2s ease-in-out;
    width: 48px
}

.header .language .active .flag {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    width: 21px
}

.header .language .active.open {
    background-color: #f2f2f2
}

.header .language .active.open .flag {
    border-color: #fff
}

.header .language .active:hover {
    background-color: #f2f2f2
}

.header .language .active:hover .flag {
    border-color: #fff
}

.header .language .active.disabled:hover {
    background-color: #fbfbfb
}

.header .language .active.disabled:hover .flag {
    border-color: #fbfbfb
}

.header .language .language_subs {
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-top: 1px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1004
}

.header .language .language_subs .item {
    align-items: center;
    display: flex;
    height: 48px;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: background-color .2s ease-in-out;
    width: 48px
}

.header .language .language_subs .item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8
}

.header .language .language_subs .item .flag {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    width: 21px
}

.header .language .language_subs .item:hover {
    background-color: #f2f2f2;
    text-decoration: none
}

.header .language .language_subs .item:hover .flag {
    border-color: #fff
}

.header .telegramHeaderLight,.header .twitterHeaderLight {
    background-color: #fbfbfb;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 50%;
    border-radius: 2px;
    display: flex;
    height: 48px;
    transition: background-color .2s ease-in-out;
    width: 48px
}

.header .telegramHeaderLight:hover,.header .twitterHeaderLight:hover {
    background-color: #f2f2f2
}

.header .telegramHeaderLight {
    background-image: url(../img/icons/stack.svg#telegram)
}

.header .twitterHeaderLight {
    background: url(/img/social/tw_blue.svg)
}

.mainAutocomplete {
    display: flex;
    position: relative;
    width: 45%
}

.mainAutocomplete .main_search {
    background: #fff url(../img/icons/stack.svg#search) no-repeat 4px 50%;
    background-size: 32px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    font-size: 1.1em;
    height: 48px;
    padding: 4px 4px 4px 48px;
    transition: border-color .2s ease-in-out;
    width: 100%
}

.mainAutocomplete .main_search:hover {
    border-color: #9ba0b2
}

.mainAutocomplete .swtchTab {
    display: flex;
    list-style: none;
    margin: 20px;
    overflow: hidden
}

.mainAutocomplete .swtchTab li {
    margin-right: 20px
}

.mainAutocomplete .swtchTab li .item {
    border-bottom: 2px solid #fff;
    color: #000;
    display: block;
    text-decoration: none
}

.autocompleteComponent .item {
    color: #000;
    display: block;
    text-decoration: none
}

.mainAutocomplete .active {
    border-color: #ef5f31;
    font-weight: 700
}

.autocompleteComponent .activeTab {
    border-bottom: 2px solid #ef5f31;
    font-weight: 700
}

.autocompleteComponent .item .count,.mainAutocomplete .item .count {
    font-size: 10px
}

.mainAutocomplete .result {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: 0;
    min-width: 100%;
    position: absolute;
    top: 100%;
    z-index: 1002
}

.mainAutocomplete .result .list {
    list-style: none;
    margin-bottom: 20px;
    max-height: 200px;
    overflow: auto
}

.mainAutocomplete .result .list li {
    display: block;
    text-align: left;
    width: 100%
}

.mainAutocomplete .result .list .item {
    display: block;
    padding: 5px 20px;
    text-decoration: none
}

.mainAutocomplete .result .list .item:hover {
    background: #fbfbfb
}

.mainAutocomplete .result .list .item .status {
    color: #9ba0b2;
    font-size: 10px
}

.mainAutocomplete .loader {
    position: absolute;
    right: 10px;
    top: 15px
}

.login_form {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: -20px;
    min-width: 200px;
    padding: 20px;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1010
}

.login_form .btn_green,.login_form .input {
    width: 100%
}

.login_form .close,.login_form .close:hover {
    color: #000;
    text-decoration: none
}

.mainMenuMobile {
    display: none
}

.main_menu {
    background: #344066;
    margin-top: 20px
}

.main_menu .list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 1256px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%
}

.main_menu .list .item {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    gap: 4px;
    justify-content: center;
    padding: 20px 8px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%
}

.main_menu .list .item.subs {
    align-items: center;
    padding: 0
}

.main_menu .list .item .btn_subs {
    background: #ef5f31;
    border-radius: 20px;
    color: #fff;
    display: flex;
    font-weight: 700;
    padding: 12px;
    text-transform: uppercase
}

.main_menu .list .item * {
    font-size: inherit
}

.main_menu .list .item b {
    text-align: left
}

.main_menu .language {
    background: #fbfbfb;
    display: none;
    height: 38px;
    padding: 0 20px;
    width: 100%
}

.main_menu .language .activeLang {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    padding: 0 4px
}

.main_menu .language .activeLang .flag {
    border: 1px solid #e8e8e8;
    border-radius: 2px
}

.main_menu .language .language_subs {
    align-items: center;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    flex-grow: 1;
    margin-top: 0;
    position: relative;
    right: auto;
    top: 0;
    width: 90%
}

.main_menu .language .language_subs li {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: center
}

.main_menu .language .language_subs li .itemLang {
    align-items: center;
    display: flex;
    height: 38px;
    justify-content: center
}

.main_menu .language .language_subs li .itemLang .flag {
    border: 1px solid #e8e8e8;
    border-radius: 2px
}

.main_menu .main_item {
    cursor: pointer;
    display: flex;
    flex-grow: 1;
    overflow: hidden;
    position: relative
}

.main_menu .main_item .inner_menu {
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    height: 0;
    left: 0;
    list-style: none;
    min-width: 200px;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1001
}

.main_menu .main_item .inner_menu .ttl {
    font-weight: 700;
    padding: 10px 20px 0;
    text-transform: uppercase
}

.main_menu .main_item:last-child .inner_menu {
    left: auto;
    right: 0
}

.main_menu .main_item:hover {
    overflow: visible
}

.main_menu .main_item:hover .item {
    background: #212a49
}

.main_menu .main_item:hover .inner_menu {
    height: auto
}

.main_menu .main_item .item {
    position: relative
}

.main_menu .main_item .item-new-element {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 10px;
    height: 12px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 10px;
    width: 12px
}

.main_menu .inner_menu_list {
    border: 1px solid #e4eaf0;
    border-top: 4px solid #ef5f31;
    list-style: none
}

.main_menu .inner_menu_list.menu_list_double {
    display: flex;
    flex-wrap: wrap;
    width: 500px
}

.main_menu .inner_menu_list.menu_list_double li {
    width: 50%
}

.main_menu .hide {
    height: 0
}

.main_menu .column {
    display: table-cell;
    padding: 10px 0
}

.main_menu .inner_menu_item {
    color: #000;
    display: block;
    font-family: Montserrat,sans-serif;
    padding: 10px 20px;
    text-decoration: none
}

@media screen and (max-width: 1024px) {
    .main_menu .inner_menu_item {
        font-size:11px
    }
}

@media screen and (max-width: 680px) {
    .main_menu .inner_menu_item {
        font-size:1em
    }
}

.main_menu .inner_menu_item:hover {
    background: #fef7f3
}

.main_menu .inner_menu_item-new {
    background: #5cb585;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    padding: 1px 4px
}

.main_menu .noactive {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    white-space: nowrap
}

.dopListMenuItem,.main_menu .close_menu,.main_menu .mobileMenuItem {
    display: none
}

.dopListMenu {
    background: #fff;
    border-bottom: 1px solid #e8e8e8
}

.dopListMenu .list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 1256px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%
}

.dopListMenu .list .item {
    align-items: flex-start;
    color: #000;
    display: flex;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    padding: 16px 8px;
    text-decoration: none
}

@media screen and (max-width: 1024px) {
    .dopListMenu .list .item {
        font-size:11px
    }
}

@media screen and (max-width: 680px) {
    .dopListMenu .list .item {
        font-size:1em
    }
}

.dopListMenu .list .item:hover {
    background: #fef7f3
}

.dopListMenu .list .item-new {
    background: #5cb585;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    margin-left: 2px;
    margin-top: -5px;
    padding: 1px 4px
}

.content {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin: 20px auto 10px;
    padding: 20px;
    position: relative;
    width: 100%
}

.content_scroll {
    float: right;
    margin-left: 2%;
    position: relative;
    width: 94%
}

.content_half {
    width: 48%
}

.content_half_lft {
    float: left
}

.content_half_rght {
    float: right
}

.container-half {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr
}

@media screen and (max-width: 1200px) {
    .container-half {
        grid-template-columns:1fr
    }
}

.content_header {
    align-items: center;
    border-bottom: 1px solid #ef5f31;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 0 0 10px;
    position: relative;
    width: 100%
}

.content_ttl {
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    margin-right: 12px
}

.content_ttl * {
    font-size: inherit;
    font-weight: inherit
}

.grid-wrapper {
    -moz-column-gap: 32px;
    column-gap: 32px;
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: 5fr 2fr
}

.grid-wrapper .content {
    grid-column-end: 2;
    grid-column-start: 1
}

.grid-wrapper .banners-wrapper {
    grid-column-end: 3;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-row-start: 1;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr))
}

@media screen and (max-width: 980px) {
    .grid-wrapper .banners-wrapper {
        grid-template-columns:repeat(auto-fill,minmax(220px,1fr))
    }
}

@media screen and (max-width: 880px) {
    .grid-wrapper .banners-wrapper {
        grid-template-columns:repeat(auto-fill,minmax(280px,1fr))
    }
}

@media screen and (max-width: 980px) {
    .grid-wrapper {
        grid-template-columns:2fr 1fr
    }
}

@media screen and (max-width: 880px) {
    .grid-wrapper {
        display:block
    }
}

.content-container {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px
}

.inner_ttl {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0
}

.main_ttl {
    font-family: Montserrat,sans-serif;
    font-size: 2.2em
}

.main_title,.main_ttl {
    font-weight: 700;
    line-height: 1.3
}

.main_title {
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h3)
}

.left_page_menu {
    float: left;
    list-style: none;
    margin-top: 20px;
    position: relative;
    width: 4%
}

.left_page_menu .list {
    list-style: none
}

.left_page_menu .list li {
    margin-bottom: 10px
}

.left_page_menu .item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    color: #000;
    display: block;
    height: 34px;
    line-height: 34px;
    position: relative;
    text-align: center;
    text-decoration: none
}

.left_page_menu .symbol {
    font-size: 12px;
    font-weight: 700
}

.left_page_menu .item img {
    max-height: 18px;
    max-width: 26px
}

.left_page_menu .item .item-icon,.left_page_menu .item img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.left_page_menu .txt {
    font-size: 12px
}

.left_page_menu .openDop {
    color: #344066;
    line-height: 40px;
    text-align: center
}

.left_page_menu .openDop,.left_page_menu .openDop:hover {
    font-size: 14px;
    text-decoration: none
}

.left_page_menu .itemInner {
    background: #fbfbfb;
    color: #344066;
    display: block;
    padding: 5px 7px;
    position: relative;
    text-align: center;
    text-decoration: none
}

.left_page_menu .active {
    background: #ef5f31;
    color: #fff
}

.left_page_menu .count {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    color: #000;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    position: absolute;
    right: -7px;
    text-align: center;
    top: -7px;
    width: 24px;
    z-index: 1
}

.left_page_menu .wrpper,.wrapperDop {
    position: relative
}

.dopTransition {
    background: #fff;
    bottom: 0;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: 110%;
    padding: 20px 20px 10px;
    position: absolute;
    width: 500px;
    z-index: 10
}

.dopTransition ul {
    list-style: none
}

.dopTransition ul li {
    border: 1px solid #d7dfe9;
    border-radius: 2px;
    box-shadow: none;
    float: left;
    margin: 0 10px 10px 0
}

.fixed_list {
    position: fixed;
    top: 0;
    z-index: 10
}

.table_adaptive {
    background: #fff;
    float: left;
    overflow: hidden;
    position: relative;
    width: 20%
}

.table_adaptive .table {
    width: 100%
}

.roll_table {
    float: left;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 80%
}

.roll_table .table {
    border-left: 1px solid #e8e8e8;
    width: 100%
}

.cb_table {
    width: 100%
}

.cb_table th,.table th {
    background: #fff;
    color: #6393c9;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    padding: 5px;
    text-transform: uppercase
}

.cb_table th *,.table th * {
    font-size: inherit;
    line-height: inherit
}

.table .number {
    display: inline-block;
    width: 35px
}

.roll_table_simple {
    overflow: auto;
    width: 100%
}

.roll_table_simple .table {
    width: 100%
}

.table_adaptive_simple {
    display: none
}

.scrollTableContent {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%
}

.scrollTableContent .table {
    width: 100%
}

.table_cntrl {
    position: relative
}

.table_cntrl .innerTableControl {
    display: flex;
    position: relative
}

.table_cntrl .new_item_label {
    color: #5cb585;
    font-size: 11px
}

.table_dimension {
    font-weight: 700;
    margin-bottom: 8px;
    margin-left: 5px
}

.cb_table tbody td,.table tbody td {
    padding: 2px 5px
}

.table_adaptive td,.table_adaptive th,.table_border td,.table_border th {
    border-right: 1px solid #f2f2f2
}

.table_border td:last-child {
    border-right: none
}

.table .small_txt {
    color: #9ba0b2;
    font-size: 12px
}

.table_invert tbody tr:nth-child(odd) {
    background: #fff
}

.table_invert tbody .gray_tr td {
    background-color: #fbfbfb
}

.searchTable .click_color td {
    background: #fbe5e0
}

.tableSimpleSub {
    position: relative
}

.table_document td {
    padding: 0 5px
}

.table_document .item {
    padding: 2px 0;
    text-align: left;
    white-space: nowrap
}

.table_document .group td {
    background: #fbfbfb;
    border-bottom: 4px solid #fff;
    border-top: 10px solid #fff;
    padding: 1px 5px
}

.table-with-checkbox {
    display: flex
}

.forFixedThead {
    position: relative
}

.fixedThead {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.fixedThead th {
    border-bottom: 2px solid #e8e8e8
}

.arrow_left,.arrow_right {
    cursor: pointer;
    height: 44px;
    position: absolute;
    top: 5px;
    width: 15%;
    z-index: 2
}

.arrow_left:before,.arrow_right:before {
    background-color: #ef5f31;
    content: "";
    height: 24px;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: -4px;
    width: 24px
}

.fixedThead .arrow_left,.fixedThead .arrow_right {
    z-index: inherit
}

.arrow_left {
    left: 49%
}

.arrow_left:before {
    left: 0;
    transform: rotate(90deg)
}

.arrow_right {
    right: 0
}

.arrow_right:before {
    right: 0;
    transform: rotate(-90deg)
}

.fixedThead .arrow_left {
    left: 0
}

.fixedHeadTable {
    position: fixed;
    top: 0;
    z-index: 100
}

.fixedHeadTableLeft {
    float: left
}

.fixedHeadTableRight {
    background: #fff;
    float: left;
    overflow: hidden;
    position: relative
}

.fieldLR {
    border-left: 1px solid #e8e8e8
}

.arrow_left_screen,.arrow_right_screen {
    background: #000;
    height: 100%;
    opacity: .07;
    position: absolute;
    top: 0;
    width: 38px;
    z-index: 10
}

.arrow_left_screen__icon,.arrow_right_screen__icon {
    background-color: #fff;
    height: 36px;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 36px
}

.arrow_left_screen {
    left: 20%
}

.arrow_left_screen__icon {
    transform: translate(50%,-50%) rotate(90deg)
}

.arrow_right_screen {
    right: 0
}

.arrow_right_screen__icon {
    transform: translate(50%,-50%) rotate(-90deg)
}

.arrow_left_screen_multy:after,.arrow_left_screen_multy:before,.arrow_right_screen_multy:after,.arrow_right_screen_multy:before {
    background-color: #fff;
    content: "";
    height: 36px;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 50%;
    width: 36px
}

.arrow_left_screen_multy:after,.arrow_left_screen_multy:before {
    transform: translateX(50%) rotate(90deg)
}

.arrow_left_screen_multy:after,.arrow_right_screen_multy:after {
    top: 10px
}

.arrow_left_screen_multy:before,.arrow_right_screen_multy:before {
    bottom: 10px
}

.arrow_right_screen_multy:after,.arrow_right_screen_multy:before {
    transform: translateX(50%) rotate(-90deg)
}

.roll_table .arrow_left_screen,.roll_table .arrow_right_screen {
    margin-top: 10px
}

.simple_table {
    position: relative
}

.simple_table .roll_table {
    width: 100%
}

.simpleTableSub {
    position: relative
}

.simpleTableSub .simpleTableSubIndent {
    border-left: 38px solid #fff;
    border-right: 38px solid #fff
}

.simpleTableSub .arrow_left_screen {
    left: 0
}

.simpleTableSubScroll {
    overflow: auto
}

.table tbody .active_tr td {
    background: #d1e9e8
}

.table .ttl_period {
    display: inline-block;
    font-size: 12px;
    width: 40px
}

.table .openOther td {
    background: #fff;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    padding: 10px;
    text-align: center
}

.ttl_for_overflow {
    display: inline-block;
    overflow: hidden
}

.tableGallery {
    position: relative
}

.tableGallery .tableScroll {
    overflow: auto;
    position: relative
}

.tableGallery .tableScroll td,.tableGallery .tableScroll th {
    padding-left: 20px;
    padding-right: 20px;
    text-align: right
}

.tableGallery .tableScroll td {
    white-space: nowrap
}

.tableGallery .table {
    width: 100%
}

.tableGallery td:first-child,.tableGallery th:first-child {
    background: #fff;
    left: 0;
    min-width: 150px;
    padding-left: 5px;
    padding-right: 5px;
    position: sticky;
    text-align: left;
    white-space: normal;
    z-index: 1
}

.tableGallery td:nth-child(2),.tableGallery th:nth-child(2) {
    background: #fff;
    border-right: 1px solid #e8e8e8;
    left: 150px;
    min-width: 100px;
    padding-left: 5px;
    padding-right: 5px;
    position: sticky;
    z-index: 1
}

.tableGallery td:nth-child(2):after,.tableGallery th:nth-child(2):after {
    background: #000;
    content: "";
    height: 100%;
    left: 100%;
    position: relative;
    top: 0;
    width: 2px
}

.tableGallery .group_tr td {
    padding-bottom: 5px;
    padding-top: 5px
}

.tableGallery .group_tr td:first-child {
    border-right: 1px solid #e8e8e8;
    min-width: 250px
}

.tableGallery .group_tr td:nth-child(2) {
    border: none;
    left: auto;
    position: relative;
    z-index: 0
}

.tableGallery tr:nth-child(odd),.tableGallery tr:nth-child(odd) td:first-child,.tableGallery tr:nth-child(odd) td:nth-child(2) {
    background: #fbfbfb
}

.tableGallery .preHeaderCurrency {
    white-space: nowrap
}

.tableGallery .headerCurrency {
    color: #000;
    font-size: 10px;
    white-space: nowrap
}

.tableGallery .arrow_left_screen,.tableGallery .arrow_right_screen {
    background-color: transparent;
    margin-top: -20px;
    opacity: 1
}

.tableGallery .arrow_left_screen__icon,.tableGallery .arrow_right_screen__icon {
    background-color: #ef5f31;
    height: 20px;
    top: 0;
    width: 20px
}

.tableGallery .arrow_right_screen__icon {
    transform: translateX(50%) rotate(-90deg)
}

.tableGallery .arrow_left_screen {
    left: 250px
}

.tableGallery .arrow_left_screen__icon {
    transform: translateX(50%) rotate(90deg)
}

.goArchive {
    background: url(/img/archive.svg) no-repeat 0 0;
    background-size: 20px 17px;
    display: inline-block;
    padding-left: 25px
}

.table_cntrl2 {
    position: relative
}

.table_cntrl2 .innerTableControl {
    display: flex;
    position: relative
}

.table_cntrl2 .innerTableControl .for_number {
    display: flex
}

.table_cntrl2 .innerTableControl .for_number.displayBlock {
    display: block
}

.table_cntrl2 .innerTableControl .for_number th .number {
    width: 27px
}

.table_cntrl2 .fixedHeadTable {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    z-index: 1000
}

.table_cntrl2 .fixedHeadTable .fixedHeadTableLeft {
    height: 100%;
    z-index: 2000
}

.table_cntrl2 .fixedHeadTable .fixedHeadTableLeft,.table_cntrl2 .table_adaptive {
    background: #fff;
    border-right: 1px solid #e8e8e8;
    box-sizing: content-box;
    left: 0;
    position: absolute;
    top: 0;
    width: 200px
}

.table_cntrl2 .table_adaptive {
    overflow: hidden;
    z-index: 10
}

.table_cntrl2 .table_adaptive td,.table_cntrl2 .table_adaptive th {
    border-right: none
}

.table_cntrl2 .table_adaptive .table,.table_cntrl2 .table_adaptive .table .hide_hide_block,.table_cntrl2 .table_adaptive .table .show_hide_block {
    width: 100%
}

.table_cntrl2 .table_adaptive .openOther .hide_hide_block,.table_cntrl2 .table_adaptive .openOther .show_hide_block {
    display: none
}

.table_cntrl2 .long_table .table td:first-child {
    border-right: none;
    max-width: 200px;
    min-width: 200px
}

.table_cntrl2 .arrow_left_screen {
    left: 200px
}

.table_cntrl2 .table_wrapper {
    float: left;
    position: relative;
    width: 100%
}

.table_cntrl2 .table_wrapper .table {
    width: 100%
}

.table_cntrl2 .table_wrapper .table th:first-child {
    border-left: none
}

.table_cntrl2 .table_wrapper .table .field_subregion_name {
    white-space: nowrap
}

.table_cntrl2 .fixedHeadTableRight th,.table_cntrl2 .table_wrapper th {
    text-align: left
}

.table_cntrl2 .hide_hide_block,.table_cntrl2 .show_hide_block {
    font-size: 12px;
    white-space: nowrap
}

.table_cntrl2 .checkbox,.table_cntrl2 .radioButton {
    float: left;
    margin-right: 10px
}

.table_cntrl2.leftColumn .table_wrapper {
    overflow-x: auto;
    overflow-y: hidden
}

.table_cntrl2.leftColumn .table_wrapper .table th:first-child {
    min-width: 200px;
    width: 200px
}

.table_cntrl2 .odd {
    background-color: #fbfbfb
}

.table_cntrl2 .even {
    background-color: #fff
}

.table_cntrl2 .substrings {
    min-width: 300px
}

@media screen and (max-width: 680px) {
    .table_cntrl2 .substrings {
        min-width:0
    }
}

.param_list {
    color: #697086;
    display: flex;
    flex-wrap: wrap;
    list-style: none
}

.param_list>li {
    background: url(/img/point_line.png) repeat-x;
    background-position: 0 13px;
    float: left;
    margin: 7px 0;
    position: relative;
    width: 100%
}

.param_list .name,.param_list .value {
    display: inline-block;
    position: relative
}

.param_list .name {
    max-width: 50%
}

.param_list .name .txt {
    background: #fff
}

.param_list .value {
    background: #fff;
    color: #000;
    float: right;
    width: 49%
}

.link_list {
    list-style: none
}

.link_list li {
    margin-bottom: 15px
}

.active_tag_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 12px 0;
    width: 100%
}

.active_tag_list li {
    background: #fef7f3;
    border-radius: 20px;
    float: left;
    font-size: 12px;
    margin-bottom: 5px;
    margin-right: 20px;
    max-width: 100%;
    overflow: hidden;
    padding: 4px 25px 4px 10px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media screen and (max-width: 680px) {
    .active_tag_list li {
        padding:16px 48px 16px 10px
    }
}

.active_tag_list .ttl {
    font-size: 11px;
    font-weight: 700
}

.active_tag_list .item {
    font-size: 11px;
    margin: 0 5px
}

.active_tag_list .close {
    align-items: center;
    color: #9ba0b2;
    display: flex;
    font-size: 17px;
    font-weight: 300;
    height: 100%;
    justify-content: center;
    line-height: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    width: 30px
}

@media screen and (max-width: 680px) {
    .active_tag_list .close {
        width:48px
    }
}

.active_tag_list .close:hover {
    color: #e31e25;
    text-decoration: none
}

.active_tag_list .clear {
    padding: 0
}

.filter_form {
    position: relative
}

.filter_line {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%
}

.search_essence {
    width: calc(50% - 10px)
}

@media screen and (max-width: 1024px) {
    .search_essence {
        width:100%
    }
}

.filter {
    position: relative;
    width: calc(25% - 15px)
}

.filter .count {
    color: #9ba0b2;
    margin-right: 2px
}

.filter .switch {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    display: block;
    overflow-x: hidden;
    padding: 8px 32px 8px 8px;
    position: relative;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap
}

.filter .switch:before {
    background-color: #232b43;
    content: "";
    height: 12px;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px
}

.filter .active_swtch,.select .active_swtch {
    background-color: #fef7f3;
    font-weight: 700
}

.filter .delete {
    color: #000;
    font-size: 30px;
    height: 20px;
    line-height: 20px;
    opacity: .5;
    position: absolute;
    right: -20px;
    text-align: center;
    text-decoration: none;
    top: -20px;
    width: 20px;
    z-index: 10
}

.filter_wrapper {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    left: 0;
    list-style: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 11
}

.filter_wrapper .input_wrapper {
    padding: 5px 10px 10px
}

.filter_check_all,.filter_clear_all {
    color: #000;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 10px;
    opacity: .7;
    text-decoration: none
}

.filter_check_all {
    float: left;
    margin-left: 10px
}

.filter_clear_all {
    float: right;
    margin-right: 10px
}

.filter_check_all:hover,.filter_clear_all:hover {
    border-color: #fff;
    color: #000;
    opacity: 1;
    text-decoration: none
}

.filter_wrapper .input {
    width: 100%
}

.filter .filter_list {
    list-style: none;
    margin-bottom: 10px;
    max-height: 300px;
    overflow-y: auto
}

.filter .filter_list .line {
    position: relative
}

.filter .filter_list .line .ttl {
    font-weight: 700
}

.filter .filter_list .item.separator_text {
    font-weight: 700;
    padding-bottom: 2px;
    padding-top: 12px
}

.filter .item {
    color: #000;
    cursor: pointer;
    display: block;
    padding: 8px;
    text-decoration: none;
    word-break: break-all
}

.filter_list .inner_list {
    list-style: none;
    margin-left: 28px
}

.filter_list .innerListSwtch {
    color: #9ba0b2;
    font-size: 12px;
    margin-bottom: 5px;
    margin-left: 36px
}

.filter_list .innerListSwtch:hover {
    color: #9ba0b2
}

.filter_list .innerListSwtch:after {
    top: 9px
}

.filter_list .hide_hide_block,.filter_list .show_hide_block {
    background: none;
    border: none;
    padding: 2px 20px 2px 0
}

.filter .item .quot_list {
    font-size: 12px
}

.filter .item:hover {
    background: #fbfbfb
}

.filter_extended .select_dflt_width {
    float: left;
    margin-right: 0;
    margin-top: 5px;
    width: 49%
}

.filter_extended_indent {
    margin-left: 2%
}

.close_mobile {
    color: #000;
    display: none;
    font-weight: 700;
    margin: 0 15px;
    padding: 10px 15px 10px 20px;
    position: relative;
    text-decoration: none
}

.close_mobile:before {
    background-color: #232b43;
    content: "";
    height: 16px;
    left: -4px;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 16px
}

.close_mobile:hover {
    color: #000;
    text-decoration: none
}

.filter .clear_filter {
    display: none;
    margin: 10px 15px
}

.filter_range {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    float: left;
    padding: 8px;
    width: calc(25% - 15px)
}

.filter_range .ttl {
    color: #000;
    float: left;
    margin-bottom: 7px;
    position: relative
}

.filter_range .end,.filter_range .start {
    border: none;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 2px;
    padding-bottom: 5px;
    width: 47%
}

.filter_range .start {
    float: left
}

.filter_range .end {
    float: right
}

.filter_range .shortPanel {
    display: flex;
    list-style: none;
    margin-top: 10px;
    overflow: hidden;
    width: 100%
}

.filter_range .shortPanel li {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1
}

.filter_range .shortPanel li .item {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    display: block;
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

.filter_range .shortPanel li .item:hover {
    background: #fbfbfb;
    text-decoration: none
}

.filter_range .shortPanel li .active {
    background: #fef7f3;
    font-weight: 700
}

.backColor {
    background-color: #fef7f3
}

.backColor input {
    font-weight: 700
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none
}

.tabs li {
    display: flex;
    flex-grow: 1
}

.tabs li .item {
    align-items: center;
    background: #fbfbfb;
    border: 1px solid #e8e8e8;
    color: #000;
    cursor: pointer;
    display: flex;
    height: 38px;
    justify-content: center;
    padding: 10px 12px;
    text-decoration: none;
    transition: border-color .2s ease-in-out;
    width: 100%
}

.tabs li .item:hover {
    background: #fbfbfb;
    border-color: #9ba0b2;
    color: #000
}

.tabs li .item img {
    max-height: 16px;
    max-width: 100%
}

.tabs li .active,.tabs li .active:hover {
    background: #d1e9e8;
    color: #000
}

.arbitraryPeriod,.compareItem,.showSpreadGraph {
    background: #fbfbfb;
    border: 1px solid #e8e8e8;
    color: #000;
    cursor: pointer;
    display: block;
    height: 36px;
    line-height: 36px;
    position: relative;
    text-align: center;
    text-decoration: none;
    white-space: nowrap
}

.compareItem img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 98%;
    max-width: 98%;
    position: absolute;
    right: 0;
    top: 0
}

.arbitraryPeriod:hover,.compareItem:hover,.showSpreadGraph:hover {
    background: #fbfbfb;
    border-color: #9ba0b2;
    color: #000
}

.arbitraryPeriod.active,.arbitraryPeriod.active:hover,.compareItem.active,.compareItem.active:hover,.showSpreadGraph.active,.showSpreadGraph.active:hover {
    background: #d1e9e8;
    color: #000
}

.range_cntrl {
    float: left;
    margin-left: 10px
}

.load_data {
    display: inline-block
}

.date_end,.date_start {
    float: left
}

.date_start {
    margin-right: 20px
}

.date_end .ttl,.date_start .ttl {
    float: left;
    margin-top: 10px
}

.changeGraphPeriod {
    position: relative
}

.changeGraphPeriod .switch {
    background-color: #fff;
    background-image: url(../img/icons/stack.svg#arrow-down);
    background-position: 96% 50%;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    border: 1px solid #d7dfe9;
    border-radius: 2px;
    color: #232b44;
    display: block;
    padding: 8px;
    text-decoration: none
}

.changeGraphPeriod .list {
    background: #fff;
    border: 1px solid #e8e8e8;
    left: 0;
    list-style: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1
}

.changeGraphPeriod .list .item {
    color: #000;
    display: block;
    padding: 8px 10px;
    text-decoration: none
}

.open_phone {
    background: url(../img/icons/stack.svg#call) no-repeat 0 0;
    display: inline-block;
    height: 20px;
    width: 20px
}

.ru_terminal .load_data .swtch {
    background: none;
    box-shadow: none;
    height: auto;
    position: relative;
    width: auto
}

.load_data {
    margin-left: 5px;
    position: relative
}

.load_data .swtch {
    background: #5cb585;
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    cursor: pointer;
    height: 20px;
    position: relative;
    top: 2px;
    transform: scale(1);
    transition: all .8s ease 0s;
    width: 20px
}

.load_data .swtch:hover {
    transform: scale(1.2)
}

.load_data .swtch img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 10px;
    position: absolute;
    right: 0;
    top: 0
}

.load_data .load_data_wrapper {
    background: #d1e9e8;
    border-radius: 2px;
    bottom: 100%;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: 100%;
    list-style: none;
    position: absolute;
    z-index: 10
}

.load_data .load_data_wrapper .item {
    color: #000;
    display: block;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap
}

.load_data .load_data_wrapper .item:hover {
    color: inherit;
    text-decoration: underline
}

.load_data .load_data_wrapper .item_txt {
    color: #000;
    display: block;
    font-weight: 700;
    padding: 10px 20px;
    white-space: nowrap
}

.load_data .load_data_wrapper .cross_lnk {
    background: #fbfbfb;
    cursor: pointer;
    display: block;
    font-size: .8em;
    padding: 5px 0;
    text-align: center
}

.load_data.telegram_link .swtch {
    background: #29b6f6
}

.load_data.telegram_link .swtch img {
    height: 20px;
    max-width: 20px;
    width: 20px
}

.data_provider_btn .btn_blue,.data_provider_btn .btn_green {
    font-size: 13px;
    font-weight: 400;
    padding: 5px 10px
}

.paging {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 40px;
    overflow: hidden
}

.paging .item {
    color: #000;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none
}

.paging .item:hover {
    background: #fbfbfb;
    color: #000;
    text-decoration: none
}

.paging .active {
    background: #e8e8e8
}

.hide_hide_block,.show_hide_block {
    background-color: #e8e8e8;
    border-radius: 2px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    padding: 4px 20px 4px 5px;
    position: relative;
    text-decoration: none
}

.hide_hide_block:hover,.hide_hide_block:visited,.show_hide_block:hover,.show_hide_block:visited {
    color: #000;
    text-decoration: none
}

.hide_hide_block:after,.show_hide_block:after {
    content: "";
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px
}

.hide_hide_block:after,.show_hide_block:after {
    background-color: #232b43;
    -webkit-mask-image: url(../img/icons/stack.svg#arrow-down);
    mask-image: url(../img/icons/stack.svg#arrow-down);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat
}

.hide_hide_block:after {
    transform: translateY(-50%) rotate(180deg)
}

.selectPeriod {
    flex-grow: 1
}

.graphPeriod {
    align-items: center;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-grow: 1;
    justify-content: space-between
}

.graphPeriod .datepicker {
    border: none;
    width: 128px
}

.graphPeriod .tab_text {
    margin-left: 1%;
    margin-right: 1%
}

.graphPeriod .btn_blue {
    margin-left: 1%
}

.showLogo {
    display: inline-block
}

.footer_main {
    background: #323232;
    padding: 60px 0 20px
}

.footerItem {
    margin-bottom: 40px
}

.footerItem:nth-child(2) {
    margin: 0 11%
}

.footerItem .head {
    border-bottom: 1px solid #475273;
    color: #9ba0b2;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 5px 0
}

.footerItem .head .lnk {
    color: #61a8eb;
    font-weight: 400;
    margin-left: 10px;
    text-decoration: none
}

.footerItem .head .lnk:hover {
    color: #e31e25
}

.footerItem .list {
    list-style: none
}

.footerItem .list li {
    margin-bottom: 20px
}

.footerItem .list .item {
    color: #61a8eb;
    text-decoration: none
}

.footerItem .list .item:hover {
    color: #e31e25
}

.footerItem .info {
    color: #9ba0b2
}

.footerItem .info a {
    color: #61a8eb;
    text-decoration: none
}

.footerItem .info a:hover {
    color: #e31e25
}

.footerItem .lftClmnFooter {
    float: left;
    width: 20%
}

.footerItem .lftClmnFooter img {
    width: 100%
}

.footerItem .rghtClmnFooter {
    float: right;
    width: 76%
}

.footerItem .rghtClmnFooter .item {
    color: #fff
}

.footerPart {
    float: left;
    width: 50%
}

.rssFooter {
    margin-top: 40px
}

.rssFooter .ttl {
    color: #fff;
    font-size: 20px;
    font-weight: 700
}

.rssFooter .info {
    color: #9ba0b2
}

.rssFooter {
    float: left;
    width: 26%
}

.rssFooter .rssForm {
    border: 1px solid #fff;
    border-radius: 2px;
    margin-top: 10px
}

.rssFooter .inputRss {
    color: #fff;
    float: left;
    height: 38px;
    padding: 0 5px;
    width: 90%
}

.rssFooter .btnRss {
    background: url(/img/arrow_rght.svg) no-repeat 50% 50%;
    background-size: 30%;
    border-left: 1px solid #fff;
    display: block;
    float: right;
    height: 38px;
    width: 10%
}

.footer_main .store_panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px auto
}

.footer_main .store_panel .store {
    display: block;
    height: 36px;
    margin: 10px
}

.footer_main .store_panel .store img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: auto
}

.footer_main .social_list {
    display: table;
    list-style: none;
    margin: 8px auto 16px
}

.footer_main .social_list li {
    color: #fff;
    display: table-cell;
    vertical-align: middle
}

.footer_main .social_list .item {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 2px;
    color: #fff;
    display: block;
    height: 36px;
    margin: 0 10px;
    padding: 8px;
    transition: color .2s ease-in-out;
    width: 36px
}

.footer_main .social_list .item:hover {
    color: #61a8eb
}

.footer_main .social_list .fb {
    background-image: url(/img/social/fb.svg);
    background-size: auto 20px
}

.footer_main .social_list .inst {
    background-image: url(/img/social/inst.svg);
    background-size: 20px 20px
}

.footer_main .line {
    background: #475273;
    height: 1px;
    margin: 10px 0 20px
}

.footer_main .columnMenu {
    display: flex;
    justify-content: space-between
}

.footer_main .columnMenu .column {
    width: 13%
}

.footer_main .columnMenu .column .list li {
    color: #fff;
    margin-bottom: 5px;
    padding: 3px 5px 3px 0
}

.footer_main .columnMenu .ttl {
    color: #9ba0b2;
    font-family: Monsterrat,sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    padding-right: 5px
}

.footer_main .columnMenu .list {
    list-style: none;
    margin-bottom: 20px
}

.footer_main .columnMenu .list .item {
    color: #61a8eb;
    font-size: 11px;
    text-decoration: none
}

.footer_main .columnMenu .list .item:hover {
    color: #e31e25
}

.footer_bottom {
    background: #323232;
    padding: 20px 0
}

.footer_bottom .logo {
    background: url(/img/logo_cbonds_white.svg) no-repeat;
    background-size: 130px auto;
    display: block;
    float: left;
    height: 28px;
    width: 130px
}

.footer_bottom .list {
    display: table-cell;
    float: right;
    list-style: none;
    margin-top: 7px
}

.footer_bottom li {
    display: table-cell;
    padding: 0 0 0 20px;
    vertical-align: middle
}

.footer_bottom .item {
    color: #61a8eb;
    display: block;
    font-size: 11px;
    text-decoration: none
}

.footer_bottom .item:hover {
    color: #e31e25
}

.footer_bottom .line {
    background: #3c4563;
    height: 1px;
    margin: 8px 0
}

.footer_bottom .copyr {
    color: #9097b0;
    float: left;
    font-size: 12px
}

.footer_bottom .list_pay {
    float: right;
    list-style: none
}

.footer_bottom .list_pay .item {
    background-color: #fff;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 2px;
    float: left;
    height: 30px;
    margin-left: 20px;
    width: 50px
}

.footer_bottom .visa {
    background-image: url(/img/visa.svg);
    background-size: 40px auto
}

.footer_bottom .mastercard {
    background-image: url(/img/mastercard.svg);
    background-size: auto 20px
}

.footer_bottom .mir {
    background-image: url(/img/logo_mir.svg);
    background-size: 40px 20px
}

.footer_bottom .paypal {
    background-image: url(/img/paypal.svg);
    background-size: 40px auto
}

.inner_form .btn {
    border: none;
    font-size: 12px;
    padding: 12px 50px
}

.footer_main .skolkovo {
    display: inline-block;
    width: 203px
}

.footer_main .skolkovo img {
    border-radius: 2px;
    width: 100%
}

.dialog {
    background: url(/img/bks_bckgr.png) repeat;
    height: 100%;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1000
}

.dialog_body {
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    padding: 20px;
    position: relative;
    top: 10%
}

.dialog_body .close {
    cursor: pointer;
    display: inline-block;
    float: right;
    font-size: 30px;
    margin-top: -20px
}

.dialog_body .close,.dialog_body .close:hover {
    color: #000;
    text-decoration: none
}

.dialog .ttl {
    float: left;
    font-weight: 700
}

.dialog_body .btn_cancel {
    margin-left: 30px
}

.cookie_panel {
    background: #fff1b6;
    border-top: 2px solid #efd468;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 200001
}

.cookie_panel_wrapper {
    margin: 20px auto;
    max-width: 1256px;
    padding: 0 20px;
    text-align: left;
    width: 100%
}

.cookie_panel_success {
    background: #000;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    padding: 5px 30px;
    text-decoration: none
}

.cookie_panel_success:hover {
    text-decoration: none
}

.mobile {
    display: none
}

.container {
    margin: 0 auto;
    max-width: 1256px;
    padding: 0 20px
}

.d {
    text-align: center
}

.page_404 {
    background-color: #fff
}

.page_404 h1,.page_404 h2,.page_404 h3,.page_404 h4,.page_404 h5,.page_404 h6 {
    font-family: Montserrat,sans-serif
}

.page_404-wrapper {
    background-clip: border-box;
    background-image: url(/img/404_light.svg);
    background-position: right bottom 80%;
    background-repeat: no-repeat;
    background-size: 85%;
    padding: 64px 0 110px
}

.page_404-heading {
    margin: 0 0 26px
}

.page_404-heading-title {
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 28px;
    width: 47%
}

.page_404-heading-subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 55.55556%
}

.page_404-search {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: center
}

.page_404-cards {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    gap: 3%;
    justify-content: space-between;
    padding: 20px 0 0
}

.page_404-cards .card {
    background-color: #d1e9e8;
    border-radius: 4px;
    flex: 1 0;
    padding: 16px 20px 20px;
    position: relative;
    transition: .2s ease-in-out
}

.page_404-cards .card a {
    border-radius: 4px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.page_404-cards .card_red {
    background-color: #fbe5e0
}

.page_404-cards .card_red:hover {
    background-color: #f8d2c9
}

.page_404-cards .card_green {
    background-color: #d1e9e8
}

.page_404-cards .card_green:hover {
    background-color: #c0e1df
}

.page_404-cards .card-icon {
    height: 53px;
    position: relative;
    width: 51px
}

.page_404-cards .card-icon:before {
    background-color: #fff;
    content: "";
    height: 150%;
    left: -10%;
    -webkit-mask-image: url(../img/icons/stack.svg#search);
    mask-image: url(../img/icons/stack.svg#search);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: .5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150%
}

.page_404-cards .card_blue {
    background-color: #dcf4ff
}

.page_404-cards .card_blue:hover {
    background-color: #c3ecff
}

.page_404-cards .card-wrapper {
    align-items: center;
    display: flex;
    gap: 30px;
    height: 100%;
    justify-content: start
}

.page_404-cards .card-content {
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: start
}

.page_404-cards .card-content-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 4px
}

.page_404-cards .card-content-desc {
    font-size: 1.2em;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.page_404-input {
    position: relative;
    width: 68.96552%
}

.page_404-input .mainAutocomplete {
    width: 100%
}

.page_404-input .main_search {
    background-color: #fff;
    background-position: 14px;
    border-radius: 8px;
    font-size: 1.5em;
    padding: 35px 16px 35px 48px;
    width: 100%
}

.page_404-input .input {
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    height: 80px;
    line-height: normal;
    padding: 26px 14px 26px 82px;
    width: 100%
}

.page_404-input-icon {
    left: 16px;
    position: absolute;
    top: 20px
}

.landing-contacts {
    background: #344066;
    padding: 60px 0 44px
}

.landing-contacts-title {
    color: #fff;
    font-size: 3em
}

.landing-contacts-title-dop {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 20px
}

.landing-contacts-list {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0 40px
}

.landing-contacts-list-item {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 20px;
    padding-right: 40px
}

.landing-contacts-list-item-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px
}

.landing-contacts-list-item-text a {
    color: #61a8eb;
    font-size: inherit;
    text-decoration: none
}

.landing-contacts-list-item-text a:hover {
    color: #e31e25
}

.landing-contacts .country {
    font-weight: 700
}

.landing-contacts .country,.landing-contacts .phone {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    line-height: normal
}

.landing-contacts .phone {
    font-weight: 400
}

.bannerTop .bannerTopOverlay {
    background-color: #fff;
    height: 80px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100
}

.bannerTop ul {
    display: flex;
    list-style: none
}

.bannerTop ul .width0 {
    width: 0
}

.bannerTop .item {
    border: 1px solid #fbfbfb;
    max-width: 1256px;
    text-align: center
}

.bannerTop .item img {
    float: left
}

.partBannerTop .item:nth-child(2) {
    margin: 0 18px
}

.congresso .mobile_b {
    display: none
}

.loadDataExcel .tab_text {
    float: left;
    line-height: 36px;
    margin-right: 1%;
    width: 2%
}

.loadDataExcel .datepicker {
    float: left;
    margin-right: 2%;
    width: 15%
}

.loadDataExcel .btnLoad {
    float: left;
    padding: 9px 0;
    width: 15%
}

.compareItem {
    float: left;
    width: 20%
}

.comparisonBlock {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px
}

.comparisonSearch {
    position: relative;
    width: 50%
}

.comparisonSearch .list {
    background: #fff;
    border: 1px solid #d7dfe9;
    border-radius: 2px;
    left: 0;
    list-style: none;
    max-height: 200px;
    overflow: auto;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10
}

.comparisonSearch .list ul {
    list-style: none
}

.comparisonSearch .list ul li {
    padding: 10px 15px
}

.comparisonSearch .list ul li:hover {
    background: #fbfbfb;
    cursor: pointer
}

.comparisonSearch .swtchTab {
    display: flex
}

.comparisonSearch .wrpSearch {
    float: left;
    position: relative;
    width: 100%
}

.comparisonSearch .wrpSearch .input {
    width: 100%
}

.comparisonSearch .wrpSearch .status {
    color: #9ba0b2;
    font-size: 10px
}

.comparisonSearch .autocompleteComponent:has(>.autocompl):before {
    background-color: #d7dfe8;
    content: "";
    height: 20px;
    -webkit-mask-image: url(../img/icons/stack.svg#search);
    mask-image: url(../img/icons/stack.svg#search);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    z-index: 1
}

.comparisonSearch .autocompleteComponent:has(>.autocompl) .autocompl {
    padding-right: 24px
}

.comparisonSearch .inner_compare {
    float: left;
    width: 20px
}

.comparisonSearch .inner_compare span {
    position: relative
}

.comparisonSearch .clearStock {
    align-items: center;
    background: #fff;
    color: #e31e25;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 300;
    height: 31px;
    justify-content: center;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 31px
}

@media screen and (max-width: 680px) {
    .comparisonSearch .clearStock {
        height:48px
    }
}

.comparisonSearch .select {
    margin-left: 10%;
    margin-top: 10px
}

.comparisonSearch .loader {
    background: #fff;
    position: absolute;
    right: 5px;
    top: 10px;
    z-index: 2
}

.cancelCompare {
    color: #000;
    margin-left: 20px;
    opacity: .5;
    text-decoration: none
}

.legend_line_compare {
    background: #ea4f4a;
    display: block;
    height: 2px
}

.active_comp {
    background: #d1e9e8
}

.forRightTopInnerBlock {
    margin-top: 40px!important
}

.hintsIcon {
    align-items: center;
    bottom: 140px;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-right: 20px;
    position: fixed;
    right: 0;
    transform: scale(1);
    transition: transform .3s;
    width: 50px;
    z-index: 90000
}

.hintsIcon:hover {
    transform: scale(1.1);
    transition: transform .3s
}

.hintsIcon img {
    height: 90%;
    max-width: 100%
}

@keyframes background {
    50% {
        background-color: #ed8967
    }
}

.hintsMessage {
    background: url(/img/back_yellow.png) repeat 0 0;
    color: #000;
    padding: 10px;
    text-align: center
}

.hintsMessage .btn {
    color: #000;
    font-weight: 700;
    padding: 5px 10px
}

.guides_back {
    background: #f8e255;
    border-radius: 50px;
    color: #000;
    padding: 10px;
    position: absolute;
    text-align: center;
    z-index: 999
}

.guides_back a {
    color: #000;
    display: inline-block;
    margin-top: 5px
}

.guides_back_left {
    margin-right: 20px;
    right: 100%
}

.guides_back_right {
    left: 100%;
    margin-left: 20px
}

.guides_back_top {
    bottom: 100%;
    margin-bottom: 20px
}

.guides_back_bottom {
    margin-top: 20px;
    top: 100%
}

.guides_back_bottom:before,.guides_back_left:before,.guides_back_right:before,.guides_back_top:before {
    border-style: solid;
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    width: 0
}

.guides_back_left:before,.guides_back_right:before {
    bottom: 0;
    top: 0
}

.guides_back_bottom:before,.guides_back_top:before {
    left: 0;
    right: 0
}

.guides_back_bottom:before {
    border-color: transparent transparent #f8e255;
    border-width: 0 15px 20px;
    bottom: 90%
}

.guides_back_top:before {
    border-color: #f8e255 transparent transparent;
    border-width: 20px 15px 0;
    top: 90%
}

.guides_back_left:before {
    border-color: transparent transparent transparent #f8e255;
    border-width: 15px 0 15px 20px;
    right: -10px
}

.guides_back_right:before {
    border-color: transparent #f8e255 transparent transparent;
    border-width: 15px 20px 15px 0;
    left: -10px
}

.rightTopInnerBlock {
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.2);
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    z-index: 50
}

.rightTopInnerBlock .tgbMobile,.rightTopInnerBlock .tgbScreen {
    max-width: 100%;
    text-align: center
}

.rightTopInnerBlock .img {
    display: block;
    float: left;
    height: 105px;
    position: relative;
    width: 15%
}

.rightTopInnerBlock img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    right: 0;
    top: 0
}

.rightTopInnerBlock .info {
    float: left;
    width: 85%
}

.rightTopInnerBlock .param_list {
    float: left;
    margin-left: 2%;
    width: 48%
}

.rightTopInnerBlock .param_list li {
    margin: 0
}

.rightTopInnerBlock .param_list .name {
    max-width: 60%
}

.rightTopInnerBlock .param_list .name .txt,.rightTopInnerBlock .param_list .value {
    font-size: 11px
}

.rightTopInnerBlock .param_list .value {
    margin-top: 2px;
    width: 42%
}

.rightTopInnerBlock .ttl {
    font-size: 11px;
    font-weight: 700
}

.rightTopInnerBlock .descr {
    border-top: 1px solid #e8e8e8;
    font-size: 10px;
    margin-left: 2%
}

.rightTopInnerBlock .descr .small {
    font-size: 10px
}

.reportDate .lblTxt {
    display: inline-block;
    float: left;
    line-height: 36px;
    width: 6%
}

.reportDate .reportInput {
    float: left;
    margin-right: 2%;
    width: 27%
}

.reportDate .reportBtn {
    align-content: center;
    padding: 10px 40px;
    width: 30%
}

.mx-input-wrapper .mx-clear-wrapper {
    display: none;
    z-index: -1
}

.input_border_red {
    border-color: #e31e25
}

.input_border_red::-moz-placeholder {
    color: #e31e25
}

.input_border_red::placeholder {
    color: #e31e25
}

.register,.trial {
    border-radius: 30px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

.register:hover,.trial:hover {
    box-shadow: none;
    color: #fff
}

.register {
    background: #5cb585
}

.trial {
    background: #ef5f31
}

.register .info,.trial .info {
    font-size: 12px;
    font-weight: 400;
    opacity: .6;
    text-decoration: none;
    text-transform: none
}

.btn_register_info_ttl {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.btn_register_info_list {
    margin-left: 20px
}

.btn_register_info_list li {
    float: left;
    font-size: 12px;
    margin-bottom: 2px;
    margin-right: 2%;
    width: 48%
}

.forIncontenNew {
    background: #fff url(/img/register/register_pro.svg) no-repeat 94% 100%;
    background-size: 25%;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 30px
}

.forIncontenNew .lftClmnReg {
    padding: 40px;
    width: 60%
}

.forIncontenNewTtl {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase
}

.forIncontenNewTtl * {
    font-size: inherit
}

.forIncontenNewBtn {
    background: #ef5f31;
    border-radius: 4px;
    color: #fff;
    display: block;
    font-size: 1.1em;
    font-weight: 700;
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    width: 44%
}

.forIncontenNewBtn:hover {
    background: #f97e5d;
    color: #fff
}

.forIncontenNewWrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden
}

.forIncontenNewItem {
    flex: 0 0 44%;
    margin-bottom: 20px
}

.forIncontenNewItem h3 {
    font-size: 1.2em;
    font-weight: 400
}

.forIncontenNewItem h3 .number {
    font-size: 1.4em;
    font-weight: 700
}

.forIncontent {
    background: #d1e9e8;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 10px
}

.incontent {
    float: left;
    padding-top: 40px;
    text-align: center;
    width: 30%
}

.incontentBtn {
    float: left;
    width: 70%
}

.notAuthContent {
    background: url(/img/register/no_reg_back.png) no-repeat 50% 50%;
    background-size: 100% auto;
    padding: 20px 30px 40px
}

.notAuthContent .title {
    font-size: 2.5em
}

.notAuthContent .list {
    list-style: none;
    margin-top: 40px
}

.notAuthContent .list li {
    color: #fff;
    font-size: 2em;
    margin-bottom: 20px
}

.notAuthContent .text {
    color: #fff;
    font-size: 1.3em;
    margin-top: 65px
}

.notAuthContent .btn {
    background: #ef5f31;
    border-radius: 2px;
    color: #fff;
    display: block;
    font-size: 1.8em;
    margin-top: 50px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    width: 20%
}

.highcharts-reset-zoom>text {
    transform: translateY(5px)
}

.callForRegistration {
    left: 0;
    margin: auto;
    max-width: 400px;
    position: fixed;
    right: 0;
    top: 8%;
    width: 96%;
    z-index: 100000
}

.callForRegistration .close {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 3em;
    height: 50px;
    justify-content: center;
    opacity: .8;
    position: absolute;
    right: -26px;
    text-align: center;
    top: -36px;
    width: 50px
}

.callForRegistrationT1 {
    background: #5182a1;
    border-radius: 20px;
    max-height: 80%;
    overflow: auto;
    padding: 40px 30px
}

.callForRegistrationT1 .close {
    color: #fff
}

.callForRegistrationT1 .ttl {
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px
}

.callForRegistrationT1 .imageMobile,.callForRegistrationT1 .imageScreen {
    max-height: 260px;
    max-width: 100%
}

.callForRegistrationT1 .imageMobile {
    display: none
}

.callForRegistrationT1 ul {
    margin-left: 10px
}

.callForRegistrationT1 ul li {
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px
}

.callForRegistrationT1 .text {
    color: #fff;
    line-height: 1.3;
    margin-left: 10px
}

.callForRegistrationT1 .btn {
    background: #5cb585;
    border: 1px solid #75cb9c;
    border-radius: 2px;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 4px 5px 0 rgba(0,0,0,.2);
    color: #fff;
    display: block;
    font-size: 1.4em;
    margin-top: 30px;
    padding: 12px 0;
    text-align: center;
    text-decoration: none
}

.callForRegistrationT2 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    max-height: 80%;
    overflow: auto;
    padding: 40px 30px
}

.callForRegistrationT2 .close {
    color: #111
}

.callForRegistrationT2 .ttl {
    color: #111;
    display: flex;
    font-size: 3em
}

.callForRegistrationT2 .ttl img {
    margin-left: 20px;
    width: 150px
}

.callForRegistrationT2 .item {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 35px;
    margin-top: 20px
}

.callForRegistrationT2 .item img {
    opacity: .5;
    width: 12%
}

.callForRegistrationT2 .item .text {
    width: 80%
}

.callForRegistrationT2 .item ul {
    display: flex;
    gap: 10px;
    list-style: none;
    margin-top: 8px;
    width: 100%
}

.callForRegistrationT2 .item ul li {
    font-size: .8em
}

.callForRegistrationT2 .item ul li b {
    font-size: inherit
}

.callForRegistrationT2 .btn {
    background: #5cb585;
    border: 1px solid #75cb9c;
    border-radius: 2px;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 4px 5px 0 rgba(0,0,0,.2);
    color: #fff;
    display: block;
    font-size: 1.4em;
    margin-top: 30px;
    padding: 12px 0;
    text-align: center;
    text-decoration: none
}

.banners-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill,minmax(380px,1fr));
    margin: 20px 0 10px
}

@media screen and (max-width: 780px) {
    .banners-wrapper {
        grid-template-columns:repeat(auto-fill,minmax(280px,1fr))
    }
}

.banners-wrapper-reg {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    display: grid;
    gap: 60px;
    grid-template-columns: 2fr 3fr;
    margin: 20px auto 10px;
    padding: 40px;
    width: 100%
}

@media screen and (max-width: 980px) {
    .banners-wrapper-reg {
        gap:24px;
        grid-template-columns: repeat(auto-fill,minmax(290px,1fr));
        padding: 20px
    }
}

@media screen and (max-width: 680px) {
    .banners-wrapper-reg {
        grid-template-columns:1fr
    }

    .banners-wrapper-reg .to-register__title {
        display: none
    }
}

.banners-wrapper-reg__title.to-register__title {
    display: none
}

@media screen and (max-width: 680px) {
    .banners-wrapper-reg__title.to-register__title {
        display:block;
        margin: 0
    }
}

.banners-wrapper-reg .to-register__buttons-wrapper {
    padding: 0
}

@media screen and (max-width: 980px) {
    .banners-wrapper-reg .to-register__buttons-wrapper {
        padding-top:12px
    }
}

.banners-wrapper-reg .to-register__button-title span {
    position: static;
    transform: none
}

@media screen and (max-width: 980px) {
    .banners-wrapper-reg .to-register__button-title span {
        position:absolute;
        transform: translateY(-50%)
    }
}

.try-in {
    display: flex
}

.try-in__open-button {
    align-items: center;
    border: none;
    border-radius: 200px 0 0 200px;
    bottom: 25%;
    display: flex;
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h5);
    font-weight: 700;
    gap: 8px;
    line-height: 1;
    padding: 2px;
    position: fixed;
    right: 0;
    z-index: 200
}

@media screen and (max-width: 680px) {
    .try-in__open-button {
        bottom:15%;
        gap: 4px;
        padding: 3px
    }
}

.try-in__open-button p,.try-in__open-button span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit
}

.try-in__open-button-period {
    align-items: center;
    background-image: url(/img/register/try-in_ellipse-arr.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 54px;
    min-height: 54px;
    min-width: 54px;
    text-align: center
}

@media screen and (max-width: 680px) {
    .try-in__open-button-period {
        max-width:48px;
        min-height: 48px;
        min-width: 48px
    }
}

.try-in__open-button-period span {
    display: block;
    font-size: var(--small_text)
}

.try-in__open-button-text {
    max-width: 110px;
    text-align: left
}

@media screen and (max-width: 680px) {
    .try-in__open-button-text {
        max-width:96px
    }
}

.try-in__open-button-text span {
    display: block;
    font-size: var(--small_text)
}

.try-in__inner {
    background-color: #fff;
    border-radius: 6px;
    padding: 32px;
    width: 100%
}

@media screen and (max-width: 680px) {
    .try-in__inner {
        padding:20px
    }
}

.try-in__close-button {
    background-color: #fff;
    background-image: url(/img/register/try-in_cross.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: initial;
    border-radius: 50%;
    bottom: calc(100% + 16px);
    cursor: pointer;
    height: 40px;
    left: calc(100% - 12px);
    padding: 0;
    position: absolute;
    transition: opacity .2s ease-in-out;
    width: 40px
}

.try-in__close-button:hover {
    opacity: .8
}

@media screen and (max-width: 680px) {
    .try-in__close-button {
        left:auto;
        right: 0
    }
}

.try-in__title {
    color: #000;
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h4);
    font-weight: 600;
    margin-bottom: 24px
}

.try-in__title .eye-catching {
    color: #ef5f31;
    display: inline-block;
    font-family: inherit;
    font-size: var(--h4);
    font-weight: 700;
    padding: 0 4px
}

@media screen and (max-width: 680px) {
    .try-in__title .eye-catching {
        font-size:var(--h1)
    }

    .try-in__title {
        font-size: var(--h2);
        margin-bottom: 16px
    }
}

.try-in__subtitle {
    color: #b3b3b3;
    font-size: var(--small_text);
    margin-bottom: 20px;
    padding: 2px 0 2px 20px;
    position: relative
}

.try-in__subtitle:before {
    background-color: #b3b3b3;
    content: "";
    height: 16px;
    left: 0;
    -webkit-mask-image: url(/img/register/info.svg);
    mask-image: url(/img/register/info.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 16px 16px;
    mask-size: 16px 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px
}

.try-in__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none
}

.try-in__item {
    color: #101010;
    font-size: var(--small_text);
    line-height: 1;
    padding: 4px 0 4px 32px;
    position: relative
}

.try-in__item:before {
    background-color: #5cb585;
    content: "";
    height: 24px;
    left: 0;
    -webkit-mask-image: url(/img/register/try-in_check.svg);
    mask-image: url(/img/register/try-in_check.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 24px 24px;
    mask-size: 24px 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px
}

.try-in__image {
    background-color: #fbfbfb;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    padding: 12px
}

@media screen and (max-width: 680px) {
    .try-in__image {
        padding:8px;
        width: 100%
    }
}

.try-in__image-text {
    background-color: #ecefff;
    border-radius: 20px;
    margin-top: -30%;
    padding: 16px;
    position: relative
}

@media screen and (max-width: 480px) {
    .try-in__image-text {
        margin-top:-15%
    }
}

.try-in__image-text p {
    color: #101010;
    font-size: var(--small_text);
    line-height: 1.3;
    margin-bottom: 12px
}

.try-in__image-text p:last-child {
    margin: 0
}

.try-in__link {
    font-size: var(--h5);
    min-height: auto;
    padding: 12px;
    width: 100%
}

@media screen and (max-width: 680px) {
    .try-in__link {
        font-size:var(--h3)
    }
}

.try-in__link span {
    background-image: url(/img/register/arrow-right.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    font-size: inherit;
    padding-right: 34px
}

.try-in--fullscreen .try-in__wrapper {
    align-items: center;
    background-color: rgba(0,0,0,.4);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    max-height: none;
    padding: 0 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100000
}

.try-in--fullscreen .try-in__inner {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    max-width: 630px;
    position: relative
}

@media screen and (max-width: 1024px) {
    .try-in--fullscreen .try-in__inner {
        gap:24px
    }
}

@media screen and (max-width: 480px) {
    .try-in--fullscreen .try-in__inner {
        grid-template-columns:1fr
    }
}

.try-in--fullscreen .try-in__title {
    max-width: 220px
}

@media screen and (max-width: 1024px) {
    .try-in--fullscreen .try-in__title {
        max-width:170px
    }
}

@media screen and (max-width: 680px) {
    .try-in--fullscreen .try-in__title {
        margin-bottom:16px;
        max-width: none
    }
}

.try-in--aside .try-in__inner {
    background-color: #344066;
    border-radius: 4px;
    color: #fff;
    padding: 28px 20px
}

.try-in--aside .try-in__title {
    color: #fff;
    font-family: Roboto,Tahoma,sans-serif;
    margin-bottom: 4px
}

.try-in--aside .try-in__title .eye-catching {
    font-family: inherit
}

.try-in--aside .try-in__list {
    gap: 16px;
    margin-bottom: 28px
}

.try-in--aside .try-in__item {
    color: #fff;
    font-size: var(--h5);
    padding: 0 0 0 24px
}

@media screen and (max-width: 680px) {
    .try-in--aside .try-in__item {
        font-size:var(--h3)
    }
}

.try-in--aside .try-in__item:before {
    background-color: #fff;
    content: "";
    height: 16px;
    left: 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 16px 16px;
    mask-size: 16px 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px
}

.try-in--aside .try-in__item:first-child:before {
    -webkit-mask-image: url(/img/register/check.svg);
    mask-image: url(/img/register/check.svg)
}

.try-in--aside .try-in__item:nth-child(2):before {
    -webkit-mask-image: url(/img/register/search.svg);
    mask-image: url(/img/register/search.svg)
}

.try-in--aside .try-in__item:nth-child(3):before {
    -webkit-mask-image: url(/img/register/graph.svg);
    mask-image: url(/img/register/graph.svg)
}

.try-in--aside .try-in__item:nth-child(4):before {
    -webkit-mask-image: url(/img/register/tourism.svg);
    mask-image: url(/img/register/tourism.svg)
}

.try-in--aside .try-in__item:nth-child(5):before {
    -webkit-mask-image: url(/img/register/star-fill.svg);
    mask-image: url(/img/register/star-fill.svg)
}

.try-in--green .try-in__inner {
    background-color: #4fb07c;
    border-radius: 8px;
    color: #fff;
    padding: 24px
}

@media screen and (max-width: 680px) {
    .try-in--green .try-in__inner {
        padding:20px
    }
}

.try-in--green .try-in__title {
    color: #fff;
    margin-bottom: 4px
}

.try-in--green .try-in__title .eye-catching {
    color: inherit;
    font-family: inherit
}

.try-in--green .try-in__subtitle {
    color: #fff;
    font-size: var(--h6);
    margin-bottom: 24px;
    padding-bottom: 0;
    padding-top: 0
}

.try-in--green .try-in__subtitle:before {
    background-color: #fff
}

@media screen and (max-width: 680px) {
    .try-in--green .try-in__subtitle {
        margin-bottom:16px
    }
}

.try-in--green .try-in__list {
    gap: 8px
}

.try-in--green .try-in__item {
    color: #fff;
    font-size: var(--h5);
    padding: 5px 0 5px 36px
}

@media screen and (max-width: 680px) {
    .try-in--green .try-in__item {
        padding-left:40px
    }
}

.try-in--green .try-in__item:before {
    background-color: #aecec2;
    left: 0
}

.why-cbonds {
    display: flex
}

.why-cbonds__inner {
    background-color: #eaecf0;
    border-radius: 4px;
    padding: 28px 36px 28px 20px;
    width: 100%
}

.why-cbonds__title {
    font-size: var(--h4);
    font-weight: 600;
    margin-bottom: 24px
}

@media screen and (max-width: 680px) {
    .why-cbonds__title {
        font-size:var(--h2)
    }
}

.why-cbonds__list {
    color: #101010;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none
}

.why-cbonds__item {
    font-size: var(--h6);
    padding-left: 28px;
    position: relative
}

.why-cbonds__item:before {
    background-color: #101010;
    content: "";
    height: 16px;
    left: 4px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 16px 16px;
    mask-size: 16px 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px
}

@media screen and (max-width: 680px) {
    .why-cbonds__item:before {
        left:0
    }
}

.why-cbonds__item:first-child:before {
    -webkit-mask-image: url(/img/register/cup.svg);
    mask-image: url(/img/register/cup.svg)
}

.why-cbonds__item:nth-child(2):before {
    -webkit-mask-image: url(/img/register/world.svg);
    mask-image: url(/img/register/world.svg)
}

.why-cbonds__item:nth-child(3):before {
    -webkit-mask-image: url(/img/register/bank.svg);
    mask-image: url(/img/register/bank.svg)
}

.why-cbonds__item:nth-child(4):before {
    -webkit-mask-image: url(/img/register/lightbulb.svg);
    mask-image: url(/img/register/lightbulb.svg)
}

.why-cbonds__item span {
    color: #ef5f31;
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: inherit;
    font-weight: 700
}

.to-register {
    align-items: flex-end;
    display: flex
}

.to-register__inner {
    width: 100%
}

.to-register__title {
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h3);
    font-weight: 600;
    margin-bottom: 20px
}

@media screen and (max-width: 680px) {
    .to-register__title {
        font-size:var(--h2)
    }
}

.to-register__buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 12px
}

@media screen and (max-width: 680px) {
    .to-register__buttons-wrapper {
        gap:16px
    }
}

.to-register__button {
    background-color: #fff;
    border-radius: 6px;
    color: #000;
    line-height: 1;
    outline: 1px solid #e8e8e8;
    outline-offset: -1px;
    padding: 24px 88px 24px 86px;
    position: relative;
    text-decoration: none;
    transition: outline .1s ease-in-out
}

.to-register__button:hover {
    color: #000;
    outline: 2px solid #ef5f31;
    outline-offset: -2px
}

.to-register__button:hover .to-register__arrow {
    background-color: #ef5f31;
    border-color: #ef5f31
}

.to-register__button:hover .to-register__arrow:before {
    background-color: #fff
}

@media screen and (max-width: 680px) {
    .to-register__button {
        padding:20px 60px 20px 80px
    }
}

.to-register__format {
    background-color: #faebe7;
    border-radius: 4px;
    height: 44px;
    left: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px
}

.to-register__format:before {
    background-image: url(/img/register/group.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border-radius: 50%;
    content: "";
    height: 24px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: background-color .1s ease-in-out;
    width: 24px
}

.to-register__format--individual:before {
    background-image: url(/img/register/profile.svg)
}

.to-register__arrow {
    border: 1px solid #b3b3b3;
    border-radius: 50%;
    height: 38px;
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .1s ease-in-out;
    width: 38px
}

.to-register__arrow:before {
    background-color: #b3b3b3;
    border-radius: 50%;
    content: "";
    height: 24px;
    left: 50%;
    -webkit-mask-image: url(/img/register/arrow-right.svg);
    mask-image: url(/img/register/arrow-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 24px 24px;
    mask-size: 24px 24px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: background-color .1s ease-in-out;
    width: 24px
}

@media screen and (max-width: 680px) {
    .to-register__arrow:before {
        height:16px;
        -webkit-mask-size: 16px 16px;
        mask-size: 16px 16px;
        width: 16px
    }

    .to-register__arrow {
        height: 32px;
        right: 20px;
        width: 32px
    }
}

.to-register__button-title {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    font-size: var(--h4);
    font-weight: 600;
    gap: 8px;
    margin-bottom: 12px
}

.to-register__button-title span {
    background-color: #dcefe5;
    border-radius: 3px;
    color: #4fb07c;
    font-size: var(--h5);
    font-weight: 400;
    padding: 4px 8px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    white-space: nowrap
}

.to-register__button-description {
    color: #9ba0b2;
    font-size: var(--h5);
    line-height: inherit
}

.upgrade-pro {
    --upgrade-pro-w: 100%;
    background: linear-gradient(270deg,#121930 57.2%,#ef5f31 124.83%);
    border-radius: 6px;
    color: #fff;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    line-height: 1.3;
    margin: 20px 0;
    padding: 40px
}

@media screen and (max-width: 980px) {
    .upgrade-pro {
        grid-template-columns:1fr 2fr
    }
}

@media screen and (max-width: 680px) {
    .upgrade-pro {
        gap:16px;
        grid-template-columns: 1fr;
        padding: 20px
    }
}

@media screen and (max-width: 480px) {
    .upgrade-pro {
        padding:20px 0
    }

    .upgrade-pro__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

.upgrade-pro__title {
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h3);
    line-height: 1.3;
    margin-bottom: 20px
}

@media screen and (max-width: 680px) {
    .upgrade-pro__title {
        font-size:var(--h2);
        margin-bottom: 12px
    }
}

.upgrade-pro__description {
    font-size: var(--h4);
    line-height: 1.3;
    margin-bottom: 12px
}

.upgrade-pro__link {
    border-radius: 4px;
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h4);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 20px;
    padding: 20px 64px
}

.upgrade-pro__link--mobile {
    display: none
}

@media screen and (max-width: 680px) {
    .upgrade-pro__link--mobile {
        display:block
    }

    .upgrade-pro__link--desktop {
        display: none
    }
}

@media screen and (max-width: 980px) {
    .upgrade-pro__link {
        padding:20px 40px
    }
}

@media screen and (max-width: 680px) {
    .upgrade-pro__link {
        font-size:var(--h2);
        margin-top: 12px;
        width: 100%
    }
}

.upgrade-pro__list {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    list-style: none
}

@media screen and (max-width: 680px) {
    .upgrade-pro__list {
        gap:16px;
        grid-template-columns: repeat(auto-fill,minmax(220px,1fr))
    }
}

@media screen and (max-width: 580px) {
    .upgrade-pro__list {
        grid-template-columns:repeat(auto-fill,minmax(180px,1fr))
    }
}

@media screen and (max-width: 480px) {
    .upgrade-pro__list {
        display:flex;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-left: 20px
    }

    .upgrade-pro__list::-webkit-scrollbar {
        height: 0;
        width: 0
    }
}

.upgrade-pro__item {
    background-color: hsla(0,0%,100%,.1);
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px
}

.upgrade-pro__item:first-child .upgrade-pro__item-title:after {
    -webkit-mask-image: url(/img/register/world.svg);
    mask-image: url(/img/register/world.svg)
}

.upgrade-pro__item:nth-child(2) .upgrade-pro__item-title:after {
    -webkit-mask-image: url(/img/register/download.svg);
    mask-image: url(/img/register/download.svg)
}

.upgrade-pro__item:nth-child(3) .upgrade-pro__item-title:after {
    -webkit-mask-image: url(/img/register/graph.svg);
    mask-image: url(/img/register/graph.svg)
}

.upgrade-pro__item:nth-child(4) .upgrade-pro__item-title:after {
    -webkit-mask-image: url(/img/register/search.svg);
    mask-image: url(/img/register/search.svg)
}

@media screen and (max-width: 680px) {
    .upgrade-pro__item {
        padding:16px
    }
}

@media screen and (max-width: 480px) {
    .upgrade-pro__item {
        max-width:calc(var(--upgrade-pro-w)/2.3);
        min-width: calc(var(--upgrade-pro-w)/2.3)
    }
}

.upgrade-pro__item-title {
    color: #ef5f31;
    font-size: var(--h6);
    line-height: 1.3;
    min-height: 34px;
    padding-right: 48px;
    position: relative;
    text-transform: uppercase
}

.upgrade-pro__item-title:after {
    background-color: hsla(0,0%,100%,.25);
    content: "";
    height: 34px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 34px 34px;
    mask-size: 34px 34px;
    position: absolute;
    right: 0;
    top: 0;
    width: 34px
}

@media screen and (max-width: 980px) {
    .upgrade-pro__item-title:after {
        height:30px;
        -webkit-mask-size: 30px 30px;
        mask-size: 30px 30px;
        width: 30px
    }

    .upgrade-pro__item-title {
        min-height: 30px;
        padding-right: 50px
    }
}

@media screen and (max-width: 480px) {
    .upgrade-pro__item-title {
        padding-right:40px
    }
}

.upgrade-pro__item-description {
    font-size: var(--h5);
    line-height: 1.3;
    margin-top: auto
}

@media screen and (max-width: 680px) {
    .upgrade-pro__item-description {
        font-size:var(--small_text)
    }
}

.upgrade-pro__pagination-list {
    display: none;
    list-style: none
}

@media screen and (max-width: 480px) {
    .upgrade-pro__pagination-list {
        align-items:center;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center
    }
}

.upgrade-pro__pagination-item {
    background-color: #9ba0b2;
    border-radius: 50%;
    height: 6px;
    width: 6px
}

.upgrade-pro__pagination-item--active {
    background-color: #fff;
    height: 8px;
    width: 8px
}

.seldon-btn {
    align-items: center;
    background: #fbfbfb url(/img/logo_company/seldon_logo.svg) no-repeat 0 50%;
    background-size: auto calc(100%*var(--width-multiplier));
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    display: flex;
    gap: calc(var(--width-multiplier)*20);
    justify-content: space-between;
    margin-top: 28px;
    padding: calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*20) calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*132);
    text-decoration: none
}

@media screen and (max-width: 1260px) {
    .seldon-btn {
        padding:calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*20) calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*100)
    }
}

@media screen and (max-width: 1200px) {
    .seldon-btn {
        padding:calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*20) calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*132)
    }
}

@media screen and (max-width: 580px) {
    .seldon-btn {
        background-position:100% 100%;
        flex-wrap: wrap;
        padding: calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*140) calc(var(--width-multiplier)*32) calc(var(--width-multiplier)*20)
    }
}

.seldon-btn-text {
    color: #000;
    font-size: 14px
}

.seldon-btn-go {
    align-items: center;
    background: #00a7f8;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    min-width: 100px;
    padding: calc(var(--width-multiplier)*8) 0
}

.seldon-btn:hover {
    background-color: #efefef
}

.seldon-btn:hover .seldon-btn-go {
    background: #f20206
}

.addinBtn,.apiBtn {
    border-radius: 2px;
    display: block;
    float: left;
    font-weight: 700;
    line-height: 1;
    margin-left: 20px;
    padding: 5px 10px 5px 40px;
    text-transform: uppercase
}

.addinBtn,.addinBtn:hover,.apiBtn,.apiBtn:hover {
    color: #fff;
    text-decoration: none
}

.addinBtn {
    background: #217245 url(/img/addin.svg) no-repeat 5px 50%;
    background-size: 23px 23px
}

.apiBtn {
    background: #2297c6;
    position: relative
}

.apiBtn:before {
    background-color: #fff;
    content: "";
    height: 24px;
    left: 5px;
    -webkit-mask: url(../img/icons/stack.svg#api);
    mask: url(../img/icons/stack.svg#api);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px
}

.addinBtn .dop,.apiBtn .dop {
    font-size: 10px;
    font-weight: 400;
    opacity: .5;
    text-transform: lowercase
}

.addinBtnSearch,.apiBtnSearch {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    float: right;
    padding: 10px 20px 9px 40px;
    text-decoration: none
}

.addinBtnSearch {
    background: #fff url(../img/icons/stack.svg#excel) no-repeat 10px 50%;
    background-size: 20px auto
}

.apiBtnSearch {
    background: #fff url(../img/icons/stack.svg#api) no-repeat 10px 50%;
    background-size: 20px auto
}

.excelLoad,.reportingColumn,.switchColumn {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    padding: 10px 20px 9px 40px
}

.excelLoad {
    background-position: 10px 50%;
    color: #000;
    text-decoration: none
}

.reportingColumn,.switchColumn {
    color: #000;
    float: right;
    padding: 10px 20px 9px 30px;
    position: relative;
    text-decoration: none
}

.reportingColumn:before,.switchColumn:before {
    content: "";
    position: absolute
}

.reportingColumn:before {
    background-color: #bec0c7;
    -webkit-mask-image: url(../img/icons/stack.svg#chevron);
    mask-image: url(../img/icons/stack.svg#chevron)
}

.reportingColumn:before,.switchColumn:before {
    height: 16px;
    left: 10px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    width: 16px
}

.switchColumn:before {
    background-color: #ccc;
    -webkit-mask-image: url(../img/icons/stack.svg#eye);
    mask-image: url(../img/icons/stack.svg#eye)
}

.switchColumn.switchColumnCol:before,.switchColumn.switchColumnRow:before {
    background-color: #232b43;
    -webkit-mask-image: url(../img/icons/stack.svg#context-menu);
    mask-image: url(../img/icons/stack.svg#context-menu)
}

.switchColumn.switchColumnCol:before {
    transform: translateY(-50%) rotate(90deg)
}

.columnSetting,.reportingColumnList {
    background: #d1e9e8;
    height: 100%;
    margin-top: 0!important;
    overflow: auto;
    padding: 0 20px 20px;
    position: fixed;
    right: 0;
    top: 0;
    width: 30%;
    z-index: 1003
}

.columnSetting .list {
    list-style: none
}

.columnSetting .list li {
    margin-bottom: 5px;
    width: 100%
}

.columnSetting h6 {
    margin-bottom: 5px!important;
    margin-top: 10px
}

.reportingColumnList .item {
    border-bottom: 1px solid #e8e8e8;
    color: #000;
    cursor: pointer;
    display: block;
    padding: 5px 5px 5px 20px;
    position: relative;
    text-decoration: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    width: 100%
}

.reportingColumnList .item:before {
    background-color: #788793;
    content: "";
    display: block;
    height: 12px;
    left: 0;
    -webkit-mask-image: url(../img/icons/stack.svg#chevron);
    mask-image: url(../img/icons/stack.svg#chevron);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 12px
}

.reportingColumnList .hoverActive {
    border-color: #ef5f31;
    font-weight: 700
}

.close_btn_setting {
    background: #000;
    display: block;
    height: 100%;
    margin-left: -30px;
    opacity: .3;
    position: fixed;
    right: 30%;
    top: 0;
    width: 30px;
    z-index: 1004
}

.close_btn_setting:after {
    background-color: #e9696e;
    content: "";
    height: 28px;
    -webkit-mask-image: url(../img/icons/stack.svg#cross);
    mask-image: url(../img/icons/stack.svg#cross);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%,-50%);
    width: 28px
}

.cast {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    margin-left: 50%;
    margin-top: 20px;
    opacity: .9;
    padding: 5px;
    position: fixed;
    right: 200px;
    z-index: 1100
}

.asterisks {
    display: inline-block;
    position: relative
}

.asterisksInnerElement {
    background: #f17272;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    left: 0;
    min-width: 300px;
    padding: 20px 10px;
    position: fixed;
    text-align: right;
    top: 40%;
    transform: translate(-130%);
    transition-duration: .5s;
    white-space: normal;
    width: 30%;
    z-index: 100
}

.asterisksInnerElement._active {
    transform: translate(0)
}

.asterisksInnerElement .wrpp {
    color: #fff;
    margin: 0!important;
    min-width: 100%;
    position: relative
}

.asterisksInnerElement .wrpp a {
    color: #fff
}

.asterisksInnerElement .wrpp .close {
    background: #fff url(/img/cross_gr.svg) no-repeat 53% 50%;
    background-size: 50%;
    border: 1px solid #f17272;
    border-radius: 50%;
    cursor: pointer;
    height: 25px;
    position: absolute;
    right: -22px;
    top: -33px;
    width: 25px
}

.asterisksInnerElement .lnk {
    color: #fff;
    font-size: 12px
}

.getAuthBlock {
    align-items: flex-start;
    background: #f17272;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
    left: 0;
    padding: 8px;
    position: absolute;
    text-align: left;
    text-decoration: none;
    top: 100%;
    white-space: normal;
    width: 220px;
    z-index: 1000
}

@media screen and (max-width: 680px) {
    .getAuthBlock {
        border-radius:8px;
        left: 0;
        margin: auto;
        padding: 16px;
        position: fixed;
        right: 0;
        top: 40%
    }
}

.getAuthBlock * {
    color: #fff
}

.getAuthBlock:hover {
    color: #fff;
    text-decoration: none
}

.getAuthBlock svg {
    color: #fff;
    position: absolute;
    right: 4px;
    top: 7px;
    width: 16px;
    z-index: 1
}

.disabled .innerElement {
    background: #e31e25;
    border-radius: 2px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    display: inline-block;
    font-weight: 400;
    left: 0;
    line-height: 1.2;
    padding: 5px;
    position: absolute;
    top: 100%;
    white-space: normal;
    width: 210px;
    z-index: 10
}

.disabled .innerElement,.disabled .innerElement a {
    color: #fff;
    font-size: 12px
}

.disabled .innerElement a:hover {
    color: #9ba0b2
}

.catfishVideo {
    background: #344066;
    bottom: 0;
    height: 150px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 20001
}

.catfishVideo .video {
    float: left;
    height: 100%;
    width: 50%
}

.catfishVideo .info {
    float: left;
    margin-left: 5%;
    width: 45%
}

.catfishVideo .info .email,.catfishVideo .info .phone,.catfishVideo .info .ttl {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px
}

.catfishVideo .info .phone {
    margin-left: 20px
}

.catfishVideo .close {
    background: url(/img/bks_bckgr.png) repeat 0 0;
    color: #fff;
    display: block;
    font-size: 30px;
    height: 20px;
    left: 0;
    line-height: 20px;
    opacity: .8;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: -20px;
    width: 100%
}

.fullDescrTableMobile {
    background: #fff;
    height: 100%;
    left: 0;
    overflow: auto;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.fullDescrTableMobile .close {
    color: #000;
    display: block;
    margin-bottom: 20px;
    padding: 10px 0
}

.onlyAdaptive {
    display: none
}

#bondMcfo .tabsData {
    width: 50%
}

.datepicker .mx-input {
    background: none;
    border: none;
    box-shadow: none
}

.ground_select__single {
    display: block;
    padding-top: 8px
}

.msfoType {
    margin-bottom: 20px
}

.reportMsfoFactsetTable,.reportMsfoFmpTable {
    min-width: 50%
}

.reportMsfoFactsetTable .min_w,.reportMsfoFmpTable .min_w {
    min-width: 50px
}

#bondFactset .typesLoadOneValue,#bondFmp .typesLoadOneValue {
    float: left;
    font-weight: 700;
    line-height: 38px
}

.rest-data {
    background: #ee5f2f;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    padding: 3px 5px
}

.leftMessage {
    background: #f17272;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    left: 0;
    min-width: 300px;
    padding: 20px 10px;
    position: fixed;
    text-align: right;
    top: 50%;
    transform: translate(-130%);
    transition-duration: .5s;
    width: 30%;
    z-index: 100
}

.leftMessage._active {
    transform: translate(0)
}

.leftMessage .wrp {
    color: #fff;
    position: relative
}

.leftMessage .wrp a {
    color: #fff
}

.leftMessage .wrp .close {
    background: #fff url(/img/cross_gr.svg) no-repeat 50% 50%;
    background-size: 50%;
    border: 1px solid #f17272;
    border-radius: 50%;
    height: 25px;
    position: absolute;
    right: -22px;
    top: -33px;
    width: 25px
}

.ttlLand {
    font-size: 2.5em;
    line-height: 1.3;
    margin-top: 30px
}

.txtLandBlock {
    align-items: center;
    background: #fffaed;
    display: flex;
    margin-top: 20px
}

.txtLandBlock .txtLand {
    font-size: 1.2em;
    line-height: 1.3;
    margin-left: 20px
}

.txtLandBlock .txtLand a {
    font-size: inherit
}

.txtLandBlock .btn {
    font-size: 1.2em;
    padding: 12px;
    white-space: nowrap
}

.listLand {
    margin: 20px 0
}

.listLand ul {
    margin-left: 20px
}

.listLand ul li {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 14px
}

.phoneLand {
    font-size: 1.2em;
    margin-top: 20px;
    padding-left: 40px;
    position: relative
}

.phoneLand:before {
    background: url(../img/icons/stack.svg#call) no-repeat;
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    width: 24px
}

.mailLand {
    font-size: 1.2em;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-left: 40px;
    position: relative
}

.mailLand:before {
    background-color: #000;
    content: "";
    height: 24px;
    left: 0;
    -webkit-mask: url(../img/icons/stack.svg#envelope) no-repeat;
    mask: url(../img/icons/stack.svg#envelope) no-repeat;
    opacity: .5;
    position: absolute;
    width: 24px
}

.overflowContent {
    overflow: hidden
}

.block_graph:fullscreen {
    background: #fff;
    overflow: auto;
    padding: 10px
}

.toggleFullscreenBtn {
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    height: 39px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    z-index: 9
}

.toggleFullscreenBtn img {
    height: 26px;
    width: 26px
}

.toggleFullscreenBtn:hover {
    border-color: #9ba0b2
}

.changeFontSizeBtn {
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 39px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    z-index: 9
}

.changeFontSizeBtn:hover {
    border-color: #9ba0b2
}

.resetGraph {
    background: #fff url(../img/icons/stack.svg#revert) no-repeat 16px 50%;
    background-size: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: #000;
    padding: 11px 16px 11px 44px;
    position: absolute;
    right: 223px;
    text-decoration: none;
    top: 0;
    z-index: 9
}

.resetGraph * {
    color: inherit
}

.dateBlock {
    align-items: center;
    display: flex
}

.dateBlock .datepicker {
    background: none;
    width: auto
}

.dateBlock .datepicker input {
    background: url(../img/icons/stack/svg#calendar) no-repeat 98% 50%;
    background-size: 17px 17px;
    padding: 10px 0 9px 10px
}

#msfoFinReport {
    float: left;
    position: relative;
    width: 100%
}

.telegram_link .swtch {
    background: none
}

.telegram_link .swtch img {
    max-width: none
}

.datepickerNewCalendar {
    color: #73879c
}

.datepickerNewCalendar .prev:after {
    border-right: 10px solid #73879c!important
}

.datepickerNewCalendar .next:after {
    border-left: 10px solid #73879c!important
}

.datepickerNewCalendar .cell:not(.blank):not(.disabled).day:hover,.datepickerNewCalendar .cell:not(.blank):not(.disabled).month:hover,.datepickerNewCalendar .cell:not(.blank):not(.disabled).year:hover {
    background-color: #eaf8fe;
    border: none!important
}

.datepickerNewCalendar .cell.selected {
    background-color: #1284e7!important;
    color: #fff
}

.datepickerNewCalendar .next:not(.disabled):hover,.datepickerNewCalendar .prev:not(.disabled):hover,.datepickerNewCalendar .up:not(.disabled):hover {
    background-color: #eaf8fe!important
}

#bannerTop .screenTop {
    text-align: center
}

#bannerTop .screenTop img {
    max-width: 100%
}

#bannerTop .mobileTop {
    display: none;
    justify-content: center;
    text-align: center
}

#bannerTop .mobileTop img {
    max-width: 100%
}

.table_header_cross {
    color: #000;
    cursor: pointer;
    display: block;
    font-weight: 400;
    margin-top: 4px;
    opacity: .5;
    padding: 2px 0;
    text-transform: none
}

.table_header_cross:hover {
    opacity: 1
}

.pie-graph {
    justify-content: center
}

.customLegend,.pie-graph {
    display: flex;
    flex-wrap: wrap
}

.customLegend {
    gap: 16px;
    justify-content: flex-start;
    margin-top: 8px;
    min-height: 50px;
    padding: 8px 0;
    width: 100%
}

.customLegend .symbol {
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin-top: 2px;
    min-height: 10px;
    min-width: 10px;
    width: 10px
}

.customLegend .seriesName {
    display: flex;
    font-family: Roboto,sans-serif
}

.customLegend .seriesName a {
    color: #000
}

.customLegend .seriesName a:hover {
    color: #7f8499
}

.customLegend .item {
    display: flex;
    gap: 4px
}

.customLegend .close {
    color: #9ba0b2;
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    line-height: 14px;
    margin-left: 4px
}

.customLegend .close:hover {
    color: #e31e25
}

.customLegend .toggle {
    cursor: pointer;
    display: flex;
    height: 16px;
    min-width: 22px;
    position: relative;
    width: 22px
}

.customLegend .toggle:before {
    background-color: #000;
    content: "";
    height: 100%;
    -webkit-mask: url(../img/icons/stack.svg#eye) no-repeat 50% 50%;
    mask: url(../img/icons/stack.svg#eye) no-repeat 50% 50%;
    position: absolute;
    transition: background-color .2s ease-in-out;
    width: 100%
}

.customLegend .toggle.closeYey:after {
    background-color: #000;
    content: "";
    height: 1px;
    position: absolute;
    top: 50%;
    transform: rotate(-20deg) translateY(-50%);
    width: 100%
}

.customLegend .toggle.closeYey:hover:before,.customLegend .toggle:hover:before {
    background-color: #e31e25
}

.graphContainer {
    margin-top: 22px;
    padding-bottom: 10px;
    position: relative
}

.watermarkGraph {
    opacity: .07;
    position: absolute;
    right: 20px;
    top: 600px;
    z-index: 1000
}

.periodNew {
    display: flex;
    flex-wrap: wrap
}

.periodNew .graphPeriodNew {
    border: 1px solid #e8e8e8;
    display: flex;
    flex-grow: 1;
    gap: 16px;
    height: 38px;
    justify-content: space-around;
    padding: 0 4px
}

.periodNew .graphPeriodNew .itemBlock {
    border-radius: 4px;
    display: flex;
    gap: 8px
}

.periodNew .graphPeriodNew .itemBlock .tab_text {
    align-items: center;
    color: #9ba0b2;
    display: flex;
    flex-grow: 1
}

.periodNew .graphPeriodNew .itemBlock .datepicker {
    align-items: center;
    border: none;
    display: flex;
    flex-grow: 1
}

.periodNew .graphPeriodNew .itemBlock .datepicker input {
    padding: 0 28px 0 0;
    width: 108px
}

.periodNew .selectPeriodNew {
    flex-grow: 1
}

.hiddenCurve {
    opacity: .5
}

.tagList {
    display: flex;
    flex-wrap: wrap;
    list-style: none
}

.tagList li {
    cursor: pointer;
    margin-bottom: 12px
}

.tagList li:not(:last-child) {
    margin-right: 1%
}

.tagList .item {
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    color: #000;
    display: flex;
    padding: 12px;
    position: relative;
    text-decoration: none
}

.tagList .item.small {
    padding: 4px 8px
}

.tagList .item.middle {
    padding: 8px 16px
}

.tagList .item.large {
    font-size: 1.5em;
    padding: 12px 20px
}

.tagList .item:hover {
    background: #ef5f31;
    border-color: #ef5f31;
    color: #fff;
    text-decoration: none
}

.tagList .item:hover .dop-hide {
    color: #000;
    opacity: 1
}

.tagList .item.active {
    background: #ef5f31;
    border-color: #ef5f31;
    color: #fff
}

.tagList .item .dop {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    display: flex;
    font-size: .8em;
    justify-content: center;
    left: 0;
    margin: auto;
    max-width: 80%;
    min-width: 110px;
    padding: 4px 8px;
    position: absolute;
    right: 0;
    top: 90%
}

.tagList .item .dop-hide {
    opacity: 0
}

.tagList .clearAll {
    border-radius: 20px;
    color: #9ba0b2;
    display: flex;
    padding: 13px;
    text-decoration: none
}

.tagList .clearAll:hover {
    background: #9ba0b2;
    color: #fff;
    text-decoration: none
}

.getAuthBlockFullWidth {
    align-items: flex-start;
    background: #f17272;
    color: #fff;
    display: flex;
    font-weight: 400;
    margin-bottom: 15px;
    padding: 8px;
    text-align: left;
    text-decoration: none;
    white-space: normal
}

@media screen and (max-width: 680px) {
    .getAuthBlockFullWidth {
        left:0;
        margin: auto;
        position: fixed;
        right: 0;
        top: 20%
    }
}

.getAuthBlockFullWidth * {
    color: #fff
}

.getAuthBlockFullWidth:hover {
    color: #fff;
    text-decoration: none
}

.getAuthBlockFullWidth svg {
    float: left;
    margin-left: -4px;
    width: 16px
}

.bannerTop [data-name=adtune-feedback] {
    height: 80px;
    width: 100%
}

.register-block {
    background: #121930;
    border-radius: 4px;
    display: flex;
    margin-top: 30px;
    width: 100%
}

.register-block-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 50px 0
}

.register-block .fl_left {
    width: 50%
}

.register-block .fl_left-heading {
    margin: 0 0 16px
}

.register-block .fl_left-heading-title {
    color: #fff;
    font-family: Montserrat,sans-serif;
    font-size: 2.3em;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase
}

.register-block .fl_left-bottom {
    padding: 16px 0 0
}

.register-block .fl_left-bottom-container {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between
}

.register-block .fl_left-button .btn {
    border: none;
    border-radius: 4px;
    color: #121930;
    cursor: pointer;
    font-family: Montserrat,sans-serif;
    font-size: 2.3em;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    outline: none;
    overflow: hidden;
    padding: 16px 36px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s ease-in-out;
    z-index: 12
}

.register-block .fl_left-button .btn-small {
    font-size: 1.5em
}

.register-block .fl_left-button .btn:before {
    background: linear-gradient(95deg,#fed756 -10.09%,#ff934d 110.56%)
}

.register-block .fl_left-button .btn:after,.register-block .fl_left-button .btn:before {
    border-radius: 4px;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: .2s ease-in-out;
    width: 100%;
    z-index: -1
}

.register-block .fl_left-button .btn:after {
    background: linear-gradient(190deg,#fed756 -10.09%,#ff934d 110.56%);
    opacity: 0;
    visibility: hidden
}

.register-block .fl_left-button .btn:hover:before {
    opacity: 0;
    visibility: hidden
}

.register-block .fl_left-button .btn:hover:after {
    opacity: 1;
    visibility: visible
}

.register-block .fl_left .list-row {
    align-items: start;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between
}

.register-block .fl_left .list-column {
    align-items: start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: start
}

.register-block .fl_left .list-wrapper {
    list-style-type: none
}

.register-block .fl_left .list-item-title {
    color: #fff;
    font-family: Montserrat,sans-serif;
    font-size: 1.4em;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase
}

.register-block .fl_left .list-item-title.orange {
    color: #ef5f31
}

.register-block .fl_left .list-item-subtitle {
    color: #fff;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase
}

.register-block .fl_left .calling {
    padding: 40px 0 0
}

.register-block .fl_left .calling-text {
    color: #acf0ff;
    font-family: Montserrat,sans-serif;
    font-size: 1.4em;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase
}

.dialogIcon {
    background: url(../img/icons/stack.svg#chat) no-repeat 50% 50%;
    background-size: auto 100%;
    bottom: 40px;
    cursor: pointer;
    height: 50px;
    margin-right: 20px;
    position: fixed;
    right: 0;
    width: 50px;
    z-index: 90000
}

.dialogIcon:hover {
    transform: scale(1.1);
    transition: transform .3s
}

.dialogIcon .wrp {
    display: flex;
    position: relative
}

.dialogIcon .wrp .count {
    align-items: center;
    background: #1c3f94;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    display: flex;
    font-size: 11px;
    justify-content: center;
    left: -8px;
    padding: 2px 4px;
    position: absolute;
    top: -12px
}

.dialogIcon.inactive {
    animation: none!important;
    background: url(/img/chat_icon_block.svg) no-repeat 50% 50%;
    z-index: 1000
}

.dialogIcon.inactive .count {
    background: #9ba0b2
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(.5)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(1.1)
    }
}

@keyframes pulse_2 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

.compact-menu-list-start {
    bottom: 10px;
    display: flex;
    gap: 8px;
    left: 10px;
    list-style: none;
    position: fixed;
    z-index: 100001
}

.compact-menu-switch {
    align-items: center;
    background-color: #9ba0b2;
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 48px;
    justify-content: center;
    text-decoration: none;
    width: 48px
}

.compact-menu-switch img {
    max-height: 20px;
    max-width: 20px
}

.compact-menu-switch .symbol {
    font-size: 1.4em
}

.compact-menu-switch:hover {
    color: #fff
}

.compact-menu-wrapper {
    align-items: flex-end;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    left: 0;
    overflow: auto;
    padding: 16px 0 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000
}

.compact-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    list-style: none
}

.compact-menu-list-main-item {
    margin-bottom: 16px;
    margin-left: 2%;
    width: 16%
}

.compact-menu-list-main-item .item {
    align-items: center;
    border: 1px solid #e8e8e8;
    display: flex;
    height: 48px;
    justify-content: center;
    line-height: 1.2;
    margin: 0;
    width: 100%
}

.compact-menu-list-inner-item {
    width: 100%
}

.compact-menu-list-inner-item .item {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    height: auto;
    line-height: 1.2;
    margin: 0;
    padding: 16px 12px
}

.full-important {
    width: 100%!important
}

.land-page {
    margin: 40px 0 80px
}

.land-title {
    font-family: Montserrat,sans-serif;
    font-size: 5em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 28px;
    max-width: 1024px
}

.land-content {
    margin: 20px 0 0
}

.land-subtitle {
    font-size: 1.2em;
    line-height: 1.3;
    margin: 0 0 20px;
    width: 100%
}

.yAxisControlContainer {
    position: absolute;
    width: 70%;
    z-index: 1
}

.xAxisControlContainer {
    position: absolute;
    right: 0;
    width: 16%
}

#inactiveChatMsg {
    position: relative
}

#inactiveChatMsg .asterisks {
    bottom: 100%;
    display: flex;
    left: auto;
    position: absolute;
    right: 0;
    top: auto
}

#inactiveChatMsg .getAuthBlock {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto
}

.trendsSelect {
    margin-bottom: 20px
}

.testClass123 {
    margin: 1px
}

.request-chat {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    bottom: -30px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
    padding: 20px;
    position: absolute;
    right: 0;
    width: 250px
}

.request-chat-title {
    font-weight: 700;
    margin-bottom: 16px
}

.request-chat-comment {
    height: 100px;
    width: 100%
}

.request-chat .btn {
    border: none;
    margin: 8px 0;
    width: 100%
}

.wlStock {
    border-top: 1px solid #e8e8e8;
    padding: 10px 0
}

.wlStock .list .item {
    width: 78%
}

.wlStock .checkbox .ttl,.wlStock .radioButton .ttl {
    margin-left: 2%;
    width: 88%
}

.wlStock .checkbox .check,.wlStock .radioButton .check {
    max-width: 22px;
    width: 10%
}

.wlStock .list {
    list-style: none;
    overflow: hidden
}

.wlStock .itemList {
    float: left;
    margin-bottom: 20px;
    margin-right: 2%;
    width: 18%
}

.reset-btn {
    color: #000;
    float: right;
    white-space: nowrap
}

.reset-btn:hover {
    color: #000
}

.faq {
    padding: 0 0 20px;
    width: clamp(300px,100%,1024px)
}

.faq b,.faq li,.faq ol,.faq p {
    font-size: 16px
}

.faq li,.faq ol,.faq p {
    margin-bottom: 20px
}

@media screen and (max-width: 680px) {
    .faq li,.faq ol,.faq p {
        margin-bottom:12px
    }
}

.faq li {
    line-height: 1.5
}

.faq a {
    font-size: inherit
}

.faq-title {
    font-family: Montserrat,sans-serif;
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 8px
}

@media screen and (max-width: 680px) {
    .faq-title {
        font-size:20px
    }
}

.faq-heading {
    align-items: center;
    background: #fbfbfb;
    cursor: pointer;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    padding: 22px;
    transition: .2s ease-in-out
}

.faq-heading-title {
    font-family: Montserrat,sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3
}

.faq-heading-icon {
    transition: .3s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.faq-heading-active,.faq-heading:hover {
    background: #e8e8e8
}

.faq-list {
    list-style: none
}

.faq-item {
    border-radius: 2px;
    margin-bottom: 8px;
    position: relative
}

.faq-item:after {
    bottom: 0;
    color: #000;
    content: "";
    height: 22px;
    margin: auto;
    position: absolute;
    right: 10px;
    top: 0;
    width: 22px;
    z-index: 10
}

.faq-item-answer {
    background: #fff;
    display: none;
    font-size: 14px;
    line-height: 1.3;
    padding: 22px;
    transition: .2s ease-in-out
}

.faq-item-answer.active {
    display: block;
    transition: .3s ease-in-out
}

.faq-item-answer ul {
    padding: 0 20px
}

.faq-item-answer * {
    font-size: inherit;
    line-height: inherit
}

.faq-item-text {
    line-height: 1.3;
    margin: 0 0 22px
}

.faq-item-text:last-child {
    margin: 0
}

.pdf-block {
    background: #fbfbfb;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding: 10px
}

.pdf-block-title {
    font-size: 20px
}

.pdf-block-check-all {
    display: flex;
    gap: 16px;
    width: 100%
}

.pdf-block-check-all .check_all,.pdf-block-check-all .clear_all {
    align-items: center;
    display: flex
}

.pdf-block-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    list-style: none;
    width: 100%
}

.pdf-block-list-item {
    display: flex;
    margin-bottom: 16px;
    width: 23%
}

@media screen and (max-width: 860px) {
    .pdf-block-list-item {
        width:49%
    }
}

@media screen and (max-width: 680px) {
    .pdf-block-list-item {
        width:100%
    }
}

.pdf-block-btn,.pdf-block-list-item .item {
    display: flex;
    width: 100%
}

.pdf-block-btn {
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.pdf-block-btn .btn {
    align-items: center;
    display: flex
}

.half-border-with-circle {
    --color-half-border: #e8e8e8;
    --radius-half-border: 4px;
    padding: 20px 16px 16px;
    position: relative
}

.half-border-with-circle:before {
    border-right: 1px solid var(--color-half-border);
    height: 40%;
    width: 50%
}

.half-border-with-circle:after,.half-border-with-circle:before {
    border-bottom-right-radius: var(--radius-half-border);
    bottom: 0;
    content: "";
    position: absolute;
    right: 0
}

.half-border-with-circle:after {
    border-bottom: 1px solid var(--color-half-border);
    border-bottom-left-radius: var(--radius-half-border);
    border-left: 1px solid var(--color-half-border);
    height: 100%;
    width: 100%
}

.half-border-with-circle p:after {
    background-color: var(--color-half-border);
    border-radius: 50%;
    bottom: 40%;
    content: "";
    height: 8px;
    position: absolute;
    right: -4px;
    width: 8px
}

.bar-chart {
    --deg: -65deg;
    align-items: flex-end;
    display: flex;
    flex-wrap: nowrap;
    gap: 2%;
    list-style: none;
    position: relative
}

.bar-chart--90deg .bar-chart__value {
    margin-bottom: 0;
    position: absolute;
    right: 50%;
    top: -28px;
    transform: rotate(-90deg) translateY(50%)
}

@media screen and (max-width: 580px) {
    .bar-chart--90deg .bar-chart__value {
        margin-bottom:8px;
        position: static;
        transform: none
    }
}

.bar-chart--none-rotation .bar-chart__value {
    margin-bottom: 8px;
    transform: none;
    white-space: normal;
    width: auto;
    word-break: break-word
}

.bar-chart--blue .bar-chart__graph {
    background-color: #ecefff;
    border-top: 4px solid #344066
}

.bar-chart--blue .bar-chart__graph:hover {
    background-color: #bcc4dd
}

.bar-chart--underline .bar-chart__graph {
    position: relative
}

.bar-chart--underline .bar-chart__graph:after {
    background-color: #c8c8c8;
    bottom: 0;
    content: "";
    height: 1px;
    left: -50%;
    position: absolute;
    right: -50%
}

@media screen and (max-width: 580px) {
    .bar-chart--underline .bar-chart__graph:after {
        content:none
    }
}

.bar-chart--underline .bar-chart__item:first-child .bar-chart__graph:after {
    left: 0
}

.bar-chart--underline .bar-chart__item:last-child .bar-chart__graph:after {
    right: 0
}

@media screen and (max-width: 580px) {
    .bar-chart {
        align-items:normal;
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 20px 0
    }
}

.bar-chart__item {
    flex-grow: 1;
    position: relative;
    text-align: center
}

@media screen and (max-width: 580px) {
    .bar-chart__item {
        max-width:none;
        text-align: initial
    }
}

.bar-chart__item--blue .bar-chart__graph {
    background-color: #ecefff;
    border-top: 4px solid #344066
}

.bar-chart__item--blue .bar-chart__graph:hover {
    background-color: #bcc4dd
}

.bar-chart__item--black .bar-chart__graph {
    background-color: #e8e8e8;
    border-top: 4px solid #101010
}

.bar-chart__item--black .bar-chart__graph:hover {
    background-color: #909090
}

.bar-chart__value {
    font-family: Montserrat,Tahoma,sans-serif;
    font-size: var(--h4);
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 16px;
    transform: rotate(var(--deg));
    white-space: nowrap;
    width: 16px
}

@media screen and (max-width: 580px) {
    .bar-chart__value {
        margin-bottom:8px;
        transform: none;
        white-space: normal;
        width: auto;
        word-break: break-word
    }
}

.bar-chart__graph {
    background-color: #fbe5e0;
    border-top: 4px solid #ef5f31;
    height: var(--height);
    margin-bottom: 8px;
    transition: background-color .3s ease-in-out,height 1s ease-in-out;
    width: 100%
}

.bar-chart__graph:hover {
    background-color: #f6a990
}

@media screen and (max-width: 580px) {
    .bar-chart__graph {
        height:0;
        margin-bottom: 4px;
        transition: width 1s ease-in-out;
        width: var(--height)
    }
}

.bar-chart__legend {
    font-size: var(--h6);
    font-style: normal;
    font-weight: 700;
    word-break: break-word
}

.seo-text {
    padding: 40px 0
}

@media screen and (max-width: 680px) {
    .seo-text {
        padding:20px 0
    }
}

.seo-text__inner {
    max-width: 1024px
}

.seo-text h1,.seo-text h2,.seo-text h3,.seo-text h4,.seo-text h5,.seo-text h6 {
    font-family: Montserrat,Tahoma,sans-serif
}

.seo-text ol,.seo-text ul {
    list-style: none
}

.seo-text h3 {
    font-size: 38px;
    margin-bottom: 20px;
    margin-top: 40px
}

.seo-text h3:first-child {
    margin-top: 0
}

@media screen and (max-width: 680px) {
    .seo-text h3:first-child {
        margin-top:0
    }

    .seo-text h3 {
        font-size: 28px;
        margin-bottom: 12px;
        margin-top: 24px
    }
}

.seo-text h4 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 28px
}

@media screen and (max-width: 680px) {
    .seo-text h4 {
        font-size:20px;
        margin-bottom: 12px;
        margin-top: 24px
    }
}

.seo-text li,.seo-text ol,.seo-text p {
    margin-bottom: 20px
}

@media screen and (max-width: 680px) {
    .seo-text li,.seo-text ol,.seo-text p {
        margin-bottom:12px
    }
}

.seo-text b,.seo-text li,.seo-text ol,.seo-text p {
    font-size: 16px;
    line-height: 1.5
}

.seo-text a,.seo-text p *,.seo-text span * {
    font-size: inherit;
    line-height: inherit
}

.not-allowed {
    cursor: not-allowed
}

.table .close {
    color: #9ba0b2;
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    line-height: 14px;
    margin-left: 4px
}

.table .close:hover {
    color: #e31e25
}

@media screen and (max-width: 1256px) {
    .bannerTop .item {
        max-width:32%
    }

    .bannerTop .item:nth-child(2) {
        margin: 0 2%
    }

    .page_404-heading-title {
        width: 58.82353%
    }
}

@media screen and (max-width: 1200px) {
    .content_half,.content_half_lft,.content_half_rght {
        float:left;
        width: 100%
    }

    .inner_ttl {
        margin: 30px 0 10px
    }

    .reportDate {
        width: 70%
    }

    .columnSetting,.reportingColumnList {
        width: 50%
    }

    .close_btn_setting {
        right: 50%
    }

    .rightTopInnerBlock {
        margin-bottom: 10px;
        position: relative;
        width: 100%
    }

    .compareItem {
        width: 22%
    }

    .main_menu .list .double {
        width: 100px
    }

    .main_menu .list .item .btn_subs {
        font-size: 10px;
        padding: 8px;
        width: 100px
    }

    .interestRateMapIframe {
        height: 600px
    }

    .register-block .fl_left {
        gap: 5%;
        width: 100%
    }
}

@media screen and (max-width: 1100px) {
    .register-block-wrapper {
        padding:28px 50px
    }

    .register-block .fl_left-bottom-container {
        align-items: start;
        flex-direction: column
    }

    .register-block .fl_left-button {
        padding: 20px 0
    }

    .register-block .fl_left .list-row {
        flex-wrap: wrap
    }

    .register-block .fl_left .list-item {
        flex: 0 0 50%
    }
}

@media screen and (max-width: 1024px) {
    .userScreen {
        display:none
    }

    .wrapper_content {
        padding: 0
    }

    .screen {
        display: none!important
    }

    .mobile {
        display: block!important
    }

    .select_dflt_width {
        width: 48%
    }

    .main_ttl {
        float: none
    }

    .main_menu .list .main_item,.main_menu .list .main_item:first-child,.main_menu .list .main_item:nth-child(6) {
        width: auto
    }

    .dopListMenu {
        overflow: auto
    }

    .dopListMenu .list .item {
        white-space: nowrap
    }

    .filter,.filter_range {
        width: calc(50% - 10px)
    }

    .footer_bottom .list {
        float: left
    }

    .footer_bottom li {
        padding: 0 20px 0 0;
        vertical-align: top
    }

    .footer_main .column {
        width: 20%
    }

    .columnClear {
        display: block
    }

    .comparisonSearch,.rssFooter {
        width: 50%
    }

    .incontent {
        margin-bottom: 10px;
        padding: 0;
        width: 100%
    }

    .columnSetting .list li,.incontentBtn {
        width: 100%
    }

    .compareItem {
        width: 25%
    }

    .ttlLand,.txtLand {
        padding: 0 10px
    }

    .notAuthContent .title {
        width: 40%
    }

    .notAuthContent .text {
        color: #000
    }

    .notAuthContent .btn {
        width: 30%
    }

    .interestRateMapIframe {
        height: 550px
    }

    .page_404-wrapper {
        background-attachment: scroll;
        background-position: right top 5%;
        background-size: 100%
    }

    .page_404-heading-subtitle,.page_404-heading-title {
        width: 100%
    }

    .page_404-search {
        gap: 50px
    }

    .page_404-cards {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 30px
    }
}

@media screen and (max-width: 980px) {
    .notAuthContent {
        background-size:auto 100%
    }

    .notAuthContent .title {
        width: 100%
    }

    .notAuthContent .list {
        margin-top: 80px
    }

    .header .wrapper {
        padding-bottom: 76px
    }

    .mainAutocomplete {
        bottom: 16px;
        left: 0;
        padding: 0 10px;
        position: absolute;
        width: 100%
    }

    .interestRateMapIframe {
        height: 500px
    }

    .page_404-input .mainAutocomplete {
        position: static
    }
}

@media screen and (max-width: 860px) {
    .mainAutocomplete {
        width:100%
    }

    .rightTopInnerBlock {
        margin-bottom: 10px;
        position: relative;
        width: auto
    }

    .rightTopInnerBlock .tgbMobile,.rightTopInnerBlock .tgbScreen {
        margin: auto
    }

    .reportDate {
        width: 100%
    }

    .main_menu .list .item {
        font-size: 9px
    }

    .loadDataExcel .btnLoad,.loadDataExcel .datepicker {
        width: 20%
    }

    .addinBtn,.apiBtn {
        background-position: 50% 50%;
        height: 36px;
        margin-left: 10px;
        overflow: hidden;
        padding: 0 0 0 36px;
        width: 36px
    }

    .left_page_menu .symbol {
        font-size: 9px
    }

    .forIncontenNew {
        background-position: 100% 100%
    }

    .forIncontenNew .forIncontenNewTtl {
        font-size: 2em
    }

    .forIncontenNew .forIncontenNewTtl br {
        display: none
    }

    .forIncontenNew .lftClmnReg {
        width: 80%
    }

    .forIncontenNew .lftClmn {
        width: 70%
    }

    .forIncontenNew h3 {
        font-size: 1em
    }

    #bondFmp .reportDate,#bondMcfo .reportDate {
        width: 100%
    }

    .resultButtonCntrl .save_panel .save_lnk {
        height: 48px;
        width: 40px
    }

    .resultButtonCntrl .save_panel .save_lnk:before {
        left: 50%;
        transform: translate(-50%,-50%)
    }

    .resultButtonCntrl .save_panel .save_lnk .icon {
        display: none
    }

    .resultButtonCntrl .save_panel .wrp {
        left: auto;
        right: 0;
        width: 250px
    }

    .resultButtonCntrl .clear_form {
        line-height: 48px
    }

    .compareItem {
        width: 35%
    }

    .footer_main .columnMenu {
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .footer_main .columnMenu .column {
        width: 25%
    }

    .register-block-wrapper {
        flex-direction: column;
        padding: 28px 30px
    }

    .register-block-wrapper .fl_left-heading-title {
        font-size: 2em
    }

    .register-block-wrapper .fl_left .list-item {
        margin: 0 0 8px
    }

    .register-block-wrapper .fl_left-button .btn-small {
        font-size: 1.2em
    }

    .register-block-wrapper .fl_left .calling {
        padding: 28px 0 0
    }

    .register-block-wrapper .fl_right {
        padding: 24px 0 0
    }

    .page_404-input {
        width: 100%
    }

    .filter_range .shortPanel li .item:hover {
        background: #fef7f3;
        font-weight: 700
    }
}

@media screen and (max-width: 780px) {
    .catfishVideo .info .email,.catfishVideo .info .phone,.catfishVideo .info .ttl {
        font-size:14px
    }

    .customLegend {
        width: 68%
    }

    .watermarkGraph {
        width: 130px
    }

    .interestRateMapIframe {
        height: 400px
    }
}

@media screen and (max-width: 680px) {
    a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,input,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,select,small,span,strike,strong,sub,summary,sup,table,tbody,td,textarea,tfoot,th,thead,time,tr,tt,u,ul,var,video {
        font-size:14px
    }

    a {
        align-content: center;
        display: inline-block;
        min-height: 48px
    }

    .watermarkGraph {
        display: none
    }

    .customLegend {
        justify-content: flex-start;
        padding: 8px 22px 8px 10px;
        width: 100%
    }

    #bannerTop .mobileTop {
        display: flex
    }

    #bannerTop .screenTop {
        display: none
    }

    .content_header {
        align-items: flex-start
    }

    .callForRegistration {
        top: 10px
    }

    .callForRegistrationT1 {
        max-height: 100%
    }

    .callForRegistrationT1 .imageMobile {
        display: block
    }

    .callForRegistrationT1 .imageScreen {
        display: none
    }

    .callForRegistrationT2 {
        max-height: 100%
    }

    .content {
        padding: 10px
    }

    .hintsIcon {
        background: #fbfbfb;
        border-radius: 50%;
        bottom: auto;
        margin-right: 0;
        position: relative;
        right: auto
    }

    .hintsIcon img {
        height: 60%
    }

    .header .telegramHeaderLight {
        border-radius: 50%
    }

    .dialogIcon {
        bottom: 10px;
        height: 48px;
        margin-right: 0;
        right: 10px;
        width: 48px;
        z-index: 80000
    }

    .header .logo {
        width: 100px
    }

    .header .userInput {
        border: none
    }

    .header .lineUser {
        background: transparent
    }

    .header .language,.header .logout,.header .userNameScreen {
        border: none;
        display: none
    }

    .header .openMenu,.header .userNameMobile {
        display: flex
    }

    .header .login_form {
        left: auto;
        right: 0
    }

    .header .main_menu .language {
        display: flex;
        margin-bottom: 32px
    }

    .header .main_menu .mobileMenuItem {
        display: flex
    }

    .header .dopListMenu,.header .main_menu .screenMenuItem {
        display: none
    }

    .header .dopListMenuItem {
        display: flex
    }

    .header .countSuport {
        margin-left: 8px;
        margin-top: -20px
    }

    .topPanel {
        height: 80px
    }

    .bannerTop ul {
        display: flex
    }

    .bannerTop .item,.bannerTop .item:nth-child(2) {
        float: none;
        margin: 0 auto;
        max-width: 100%
    }

    .bannerTop .item a,.bannerTop .item:nth-child(2) a {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%
    }

    .main_ttl {
        max-width: 100%
    }

    .api_list,.excel_add_in {
        display: none
    }

    .adaptive,.footer_bottom .list {
        display: block
    }

    .mainAutocomplete {
        width: 100%
    }

    .mainMenuMobile {
        display: block
    }

    .mainMenuScreen {
        display: none
    }

    .main_menu {
        background: #fff;
        height: 100%;
        left: 0;
        margin: 0;
        overflow: auto;
        position: fixed;
        text-align: left;
        top: 0;
        width: 100%;
        z-index: 100003
    }

    .main_menu .list,.main_menu .main_item {
        display: block
    }

    .main_menu .main_item {
        overflow: visible
    }

    .main_menu .main_item:hover .item {
        background: #fff
    }

    .main_menu .main_item .inner_menu {
        border: none;
        box-shadow: none;
        display: block;
        height: auto;
        position: relative
    }

    .main_menu .list {
        padding: 0
    }

    .main_menu .list .item {
        color: #000;
        cursor: text;
        font-size: 16px;
        font-weight: 700;
        justify-content: flex-start;
        margin-top: 20px;
        padding: 0 20px;
        text-align: left;
        text-decoration: none
    }

    .main_menu .list .item img {
        display: none
    }

    .main_menu .list .item * {
        font-size: inherit
    }

    .main_menu .list .item .btn_subs {
        font-size: 16px;
        justify-content: center;
        padding: 12px 0;
        width: 100%
    }

    .main_menu .list .item .main_item .item-new-element {
        display: none
    }

    .main_menu .column {
        display: block
    }

    .main_menu .inner_menu .ttl {
        padding: 0 20px
    }

    .main_menu .inner_menu_item {
        border-bottom: 1px solid #f2f2f2;
        padding: 15px 20px
    }

    .main_menu .close_menu {
        display: block;
        padding: 15px 20px
    }

    .main_menu .inner_menu_list {
        border-bottom: 2px;
        border-left: 2px;
        border-right: 2px;
        border-top-width: 2px
    }

    .main_menu .subs .inner_menu_list {
        border: none
    }

    .main_menu .inner_menu_item {
        white-space: normal
    }

    .fixed_list,.main_menu .hover {
        background: #fff
    }

    .fixed_list {
        border-top: 2px solid #e8e8e8;
        bottom: 0;
        top: auto;
        width: 100%;
        z-index: 1000
    }

    .left_page_menu {
        float: none;
        margin: 0;
        width: 100%
    }

    .left_page_menu .list {
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        width: 100%
    }

    .left_page_menu .list .mainItem {
        box-shadow: none;
        margin-bottom: 0;
        min-width: 48px
    }

    .left_page_menu .list .mainItem .item {
        height: 48px;
        width: 48px
    }

    .left_page_menu .list .mainItem .item .symbol {
        line-height: 48px
    }

    .dopTransition {
        border: 1px solid #e8e8e8;
        box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
        left: auto;
        padding: 0;
        right: 0;
        top: 100%;
        width: 70%
    }

    .dopTransition ul li {
        border: none;
        border-bottom: 1px solid #e8e8e8;
        margin-bottom: 0;
        width: 100%
    }

    .dopTransition ul li:last-child {
        border-bottom: none
    }

    .left_page_menu .itemInner {
        background: #fff;
        padding: 16px;
        text-align: left
    }

    .fixed_list .dopTransition {
        bottom: 100%;
        top: auto
    }

    .left_page_menu .item img {
        max-height: 14px;
        max-width: 20px
    }

    .content_scroll {
        float: none;
        margin-left: 0;
        width: 100%
    }

    .select .item {
        padding: 16px 30px 16px 8px
    }

    .filter .switch,.select .switch {
        padding: 14px 28px 15px 8px
    }

    .footer_main .column {
        width: 32%
    }

    .footer_main .columnClear {
        display: none
    }

    .footer_main .columnHalf {
        display: block
    }

    .footer_bottom li,.footer_main .social_list li {
        display: block;
        float: left;
        margin-bottom: 10px
    }

    .footer_main .store {
        margin-right: 10px
    }

    .footer_main .social_list .item {
        margin-left: 0;
        margin-right: 10px
    }

    .footer_main .social_list li:last-child .item {
        margin-right: 0
    }

    .footer_main .columnMenu .list .item {
        padding: 16px 0
    }

    .footerItem {
        width: 100%
    }

    .footerItem:nth-child(2) {
        margin: 0
    }

    .footerItem .lftClmnFooter {
        width: 30%
    }

    .footerItem .rghtClmnFooter {
        width: 60%
    }

    .rssFooter {
        width: 100%
    }

    .rssFooter .btnRss {
        background-size: 18%
    }

    .select_dflt_width {
        width: 100%
    }

    .roll_table,.table_adaptive {
        width: 50%
    }

    .roll_table {
        overflow: hidden
    }

    .roll_table .scroll_table {
        padding: 0
    }

    .roll_table .scroll_table td,.roll_table .scroll_table th {
        text-align: center
    }

    .long_table .roll_table .table td,.long_table .roll_table .table th {
        overflow: hidden;
        white-space: normal
    }

    .table_adaptive_simple {
        display: table;
        float: left;
        width: 50%
    }

    .roll_table_simple {
        float: right;
        overflow: hidden;
        position: relative;
        width: 50%
    }

    .roll_table_simple td,.roll_table_simple th {
        text-align: center
    }

    .roll_table_simple .arrow_left {
        left: 0
    }

    .roll_table_simple .arrow_right {
        right: 0
    }

    .scroll_table td:nth-child(2),.scroll_table th:nth-child(2) {
        padding-left: 10px
    }

    .scroll_table td:last-child,.scroll_table th:last-child {
        padding-right: 10px
    }

    .filter {
        width: 100%
    }

    .filter .item {
        padding: 15px 10px
    }

    .filter_range {
        width: 100%
    }

    .filter_range .end,.filter_range .start {
        height: 48px;
        margin-bottom: 0;
        padding-bottom: 0
    }

    .filter_range .checkbox {
        padding: 16px 0
    }

    .filter_range .datepicker:before {
        top: 50%
    }

    .filter_range .datepicker input {
        padding: 16px 28px 16px 0
    }

    .filter_range .shortPanel {
        gap: 8px
    }

    .filter_range .shortPanel li .item {
        padding: 16px 0
    }

    .filter_wrapper {
        height: 100%;
        left: 0;
        overflow-y: auto;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100000
    }

    .filter_check_all,.filter_clear_all {
        margin-top: 0;
        padding: 16px 0
    }

    .close_mobile,.filter .clear_filter {
        align-items: center;
        display: flex
    }

    .filter .filter_list {
        max-height: none
    }

    .onlyAdaptive {
        display: block
    }

    .graphPeriod .btn_blue {
        margin-left: 0
    }

    .load_data_wrapper {
        margin-left: -200%
    }

    .roll_table .table {
        border-left: none;
        border-right: none
    }

    .table_adaptive td,.table_adaptive th,.table_border td,.table_border th {
        border-right: none
    }

    .table .openOther td {
        padding: 5px;
        text-align: left
    }

    .page_404 .ttl {
        font-size: 24px
    }

    .topPanel {
        overflow: hidden
    }

    .topPanel .wrapper {
        padding-left: 0;
        padding-right: 0
    }

    .comparisonSearch {
        width: 70%
    }

    .getAccess .close {
        margin-left: 0
    }

    .rightTopInnerBlock .img {
        float: right;
        margin-top: 0
    }

    .rightTopInnerBlock .param_list {
        width: 80%
    }

    .left_page_menu li {
        box-shadow: none
    }

    .fieldLR {
        border-left: none;
        border-right: none
    }

    .fixedHeadTable .arrow_left {
        left: 0
    }

    .register,.trial {
        display: block
    }

    .btn_register_info_list li,.register,.trial {
        margin-right: 0;
        width: 100%
    }

    .reportingColumn,.reportingColumnList {
        display: none
    }

    .columnSetting {
        padding: 10px 10px 10px 40px;
        width: 100%
    }

    .close_btn_setting {
        left: 0;
        margin-left: 0;
        right: auto;
        top: 0
    }

    .catfishVideo .info .email,.catfishVideo .info .phone,.catfishVideo .info .ttl {
        font-size: 12px
    }

    .catfishVideo .info .email,.catfishVideo .info .phone {
        margin-left: 0;
        width: 100%
    }

    .rightTopInnerBlock {
        width: 100%
    }

    .hide_hide_block,.show_hide_block {
        padding: 16px 20px 16px 8px
    }

    .table_cntrl .hide_hide_block,.table_cntrl .show_hide_block {
        line-height: 1.2;
        padding: 2px 20px 2px 5px
    }

    .table_cntrl .hide_hide_block:after,.table_cntrl .show_hide_block:after {
        top: 22px
    }

    .showLogo {
        display: none
    }

    .left_page_menu .symbol {
        font-size: 12px
    }

    .loadDataExcel .btnLoad,.loadDataExcel .datepicker {
        width: 23%
    }

    .asterisks .innerElement {
        width: 100px
    }

    .forIncontenNew .lftClmnReg {
        padding: 20px;
        width: 100%
    }

    .forIncontenNew .lftClmnReg .forIncontenNewWrp {
        width: 80%
    }

    .fixedPanelBtn .save_panel .wrp {
        left: 0;
        right: auto
    }

    .forDirectory {
        justify-content: center
    }

    .reportMsfoFactsetTable,.reportMsfoFmpTable {
        min-width: 100%
    }

    .leftMessage .wrp .close {
        height: 30px;
        min-height: auto;
        width: 30px
    }

    .ttlLand {
        font-size: 1.5em
    }

    .table_cntrl .fixedHeadTable .fixedHeadTableLeft {
        width: 50%
    }

    .table_cntrl .table_adaptive {
        max-width: 100%;
        min-width: 0;
        overflow: hidden
    }

    .table_cntrl .fixedHeadTableRight th,.table_cntrl .roll_table th {
        text-align: center
    }

    .table_cntrl .hide_hide_block,.table_cntrl .show_hide_block {
        padding: 16px 20px 16px 8px
    }

    .paging {
        gap: 8px
    }

    .paging .item {
        min-height: 48px;
        padding: 16px 22px
    }

    .tabs {
        gap: 8px
    }

    .arbitraryPeriod,.compareItem,.showSpreadGraph,.tabs li .item {
        height: 48px
    }

    .periodNew {
        gap: 8px
    }

    .periodNew .graphPeriodNew {
        height: auto
    }

    .periodNew .graphPeriodNew .itemBlock .datepicker input {
        min-height: 48px
    }

    .table_cntrl2 .table_adaptive {
        width: auto
    }

    .table_cntrl2 .table_adaptive .openOther .hide_hide_block,.table_cntrl2 .table_adaptive .openOther .show_hide_block {
        display: block
    }

    .table_cntrl2 .fixedHeadTable .fixedHeadTableLeft {
        width: 50%
    }

    .table_cntrl2 .table_wrapper {
        overflow: hidden
    }

    .table_cntrl2 .table_wrapper .table th:first-child {
        min-width: 0;
        text-align: left;
        width: auto
    }

    .table_cntrl2 .table .openOther td,.table_cntrl2 .table_wrapper .table .openOther td {
        padding: 8px;
        text-align: left
    }

    .table_cntrl2 .fixedHeadTableRight td,.table_cntrl2 .fixedHeadTableRight th,.table_cntrl2 .table_wrapper td,.table_cntrl2 .table_wrapper th {
        text-align: center
    }

    .notAuthContent {
        background-color: #000;
        background-position: 50% 0;
        background-size: auto 300px;
        padding: 10px 10px 30px
    }

    .notAuthContent .title {
        color: #fff;
        font-size: 2em;
        margin-top: 320px
    }

    .notAuthContent .list {
        margin-top: 20px
    }

    .notAuthContent .list li {
        font-size: 1.8em;
        margin-bottom: 10px
    }

    .notAuthContent .text {
        color: #fff;
        margin-top: 20px
    }

    .notAuthContent .btn {
        margin-top: 20px;
        width: 50%
    }

    .congresso .screen_b {
        display: none
    }

    .congresso .mobile_b {
        display: block
    }

    .datepicker input {
        padding: 14px 30px 15px 10px
    }

    .getAuthBlock {
        width: 300px
    }

    #guides_back_menu {
        display: none
    }

    .land-title {
        font-size: 2em
    }

    .tableShowOverFlow .table_wrapper {
        overflow: unset
    }

    .toggleFullscreenBtn {
        display: none
    }

    .tagList .item {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 48px
    }

    .tagList .item .dop-hide {
        color: #9ba0b2;
        opacity: 1
    }

    .tableGallery td:first-child,.tableGallery th:first-child {
        min-width: 100px;
        word-break: break-word
    }

    .tableGallery td:nth-child(2),.tableGallery th:nth-child(2) {
        left: 100px;
        min-width: 80px;
        word-break: break-word
    }

    .tableGallery .group_tr td:first-child {
        min-width: 180px
    }

    .tableGallery .arrow_left_screen {
        left: 180px
    }

    .cookie_panel_success {
        align-items: center;
        display: flex;
        justify-content: center
    }

    .changeFontSizeBtn {
        height: 49px;
        width: 49px
    }

    .resetGraph {
        background-position: 50% 50%;
        height: 48px;
        padding: 0;
        top: -10px;
        width: 48px
    }

    .resetGraph span {
        display: none
    }

    .xAxisControlContainer,.yAxisControlContainer {
        position: relative;
        width: 100%
    }

    .xAxisControlContainer {
        left: 0;
        top: 0!important
    }

    .trendsSelect {
        margin-bottom: 8px
    }

    .graphContainer {
        margin-top: 8px
    }

    .mx-input {
        min-height: 48px
    }

    .lastBid .input_date {
        flex-grow: 1
    }

    .data_provider_btn .btn {
        margin-top: 0;
        min-height: auto;
        width: 78%
    }

    .content_ttl .data_provider_btn .btn {
        width: auto
    }
}

@media screen and (max-width: 580px) {
    .page_404-heading-title {
        font-size:2.3em;
        line-height: normal
    }

    .page_404-heading-subtitle {
        font-size: 1.2em;
        line-height: normal
    }

    .page_404-input .input,.page_404-input .main_search {
        font-size: 1.3em
    }

    .page_404-input .input {
        height: 48px;
        padding: 4px 4px 4px 60px
    }

    .page_404-input-icon {
        height: 24px;
        left: 30px;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 24px
    }

    .page_404-input-icon svg {
        height: 100%;
        width: 100%
    }

    .contacts .country,.contacts .phone,.contacts-text,.contacts-title {
        font-size: 1.3em;
        line-height: normal
    }

    .contacts-items {
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: repeat(1,1fr)
    }
}

@media screen and (max-width: 500px) {
    .login_form {
        width:80%
    }

    .telegramHeader {
        background-position: 50% 50%;
        margin-right: 5px;
        overflow: hidden;
        padding: 6px 0 5px 38px;
        width: 0
    }

    .footer_bottom .copyr,.footer_bottom .list_pay {
        float: none
    }

    .footer_bottom .list_pay .item {
        margin: 10px 10px 0 0
    }

    .btn {
        margin-top: 10px;
        width: 100%
    }

    .dialog_body .btn_cancel,.dialog_body .btn_green {
        margin-left: 0;
        margin-right: 0;
        width: 100%
    }

    .loadDataExcel .tab_text {
        width: 5%
    }

    .loadDataExcel .datepicker {
        margin-bottom: 10px;
        margin-right: 0;
        width: 94%
    }

    .loadDataExcel .btnLoad {
        width: 100%
    }

    .rightTopInnerBlock {
        position: relative
    }

    .rightTopInnerBlock .img {
        height: 60px;
        position: absolute;
        right: 2px;
        top: 2px;
        z-index: 10
    }

    .rightTopInnerBlock .param_list .value {
        width: 50%
    }

    .rightTopInnerBlock .param_list {
        width: 100%
    }

    .reportDate .lblTxt {
        margin-left: 2%;
        width: 8%
    }

    .reportDate .reportInput {
        margin-right: 1%;
        width: 39%
    }

    .reportDate .reportBtn {
        width: 100%
    }

    .addinBtn,.apiBtn {
        background-position: 5px 50%;
        height: auto;
        margin: 10px 0 0;
        overflow: visible;
        padding: 5px 10px 5px 40px;
        width: 48%
    }

    .apiBtn {
        margin-left: 4%
    }

    #bondMcfo .tabsData {
        width: 100%
    }

    .factestSelect,.fmpSelect,.msfoType,.typeSelect {
        margin-right: 0;
        width: 100%
    }

    .resultButtonCntrl .flexBlock {
        flex-wrap: wrap;
        justify-content: space-between
    }

    .resultButtonCntrl .flexBlock .lft {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: space-between;
        margin-bottom: 8px;
        width: 100%
    }

    .resultButtonCntrl .flexBlock .clear_form {
        display: block;
        line-height: 48px;
        text-align: center;
        width: 100%
    }

    .resultButtonCntrl .btn_search {
        align-items: center;
        display: flex;
        height: 48px;
        width: 100%
    }

    .resultButtonCntrl .save_panel {
        margin-left: 0;
        width: 100%
    }

    .resultButtonCntrl .save_panel .save_lnk {
        width: 100%
    }

    .mainAutocomplete .swtchTab {
        flex-wrap: wrap;
        margin-bottom: 0
    }

    .footer_main .columnMenu {
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .footer_main .columnMenu .column {
        width: 100%
    }

    .txtLandBlock {
        align-items: flex-start;
        flex-direction: column-reverse
    }

    .txtLandBlock .txtLand {
        margin-bottom: 10px;
        margin-left: 0
    }

    .txtLandBlock .btn {
        font-size: 1.2em;
        padding: 12px;
        white-space: nowrap
    }

    .callForRegistration {
        display: block
    }

    .forIncontenNew .forIncontenNewTtl {
        font-size: 1.2em
    }

    .forIncontenNew .forIncontenNewItem {
        flex: 0 0 100%
    }

    .forIncontenNew .forIncontenNewBtn {
        width: 60%
    }

    .interestRateMapIframe {
        height: 300px
    }

    .register-block-wrapper .fl_left-heading-title {
        font-size: 1.6em;
        line-height: normal
    }

    .register-block-wrapper .fl_left .list {
        width: 100%
    }

    .register-block-wrapper .fl_left-button {
        display: flex;
        width: 100%
    }

    .register-block-wrapper .fl_left-button .btn {
        padding: 10px 20px;
        text-align: center
    }

    .register-block-wrapper .fl_left-bottom-container {
        align-items: center
    }

    .register-block-wrapper .fl_right-img {
        width: 100%
    }
}

@media screen and (max-width: 420px) {
    .main_ttl {
        font-size:1.2em;
        margin-top: 0
    }

    .load_data_wrapper {
        margin-left: -220%
    }

    .load_data {
        float: none
    }

    .graphPeriod .btn_blue {
        width: 100%
    }

    .param_list .name,.param_list .value {
        width: 49%
    }

    .arbitraryPeriod {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .comparisonSearch {
        width: 100%
    }

    .interestRateMapIframe {
        height: 250px
    }

    .page_404 .ttl {
        font-size: 18px
    }
}

@media screen and (max-width: 380px) {
    .header .logo {
        background-position:5px 50%;
        background-size: 112px;
        border: 1px solid #e8e8e8;
        width: 48px
    }

    .main_ttl {
        font-size: 1.4em
    }

    .footer_main .store_panel {
        display: block
    }

    .footer_main .store {
        display: block;
        margin-bottom: 10px;
        text-align: center;
        width: 100%
    }

    .addinBtnSearch,.apiBtnSearch,.excelLoad,.switchColumn {
        float: left;
        margin: 0;
        width: 100%
    }

    .catfishVideo .info .email,.catfishVideo .info .phone,.catfishVideo .info .ttl {
        font-size: 11px;
        margin-top: 5px
    }

    .catfishVideo .video {
        width: 40%
    }

    .catfishVideo .info {
        width: 50%
    }

    .forIncontenNewItem {
        flex: 0 0 100%
    }

    .forIncontenNewBtn {
        width: 70%
    }

    .register-block-wrapper .fl_left-button .btn {
        font-size: 1.2em
    }

    .page_404-wrapper {
        padding: 42px 0 60px
    }

    .page_404-heading {
        margin: 0 0 20px
    }

    .page_404-heading-title {
        font-size: 1.8em;
        margin: 0 0 22px
    }

    .page_404-heading-subtitle {
        font-size: 1em
    }

    .page_404 .card-wrapper {
        gap: 5%
    }

    .page_404 .card-content-name {
        font-size: 1.2em;
        line-height: normal
    }

    .page_404 .card-content-desc {
        font-size: 1em;
        line-height: normal
    }

    .contacts-title {
        font-size: 1.8em
    }

    .request-chat {
        width: 100%
    }
}

@media screen and (max-width: 320px) {
    .arbitraryPeriod,.compareItem,.showSpreadGraph,.tabs .item {
        line-height:1
    }

    .interestRateMapIframe {
        height: 200px
    }

    .register-block-wrapper .fl_left .list-row .list-item {
        flex: 0 0 100%
    }

    .register-block-wrapper .fl_left .list-title {
        font-size: 1.2em
    }

    .register-block-wrapper .fl_left-button .btn {
        font-size: 1em
    }

    .register-block-wrapper .fl_left-bottom-container {
        align-items: center
    }

    .register-block-wrapper .fl_left .calling {
        padding: 16px 0 0
    }
}

.resultpassive {
    display: none;
}

.resultactive {
    display: block;
}

.main-block {
    float: left;
    width: 70%
}

.config-block {
    padding-top: 20px;
    padding-left: 20px;
    float: right;
    width: 30%;
    height: 100%;
    background-color: #f7f7f7;
}

.config-value {
    background-position: 12px 50%;
    background-size: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1.2em;
    height: 38px;
    width: 90%;
    padding: 5px;
    margin: 5px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.08);
}


.multiline {
    height: 190px;
}


.link-to-admin {
    font-size: 16px;   
}

.ts-1 {
    float: right;
    padding: 5px;
    width: 100%;
}

.ts-2 {
    float: right;
    padding: 5px;
    width: 50%;
}

.ts-3 {
    float: right;
    padding: 5px;
    width: 33%;
}

.ts-4 {
    float: right;
    padding: 5px;
    width: 25%;
}