.mc_container{
    padding: 40px;
    background: white;
}
.mc_tab_block{
    margin-top: 5px;
    display: flex;
    width: 100%;
}
.mc_tab_block .mc_tab{
    flex-grow: 1;
    text-align: center;
    color: #757575;
    font-size: 18px;
    font-weight: 600;
    background: #EDFCEA;
    padding: 12px;
    border-bottom: 2px solid #D9D9D9;
    display: flex;
    justify-content: center;
}
.mc_green {
    color: #5bb449;
}
.mc_black{
    color: #212121;
}
.mc_blue{
    color: #57afd9;
}
.mc_grey{
    color: #8E8E8E;
}
.mc_orange_title_bg{
    background-color: #FFE5D8;
}
.mc_green_title_bg{
    background-color: #EDFCEA;
}

.mc_orange_body_bg{
    background-color: #FFF3ED
}
.mc_bold{
    font-weight: bold;
}
.mc_dropdown{
    border: none;
    background: transparent;
}
.mc_dropdown_list{
    border: 1px solid transparent;
    border-top-left-radius:0;
    border-top-right-radius:0;
    border-bottom-left-radius:8px;
    border-bottom-right-radius:8px;
    margin-top: 10px;
}

.mc_tab_block .mc_tab.active{
    background: #DAF5D5;
    border-bottom: 2px solid #5BB449;
}
.mc_tab_block .mc_tab.active button{
    background: #DAF5D5;
    color: #212121;
}
.mc_tab_block .mc_tab:not(.active) button img {
    filter: grayscale(1);
}
.mc_tab_block .mc_tab button{
    border: none;
    background: #EDFCEA;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    justify-content: center;
}
.mc_tab_block .mc_tab button svg{
    display: none;
}
.mc_page_content {
    min-height: 300px;
    padding-top: 30px;
}
.mc_tab_pane{
}
.mc_sub_menu {
    margin: 0;
}
.mc_sub_menu_m{
    display: none;
}
.mc_sub_menu.active {
    display: flex;
}
.mc_sub_menu>li+li {
    margin-left:0;
}
.mc_sub_menu a.nav-link{
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 24px 15px 24px;
    background: unset !important;
    border: unset;
    border-radius: unset;
    text-decoration: none;
}
.mc_sub_menu a.nav-link:hover{
    text-decoration: underline;
}
.mc_sub_menu>li.active>a{
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #5BB449;
}
.mc_sub_menu>li.active>a:hover,
.mc_sub_menu>li.active>a:focus{
    color: #212121;
    text-decoration: none;
}
.mc_cert_i {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.mc_green_panel{
    padding: 24px;
    border: 1px solid #D9D9D9;
}
.mc_rep_panel{
    padding: 18px 24px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    margin-bottom: 20px;
}
.mc_rep_panel_row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.mc_block{
    margin: 25px 0;
}
.mc_row{
    display: flex;
    flex-direction: row;
}
.mc_input_row{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mc_banner_row{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap:20px;
    margin-bottom: 40px;
}
.mc_banner_text{
    color: #757575;
    font-size: 14px;
    font-weight: 400;
}
.mc_banner_text2 {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
}
.mc_title_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.mc_subtitle_row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.mc_title{
    color: #212121;
    font-size: 24px;
    font-weight: 600;
}
.mc_title a{
    color: #5BB449;
    font-size: 24px;
    font-weight: 600;
}
.mc_title a:hover,
.mc_title a:active,
.mc_title a:focus{
    color: #5BB449;
    text-decoration: underline;
}
.mc_button_green{
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    background-color: #5BB449;
    cursor: pointer;
    padding: 7px 16px;
    white-space: nowrap;
    line-height: 1.42857143;
    text-decoration: none;
}
.mc_button_green:hover,
.mc_button_green:active,
.mc_button_green:focus{
    color: #fff;
    background-color: #458837;
    text-decoration: none;
}

.mc_support_file_button:disabled,
.mc_support_file_button.disabled,
.mc_button_green:disabled,
.mc_button_green.disabled {
    cursor: not-allowed;
    background-color: #e6e6e6;
    color: #999999;
    pointer-events: none;
}
.spinning {
    animation: spin 1s infinite linear;
    display: inline-block;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.mc_button_grey{
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    background-color: #b3b2b2;
    cursor: pointer;
    padding: 7px 16px;
    white-space: nowrap;
    line-height: 1.42857143;
    text-decoration: none;
}
.mc_button_grey:hover,
.mc_button_grey:active,
.mc_button_grey:focus{
    color: #fff;
    background-color: #8f8e8e;
    text-decoration: none;
}
.mc_button_grey:disabled,
.mc_button_grey.disabled {
    cursor: not-allowed;
    background-color: #e6e6e6;
    color: #999999;
    pointer-events: none;
}
.mc_button_trans{
    border: 1px solid #5BB449;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #5BB449;
    background-color: transparent;
    cursor: pointer;
    padding: 7px 16px;
    white-space: nowrap;
    line-height: 1.42857143;
    text-decoration: none;
}
.mc_button_trans:hover,
.mc_button_trans:active,
.mc_button_trans:focus{
    color: #376e2b;
    text-decoration: none;
    border: 1px solid #376e2b;
}

@keyframes mc_spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mc_loading {
    animation: mc_spin 1s linear infinite;
    transform-origin: center;
}


.mc_minwidth188{
    min-width: 188px;
}
.mc_title{
    color: #212121;
    font-size: 24px;
    font-weight: 600;
}
.mc_table{
}
.mc_table_tr{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border-bottom: 1px solid #F0F0F0;
}
.mc_table_tr > div:first-child {
    padding-left:5px;
}

.mc_table_tr > div {
    padding: 10px 24px 10px 24px;
}
.mc_table_tr > div:last-child {
    padding-right:0;
}

.mc_table_th{
    color: #757575;
    font-size: 16px;;
    font-weight: 400;
    flex-grow: 1;
}
.mc_table_td{
    color: #212121;
    font-size: 16px;;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.mc_table_td_date{
    width: 120px;
    min-width: 120px;
}
.mc_table_td_text{
    width: 180px;
    min-width: 180px;
}
.mc_table_td_textarea{
    width: 250px;
    min-width: 250px;
}
.mc_table_td_numb{
    width: 80px;
    min-width: 80px;
}
.mc_table_align_right{
    justify-content: flex-end;
}
.mc_table_align_between{
    justify-content: space-between;
}
.mc_flex_center_row{
    display: flex;
    align-items: center;
    gap: 5px;
}
.mc_flex_center_row div{
    white-space: nowrap;
}
.mc_flex_center_row_wrapped{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.mc_green_href{
    color: #5BB449;
    font-size: 16px;;
    font-weight: 600;
}
.mc_green_href:hover,
.mc_green_href:active,
.mc_green_href:focus{
    color: #5BB449;
    text-decoration: underline;
}
.mc_grey_href{
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 600;
}
.mc_grey_href:hover,
.mc_grey_href:active,
.mc_grey_href:focus{
    color: #8E8E8E;
    text-decoration: underline;
}

.mc_state_nr,
.mc_state_ok,
.mc_state_er{
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 3px;
}
.mc_state_ok{
    color: #5BB449;
}
.mc_state_er{
    color: #ff6e6e;
}
.mc_state_nr{
    color: #989898;
}
.mc_contact_type_green{
    color: #5BB449;
    font-size: 16px;
    font-weight: 600;
}
.mc_contact_type_grey{
    color: #BDBDBD;
    font-size: 16px;
    font-weight: 600;
    text-decoration-line: line-through;
}
.mc_contact_type_black{
    color: #212121;
    font-size: 16px;
    font-weight: 600;
}
.mc_contact_type{
    display: flex;
    align-items: center;
    gap: 5px;
}
.mc_contact_link{
    color: #5BB449;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.mc_contact_link:hover,
.mc_contact_link:active,
.mc_contact_link:focus{
    color: #5BB449;
    text-decoration: underline;
}
.mc_contact_main{
    color: #757575;
    font-size: 16px;
    font-weight: 400;
}

.mc_sub_menu_mobile{
    display: none !important;
}
.mc_sub_menu_desktop{
    display: block !important;
}
.mc_table_adapt_title{
    display: none;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
}
.mc_input_float_tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 18px
}
.mc_input_float_tab:last-child {
    border: 0
}
.mc_auth_text {
    font-size: 16px;
    font-weight: 400;
    outline: none
}
.mc_input_auth,
.mc_input_auth:focus {
    display: block;
    outline: 0;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #5bb449;
    outline: none;
    padding: 4px;
    background-color: transparent;
    line-height: unset
}

.mc_input_auth::-webkit-input-placeholder {
    color: #757575;
    font-weight: 400;
    font-size: 16px
}

.mc_input_auth~.mc_input_float_value {
    position: absolute;
    top: 10px;
    transition: top .7s ease,opacity .7s ease;
    opacity: 0;
    font-size: 11px;
    font-weight: 100;
    color: #958790
}

.mc_input_auth:valid~.mc_input_float_value {
    opacity: 1;
    top: 3px;
    left:3px;
}

.mc_input_auth:focus~.mc_input_float_value {
    color: #958790
}
.mc_input_error {
    display: none;
    font-size: 12px;
    color: #d9534f;
    padding-left: 5px;
    padding-right: 5px
}
.mc_cert_i {
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #151522;
}
.mc_content {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    overflow-wrap: anywhere;
}
.mc_freez_col {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.mc_sub_tab{
    display: none;
    margin-top: 60px;
}
.mc_active{
    display: block;
}
.mc_form_refresh_row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mc_form_refresh_row a:hover svg{
    transform-origin: center;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.mc_form_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.mc_form_row span {
    color: #757575;
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 4px 0;
}
.mc_form_item {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mc_form_dataranger_block {
    display: inline-block;
    position: relative;
}
.mc_form_dataranger {
    outline: none;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #5BB449;
    width: 180px;
    padding: 6px 10px;
    line-height:normal;
    height: 30px;
}
.mc_form_select {
    outline: none;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #5BB449;
    padding: 6px 10px;
    line-height:normal;
    height: 30px;
}

.mc_form_calendar_dataranger {
    font-size: 16px;
    background: 0 0;
    border: 0 none;
    color: #bdbdbd;
    position: absolute;
    right: 5px;
    top: 6px;
    padding: 0;
}

.mc_journal_tr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d8d8d8;
    padding-top: 10px;
    padding-bottom: 10px;
}
.mc_journal_row{
    display: flex;
    align-items: center;
    gap: 30px;
}
.mc_jrn_itm {
}
.mc_journal_tr_date {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    width: min-content;
    white-space: pre-wrap;
}
.mc_journal_tr_report svg{
    min-width: 20px;
}
.mc_journal_tr_report a {
    color: #5bb449;
    font-size: 16px;
    font-weight: 500;
}
.mc_journal_tr_report .fa {
    font-size: 18px;
    color: #757575;
    padding-right: 5px;
}
.mc_jrn_msg{
    padding-left: 30px;
}
.mc_jrn_type_row{
    display: flex;
    justify-content: space-between;
}
.mc_jrn_type{
    display: flex;
    gap: 10px;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
}

.mc_journal_buttons{
    display: flex;
    flex-wrap: nowrap;
}
.mc_tab_content{
    min-height:58px;
}
.mc_jrn_date_adaptive1{
    display: block;
}
.mc_jrn_date_adaptive2{
    display: none;
}

.mc_table_td .popover .close{
    margin-top: -20px;
    color: #5BB449;
}

.mc_table_td .popover{
    width: 314px;
    max-width: 314px;
}
.mc_table_td .popover .popover-title {
    padding: 30px 14px 10px 14px;
    margin: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #F0F0F0;
    border-radius: 5px 5px 0 0;
    color: #5BB449;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}


.mc_date_row{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mc_orgname{
    color: #757575;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mc_orgname_row{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}
.mc_orgname a{
    color: #212121;
    font-size: 16px;
    text-decoration: underline;
}
.mc_dov_window{
    background: #F5FFF3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 18px;
}
.mc_dov_title{
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.mc_dov_date{
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}
.mc_dov_text{
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
}
.mc_dov_do{
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    align-self: flex-start;
}
.mc_dog_but{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mc_but_y{
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    background: #5BB449;
}
.mc_but_n{
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    background: #AEAEAE
}
.mc_but_y:disabled{
    background:  #5BB449;
    cursor: not-allowed;
    opacity: 0.6;
}
.mc_but_n:disabled{
    background:  #c8c6c6;
    cursor: not-allowed;
    opacity: 0.6;
}
.mc_state_wait{
    color: #757575;
    font-size: 16px;
    font-weight: 500;
}
.mc_state_cancel{
    color: #EC7100;
    font-size: 16px;
    font-weight: 600;
}
.mc_state_ok{
    color: #5BB449;
    font-size: 16px;
    font-weight: 600;
}
.mc_state_column{
    display: flex;
    flex-direction: column;
}

.mc_state_href{
    color: #5BB449;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    display: flex;
    gap: 3px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.mc_state_href:hover,
.mc_state_href:active,
.mc_state_href:focus{
    color: #5BB449;
    text-decoration: none;
}

.mc_dog_link {
    color: #3cb371;
    text-decoration: none;
}

.mc_dog_link:hover,
.mc_dog_link:active,
.mc_dog_link:focus{
    color: #37a669;
    text-decoration: underline;
}

.mc_modal_window {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}
.mc_modal_side{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.mc_modal_side_title{
    min-height: 45px;
    color: #757575;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mc_modal_side_title a:hover svg{
    transform-origin: center;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.mc_modal_side_title2{
    padding-left: 20px;
}


.mc_quas_list {
    display: flex;
    align-items: flex-start;
    flex-grow: 1;
    min-width: 100%;
    width: 100%;
    margin: 5px 0 0 0;
}
.mc_quas_list > * {
    width: 50%;
    text-align: left;
    overflow: auto;
}
.mc_quas_title{
    color: #757575;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.mc_quas_obj{
    text-align: left;
}


.os-list-item-1 {
    margin: 0;
}
.os-list-item-2 {
    margin: 0;
    margin-left: 10px
}
.os-list-item-3 {
    margin: 0;
    margin-left: 35px
}
.os-history-msg {
    padding: 15px 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.os-history-text {
    color: #212121;
    font-size: 14px;
    font-weight: 400;
}
.os-history-date{
    color: #757575;
    font-size: 12px;
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 14px
}
.os-history-title-i {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
}
.os-history-title-o {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
}
.os-history-hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 1px solid #bbb
}
.os-history-file span a {
    font-weight: 700;
    color: #337ab7;
    font-size: 11px
}
.os-history-file {
    color: #b8b8b8;
    font-weight: 500
}
.os-item {
    min-height: 250px;
    margin-left: 5%;
    margin-right: 5%;
}
.os-quas-title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 30px;
    text-align: center;
}
.os-quas-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 5%;
    margin-right: 5%;
}
.os-quas-list {

}
.os-radio:checked+label, .os-radio:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000;
}
.os-radio:checked+label {
    font-weight: 500;
}
.os-radio:checked,.os-radio:not(:checked) {
    position: absolute;
    left: -9999px
}
.os-radio:checked+label,.os-radio:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000
}
.os-radio:checked+label {
    font-weight: 500
}
.os-radio:checked+label:before,.os-radio:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #bbb;
    border-radius: 100%;
    background: #fff
}
.os-radio:checked+label:after,.os-radio:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #49903a;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}
.os-radio:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}
.os-radio:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}
.os-list-font {
    font-weight: 300;
}
.os-green-panel{
    border: 1px solid #5bb449;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}
.os-green-panel svg{
    min-width: 25px;
}
.os-green-panel-p{
    margin-bottom: 7px;
}
.os-form-group {
    margin-bottom: 25px;
}
.os-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.os-checkbox-not-active {
    cursor: no-drop !important;
    color: #bcbcbc !important;
}
.os-checkbox-not-active-without-disable{
    color: #bcbcbc !important;
}
.os-checkbox-not-active .os-checkmark {
    background-color: #f4f4f4
}
.os-checkbox-not-active:hover input~.os-checkmark-sub {
    background-color: #f4f4f4 !important
}
.os-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}
.os-checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 19px;
    background-color: #eee
}
.os-checkbox-container:hover input~.os-checkmark {
    background-color: #e3eee5
}
.os-checkbox-container input:checked~.os-checkmark {
    background-color: #49903a
}
.os-checkbox-container:hover input~.os-checkmark-sub {
    background-color: #eee4e6
}
.os-checkbox-container input:checked~.os-checkmark-sub {
    background-color: #ff3703
}
.os-checkbox-container input:checked~p {
    font-weight: 500
}
.os-checkmark:after {
    content: "";
    position: absolute;
    display: none
}
.os-checkbox-container input:checked~.os-checkmark:after {
    display: block
}
.os-checkbox-container .os-checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}
.os-flex-row {
    display: flex;
    flex-direction: row
}
.os-form-group {
    margin-bottom: 25px;
}
.os-left-block {
    margin-left: 10px;
    margin-right: 15px
}
.os-left-row {
    font-size: 11px;
    color: #49903a;
    transform: rotate(90deg)
}




.ms_form_group {
    margin-bottom: 25px;
}
.mc_talking {
    width: 100%;
    border-radius: 3px;
    padding: 12px;
    line-height: 14px;
    font-weight: 700;
    font-size: 13px;
    height: 120px !important;
}
.mc_support_file_button {
    border: solid 1px #bbb;
    border-radius: 3px;
    color: #5bb449;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    background-color: #fff;
}
.mc_support_filename {
    color: #5bb449;
    padding-left: 7px;
}

.mc_support_filename label {
    padding-left: 7px;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #757575;
}
.mc_comment_button {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}
.mc_support_del_attach {
    color: #d9534f;
    padding-left: 10px;
}
.pr_dialog{
    width: 600px !important;
}
.mc_clm_dialog{
    width: auto !important;
    margin-left: 10%;
    margin-right: 10%;
}
.mc_block_none{
    display:none;
}

.mc_support_msg_container {
    margin-left: 1%;
    margin-right: 1%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    align-items: flex-start;
}

.carousel {
    position: relative;
}

.mc_support_msg_container .carousel-indicators li,
.mc_support_msg_container .carousel-indicators li .active {
    width: auto !important;
    height: 80px !important;
    border: none;
    border-radius: inherit;
    text-indent: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
}

.mc_support_msg_container .carousel-indicators {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
}

.mc_support_msg_container .carousel-indicators li.active a.caption {
    background: #f0f0f0;
}

.mc_support_msg_container .carousel-indicators li .caption {
    font-weight: 500;
    align-self: center;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.mc_line {
    width: auto;
    align-self: center;
}
.mc_hr{
    width: 100px;
    border-top: 2px solid #f0f0f0;
}
.mc_but_block {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}


.mc_sc_column{
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.mc_sc_name{
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 5px;
}
.mc_sc_name a,
.mc_sc_name a:hover,
.mc_sc_name a:active,
.mc_sc_name a:focus{
    height: 24px;
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.mc_sc_state{
    color: #969696;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 5px;
}
.mc_sc_alert{
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 5px;
}
.mc_sc_buttons{
    justify-content: space-between;
}

.mc_popover_row {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    font-weight: 400;
    align-items: flex-start;
    gap: 5px;
}
.mc_popover_row svg{
    min-width: 22px;
}
.mc_popover_row div{
    margin: 5px 0 5px 0;
}
.mc_margin_top_50{
    margin-top: 50px;
}

.mc_flex_center_row .popover{
    width: unset !important;
    max-width: unset !important;
}
.mc_flex_center_row .popover-content{
    padding: 5px 5px 0 5px;
}

.mc_close{

}
.mc_fam_panel{
    padding: 24px;
    margin: 20px 0 40px 0;
    background: #edfcea;
    border-radius: 4px;
    position: relative;
}
.mc_fam_between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    padding: 5px 0 10px 0;
}
.mc_fam_between img{
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #5BB449;
    height: 148px;
    width: 148px;
    background: white;
}
.mc_fam_column {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.mc_fam_title {
    color: #212121;
    font-size: 16px;
    font-weight: 700;
}
.mc_fam_height{
    margin: 5px 0;
}
.mc_fam_row1 {
    display: flex;
    width: 100%;

}
.mc_fam_row1 #link_qr_code{
    overflow-wrap: anywhere;
}
.mc_fam_row2 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.mc_fam_link_row {
    display: flex;
    gap:5px;
}
.mc_fam_link_row span{
    font-size: 14px
}
.mc_fam_link_row a{
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}
.mc_fam_alert_title_row{
    display: flex;
    align-items: flex-start;
    color: #5BB449;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    gap: 10px;
}
.mc_fam_fio{
    color: #212121;
    font-size: 16px;
    font-weight: 400;
}
.mc_fam_panel_text{
    color: #212121;
    font-size: 16px;
    font-weight: 400;
}
.mc_fam_checkbox_row{
    display:flex;
    align-items:flex-start;
    color: #F87125;
    font-size: 16px;
    font-weight: 400;
    gap: 5px;
}
.mc_fam_buttons_row{
    margin-top:20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:20px;
}

.mc_fam_checkbox_er:before {
    font-family: "FontAwesome";
    content: "\f00c";
    font-size: 11px;
    color: transparent !important;
    background: white;
    display: block;
    width: 13px;
    height: 13px;
    border: 1px solid #EB5757;
    margin-right: 8px;
    margin-top: 2px;
}
.mc_fam_oktext {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
}
.mc_fam_ertext {
    color: #EB5757;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.mc_fam_ertext .mc_fam_fio{
    color: #EB5757;
}
.mc_fam_oktext .mc_fam_fio{
    color: #212121;
}

.mc_fam_checkbox_ok:checked:before {
    color: #5BB449 !important;
}

.mc_fam_checkbox_ok:before {
    font-family: "FontAwesome";
    content: "\f00c";
    font-size: 11px;
    color: transparent !important;
    background: white;
    display: block;
    width: 13px;
    height: 13px;
    border: 1px solid #5BB449;
    margin-right: 8px;
    margin-top: 2px;
}

.mc_fam_checkbox_ok {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    outline: none !important;
    content: none;
}

.mc_fam_checkbox_er {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    outline: none !important;
    content: none;
}
.mc_fam_topgreenline{
    border-top: 1px solid #5BB449;
}

.mc_mpd_state {
    font-size: 16px;
    font-weight: 400;
}
.mc_mpd_tarif_name{
    color: #5BB449;
    font-size: 21px;
    font-weight: 600;
}
.mc_rep_link{
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    text-decoration:none;
}
.mc_rep_link:hover,
.mc_rep_link:active,
.mc_rep_link:focus{
    color: #212121;
    text-decoration:underline;
}
.mc_rep_row{
    display:inline;
}
.mc_rep_row svg{
    margin-bottom: -3px;
}

.mc_rep_left_side .mc_price,
.mc_rep_left_side .mc_price b{
    color: #757575;
    font-size: 14px;
    font-weight: 600;
}

.mc_rep_left_side .wp_price_text_grey{
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    gap: 5px;
}
.mc_rep_left_side .wp_price_row{
    color: #757575;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}


.mc_rep_right_side{
    width: 250px;
    min-width: 250px;
    text-align: right;
}
.mc_rep_right_side .wp_price_text_row{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 5px;
}
.mc_rep_right_side .wp_price_text_row b{
    color: #5BB449;
    font-size: 16px;
    font-weight: 600;
}
.mc_rep_right_side .wp_price_text_row span{
    color: #212121;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap:5px;
}
.mc_rep_right_side .wp_price_row{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.mc_rep_right_side .mc_rep_desktop .wp_price_amount_text,
.mc_rep_right_side .mc_rep_desktop .wp_price_amount,
.mc_rep_right_side .mc_rep_desktop .wp_price_currency{
    color: #5BB449;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 5px;
}
.mc_rep_right_side .wp_price_amount_text b{
    font-weight: 600;
}
.mc_rep_right_side .mc_price{
    display: none;
}
.mc_rep_right_side .wp_price_discont_block {
    color: #212121;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}
.mc_rep_right_side .wp_price_discont {
    display: flex;
    align-items: center;
}
.mc_rep_right_side .wp_price_discont .wp_price_amount {
    text-decoration: line-through;
    color: #b1b1b1 !important;
}
.mc_rep_right_side .wp_price_discont .wp_price_currency {
    color: #b1b1b1 !important;
    font-size: 13px;
    margin-right: 10px;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_amount_text,
.mc_rep_left_side .mc_rep_mobile .wp_price_amount,
.mc_rep_left_side .mc_rep_mobile .wp_price_currency{
    color: #5BB449;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 5px;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_text_row{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 5px;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_text_row b{
    color: #5BB449;
    font-size: 16px;
    font-weight: 600;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_text_row span{
    color: #212121;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap:5px;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_row{
    justify-content: flex-start;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_discont {
    display: flex;
    align-items: center;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_discont_block {
    color: #212121;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_discont .wp_price_amount {
    text-decoration: line-through;
    color: #b1b1b1 !important;
}
.mc_rep_left_side .mc_rep_mobile .wp_price_discont .wp_price_currency {
    color: #b1b1b1 !important;
    font-size: 13px;
    margin-right: 10px;
}

.mc_rep_left_side .mc_rep_mobile .wp_price_amount_text + .wp_price_row .mc_price {
    display: none;
}


.mc_rep_right_side .wp_price_row svg{
    margin-bottom: 3px;
}

.mc_rep_column{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mc_rep_input {
    height: 36px;
    border-radius: 4px;
    border: 1px solid #AEAEAE;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.17;
    width: 214px;
    outline: none;
}
.mc_rep_input :placeholder-shown {
    color: #AEAEAE;
    font-size: 12px;
    font-weight: 400;
}

.passport-tabs {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    border: none;
}
.price-nav-item{
    font-size: 11px;
}
.passport-tabs>li {
    display: flex;
    align-items: center;
}
.passport-tabs>li>a{
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    padding: 2px;
    color: #5BB449;
    border: 1px solid transparent;
    border-bottom: 1px solid #5BB449;
    margin-right: 10px;
    background-color: transparent;
}
.passport-tabs>li>a:focus,
.passport-tabs>li>a:hover{
    background-color: transparent;
    border: 1px solid transparent;
}
.passport-tabs>li.active>a:hover,
.passport-tabs > li.active > a:focus{
    color: #212121;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
}
.passport-tabs > li.active > a{
    font-weight: 500;
    border: 1px solid transparent;
    color: #212121;
    background-color: transparent;
}
.mc_rep_form_text{
    margin-top: 10px;
}
.mn_passport_tabs{
    margin-bottom: 10px;
}
.mc_rep_mobile{
    display: none;
}
.mc_rep_desktop{
    display: block;
}
.mc_rep_subtext{
    border-top: 1px solid #D9D9D9;
    padding-top: 10px;
    display: flex;
    gap: 5px;
    color: #757575;
    font-size: 14px;
    font-weight: 400;
}
.mc_rep_subtext svg{
    min-width: 20px;
}

.mc_error_text{
    display: none;
    color: rgb(217, 83, 79);
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 0 5px;
}




@media (max-width: 992px) {
    .mc_modal_side {
        width: 100%
    }
    .mc_table_tr{
        flex-wrap: wrap;
    }
    .pr_dialog{
        width: auto !important;
        margin-left: 20%;
        margin-right: 20%;
    }
    .mc_fam_row1{
        flex-direction: column;
        gap: 5px;
    }
}


@media (max-width: 768px) {

    .mc_journal_tr_date{
        width: unset;
        white-space: unset;
    }
    .mc_table_tr.mc_fam_tr,
    .mc_table_tr.mc_fam_tr2{
        flex-wrap: nowrap;
    }
    .mc_table_tr.mc_fam_tr>div:first-child{
        display: none;
    }
    .mc_table_tr.mc_fam_tr>.mc_table_td_text{
        padding-left:0;
        min-width: auto;
        width: 100%;
    }
    .mc_fam_between{
        flex-direction: column;
    }
    .mc_margin_top_50{
        margin-top: 20px;
    }
    .pr_dialog{
        width: auto !important;
        margin-left: 10%;
        margin-right: 10%;
    }
    .mc_rep_form_text{
        margin-top: 0;
    }
    .mc_rep_mobile{
        display: block;
    }
    .mc_rep_desktop{
        display: none;
    }
    .mc_rep_right_side{
        text-align: left;
    }
    .mc_rep_right_side .wp_price_text_row{
        align-items: flex-start;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .mc_rep_column {
        gap: 0;
    }
    .mc_rep_panel_row{
        flex-direction: column;
        gap: 0;
    }
    .mc_rep_left_side,
    .mc_rep_right_side{
        width: 100%;
    }
    .mc_rep_left_side .mc_rep_mobile .wp_price_text_row{
        align-items: flex-start;
    }
    .mc_rep_subtext {
        margin-top: 10px;
    }
    .mc_rep_left_side .mc_rep_mobile .wp_price_row{
        margin-bottom: 0;
    }

    .mc_fam_between{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .mc_fam_row1{
        flex-direction: column;
    }

    .mc_fam_row1 #link_qr_code{
        overflow-wrap: anywhere;
        font-size: 14px;
    }

    .mc_flex_center_row{
        flex-wrap: wrap;
    }
    .mc_flex_center_row div{
        white-space: normal;
    }
    .mc_td_empty{
        display: none;
    }
    .mc_but_block {
        width: 100%;
        flex-direction: column;
        align-items: center
    }
    .mc_line {
        display: none
    }
    .os-history-msg{
        padding-left: 0;
    }
    .mc_modal_side_title2 {
        padding-left: 0;
    }
    .mc_modal_window{
        flex-direction: column;
    }
    .mc_support_file_button {
        margin-bottom: 10px
    }
    .mc_comment_button {
        display: flex;
        flex-direction: column;
        justify-content: center
    }
    .mc_modal_side {
        width: 100%
    }
    .mc_date_row{
        flex-direction: row;
    }
    .mc_sub_tab {
        margin-top: 20px;
    }
    .mc_banner_row{
        flex-direction: column;
        margin-bottom: 20px;
    }
    /*.mc_dov_title,
    .mc_dov_date,
    .mc_dov_text,
    .mc_dov_do{
        font-size: 13px;
    }
    .mc_orgname a{
        font-size: 13px;
    }*/
    .mc_jrn_msg{
        padding: 10px 0 0 0;
    }
    .mc_jrn_date_adaptive1{
        display: none;
    }
    .mc_jrn_date_adaptive2{
        display: block;
    }
    .mc_form_refresh_row{
        flex-direction: column;
    }
    .mc_form_refresh_row a{
        order: -1;
        align-self : flex-end;
    }
    .mc_form_row{
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .mc_form_select{
        width: 100% !important;
    }
    .mc_form_dataranger{
        width: 100%;
    }
    .mc_journal_tr{
        gap: 10px;
    }
    .mc_journal_row{
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .mc_form_item{
        font-size: 13px;
        margin-top: 0;
        width: 100%;
    }
    .mc_container{
        padding: 1px 10px 10px 10px;
    }
    .mc_sub_menu_mobile{
        margin-top: -5px;
        display: block !important;
    }
    .mc_sub_menu_desktop{
        display: none !important;
    }
    .mc_sub_menu_m {
        display: flex;
        flex-direction: column;
    }
    .mc_sub_menu a.nav-link {
        padding: 10px 14px 10px 14px;
    }
    .mc_tab_block{
        flex-direction: column;
        gap: 6px;
    }
    .mc_tab_block .mc_tab {
        justify-content: flex-start;
    }
    .mc_tab_block .mc_tab.active {
        background: #edfcea;
        border-bottom: none;
    }
    .mc_tab_block .mc_tab.active button {
        background: #edfcea;
    }
    .mc_tab_block .mc_tab {
        border-bottom: none;
    }
    .nav-tabs {
        border-bottom: none;
        flex-wrap: wrap;
    }
    .mc_tab_block .mc_tab button {
        justify-content: space-between;
    }
    .mc_tab_block .mc_tab button svg{
        display: block;
    }
    .mc_title_row{
        flex-direction: column;
        align-items: center;
    }
    .mc_subtitle_row{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .mc_row svg{
        display: none;
    }
    .mc_block{
        margin: 0 0 25px 0;
    }
    .mc_row{
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }
    .mc_cert_i {
        text-align: center;
    }
    .mc_cert_img {
        width: 100%;
        overflow: hidden;
        text-align: center;
        padding: 10px 0;
    }

    .mc_cert_img img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .mc_table_adapt_title {
        display: block
    }
    .mc_table_header{
        display: none;
    }
    .mc_table_tr.mc_table_tr_4_wrap{
        flex-direction: column;
    }
    .mc_table_tr_4_wrap .mc_table_td{
        min-width: 100% !important;
        width: 100% !important;
        margin-bottom: 10px;
    }
    .mc_table_tr_4_wrap .mc_table_td > *:not(.popover) {
        width: 50%;
        text-align: left;
        overflow: auto;
    }
     .mc_table_tr.mc_table_tr_4_wrap>div {
        border-right: unset;
        padding: 0 !important;
        line-height: 30px;
    }
    .mc_table_tr.mc_table_tr_4_wrap>div:last-child {
        padding-right: 0;
        border-right: none;
    }

    .mc_table_tr.mc_table_tr_4_skn>div{
        padding: 5px 5px 5px 0;
    }

    .ms_table_4up{
        order: -1;
    }
    .ms_table_4up > *{
        text-align: right;
        padding: 5px 10px 0 0;
    }
}

@media (max-width: 400px) {
    .w_modal_footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .w_modal_footer button{
        width: 150px;
    }
}


@media (max-width: 300px) {
    .pr_dialog{
        width: auto !important;
        margin-left: 1%;
        margin-right: 1%;
    }
}


