body {
    font-size: 16px;
}

body.menu_opened {
    padding-top: 102px;
}

ul {
    margin-bottom: 0;
    margin-top: 10px;
}

.shadowed {
    background: url(../img/top_shadow.png) no-repeat;
    background-position: center 102px;
}

.body-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card_login {
    border: 1px solid #d4d4d4;
    padding: 30px 60px;
    box-shadow: 0px 20px 50px -10px #bce1fe;
}

.card_heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.card_row {
    margin-top: 15px;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.fullwidth {
    width: 100%;
}

.copyright {
    display: block;
    padding-top: 45px;
    text-align: center;
    font-size: 14px;
}

.login_card {
    border: none;
    max-width: 540px;
}

.header_wrap {
    display: flex;
    align-items: center;
    height: 102px;

}

a.link {
    color: #007bff;
    border-bottom: 1px solid #cee6ff;
}

a.link:hover {
    color: #f33435;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 55, 57, 0.23);
}

.header_right {
    margin-left: auto;
}

.header_right {
    display: flex;
    align-items: center;
}

.header_divider {
    padding: 0 16px;
}

.header_name {
    color: #28a745;
}

.header_name_wrap {
    display: flex;
    align-items: center;
}

.page_wrap {
    margin-top: 30px;
    display: flex;
}

.menu_bar {
    max-width: 250px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
}

.menu_item {
    padding-bottom: 18px;
    padding-left: 24px;
    position: relative;
}

.menu_item.active .link {
    color: #000000;
    border: none;
}

.menu_item.active .link:hover {
    color: #000000;
    border: none;
}

.menu_item .link {
    padding-top: 4px;
}

.menu_item img {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
}

.action_icon {
    width: 16px;
}

.breadcrumbs {
    font-size: 35px;
    margin-bottom: 16px;
}

.breadcrumbs .link:last-child {
    color: #000000;
    border: none;
}

.alert > span {
    font-weight: bold;
}

.page_content {
    width: 80%;
    margin-bottom: 100px;
}

.object_row {
    padding: 10px 0;
    align-items: center;
}

.object_row:first-child {
    margin-top: 40px;
}

.tab-pane .object_row:last-child {
    margin-bottom: unset;
}

.tab-pane {
    margin-bottom: 40px;
}

.object_name {
    font-size: 18px;
}

.image_object img {
    display: block;
}

.image_object a {
    color: #db2702;
}

.standart_input {
    max-width: 320px;
}

.wide_input {
    max-width: 540px;
}

.wide_input_tooltip {
    margin-top: 5px;
    margin-bottom: 0;
    color: #6c757d;
    font-size: 13px;
}

.select_input {
    max-width: 240px;
}

.small_input {
    max-width: 120px;
}

.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.burger {
    display: none;
    margin-left: auto;
    cursor: pointer;
}

.add_row_btn {
    margin-top: 30px;
}

.form-row {
    margin-top: 15px;
}

.rows_submit {
    margin-top: 80px;
    display: block;
}

.images_table {
    max-width: 350px;
}

.table_img {
    width: 55px;
}

.add_photo_box {
    margin-top: 50px;
}

.table_btn {
    cursor: pointer;
}

.page_heading {
    font-size: 35px;
    margin-bottom: 15px;
}

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

.import_block {
    display: flex;
    margin-top: 28px;
    background-color: #fff3cd;
    width: 900px;
}

.import_inner {
    width: 50%;
    padding: 22px 20px;
}

.import_inner:last-child {
    border-left: 1px solid #ebd17f;
}

.import_title {
    color: #856404;
    font-size: 20px;
}

.datepicker_input {
    max-width: 145px;
}

.datepicker_input .input-group-text {
    padding: 0.375rem 0.35rem;
}

.table {
    margin-top: 40px;
}

.table_input {
    max-width: 140px;
}

.list_table {
    min-width: 900px;
}

.pagination_wrap {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.pagination_text {
    margin-left: auto;
    margin-bottom: 0;
    padding-left: 20px;
}

.mobile_menu {
    padding: 38px 25px 0 25px;
    position: absolute;
    top: 102px;
    width: 100%;
    height: calc(100vh - 103px);
    background-color: #ffffff;
    z-index: -1;
    opacity: 0;

    transition: opacity 0.4s linear;
}

.mobile_nav {
    margin-top: 50px;
}

.mobile_menu.active {
    z-index: 20;
    opacity: 1;
}

.header_wrap.active {
    position: fixed;
    width: calc(100% - 30px);
    top: 0;
    background-color: #fff;
}

.burger {
    position: absolute;
    right: 15px;

    transition: opacity 0.4s linear;
}

.burger.close {
    opacity: 0;
}

.header_wrap.active .burger {
    opacity: 0;
    right: 0;
}

.header_wrap.active .burger.close {
    opacity: 1;
}

.object_name_col {
    max-width: 250px;
}

.status-change-select_pay_procesing,
.status-change-select option[value="pay_procesing"] {
    color: #fff !important;
    background: #C75180 !important;
}

.status-change-select_new,
.status-change-select option[value="new"] {
    color: #fff !important;
    background: #DB7872 !important;
}

.status-change-select_cooking,
.status-change-select option[value="cooking"] {
    color: #fff !important;
    background: #F3A563 !important;
}

.status-change-select_collecting,
.status-change-select option[value="collecting"] {
    color: #fff !important;
    background: #F8D061 !important;
}

.status-change-select_on_the_way,
.status-change-select option[value="on_the_way"] {
    color: #fff !important;
    background: #F2DD61 !important;
}

.status-change-select_delivered,
.status-change-select option[value="delivered"] {
    color: #fff !important;
    background: #D2D661 !important;
}

.status-change-select_done,
.status-change-select option[value="done"] {
    color: #fff !important;
    background: #BDD161 !important;
}

.status-change-select_deleted,
.status-change-select option[value="deleted"] {
    color: #fff !important;
    background: #ff1111 !important;
}

/*Р±Р°СЂ РЅР°РІРёРіР°С†РёРё РїР°РіРёРЅР°С†РёРё*/
div.page_content nav svg {
    width: 30px !important;
    position: relative;
    top: 9px;
}

div.page_content nav p {
    margin-top: 10px;
}

/* small view */
.table th, .table td {
    padding: 0.3rem;
}

.container-fluid {
    padding: 0px 20px 0px 20px;
}

.page_content {
    width: 100%;
}

.table {
    font-size: 14px;
}

#extraInput {
    display: none;
}

select:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #dee2e6;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef!important;
    opacity: 1;
    cursor: not-allowed;
}

.modal-dialog.modal-block {
    max-width: 1040px;
    width: calc(100% - 3rem);
}

.modal-block .modal-content {
    width: 100% !important;
}

.modal-block .object_row {
    width: 100% !important;
}

.modal-block .modal-body {
    padding: 8px 24px 24px;
}

.modal-block .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.block-list-thumb {
    width: 160px;
    height: auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: box-shadow .15s ease;
}

.block-list-thumb:hover {
    box-shadow: 0 4px 12px rgba(0, 123, 255, .18);
}

.block-picker {
    border: 1px solid transparent;
    border-radius: 6px;
}

.block-picker__head {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 10px;
}

.block-picker.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, .15);
    padding: 6px;
}

.block-picker__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    max-height: 65vh;
    overflow-y: auto;
    padding: 4px;
}

.block-picker__card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.block-picker__card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, .15);
}

.block-picker__card.is-selected {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, .35);
}

.block-picker__thumb,
.block-picker__placeholder {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    background: #f8f9fa;
    display: block;
}

.block-picker__thumb {
    object-fit: contain;
    border: 1px solid #edf0f2;
}

.block-picker__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 12px;
    border: 1px dashed #ced4da;
}

.block-picker__label {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.35;
    color: #343a40;
}
