body {
    background: white;
    line-height: 1.4;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

strong, b {
    font-weight: 500;
}

.center_cnt {
    margin-top: 150px;
    max-width: 1920px;
}

header {
    background: white;
}

header .center_cnt {
    padding-bottom: 10px;
    margin-top: 0;
}

.menu_btn {
    display: none;
}

.content {
    max-width: 900px;
    width: calc(100% - 560px);
}

.content > div {
    width: 100% !important;
}

h2, h3, h4, h5, h6 {
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif;
    color: #34343a;
    width: 100%;
}

h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: normal;
    margin: 1.2rem 0;
}

h1 {
    margin: 20px 0;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
    /*color: #34343a;*/
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 18px;
    margin: 30px 0 15px;
    font-weight: 500;
}

h3 {
    font-size: 16px;
    font-weight: 500;
}

h4 {
    font-size: 14px;
    font-weight: 500;
}

p {
    color: #69696d;
    font-size: 16px;
    margin: 15px 0;
}

b {
    font-weight: bold;
}

em {
    font-style: italic;
}

a {
    color: #00599F;
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

.content ol,
.content ul {
    margin: 15px 0;
}

.content ol {
    counter-reset: num;
}

.content ol > li::before {
    content: counter(num) '. ';
    counter-increment: num;
    color: #34343a;
    position: absolute;
    left: -20px;
}

.content li {
    list-style: none;
    position: relative;
    color: #69696d;
    font-size: 14px;
    margin-left: 40px;
    margin-bottom: 10px;
}

.content ol > li {
    margin-bottom: 20px;
}

.content ul > li::before {
    content: '';
    width: 5px;
    height: 5px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #00599F;
    position: absolute;
    left: -15px;
    top: 7px;
}

.tooltip-target {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.tooltip-target:hover,
.tooltip-target:focus {
    opacity: 0.8;
    border-bottom: 1px solid transparent;
}

.tooltip-text {
    position: absolute;
    bottom: calc(100% + 10px);
    opacity: 0;
    left: 0;
    overflow: hidden;
    -webkit-transform: translateX(-35%);
    -ms-transform: translateX(-35%);
    transform: translateX(-35%);
    background: rgba(0, 0, 0, 0.6);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: white;
    padding: 10px;
    min-width: 100px;
    font-size: 12px;
    z-index: -1;
}

.tooltip-text::after {
    content: '';
    border-top: 10px solid rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: -10px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    left: 50%;
    margin-left: -11px;
}

.tooltip-target:hover .tooltip-text,
.tooltip-target:focus .tooltip-text {
    opacity: 1;
    overflow: visible;
}

.tooltip-text.left {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.tooltip-text.left::after {
    left: 15%;
}

.tooltip-text.right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: auto !important;
    right: 0;
}

.tooltip-text.right::after {
    left: 85%;
}

.tooltip-text.bottom {
    top: calc(100% + 10px);
    bottom: auto;
}

.tooltip-text.bottom::after {
    top: -10px;
    bottom: auto;
    border-bottom: 10px solid rgba(0, 0, 0, 0.6);
    border-top: none;
}


sup a {
    text-decoration: none;
}

.color-section {
    color: #00599F;
    margin: 70px 0;
}

.color-section div {
    font-size: 40px; /* было 70*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.color-section div::after {
    content: '';
    display: block;
    height: 4px;
    width: 100%; /* было 45px*/
    background: #00599F;
}

.color-section p {
    font-size: 14px;
    color: #00599F;
    margin: 20px 0;
}

.background-section {
    padding: 32px 0;
    position: relative;
    margin: 30px 0;
}

.background-section::before {
    content: '';
    display: block;
    width: 300%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -50%;
    background: #edf4f9;
    z-index: -10;
}

.background-section p {
    color: #34343a;
}

.definition-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.term {
    font-weight: bold;
    color: #34343a;
    margin: 15px 0;
    margin-right: 20px;
    min-width: 200px;
    max-width: 200px;
}

.definition-section p {
    margin: 15px 0;
}

.biography-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    padding: 60px 5px;
    margin: 30px 0;
}

.biography-section::before {
    content: '';
    display: block;
    width: 90%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(227, 227, 227, 0.2);
    z-index: -10;
}

.img-wrapper {
    min-width: 225px;
    width: 225px;
    height: 245px;
    margin-right: 20px;
}

.img-wrapper.mobile {
    display: none;
}

.img-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.biography__text {
    max-width: 75%;
}

.biography__text .title {
    display: block;
    font-size: 18px;
    color: #34343a;
    font-weight: 500;
}

.biography__text .subtitle {
    display: block;
    font-size: 14px;
    color: #69696d;
    font-weight: 500;
}

.biography__text p {
    font-size: 12px;
    color: #34343a;
    margin: 20px 0;
}

.accordion-section {
    margin-bottom: 30px;
}

.accordion__title {
    font-size: 14px;
    color: #34343a;
    font-weight: 500;
    background: rgba(241, 241, 241, 1);
    width: 100%;
    padding: 16px;
    padding-right: 50px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.accordion__title:hover,
.accordion__title:focus {
    background: rgba(241, 241, 241, 0.3);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.accordion__title::after {
    content: '';
    border-bottom: 2px solid #69696d;
    border-right: 2px solid #69696d;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 17px;
    width: 10px;
    height: 10px;
}

.accordion__row.active .accordion__title {
    margin-bottom: 0;
    background: rgba(241, 241, 241, 0.3);
}

.accordion__row.active .accordion__title::after {
    top: 27px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.accordion__desc {
    display: none;
    background: rgba(241, 241, 241, 0.3);
    padding: 15px;
}

.accordion__desc p {
    margin-top: 0;
    font-size: 14px;
}

.risk-section > p {
    color: #34343a;
    opacity: 0.6;
    margin-left: 30px;
    text-align: left;
}

.risk__table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.risk__table > div {
    width: 50%;
    padding-left: 20px;
}

.risk__table h3 {
    min-height: 50px;
}

.rick__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 20px;
}

.rick__row p {
    margin: 0;
}

.circle {
    min-width: 30px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 22px;
    background-color: #e3e3e3;
    background-position: center;
    background-repeat: no-repeat;
}

.accordion__title .circle {
    margin-left: auto;
    margin-right: 0;
}

.red {
    background-color: #C66;
}

.yellow {
    background-color: #FC0 ;
}

.blue {
    background-color: #9C6;
}

.up {
    background-image: url("/wp-content/themes/mrsk/img/svg/up.svg");
}

.down {
    background-image: url("/wp-content/themes/mrsk/img/svg/down.svg");
}

.norm {
    background-image: url("/wp-content/themes/mrsk/img/svg/norm.svg");
}

.table-section,
.risk-section {
    margin: 30px 0;
}

.table-section {
    position: relative;
    overflow: hidden;
}

.table__tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.table__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-left: auto;
}

.table__btns a {
    text-decoration: none;
    margin-left: 20px;
    width: 20px;
}

.table-extended {
    color: #69696d;
    border-collapse: collapse;
    width: 100%;
    display: block;
    overflow: auto;
    position: relative;
}

.table-extended thead tr td {
    background: white !important;
}

.table-extended tr:nth-child(odd) {
    background: rgba(227, 227, 227,0.2);
}

.table-extended tr:nth-child(odd) td.cell-fixed {
    background: #F9F9F9;
}

.table-extended tr:hover,
.table-extended tr:focus {
    background: rgba(227, 227, 227, 1);
}

.table-extended tr td:first-child {
    width: 240px;
}

.table-extended tr td.strong-bg {
    background: #ADD8E6;
    color: #34343ac9;
    border: 1px solid #efefef;
}

.table-extended tr td.strong-bg a {
    color: white;
    text-decoration: underline;
}

.table-extended tr td.strong-bg a:hover {
    text-decoration: none;
}

.table-extended tr td.red-bg {
    background: #c12727;
    color: white;
    border: 1px solid #efefef;
}

.table-extended tr td.yellow-bg {
    background: #FFD700;
    color: #3b2716;
    border: 1px solid #efefef;
}


.table-extended tr td.green-bg {
    background: #99CC66;
    color: #3b2716;
    border: 1px solid #efefef;
}

.column-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.table-extended tr td.cell-fixed {
    position: absolute;
    background: white;
    z-index: 1;
}

.table-extended tr td.cell-fixed + td {
    padding-left: 240px;
}

.table-extended tr:hover td.cell-fixed,
.table-extended tr:focus td.cell-fixed  {
    background: rgba(227, 227, 227, 1);
}

.table-extended thead tr {
    opacity: 0.8;
    font-size: 10px;
    background: transparent !important;
}

.table-extended tr td {
    text-align: left;
    padding: 8px;
    font-size: 12px;
    min-width: 150px;
    border: 3px solid transparent;
}

.table-extended tr td.text-align-left {
    text-align: left;
}

.table-extended tr td.text-align-center {
    text-align: center;
}

.table-extended tr td.text-align-right {
    text-align: right;
}

.table-extended tr td.text-align-justify {
    text-align: justify;
}

.table-extended tr td.text-align-top {
    vertical-align: top;
}

.table-extended tr td.text-align-middle {
    vertical-align: middle;
}

.table-extended tr td.text-align-bottom {
    vertical-align: bottom;
}

.table-extended .border-top-solid {
    border-top: 3px solid #efefef
}

.table-extended .border-right-solid {
    border-right: 3px solid #efefef
}

.table-extended .border-bottom-solid {
    border-bottom: 3px solid #efefef
}

.table-extended .border-left-solid {
    border-left: 3px solid #efefef
}

.table-extended .border-all-solid {
    border: 3px solid #efefef
}

.table-extended .border-top-dots {
    border-top: 3px dashed #efefef
}

.table-extended .border-right-dots {
    border-right: 3px dashed #efefef
}

.table-extended .border-bottom-dots {
    border-bottom: 3px dashed #efefef
}

.table-extended .border-left-dots {
    border-left: 3px dashed #efefef
}

.table-extended .border-all-dots {
    border: 3px dashed #efefef
}


.table-extended .border-dashed {
    border-style: dashed
}

.table-extended.header-fixed {
    height: 65vh;
}

.table-extended.header-fixed thead{
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 2;
}

.table-extended.header-fixed tbody{
    display: block;
    margin-top: 39px;
}

footer {
    width: 100%;
    position: static;
}

footer .center_cnt {
    padding-bottom: 0;
}

.add_files,
.all_files {
    margin: 50px 0;
}

.add_files > .mobile,
.all_row > .mobile {
    display: none;
}

.all_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.table-downloads {
    width: 100%;
    font-size: 14px;
    color: #34343a;
}

.table-downloads thead {
    border-bottom: 2px solid #34343a;
}

.table-downloads a {
    width: 20px;
}

.table__icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.table__icon:hover,
.table__icon:focus {
    opacity: 1;
}

.table-downloads tbody td {
    padding: 8px 0;
    height: 100%;
    opacity: 0.6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.table-downloads tr {
    position: relative;
}

.table-downloads tr:hover td,
.table-downloads tr:focus td {
    opacity: 1;
}
.table-downloads tr:hover .download{
    display: block;
}

.table-downloads tr td:first-child {
    width: 45px;
    padding-right: 15px;
}

.table-downloads tr td:nth-child(3),
.table-downloads tr td:nth-child(4),
.table-downloads tr td:nth-child(5) {
    width: 40px;
    padding-right: 15px;
}

.overlay {
    left: 0;
    top: 0;
    z-index: -1;
    position: absolute;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 99999999px;
    opacity: 0;
    background: rgba(52, 52, 58, 0.6);
    z-index: 1000;
    -webkit-transition: opacity 0.5s var(--animation);
    -o-transition: opacity 0.5s var(--animation);
    transition: opacity 0.5s var(--animation);
}

.popup.active {
    opacity: 1;
    left: 0;
}

.popup .table__wrap {
    background: white;
    width: auto;
    padding: 10px;
    z-index: 100;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.popup .scroll_wrap {
    height: 100%;
}

.popup .table-extended {
    border: 1px solid #efefef;
    margin-left: 0;
    height: 100%;
    overflow: unset;
}

.popup .table-extended tr td:first-child {
    min-width: 240px;
}

.popup__close {
    width: 24px;
    height: 24px;
    top: -34px;
    right: 0;
    position: absolute;
}

.popup__close span {
    width: 24px;
    height: 3px;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    top: 50%;
    background: #fff;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.popup__close span:first-child {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.popup__close span:last-child {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.document_menu_wrap {
    opacity: 1 !important;
    visibility: visible !important;
}

.footer_style_page {
    margin-bottom: 30px;
    display: block;
}

.footer_style_page .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-top: 1px solid rgba(52, 52, 58, 0.2);
    padding-top: 50px;
    padding-bottom: 70px;
}

.footer_col--right {
    text-align: right;
}

.footer_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    color: #34343A;
}

.footer_link span {
    opacity: 0.6;
    font-size: 14px;
    -webkit-transition: all 0.3s var(--animation);
    -o-transition: all 0.3s var(--animation);
    transition: all 0.3s var(--animation);
}

.footer_link span:first-child {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer_link:hover span,
.footer_link:focus span {
    opacity: 1;
}

.tabs {
    list-style: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-bottom: 2px solid rgba(52, 52, 58, 0.2);
}

.content ul > li.tabs__item::before,
.tab__content ul > li::before {
    display: none;
}

li.tabs__item {
    margin: 0;
    padding: 0 20px 25px;
}

.tab__link {
    color: rgba(52, 52, 58, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.tab__link.active {
    color: #00599F;
}

.tabs__item span {
    background: #34343A;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    bottom: -2px;
    -webkit-transition: all 0.3s var(--animation);
    -o-transition: all 0.3s var(--animation);
    transition: all 0.3s var(--animation);
}

.tabs__item span.active {
    width: 100%;
}

.tab__content {
    display: none;
}

.tab__content.active {
    display: block;
}

li.tab__content {
    margin: 40px 0 80px;
}

.content ul > li.tab__content::before {
    display: none;
}

.chart-container {
    margin-bottom: 170px;
    min-height: 400px;
    height: 50vh;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form p {
    font-weight: 500;
    font-size: 18px;
    color: #34343A;
}

.main_screen_form {
    padding: 60px 0;
    position: relative;
}

.main_screen_form::before {
    content: "";
    display: block;
    background: #F9F9FB;
    height: 100%;
    width: 150%;
    position: absolute;
    left: -50%;
    top: 0;
    z-index: -1;
}

.main_screen_form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    max-width: 380px;
    margin-bottom: 20px;
    position: relative;
}

.main_screen_form__row:last-child {
    margin-bottom: 0;
}

.main_screen_form__row .span_error {
    position: absolute;
    bottom: 13px;
    left: 15px;
    font-style: italic;
    color: #CF3E50;
    font-size: 14px;
    display: none;
}

.form__section {
    margin: 60px 0;
}

.form__label {
    font-weight: 500;
    font-size: 14px;
    color: #69696D;
    margin-bottom: 9px;
    cursor: pointer;
}

.form_input {
    padding: 15px;
    font-size: 14px;
    border: 1px solid #F1F1F1;
    -webkit-transition: all 0.3s var(--animation);
    -o-transition: all 0.3s var(--animation);
    transition: all 0.3s var(--animation);
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

.form_input--required {
    border-bottom: 1px solid #FFBD6F;
}

.form_input--required::-webkit-input-placeholder {
    color: rgba(52, 52, 58, 0.3);
}

.form_input--required:-ms-input-placeholder {
    color: rgba(52, 52, 58, 0.3);
}

.form_input--required::-ms-input-placeholder {
    color: rgba(52, 52, 58, 0.3);
}

.form_input--required::placeholder {
    color: rgba(52, 52, 58, 0.3);
}

.form_input:hover,
.form_input:focus {
    border: 1px solid #00599F;
}

.form_input.error {
    border-bottom: 1px solid #CF3E50;
}

.form_input.error::-webkit-input-placeholder {
    color: rgba(52, 52, 58, 0);
}

.form_input.error:-ms-input-placeholder {
    color: rgba(52, 52, 58, 0);
}

.form_input.error::-ms-input-placeholder {
    color: rgba(52, 52, 58, 0);
}

.form_input.error::placeholder {
    color: rgba(52, 52, 58, 0);
}

.form__label--checkbox {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 15px;
}

.checkbox__label {
    font-weight: 500;
    font-size: 14px;
    color: #34343A;
}

.form__chekbox:focus + .form__chekbox-fake,
.form__label--checkbox:hover .form__chekbox-fake {
    border: 2px solid #00599F;
}

.form__chekbox,
.form__radio {
    position: absolute;
    top: 0;
    left: -99999999px;
}

.form__chekbox-fake {
    min-width: 18px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(52, 52, 58, 0.6);
    position: relative;
    margin-right: 18px;
    display: block;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .3s var(--animation);
    -o-transition: all .3s var(--animation);
    transition: all .3s var(--animation);
}

.form__chekbox-fake::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s var(--animation);
    -o-transition: all 0.3s var(--animation);
    transition: all 0.3s var(--animation);
}

.form__chekbox:checked + .form__chekbox-fake::after {
    background-image: url("/wp-content/themes/mrsk/img/svg/chek_box_on.svg");
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.group__list {
    -webkit-columns: 300px 2;
    columns: 300px 2;
    -webkit-column-gap: 15px;
    column-gap: 15px;
    margin-bottom: 30px;
}

li.group__item {
    margin: 0;
}

.group__item::before {
    display: none;
}

.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.form__row.another {
    display: none;
}

.form__row.another.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.form__row .form_input {
    border: 1px solid #69696D;
}

.form__row .form_input:hover,
.form__row .form_input:focus {
    border: 1px solid #00599F;
}

.group_checkbox__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.group_checkbox__col {
    width: 50%;
    min-width: 300px;
}

.group_checkbox__col.right_col {
    width: calc(50% - 20px);
    margin-left: 20px;
}

textarea {
    resize: vertical;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #69696D;
    -webkit-transition: all .3s var(--animation);
    -o-transition: all .3s var(--animation);
    transition: all .3s var(--animation);
    min-height: 55px;
}

textarea:focus,
textarea:hover {
    border: 1px solid #00599F;
}

.form__radio-fake {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(52, 52, 58, 0.6);
    position: relative;
    margin-right: 18px;
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s var(--animation);
    -o-transition: all .3s var(--animation);
    transition: all .3s var(--animation);
}

.form__radio-fake::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s var(--animation);
    -o-transition: all 0.3s var(--animation);
    transition: all 0.3s var(--animation);
}

.form__radio:checked + .form__radio-fake::after {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #00599F;
}

.form__radio:checked + .form__radio-fake,
.form__radio:focus + .form__radio-fake,
.form__label--checkbox:hover .form__radio-fake {
    border: 2px solid #00599F;
}

.radio__label {
    font-weight: 500;
    font-size: 14px;
    color: #69696D;
}

.form_submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 55px 0;
    border-top: 1px solid rgba(105,105,109, 0.35);
}

.form_btn {
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #34343A;
    padding: 15px 40px;
    border: 1px solid #69696D;
    background: transparent;
    margin-right: 45px;
    cursor: pointer;
    -webkit-transition: all .3s var(--animation);
    -o-transition: all .3s var(--animation);
    transition: all .3s var(--animation);
}

.form_btn:focus,
.form_btn:hover {
    opacity: 0.6;
}

.form_btn:active {
    opacity: 1;
}

.form_submit p {
    max-width: 370px;
    font-size: 14px;
    line-height: 20px;
    color: #69696D;
    opacity: 0.5;
    margin: 0;
}

.diagrams {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.diagram-container {
    width: calc(50% - 50px);
    margin-right: 50px;
    margin-bottom: 50px;
    margin-top: 40px;
    border: 1px solid #E9E9E9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    min-width: 330px;
    padding: 60px 30px;
}

.diagram__title {
    margin: 0 15px;
}

.title__text {
    font-weight: 500;
    font-size: 16px;
    color: #69696D;
    margin: 5px 0;
}

.title__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: normal;
    color: #69696D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin-bottom: 5px;
}

.title__num span {
    max-width: 30px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #69696D;
    opacity: 0.6;
    display: block;
    margin-left: 9px;
    margin-bottom: 9px;
}

.progress__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 60px 0;
}

.progress__title {
    width: 150px !important;
    font-weight: 500;
    font-size: 14px;
    color: #34343A;
    margin-right: 70px;
}

.progress__container {
    margin: 0 30px 30px 0;
    padding: 35px;
    min-width: 290px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.progress__container .diagram__title {
    margin: 0;
}

.progress__container .title__text {
    font-size: 14px;
}

.progress__cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.progress__cell:last-child {
    width: 80%;
}

.progress__cell__subtitle {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 60px;
    font-weight: 500;
    font-size: 14px;
    color: #34343A;
    opacity: 0.6;
}

.progress__cell__subtitle__descript {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 60px;
    font-weight: 500;
    font-size: 14px;
    color: #69696D;
    opacity: 0.6;
}

.title__desc {
    font-size: 10px;
    line-height: 14px;
    color: #A0A0A0;
}

.accordion-group-title
{
    font-size: 18px;
    margin: 25px 0 10px;
    font-weight: 500;
}

.downLoadChart
{
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #34343A;
    padding: 15px 40px;
    border: 2px solid #69696D;
    background: transparent;
    margin: 20px 0;
    cursor: pointer;
    -webkit-transition: all .3s var(--animation);
    -o-transition: all .3s var(--animation);
    transition: all .3s var(--animation);
}

.downLoadChart:focus,
.downLoadChart:hover {
    opacity: 0.6;
}

.downLoadChart:active {
    opacity: 1;
}


.all_files h2{
    width: 60%;
}
.download {
    display: none;
}

.noScroll {
    height: 100vh;
}

@media screen and (min-width: 1280px) {
    .header_menu {
        right: 0 !important;
    }

    .header_menu > * {
        opacity: 1!important;
        visibility: inherit !important;
        -webkit-transform: translate(0) !important;
        -ms-transform: translate(0) !important;
        transform: translate(0) !important;
    }

    .overlay_menu {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .breadcrumbs {
        width: 100%;
    }

    .content {
        width: 100%;
        max-width: none;
    }

    .menu_btn {
        display: block;
    }

    .header_menu {
        right: -560px;
        z-index: 11;
    }

    .document_menu_wrap {
        width: 100%;
    }

    .document_menu_btn {
        right: 40px;
    }

    .footer_style_page .center_cnt {
        padding-bottom: 0;
    }

    #ars_msgField {
        top: 105px;
        right: 50px;
        left: auto;
    }
}

@media screen and (max-width: 1024px) {
    .center_cnt {
        margin-top: 85px;
    }

    .footer_style_page {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .definition-section .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .biography-section {
        background: rgba(227, 227, 227, 0.2);
        padding: 40px 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .biography-section::before {
        display: none;
    }

    .biography-section .img-wrapper.desc {
        display: none;
    }

    .biography-section .img-wrapper.mobile {
        display: block;
        margin: 20px 0;
        width: 100%;
        height: 50vw;
    }

    .biography__text {
        max-width: 100%;
    }

    .risk__table {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .risk__table > div {
        width: 100%;
    }

    .table-extended tr td:first-child {
        width: 200px;
    }

    /*.table-extended.col-fixed {*/
    /*    margin-left: 200px;*/
    /*    width: calc(100% - 200px);*/
    /*}*/

    .diagrams {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .diagram-container {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        min-width: auto;
        padding: 30px 15px;
    }

    .progress__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        margin: 30px 0;
    }

    .progress__cell:last-child {
        width: 100%;
    }

    .progress__cell__subtitle {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .progress__row .diagram-container {
        width: 235px;
        margin-right: 30px;
    }

    .full_screen {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .add_files,
    .all_files {
        overflow-x: auto;
        margin: 30px 0;
    }


    .add_files > .mobile,
    .all_row > .mobile {
        display: block;
        font-size: 12px;
        margin: 0;
    }

    .add_files > p.noFiles {
        margin-top: 10px;
        font-size: 12px;
    }

    .table-downloads thead td:nth-child(2),
    .table-downloads thead td:nth-child(3) {
        position: absolute;
        right: 15px;
        width: 40px;
        background: white;
        margin-top: 20px;
    }

    .table-downloads thead td:nth-child(2) {
        right: 70px;
    }


    .table-downloads tbody td:nth-child(3), .table-downloads tbody td:nth-child(4), .table-downloads tbody td:nth-child(5) {
        position: absolute;
        right: 15px;
        width: 55px;
        background: white;
        height: 35px;
        padding-left: 15px;
        display: none;
        opacity: 1;
    }

    .table-downloads tbody td:nth-child(3).active,
    .table-downloads tbody td:nth-child(4).active,
    .table-downloads tbody td:nth-child(5).active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    @-moz-document url-prefix() {
        .table-downloads thead td:nth-child(2),
        .table-downloads thead td:nth-child(3),
        .table-downloads tbody td:nth-child(3),
        .table-downloads tbody td:nth-child(4),
        .table-downloads tbody td:nth-child(5) {
            top: 0;
        }

    }

    .download {
        display: block;
    }

    .table-downloads tbody td:nth-child(4) {
        right: 70px;
    }

    .table-downloads tbody td:nth-child(3) {
        right: 125px;
    }

    .all_files .table-downloads tbody td:nth-child(3) {
        right: 70px;
    }

    .all_files .table-downloads tbody td:nth-child(4) {
        right: 15px;
    }

    .footer_style_page .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .footer_col {
        text-align: center;
    }

    .footer_col--right {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        -webkit-order: -1;
        order: -1;
    }

    .footer_col--right::after {
        content: "";
        display: block;
        width: 55px;
        height: 1px;
        background: #34343a;
        margin: 20px auto;
    }

    .table-extended tr td:first-child {
        width: 150px;
    }

    /*.table-extended.col-fixed {*/
    /*    margin-left: 150px;*/
    /*    width: calc(100% - 150px);*/
    /*}*/

    .main_screen_form {
        padding: 30px 0;
    }

    .form__section {
        margin: 30px 0;
    }

    .main_screen_form::before {
        width: calc(100% + 30px);
        left: -15px;
    }

    .group_checkbox__col,
    .group_checkbox__col.right_col {
        width: 100%;
        min-width: auto;
    }

    .checkbox__label {
        max-width: 215px;
    }

    .form_submit {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        padding: 25px 0;
    }

    .form_btn {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .all_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .download-all-pages {
        font-size: 14px;
        margin-top: 5px;
    }

    .global_search__form .form_btn {
        margin-bottom: 0;
        padding: 7px 20px;
    }

    .global_search__form input {
        padding: 10px;
    }
}

/*-------------- table-extended1---------------*/

.table-extended1 {
    color: #69696d;
    border-collapse: collapse;
    width: 100%;
    display: block;
    overflow: auto;
    position: relative;
}

.table-extended1 thead tr td {
    background: white !important;
}

.table-extended1 tr:nth-child(odd) {
    background: rgba(227, 227, 227,0.2);
}

.table-extended1 tr:nth-child(odd) td.cell-fixed {
    background: #F9F9F9;
}

.table-extended1 tr:hover,
.table-extended1 tr:focus {
    background: rgba(227, 227, 227, 1);
}

.table-extended1 tr td:first-child {
    width: 20px;/*--------------------------------240*/
}

.table-extended1 tr td.strong-bg {
    background: #00599F;
    color: white;
    border: 1px solid #efefef;
}

.table-extended1 tr td.strong-bg a {
    color: white;
    text-decoration: underline;
}

.table-extended1 tr td.strong-bg a:hover {
    text-decoration: none;
}

.table-extended1 tr td.red-bg {
    background: #c12727;
    color: white;
    border: 1px solid #efefef;
}

.table-extended1 tr td.yellow-bg {
    background: #FFD700;
    color: #3b2716;
    border: 1px solid #efefef;
}


.column-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.table-extended1 tr td.cell-fixed {
    position: absolute;
    background: white;
    z-index: 1;
}

.table-extended1 tr td.cell-fixed + td {
    padding-left: 240px;
}

.table-extended1 tr:hover td.cell-fixed,
.table-extended1 tr:focus td.cell-fixed  {
    background: rgba(227, 227, 227, 1);
}

.table-extended1 thead tr {
    opacity: 0.8;
    font-size: 10px;
    background: transparent !important;
}

.table-extended1 tr td {
    text-align: left;
    padding: 10px;
    font-size: 12px;
    min-width: 50px;/*------------------------------150*/
    border: 3px solid transparent;
}

.table-extended1 tr td.text-align-left {
    text-align: left;
}

.table-extended1 tr td.text-align-center {
    text-align: center;
}

.table-extended1 tr td.text-align-right {
    text-align: right;
}

.table-extended1 tr td.text-align-justify {
    text-align: justify;
}

.table-extended1 tr td.text-align-top {
    vertical-align: top;
}

.table-extended1 tr td.text-align-middle {
    vertical-align: middle;
}

.table-extended1 tr td.text-align-bottom {
    vertical-align: bottom;
}

.table-extended1 .border-top-solid {
    border-top: 3px solid #efefef
}

.table-extended1 .border-right-solid {
    border-right: 3px solid #efefef
}

.table-extended1 .border-bottom-solid {
    border-bottom: 3px solid #efefef
}

.table-extended1 .border-left-solid {
    border-left: 3px solid #efefef
}

.table-extended1 .border-all-solid {
    border: 3px solid #efefef
}

.table-extended1 .border-top-dots {
    border-top: 3px dashed #efefef
}

.table-extended1 .border-right-dots {
    border-right: 3px dashed #efefef
}

.table-extended1 .border-bottom-dots {
    border-bottom: 3px dashed #efefef
}

.table-extended1 .border-left-dots {
    border-left: 3px dashed #efefef
}

.table-extended1 .border-all-dots {
    border: 3px dashed #efefef
}


.table-extended1 .border-dashed {
    border-style: dashed
}

.table-extended1.header-fixed {
    height: 65vh;
}

.table-extended1.header-fixed thead{
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 2;
}

.table-extended1.header-fixed tbody{
    display: block;
    margin-top: 39px;
}

/*-------------- END OF table-extended1-----------------------*/

/*-------------- FOR CUSTOM BUTTON TABLE PRESS-----------------------*/
.download-button {
	display: inline-block;
	padding: 8px 16px;
	font-size: 16px;
	color: #34343a;
 	background-color: #d9edf7;  /* как заголовок в таблице**/
	border-radius: 5px;
	text-decoration: none;
	transition: background-color .3s ease;
}

.download-button:hover {
	background-color: #00599f;
	color: #fff;
}

/*-------------- END OF CUSTOM BUTTON TABLE PRESS-----------------------*/

/*-------------- FOR CUSTOM TOOLTIP TABLE PRESS-----------------------*/
.tooltip-23 {
  position: relative;
  cursor: pointer;
  text-decoration: underline dashed;
  cursor: help;
}

.tooltip-23::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%; 
  transform: translateY(-50%);
  padding: 10px;
  margin-left: 50px;
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.5);
  color: #fff;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
}

.tooltip-23:hover::before {
  visibility: visible;
  opacity: 1;
}


/*-------------- END OF CUSTOM TOOLTIP TABLE PRESS-----------------------*/


/*-------------- FOR COUNTER-----------------------*/
.counter {
  font-size: 24px;
  font-weight: bold;
  color: #00599f;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/*-------------- END COUNTER-----------------------*/
