
body {
    margin: 0;
    font-family: Roboto;
    background: #024B36;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 99999;
}

.btn {
    display: inline-block;
    font-weight: 500;
    border: 0;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 8px;
    padding: 12px 15px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.header_content {
    position: relative;
    height: 80px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 25px;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
}

.logo {
    position: relative;
    float: left;
    min-width: 280px;
}

.logo .logo_left {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #93CE20;
}

.logo .logo_right {
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    color: #024B36;
}

.menu {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main_menu {
    position: relative;
    float: left;
    width: auto;
    margin-left: 60px;
}

.main_menu ul {
    padding-inline-start: 0px;
}

.main_menu li {
    display: inline-block;
}

header .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.main_menu a {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #024B36;
    text-decoration: none;
    outline: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main_menu a:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: calc(50% - 1.5%);
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: #024b36;
    border-radius: 3px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main_menu a.active {
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
    color: #024B36;
}

.main_menu a.active:before { display: block; width: 94%; }
.main_menu a:hover:before { display: block; width: 94%; }

.user_menu a {
    padding: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #024B36;
    text-decoration: none;
    outline: none;
}

section.section_result {
    position: relative;
}

section .container {
    background: #fff;
    padding: 27px;
    box-sizing: border-box;
    border-radius: 17px;
}

section.first {
    padding-top: 60px;
}

.title {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #024B36;
}
section:not(.first) .title {
    margin-block-start: 0;
}

.subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #024B36;
}

.search {
    position: relative;
    width: 100%;
}

.filter {
    position: absolute;
    top: 0px;
    right: 0px;
}

.result_notice {
    position: relative;
    color: red;
    background: #ff000012;
    padding: 4px 6px;
    margin-bottom: 15px;
    width: fit-content;
    border-radius: 5px;
    border: 1px solid #ff000030;
}
.result_notice:empty { display: none; }

textarea.big_search {
    width: 100%;
    height: 300px;
    background: #FFFFFF;
    box-shadow: inset 0px 0px 11px 4px rgba(0, 0, 0, 0.17);
    border-radius: 5px;
    outline: none;
    border: 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 17px;
    resize: vertical;
}

textarea.big_search.loading2 {
    background: #f5f8f7;
    position: relative;
    display: inline-block;
}

.search_input {
    position: relative;
    margin-top: 20px;
}

section {
    margin-bottom: 33px;
}

.filter_item_title {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #024B36;
}

.filter_item {
    position: relative;
    min-width: 250px;
}

.result_item {
    position: relative;
    padding: 15px;
    background: #FAFAFA;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
    border-radius: 13px;
    box-sizing: border-box;
    margin-bottom: 23px;
}

.result_item_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #024B36;
    margin-bottom: 14px;
}


.result_item.not_found .result_item_title {
    color: red;
}

.result_item.not_found .result_item_title {
    margin-bottom: 0;
}

.result_licenses {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.result_licenses_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3px;
    padding-bottom: 1px;
    border-bottom: 1px dashed rgba(2, 75, 54, 0.21);
}

.rsi_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    min-width: 280px;
}

.rsi_type {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #929292;
}

.rsi_buttons {
    margin-left: auto;
}

a.download_link {
    font-size: 18px;
    margin-left: 5px;
    color: #024B36;
    outline: none;
    text-decoration: none;
}

.download_link.inactive {
    color: #999999;
    right: 11px;
}

.result_buttons {
    position: relative;
    width: 100%;
    text-align: right;
}

.result_buttons a {
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 8px;
    padding: 12px 15px;
    text-decoration: none;
    outline: none;
}

.result_load,
.search_is_empty {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 60px 0;
    color: #00000047;
    font-weight: 400;
}

input[type="checkbox"] {
    display: none;
}

.checkbox {
    position: relative;
    width: 19px;
    height: 19px;
    background: #D9D9D9;
    box-shadow: inset 0px 0px 4px rgb(0 0 0 / 25%);
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox.checked:before {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    background: #024B36;
    box-shadow: 0px 0px 5px 1px #024b36;
}

.select_all {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #024B36;
    margin-bottom: 21px;
    position: relative;
    top: -35px;
    float: right;
    cursor: pointer;
}

footer .container {
    background: #fff;
    padding: 27px;
    box-sizing: border-box;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    height: 105px;
    text-align: center;
}

footer .logo {
    float: left;
    width: 100%;
    text-align: center;
    display: inline-block;
}





/* NEW LOGO */
.logo .logo_left {
    text-transform: uppercase;
    width: 100%;
    position: relative;
    float: left;
    font-size: 32px;
    line-height: 36px;
}
.logo .logo_right {
    text-transform: uppercase;
    width: 100%;
    position: relative;
    float: left;
    font-size: 18px;
    line-height: 20px;
}



.select {
    position: relative;width: 250px;
}

.select.kp_select_unit {
    width: 130px;
}

.select.kp_select_type {
    width: 190px;
}

.selected {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 4px 6px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
    background: #FFFFFF;
    border: 1px solid #024B36;
    box-shadow: 0px 2px 4px #024b362e;
}
.selected:before {
    content: "\f078";
    float: right;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
}
.select.open .selected:before {
    transform: rotate(180deg);
}

.options {
    display: block;
    position: absolute;
    background: #fff;
    left: 0px;
    border: 1px solid #024b36;
    width: calc(100% - 0px);
    box-sizing: border-box;
    top: 25px;
    max-height: 200px;
    overflow: auto;
    padding-top: 4px;
    z-index: 1;
    border-radius: 4px;
    outline: none;
    display: none;
    z-index: 100;
}

.option {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 3px;
    cursor: pointer;
}

.option:hover {
    background: #024b36;
    color: #fff;
}

.docs_form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.docs_form_input {
    margin-right: 60px;
}

.select_title {
    position: relative;
    width: 100%;
    margin-bottom: 4px;
    font-size: 14px;
}

.select_error {
    color: red;
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
    display: none;
}

.select.error .select_error {
    display: block;
}

.docs_form_btns {
    position: relative;
    width: 100%;
    text-align: right;
}

.docs_buttons {
    position: absolute;
    top: 24px;
    right: 21px;
    font-size: 25px;
}

.section_docs_result .result .result_item_title {
    margin-bottom: 0;
}

.doc_info {
    color: #787878;
    font-size: 12px;
    margin-top: 7px;
}

.result {
    position: relative;
}

.kp_table_clear {
    position: absolute;
    top: -45px;
    right: 16px;
    font-size: 12px;
    cursor: pointer;
    color: red;
}

.result table {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    border-spacing: 1px;
    border-collapse: collapse;
    color: #024b36;
}

.result table tr:first-child td {
    font-weight: 400;
}

.result table td {
    padding: 5px;
    border: 1px solid #024b36;
}

.result.docx table {
    width: 600px;
    font-size: 14px;
    display: inline-block;
}

.result.docx {
    text-align: center;
    border: 1px solid #024b36;
    padding: 15px 10px;
    box-sizing: border-box;
    box-shadow: inset 0 0 11px 0px #024b3636;
    border-radius: 4px;
}

.result.docx table td {
    border-color: #000;
    color: #000;
    width: 40%;
}

.result.docx table td:last-child {
    width: 20%;
}

.chosen-container-single .chosen-single {
    background: #fff;
    box-shadow: none;
    border: 1px solid #024b36;
    border-radius: 3px;
    font-size: 14px;
    line-height: 28px;
    height: auto;
    color: #024b36;
}

.chosen-container .chosen-drop {
    border: 1px solid #024b36;
    background: #fff;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #024b36;
    background: #fff;
}

.chosen-container-single .chosen-single:before {
    content: "\f078";
    position: absolute;
    right: 7px;
    top: 5px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
}
.chosen-container-active .chosen-single:before {
    transform: rotate(180deg);
}

.chosen-container .chosen-results li.highlighted {
    background: #024b36;
}

/* .lable {
    position: absolute;
    right: 30px;
    background-color: #acd433;
    top: 0px;
    height: 100px;
    width: 65px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    background-image: url(/assets/img/lable.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 57px;
    transform: scale(-1, 1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
} */


.lable {
    position: absolute;
    right: 30px;
    background-color: #acd433;
    top: 10px;
    height: 60px;
    width: 42px;
    background-image: url(/assets/img/lable.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    transform: scale(-1, 1);
    border-radius: 5px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
/* .lable {
    width: 70px;
    background-size: 58px;
    background-color: transparent;
} */
/* .lable {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    background-size: 90%;
    border-radius: 50%;
    border: 4px solid #024b36;
    transform: scale(1, 1);
} */

#price_search {
    position: relative;
    width: 100%;
    font-size: 16px;
    display: inline-block;
    padding: 9px 6px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
    background: #FFFFFF;
    border: 1px solid #024B36;
    box-shadow: 0px 2px 4px #024b362e;
}

.input_text {
    position: relative;
    width: 100%;
    font-size: 16px;
    display: inline-block;
    padding: 6px;
    box-sizing: border-box;
    z-index: 2;
    border-radius: 4px;
    background: #FFFFFF;
    border: 1px solid #024B36;
    box-shadow: 0px 2px 4px #024b362e;
    outline: none;
}

table.price_table {
    width: 100%;
    font-size: 14px;
    text-align: left;
}

table.price_table tr td:nth-child(1) {
    width: 400px;
}

table.price_table tr td:nth-child(2) {
    text-align: center;
    width: 34px;
}

table.price_table tr td:nth-child(3) {
    text-align: center;
    width: 90px;
    font-weight: bold;
    font-size: 16px;
}

table.price_table tr td:nth-child(4) {
    width: 350px;
}

input.price_count {
    position: relative;
    width: 60px;
    padding: 3px 4px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
    background: #FFFFFF;
    border: 1px solid #024B36;
    box-shadow: 0px 2px 4px #024b362e;
    outline: none;
    display: inline-block;
    margin: 0px;
    float: left;
}

table.price_table tr td:nth-child(5) {
    font-size: 16px;
    font-weight: bold;
    width: 205px;
}

table.price_table tr td:nth-child(5) span {
    margin-left: 10px;
}

table.price_table tr:first-child td {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

table.price_table tr:first-child td:first-child {
    text-align: left;
}

table.price_table tr:hover td {
    background: #024b3617;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

table.price_table tr:first-child td {
    background: #024b3638;
}

.empty {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 60px 0;
    font-size: 16px;
    color: #0000005e;
    letter-spacing: 1px;
}

.count_plus, .count_minus {
    width: 24px;
    height: 24px;
    margin: 0px 3px;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 4px;
    background: #024B36;
    border: 1px solid #024B36;
    box-shadow: 0px 2px 4px #024b362e;
    margin-right: 1px;
    outline: none;
    font-size: 19px;
    line-height: 24px;
    color: #fff;
    padding: 0;
    float: left;
    font-family: 'Roboto';
    font-weight: 500;
}

.pda_menu_btn {
    display: none;
}


.kp_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
}

.kp_br {
    width: 100%;
}

.kp_form_input {
    margin-right: 60px;
    width: 250px;
    margin-bottom: 20px;
}
.kp_form_btns {
    position: relative;
    width: 100%;
    text-align: right;
}

.kp_buttons {
    position: absolute;
    top: 24px;
    right: 21px;
    font-size: 25px;
}

.section_kp_result .result .result_item_title {
    margin-bottom: 0;
}

.kp_table_form {
    border-radius: 7px;
    background: #FAFAFA;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
    margin: 10px 0px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.kp_table_input_title {
    color: #024B36;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2px;
}

.kp_table_input {
    max-width: 320px;
    width: 320px;
    margin: 0 8px;
}

.kp_table_form .kp_table_input:first-child {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.kp_table_vehicle_plus_btn,
.kp_table_plus_btn {
    display: inline-block;
    font-weight: 300;
    border: 0;
    font-size: 32px;
    line-height: 15px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 4px;
    padding: 8px;
    height: 31px;
    width: 33px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
    box-sizing: border-box;
}
.kp_table_vehicle_plus_btn {
    display: inline-block;
    float: right;
    margin: 0px;
    height: 30px;
    width: 64px;
    font-size: 20px;
    padding: 5px 0px;
}
.kp_table_vehicle_plus_btn[disabled=disabled] {
    background: #7b7b7b;
    cursor: no-drop;
}

.kp_table_form .input_text {
    font-size: 14px;
}

.kp_table_price {
    border-radius: 4px;
    background: rgba(2, 75, 54, 0.14);
    color: #023929;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 6px 12px;
    display: inline-block;
}

.kp_table_footer {
    float: left;
    width: 100%;
    text-align: right;
    margin-bottom: 30px;
}

.kp_table_items {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.kp_table_item {
    position: relative;
    width: 100%;
    color: #024B36;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 7px;
    background: #FAFAFA;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
    margin: 5px 0px;
    padding: 10px;
}

span.kp_table_item_info {
    color: #525252;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.kp_table_item_description {
    color: #525252;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 7px 0;
    width: calc(100% - 130px);
}

.kp_table_item_price {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #024B36;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.lp_table_trash_btn {
    position: absolute;
    top: 6px;
    right: 9px;
    cursor: pointer;
}

.lp_table_edit_btn {
    position: absolute;
    top: 7px;
    right: 31px;
    cursor: pointer;
}

.kp_upload_search_result,
.kp_search_result {
    position: absolute;
    top: 46px;
    z-index: 100;
    width: 100%;
    background: #fff;
    font-size: 11px;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    border-radius: 4px;
    overflow: hidden;
    display: none;
}

.kp_upload_table .kp_upload_search_result,
.kp_upload_table .kp_search_result {
    width: 100%;
    top: 31px;
    box-sizing: border-box;
}

.kp_upload_search_result_item,
.kp_search_result_item {
    cursor: pointer;
    border-bottom: 1px solid #024b3642;
    padding: 4px 5px;
    text-align: left;
}

.kp_search_result_item b {
    color: #024b36;
    font-size: 13px;
}

.kp_search_result_item:hover {
    background: #024b361f;
}

.kp_search_result_item:last-child {
    border: 0;
}

.select.kp_select_type .option {
    color: #b5b5b5;
}
.select.kp_select_type .option.active,
.popup_kp_edit .select.kp_select_type .option {
    color: #024b36;
}
.select.kp_select_type .option:hover {
    color: #fff;
}

.kp_form_document_block {
    width: 600px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.kp_form_document_block .kp_form_input {
    margin-right: 30px;
}

.kp_form_manager_block {
    border-radius: 7px;
    background: #FAFAFA;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
    margin: 10px 0px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 270px;
    align-content: flex-start;
}

.kp_form_manager_block .kp_form_input {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
}
.kp_form_manager_block .kp_form_input:last-child {
    margin-bottom: 0px;
}

section.section_kp.first {
    margin-top: 60px;
}


.kp_tabs {
    margin: 0 auto;
    max-width: 1280px;
    height: 45px;
    background: #024B36;
    display: block;
}

a.kp_tab_link {
    position: relative;
    background: #fff;
    padding: 10px;
    height: inherit;
    display: inline-block;
    float: left;
    box-sizing: border-box;
    width: 300px;
    /* padding-left: 20px; */
    text-align: center;
    color: #024B36;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    margin-left: -32px;
    border-radius: 13px 13px 0px 0px;
    background: #D5E5E1;
    box-shadow: 0px -3px 7px 3px rgba(0, 0, 0, 0.06) inset;
}

a.kp_tab_link:first-child {
    margin-left: 0;
    /* width: 250px; */
    padding-left: 0;
}

a.kp_tab_link.active {
    display: block;
    position: relative;
    z-index: 999;
    background: #fff;
    border-radius: 13px 13px 0px 0px;
    background: #FFF;
    box-shadow: 2px 0px 7px 0px rgba(0, 0, 0, 0.25);
}

a.kp_tab_link:not(.active) { box-shadow: 0 0 11px 0px #0000007a; }
a.kp_tab_link:nth-child(1) { z-index: 1; }
a.kp_tab_link:nth-child(2) { z-index: 2; }
a.kp_tab_link:nth-child(3) { z-index: 1; }
a.kp_tab_link.active { z-index: 5; }

section.section_kp.first .container {
    position: relative;
    z-index: 999;
    border-top-left-radius: 0;
}

section.section_auth {
    margin-top: 110px;
}

.fkko_auth {
    position: relative;
    display: flex;
    width: 360px;
    border-radius: 10px;
    padding: 15px;
    margin-left: calc(50% - 180px);
    background: #024b360a;
    border: 1px solid #024b3626;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
}

.section_auth h1.title {
    text-align: center;
}

.fkko_auth input[type="text"],
.fkko_auth input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #024b36;
    border-radius: 4px;
    margin-bottom: 8px;
    box-shadow: inset 0 0 6px 2px #024b3636;
    outline: none;
}

.fkko_auth input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #024b36;
    background: #024b36;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.fkko_auth form {
    margin-bottom: 0;
}

.fkko_auth_error {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    color: red;
    font-size: 14px;
    margin-bottom: 4px;
}

.kp_history_item {
    position: relative;
    border-radius: 7px;
    background: #FAFAFA;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.kp_history_item_title {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: inline-block;
    top: -4px;
}

.kp_history_item_company {
    color: #024B36;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
}

.kp_history_item_date {
    color: #525252;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    margin-left: 5px;
}

.kp_history_item_info {
    color: #525252;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 4px;
}

.kp_history_item_btns {
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    height: 100%;
    align-items: center;
    padding: 0 12px;
}

.kp_history_edit_link,
.kp_history_download_link {
    border-radius: 8px;
    background: #024B36;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 8px;
    height: fit-content;
    outline: none;
    text-decoration: none;
    margin-left: 10px;
    min-width: 20px;
    text-align: center;
    cursor: pointer;
}

.kp_history_download_link.trash_btn {
    background: #c3370b;
}

.header_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.logo {
    float: unset;
}

.logo {
    width: 250px;
    min-width: 250px;
}

.popup_kp_edit {
    position: fixed;
    top: 100px;
    left: calc(50% - 200px);
    width: 400px;
    background: #fff;
    z-index: 9999;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 13%);
    display: none;
}

.popup_kp_edit .kp_table_input {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
}

.popup_kp_edit .kp_table_input input {
    box-sizing: border-box;
}

.popup_kp_edit .select {
    width: 100%;
}

.popup_title {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  color: #024b36;
  font-weight: bold;
}

.popup_btns {
    width: 100%;
    text-align: center;
}

button.kp_edit_save_btn {
    display: inline-block;
    font-weight: 500;
    border: 0;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 8px;
    padding: 5px 15px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.kp_history_pagination {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 30px;
}

.pagination.page {
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #024b36;
    color: #024b36;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 6px;
    height: fit-content;
    outline: none;
    text-decoration: none;
    margin-left: 7px;
    min-width: 20px;
    text-align: center;
}

a.pagination.page.active {
    background: #024b36;
    color: #fff;
}


.popup_services,
.popup_vehicles {
    position: fixed;
    top: 100px;
    left: calc(50% - 200px);
    width: 400px;
    background: #fff;
    z-index: 9999;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 13%);
    max-height: 80vh;
    overflow: hidden;
    display: none;
}

button.popup_btn_close {
    display: inline-block;
    font-weight: 500;
    border: 0;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background: #5d5d5d;
    border-radius: 8px;
    padding: 5px 15px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.service_item,
.vehicle_item {
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #024b36;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 12px;
    margin-bottom: 10px;
}

.popup_services_table,
.popup_vehicles_table {
    position: relative;
    float: left;
    width: calc(100% + 10px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: auto;
    max-height: 410px;
    margin-bottom: 10px;
    padding-right: 5px;
    box-sizing: border-box;
}

.vehicle_item_val {
    margin-bottom: 2px;
}

.service_item_val:first-child {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
}

/* .vehicle_item_val:nth-child(2) {display: none;} */
.vehicle_item_val:nth-child(3) {font-size: 18px;font-weight: bold;color: #024b36;}
.vehicle_item_val:nth-child(3):after { content: ' ₽'; }

.vehicle_item_val:nth-child(2) {
    font-size: 12px;
    color: darkgrey;
    letter-spacing: .6px;
    margin-bottom: 6px;
}

.service_item_val:first-child {
    font-weight: bold;
    font-size: 14px;
}

.service_item_val:nth-child(3) {font-size: 16px;font-weight: bold;color: #024b36;}

.service_item_val:nth-child(2) {
    font-size: 11px;
    color: darkgrey;
    letter-spacing: .6px;
    margin-bottom: 6px;
}

.kp_add_service,
.kp_add_vehicle {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 300;
    border: 0;
    font-size: 32px;
    line-height: 15px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 4px;
    padding: 8px;
    height: 31px;
    width: 33px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.kp_upload_form {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.kp_upload_block {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.kp_form_input_custom {
    position: relative;
    float: left;
    width: 400px;
    height: 150px;
    background: #024b361a;
    max-width: 100%;
    padding: 5px;
    border: 1px solid #024b36;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.kp_form_input_custom.drag {
    background-color: #b6cbc5;
    border-style: dashed;
    border: 2px dashed #024b36;
}

input.kp_upload_input {
    display: none;
}

a.kp_example {
    color: #024b36;
}

.kp_upload_btn {
    display: inline-block;
    font-weight: 500;
    border: 0;
    height: 36px;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 8px;
    padding: 7px 10px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
.kp_upload_btn {
    position: absolute;
    top: 40px;
    width: 200px;
    left: calc(50% - 100px);
}

.kp_upload_status {
    position: absolute;
    top: 86px;
    width: calc(100% - 10px);
    text-align: center;
}

.kp_upload_table {position: relative;width: 100%;display: flex;flex-direction: column;}

.kp_table_headers {
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.kp_table_body {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}

.kp_table_row {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.kp_table_header_td {
    font-size: 12px;
    margin-bottom: 10px;
}

.kp_table_td {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #024b36;
}

.kp_table_header_td:nth-child(1), .kp_table_td:nth-child(1) { width: calc(100% - 150px - 100px - 100px - 100px - 100px - 100px); }
.kp_table_header_td:nth-child(2), .kp_table_td:nth-child(2) { width: 150px; }
.kp_table_header_td:nth-child(3), .kp_table_td:nth-child(3) { width: 100px; }
.kp_table_header_td:nth-child(4), .kp_table_td:nth-child(4) { width: 100px; }
.kp_table_header_td:nth-child(5), .kp_table_td:nth-child(5) { width: 100px; }
.kp_table_header_td:nth-child(6), .kp_table_td:nth-child(6) { width: 100px; }
.kp_table_header_td:nth-child(7), .kp_table_td:nth-child(7) { width: 100px; }

.kp_table_template { display: none; }

.kp_upload_table input, .kp_upload_table select {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 0;
    outline: none;
    padding: 5px 3px;
    background: transparent;
}

.kp_table_row:hover {
    background: #f6f9f8;
}

.kp_table_row:nth-child(1n+2) .kp_table_td:nth-child(1n+1) {
    border-top: none;
}

.kp_table_row .kp_table_td:nth-child(1n+2) {
    border-left: none;
}

.kp_table_header_td:nth-child(1n+2) {
    text-align: center;
}

.kp_table_td:last-child {
    text-align: center;
    line-height: 27px;
}

span.kp_upload_delete_btn {
    font-size: 12px;
    cursor: pointer;
    color: red;
}

span.kp_upload_add_btn {
    font-size: 12px;
    cursor: pointer;
    color: #009688;
}

.kp_upload_btns {
    position: relative;
    width: 100%;
    text-align: right;
    margin-top: 30px;
}

button[disable] {
    background: #939393;
    cursor: no-drop;
}


.add_service_btn {
    display: inline-block;
    font-weight: 300;
    border: 0;
    font-size: 18px;
    line-height: 15px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 4px;
    padding: 10px 15px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
    box-sizing: border-box;
    width: auto;
}

.add_service_btn i {
    font-size: 25px;
    line-height: 14px;
    margin-top: 2px;
}

.hint {
    position: absolute;
    background: #fff;
    color: #024b36;
    left: 0px;
    max-width: 150px;
    min-width: 70px;
    width: min-content;
    font-size: 12px;
    text-align: left;
    padding: 5px;
    border: 1px solid #024b36;
    border-radius: 5px;
    box-shadow: 0 0 8px 2px #00000021;
    z-index: 1000;
    display: none;
}
.hint:after {
    content: '';
    position: absolute;
    left: 10px;
    top: -20px;
    border: 10px solid transparent;
    border-bottom: 10px solid #024b36;
}

*[data-hint]:hover .hint {
    display: block;
}

.nds_active_btn {
    display: inline-block;
    font-weight: 300;
    border: 0;
    font-size: 18px;
    line-height: 15px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 4px;
    padding: 10px 15px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
    box-sizing: border-box;
    width: auto;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}
.nds_active_btn.nds_disable { padding-right: 40px; }
.nds_active_btn.nds_disable:before {
    content: '';
    position: absolute;
    right: 2px;
    top: 2px;
    width: 26px;
    height: 31px;
    background: #FF5722;
    box-shadow: inset 0 0 3px #002a1e;
}
.nds_active_btn.nds_enable { padding-left: 40px; }
.nds_active_btn.nds_enable:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 26px;
    height: 31px;
    background: #8BC34A;
    box-shadow: inset 0 0 3px #002a1e;
}


.min_price_btn {
    display: inline-block;
    font-weight: 300;
    border: 0;
    font-size: 18px;
    line-height: 15px;
    color: #FFFFFF;
    background: #024B36;
    border-radius: 4px;
    padding: 10px 15px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
    box-sizing: border-box;
    width: auto;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}
.min_price_btn.min_price_15000 { padding-right: 40px; }
.min_price_btn.min_price_15000:before {
    content: '';
    position: absolute;
    right: 2px;
    top: 2px;
    width: 26px;
    height: 31px;
    background: #fff172;
    box-shadow: inset 0 0 3px #002a1e;
}
.min_price_btn.min_price_20000 { padding-left: 40px; }
.min_price_btn.min_price_20000:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 26px;
    height: 31px;
    background: #fff172;
    box-shadow: inset 0 0 3px #002a1e;
}
.min_price_btn {
    margin-left: 20px;
}



@media (max-width: 767px) {
  .pda_menu_btn {
      position: absolute;
      top: 5px;
      right: 10px;
      display: block;
      font-size: 34px;
      color: #acd433;
      cursor: pointer;
  }
  .menu.open { display: flex; }

  section {
      max-width: calc(100% - 12px);
      margin-left: 6px;
  }

  section .container {
      border-radius: 8px;
      padding: 20px;
  }

  .header_content {
      height: 50px;
      padding: 0px 6px;
  }

  .logo {
      min-width: auto;
  }

  .logo .logo_left {
      font-size: 21px;
      line-height: 26px;
  }

  .logo .logo_right {
      font-size: 13px;
      line-height: 16px;
  }

  .main_menu a {
      padding: 1px;
      font-size: 18px;
      line-height: 38px;
      padding: 3px 0px;
  }

  .main_menu {position: relative;float: left;width: 100%;margin-left: 0;}

  .lable {
      height: 40px;
      width: 28px;
      top: 5px;
      right: 50px;
      background-size: 25px;
      border-radius: 3px;
  }

  .menu {
      position: fixed;
      width: 100%;
      height: calc(100% - 40px);
      background: #fff;
      left: 0px;
      top: 51px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      display: none;
  }

  .main_menu li {
      width: 100vw;
      position: relative;
      display: inline-grid;
  }

  .main_menu ul {
      width: 100%;
      text-align: center;
  }

  .main_menu a.active {
      font-size: 18px;
      line-height: 38px;
  }

  .title {
      margin-top: 0;
      font-size: 18px;
  }

  .subtitle {
      font-size: 15px;
      line-height: 22px;
  }

  textarea.big_search {
      font-size: 15px;
  }

  .result_load, .search_is_empty {
      font-size: 16px;
  }

  .select_all {
      font-size: 12px;
      line-height: 18px;
  }

  .result_item_title {
      font-size: 15px;
      line-height: 19px;
  }

  .rsi_title {
      font-size: 15px;
      line-height: 24px;
      width: calc(100% - 30px);
      min-width: unset;
      float: left;
      padding-left: 24px;
  }

  .rsi_type {
      font-size: 14px;
      line-height: 18px;
  }

  .result_licenses_item {
      position: relative;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-content: flex-start;
      align-items: flex-start;
  }

  .rsi_checkbox {
      position: absolute;
      top: 2px;
      transform: scale(.8);
  }

  a.download_link {
      position: absolute;
      top: 7px;
      right: 0px;
  }

  .result_buttons a {
      font-size: 14px;
      line-height: 17px;
  }

  .docs_form {
      display: flex;
      flex-direction: column;
  }

  .docs_form_input {
      margin-bottom: 14px;
  }

  .docs_form_btns {
      text-align: center;
  }

  .docs_buttons a.download_link {
    top: 0px;
  }

  .kp_form {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
  }

  .kp_form_input {
      margin-bottom: 14px;
  }

  .kp_form_btns {
      text-align: center;
  }

  .kp_buttons a.download_link {
    top: 0px;
  }

  .btn {
    font-size: 14px;
    line-height: 18px;
  }

  .result.docx {
      overflow: auto;
  }

  .result.price_table {
      overflow: auto;
  }

  .result.price_table td {
      font-size: 12px;
      max-width: 100px;
  }

  input.price_count {
      width: 100%;
      margin-bottom: 4px;
  }

  .count_plus, .count_minus {
      width: 43%;
  }

  table.price_table tr td:nth-child(5) {
      text-align: center;
  }






  .kp_table_form {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
  }

  .kp_table_input {
      max-width: 100%;
      width: calc(100% - 16px);
      box-sizing: border-box;
      margin-bottom: 8px;
  }

  .kp_table_form {}

  .kp_table_input .select {
      width: 100%;
  }

  .kp_table_form .kp_table_input:first-child {
      width: calc(100% - 16px);
  }

  .kp_table_vehicle_plus_btn,
  .kp_table_plus_btn {width: auto;font-size: 14px;}

  .kp_table_plus_btn:after {
      content: ' Добавить';
  }

  a.kp_tab_link {
      font-size: 14px;
      width: 170px;
      padding: 9px 9px 9px 9px;
  }

  .kp_tabs {
      height: 32px;
  }

  a.kp_tab_link:first-child {
      padding-right: 0;
  }

  section.first {
      padding-top: 0;
  }

  a.kp_tab_link:first-child {
      width: 180px;
  }

  a.kp_tab_link:last-child {
      width: 123px;
      margin-left: 10px;
  }

  .kp_history_item {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
  }

  .kp_history_item_btns {
      position: relative;
      width: 100%;
      text-align: right;
      display: flex;
      flex-direction: row-reverse;
      justify-content: center;
      padding: 0;
      margin-top: 8px;
  }

}

.next_page_linense_two {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    top: -9px;
    left: -6px;
}

a.download_link.next_page_linense {
    color: #009688;
}

.kp_table_body.saved {
    background: #ebf1e3;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.kp_table_saved {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #024b361a;
    z-index: 0;
    pointer-events: none;
}
.kp_table_saved:before {
    content: 'СОХРАНЕНО';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    letter-spacing: 2px;
    color: #024b3617;
}



.consultant {
    position: fixed;
    bottom: 0px;
    right: 100px;
    width: 325px;
    background: #DBE5E3;
    color: #02261c;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 0 17px 2px #00000040;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    z-index: 1000;
    margin: 0 10px;
    top: unset!important;
}

.consultant_title {
    position: relative;
    width: 100%;
    padding: 10px;
    background: #fff;
    box-sizing: border-box;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: #024B36;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: .5px;
    cursor: pointer;
}

.consultant_search {
    position: relative;
    width: 100%;
    background: #fff;
    display: flex;
    padding: 7px;
    box-sizing: border-box;
    display: none;
}

.consultant_search input {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #024b36;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.consultant_results {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px 5px #00000012;
    box-sizing: border-box;
    height: 400px;
    flex-direction: column;
    overflow-y: auto;
    display: none;
}

.consultant_result_item {
    width: calc(100% - 20px);
    margin: 10px;
    margin-bottom: 0;
    background: #fff;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 0 8px #0808084d;
}

.consultant_result_item_title {
    width: 100%;
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 7px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
}

.consultant_result_item_companies {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.consultant_result_item_company {
    position: relative;
    padding-left: 12px;
    margin-bottom: 5px;
}

.consultant_result_item_company_title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.consultant_result_item_company_types {
    font-size: 11px;
    line-height: 16px;
    color: #929292;
}

.consultant_result_item_company:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0px;
    width: 6px;
    height: 6px;
    background: #024b36;
    border-radius: 50%;
}

.consultant.active .consultant_results,
.consultant.active .consultant_search {
    display: flex;
}

.consultant_status {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 60px 0;
    font-size: 16px;
    color: #0000005e;
    letter-spacing: 1px;
}

.consultant_result_item:last-child {
    margin-bottom: 10px;
}



.consultant_result_item_companies_show, .consultant_result_item_companies_hide {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 11px;
    margin-top: -14px;
    background: white;
    cursor: pointer;
    padding: 0 5px;
    color: #ababab;
}

.consultant_result_item_company:nth-child(3) {
    margin-top: 8px;
}

.consultant_result_item_companies.hidden .consultant_result_item_company { display: none; }

.consultant_result_item_companies:not(.hidden) .consultant_result_item_companies_show { display: none; }
.consultant_result_item_companies.hidden .consultant_result_item_companies_hide { display: none; }

/* .consultant_resize {
    position: relative;
    width: 100%;
    height: 3px;
    cursor: n-resize;
    background: #fff;
} */

.consultant_search_clear {
    position: absolute;
    top: 9px;
    right: 15px;
    font-size: 23px;
    color: #024b36;
    cursor: pointer;
}


.ui-resizable-handle.ui-resizable-n {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0;
    background: transparent;
    cursor: n-resize;
    /* border-bottom: 1px dashed #99a09e91; */
}

.consultant_results { top: unset !important; }

.consultant_title:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 5px;
    height: 60px;
    width: 60px;
    background-image: url(/assets/img/lable.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60px;
    transform: scale(-1, 1);
    /* opacity: .2; */
}

a.pagination.page.dots_right:before {
    content: '...';
    position: absolute;
    right: -27px;
    bottom: 0;
}
a.pagination.page.dots_right {
    position: relative;
    margin-right: 30px;
}

a.pagination.page.dots_left:before {
    content: '...';
    position: absolute;
    left: -27px;
    bottom: 0;
}
a.pagination.page.dots_left {
    position: relative;
    margin-left: 36px;
}


.footer_info {
    display: flex;
    flex-direction: column;
    color: #ffffff82;
    line-height: 18px;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: monospace;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-left: 20px;
    box-sizing: border-box;
    /* -webkit-transition: .1s;
    -moz-transition: .1s;
    -o-transition: .1s;
    transition: .1s; */
}

.footer_info:hover {
    /* color: #fff; */
    animation: blinker 1.4s cubic-bezier(1, -0.34, 0.94, 0.43) infinite;
}

.footer_info_title {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
}

@keyframes blinker {
  10% { opacity: .5; }
  20% { opacity: 1; }
  30% { opacity: .5; }
  40% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes blinker2 {
  0% { opacity: 1; transform: scale(-1, 1); }
  10% { opacity: .5; transform: scale(-.9, .9); }
  20% { opacity: 1; transform: scale(-1, 1); }
  30% { opacity: .5; transform: scale(-.9, .9); }
  40% { opacity: 1; transform: scale(-1, 1); }
  100% { opacity: 1; transform: scale(-1, 1); }
}

section.section_warning {
    width: 800px;
    margin: 110px auto 40px auto;
}
