:root {
    --blue-color: #007DFF !important;
    --color-dark-blue: #003594 !important;
    --color-lite-blue: #abcae9 !important;
    --color-lite-green: #c7e995 !important;
    --color-white: #ffffff !important;
    --color-black: rgba(38, 42, 45, 1) !important;
    --color-lite: #FAFAFA !important;
    --color-border: rgba(215, 215, 215, 1);
    --color-bidding: #abcae9;
}

body {
    font-family: 'Gellix', sans-serif;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.5;
    background-color: #fff;
    color: var(--color-black);
}

pre {
    font-family: 'Gellix', sans-serif;
}

p {
    margin-top: 0;
    margin-bottom: .5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
    font-weight: 400;
}

h1, .h1 {
    font-size: 1.4rem;
}

h2, .h2 {
    font-size: 1.3rem;
}

h3, .h3 {
    font-size: 1.2rem;
}

h4, .h4 {
    font-size: 1.1rem;
}

h5, .h5 {
    font-size: 1rem;
}

h6, .h6 {
    font-size: .975rem;
}

.ml-6, .mx-6 {
    margin-left: 4rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.pe-3 {
    padding-right: 1rem !important
}

.w10 {
    width: 10%;
}

.w20 {
    width: 20%;
}

.w45 {
    width: 45%;
}

.w30 {
    width: 30%;
}

.w40 {
    width: 40%;
}

.wpx30 {
    width: 30px;
    min-width: 30px;
}

.wpx40 {
    width: 40px;
    min-width: 40px;
}

.wpx50 {
    width: 50px;
    min-width: 50px;
    max-width: 50px
}

.wpx60 {
    width: 60px;
    min-width: 60px;
    max-width: 60px
}

.wpx80 {
    width: 80px;
    min-width: 80px;
    max-width: 80px
}

.wpx100 {
    width: 100px;
    min-width: 100px;
    max-width: 100px
}

.wpx120 {
    width: 120px;
    min-width: 120px;
    max-width: 120px
}

.wpx150 {
    width: 150px;
    min-width: 150px;
    max-width: 150px
}

.wpx200 {
    width: 200px;
    min-width: 200px;
    max-width: 200px
}

.wpx300 {
    width: 300px;
    min-width: 300px;
    max-width: 300px
}

.wpx400 {
    width: 400px;
    min-width: 400px;
    max-width: 400px
}

.wpx500 {
    width: 500px;
    min-width: 500px;
    max-width: 500px
}

pre {
    font-weight: 400;
}

span[s-click] {
    cursor: pointer;
}

[disabled], input[disabled] ~ label, [readonly="readonly"], [readonly] {
    cursor: text;
}

.error {
    color: #ff5869;
    font-size: 12px;
}

.form-control::placeholder {
    color: #c4c0c0 !important;
    font-size: 13px;
    font-weight: 400 !important;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 0;
}

li {
    list-style: none;
}

ul.list {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 40px;
}

    ul.list li {
        list-style: initial;
    }

ol.list {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 40px;
}

    ol.list li {
        list-style: inherit;
    }

label {
    display: inline-block;
    font-size: .875rem;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #f8f8f8;
    opacity: 1;
}

    .form-control:disabled ~ .input-group-append .input-group-text, .form-control[readonly] .input-group-append .input-group-text {
        background-color: #f8f8f8;
    }

        .form-control:disabled ~ .input-group-append .input-group-text i, .form-control[readonly] .input-group-append .input-group-text i {
            opacity: .5;
        }

.card-body {
    padding: 1rem;
}

.message .modal-dialog {
    top: 20%;
}

@media (min-width: 992px) {
    .modal-large .modal-dialog, .modal-extra-large .modal-dialog {
        max-width: 800px;
    }
}

@media (min-width: 576px) {
    .modal-small .modal-dialog {
        max-width: 400px;
    }
}

@media (min-width: 1200px) {
    .modal-extra-large .modal-dialog {
        max-width: 1140px;
    }
}
/* text */
.red {
    color: #f44336 !important;
}

.blue-text {
    color: var(--color-dark-blue) !important;
}

.lite-blue-text {
    color: var(--blue-color) !important;
}

.dark-green-text {
    color: #006400 !important;
}

.lite-green-text {
    color: #c7e995;
}

.lite-green2-text {
    color: #00bc00;
}

.warning-text {
    color: #ff5869;
    font-size: 15px;
    padding: 5px 0;
}

.bold {
    font-weight: bold;
}

.grey-text {
    color: #6c757d;
}

.bg-green {
    background-color: #69b333 !important;
}

.bg-grey {
    background-color: #f9f8f8 !important;
}

.bg-dark {
    background-color: rgba(94,94,94,1) !important;
}

.bg-dark-green {
    background-color: #006400 !important;
}

.bg-blue {
    background-color: #003594 !important;
}

.bg-bidding {
    background-color: #abcae9 !important;
    color: #000000 !important;
}

.bg-lite-blue {
    background-color: #e9eff7 !important;
}

.dashed_border {
    border: 1px dashed #b0b0b0;
    padding: 5px 25px 5px 10px;
    background: #ffffff;
    margin-bottom: 5px;
}

.yellow_text {
    color: #F3BE31 !important;
}
/* text */

.small-card {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.middle-card {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.modal-content {
    border-radius: 0;
}

.type {
    height: 30px;
}
/*form-control*/
.form-control {
    font-size: 1rem;
}
/*form-control*/

/* navbar */
.nav .dropdown-menu {
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    min-width: 295px;
    padding: 10px 15px;
    -webkit-box-shadow: 7px 4px 20px 0 rgba(162, 162, 162, .25);
    box-shadow: 7px 4px 20px 0 rgba(162, 162, 162, .25);
    border: 0;
}

.filter-container .dropdown-menu {
    border: 0;
    border-radius: 0;
}

.navbar-user .dropdown-menu:before {
    content: '';
    border: 5px solid transparent;
    border-bottom: 8px solid var(--blue-color);
    top: -13px;
    right: 23px;
    position: absolute;
}

.navbar-user .profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 100%;
}

.navbar-user ul.dropdown-user {
    padding: 0;
}

    .navbar-user ul.dropdown-user li .sb-user-box .u-text {
        display: block;
    }

    .navbar-user ul.dropdown-user li .sb-user-box {
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .navbar-user ul.dropdown-user li .sb-user-box img {
            height: 40px;
        }

    .navbar-user ul.dropdown-user li a {
        padding: 10px 2px;
        display: block;
    }

    .navbar-user ul.dropdown-user li .dropdown-menu-subitem a {
        padding: 5px 0;
    }

    .navbar-user ul.dropdown-user .menu-item-icon {
        width: 18px;
    }

    .navbar-user ul.dropdown-user .line {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: rgba(120, 130, 140, 0.13);
    }

    .navbar-user ul.dropdown-user li .sb-user-box .u-text p {
        margin-bottom: 2px;
        font-size: 14px;
    }

    .navbar-user ul.dropdown-user li .sb-user-box .u-text .btn {
        color: #fff;
        padding: 5px 10px;
        display: inline-block;
        border-radius: 6px;
    }

    .navbar-user ul.dropdown-user li .sb-user-box .u-text h4 {
        margin: 0;
        font-size: 18px;
        color: var(--color-dark-blue);
    }

.dropdown-toggle::after {
    display: none;
}

.dropdown-user > li {
    border-bottom: 1px solid #EDEDED;
}

    .dropdown-user > li:last-child {
        border-bottom: 0;
    }


@media screen and (max-width:500px) {
    .dropdown-toggle::after {
        display: none;
    }
}

#MenuTender.dropdown-toggle::after {
    display: none;
}

.navbar-user ul.dropdown-user li a {
    color: var(--color-black);
    font-size: 14px;
}

    .navbar-user ul.dropdown-user li a:hover {
        color: var(--blue-color);
        text-decoration: none;
    }

.second-navbar {
    min-height: 160px;
}

.second-navbar {
    background: #495057 !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 20;
    padding-top: 88px;
    border-bottom: 4px solid #55ce63;
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

    .second-navbar ul li a {
        color: #FFF;
        padding: 15px;
        display: block;
        font-size: 17px;
        text-decoration: none;
    }

span.hide-menu {
    text-transform: uppercase;
    white-space: normal;
    word-wrap: break-word;
    font-size: .8rem;
}

.dropdown-item {
    cursor: pointer;
    color: #000000;
}

    .dropdown-item:hover {
        color: #000000;
    }

.dropdown-menu {
    border-radius: 0;
}

.second-navbar .dropdown-item:hover, .dropdown-item:hover {
    color: black;
    text-decoration: none;
    background-color: #f9f8f8;
}

/* navbar */
.page-wrapper {
    padding: 20px;
}


.tender-wrapper {
    margin-top: 20px;
}

.tender_list_header a {
    color: #272D4E;
}

    .tender_list_header a:not(.collapsed) .rotate-icon {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.card {
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 0;
}

    .card.fieldset-card .card-title {
        margin-bottom: 10px;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }

    .card.fieldset-card .card-body {
        min-height: 160px;
    }

.card-header {
    border-bottom: 0;
    background-color: #ffffff;
}

.card .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border: 1px solid #e3e9f0;
    border-radius: 4px;
}

    .card .card .card-header .card-title {
        font-weight: bold;
        color: #000000 !important;
        font-size: 1rem;
    }

.card-footer {
    background-color: #ffffff;
    border-top: 0;
}

.card.fieldset-card {
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 0;
}

.card-header:first-child {
    border-radius: 0;
}

.card .card .card-header:first-child {
    border-radius: 4px 4px 0 0;
}

.Categorylable {
    padding: 10px;
    background-color: rgba(85, 206, 99, 0.4);
    color: #272D4E;
}

.tender-footer {
    background-color: #f9f8f8;
}

    .tender-footer .label {
        background: rgba(0, 0, 0, 0.6);
        border-left: 3px solid #00CA4C;
        border-radius: 0;
        padding: 10px;
        color: #fff;
        box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    }

#pomo-block {
    background: linear-gradient(to right, rgba(40, 79, 146, 1) 10%, rgba(102, 163, 207, 0.8), rgba(138, 214, 230, 0.8), rgba(137, 213, 183, 0.8), rgba(129, 200, 98, 1));
    width: 100%;
    height: 40vh;
}

.tender-footer, .tender-body {
    background: #f4faff;
}


#lots_block .nav-tabs .nav-link {
    border-color: #e9ecef;
    background: rgba(40,44,42,0.04);
    color: #272D4E;
    height: 38px;
    margin-top: 7px;
}

    #lots_block .nav-tabs .nav-link.active {
        background: #c7e995 !important;
        border-top: 0;
        border-bottom: none;
        color: #fff;
        height: 45px;
        margin-top: 0;
    }

.ItemsGroup {
    background-color: rgb(238, 246, 232);
}

#lots_block thead tr {
    text-align: center;
}

#Tender_Contacts label {
    margin-bottom: 0;
    min-height: 21px;
}

.form-control.changed {
    background: rgba(232, 240, 254,.4) !important
}

/* profile */

#ProfileCard input::-webkit-input-placeholder {
    color: #b9b9b9 !important;
    font-size: 12px !important;
    font-style: italic;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#ProfileCard a:hover {
    text-decoration: none;
}

input[type="text"]::-moz-placeholder {
    color: rgb(102,102,102);
}

input[type="text"]:-moz-placeholder {
    color: rgb(102,102,102);
}
/* Firefox 18- */
input[type="text"]:-ms-input-placeholder {
    color: rgb(102,102,102);
}

input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: initial;
    border: none;
    border-bottom: 1px solid #ced4da;
    outline: none;
    height: 38px;
    line-height: 2.9rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 .94rem;
    padding: 0;
    display: block;
    text-overflow: ellipsis;
}

input[type="number"] {
    text-align: right;
}

/* //profile// */
#ProfileCard.card {
    background-color: #fff !important;
}

    #ProfileCard.card .card-header {
        font-size: 1rem;
        padding: .75rem 1rem;
    }

#ProfileCard .tab-content > .active {
    background: #fff !important;
}

.nav-tabs .nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs a.nav-link {
    border: 0;
    padding: 15px 20px;
    color: #000000;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border: 0;
}

.nav-tabs a.nav-link.active {
    border-bottom: 2px solid var(--blue-color);
    color: var(--blue-color);
    font-weight: 600;
    background-color: #fff;
}

#ProfileCard .table_platform .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #c7e995;
    color: #c7e995;
}

#profile .accordion {
    width: 100%;
}

#ProfileCard .btn-danger {
    color: #fff;
    border: none;
}

#ProfileCard . {
    border-radius: 60px;
    padding: 7px 18px;
}

@media (max-width:499px) {
    #ProfileCard .nav-tabs .nav-item {
        width: 100%;
    }
}

/*@media (min-width:500px) and (max-width:800px) {
    #ProfileCard .nav-tabs .nav-item {
        width: 50%;
        text-align: center;
    }
}*/

#profile .accordion .card .card-header a:not(.collapsed) .rotate-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#profile .accordion .card .card-header a:not(.collapsed) .rotate-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#ProfileCard .popover-header {
    padding: 8px 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#ProfileCard .popover-title {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
}

#ProfileCard .example-popovers {
    padding: 30px 0;
}

.acenter {
    text-align: center;
    margin: 30px 0;
}

.has-float-label {
    display: block;
    position: relative;
}

.form-control {
    border-radius: 4px;
    outline: initial !important;
    -webkit-box-shadow: initial !important;
    box-shadow: none !important;
    line-height: 1.5;
    border: 1px solid #e3e9f0;
    background: #fff;
    color: #212121;
    height: 40px;
}

textarea.form-control {
    height: auto;
    min-height: 40px;
}

#tenderEditForm .badge {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    border-radius: .125rem;
    line-height: 1.5;
    color: #fff;
}

.card-title {
    font-weight: bold;
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-block label {
    min-height: 22px;
}

.show-more-container {
    max-height: 10rem;
    overflow: hidden;
    position: relative;
    min-height: 160px;
    padding-bottom: 3rem;
    cursor: pointer;
    border: 1px solid #e3e9f0;
    padding: .5rem;
}

    .show-more-container.open {
        max-height: none;
        padding-bottom: 0;
    }

.show-more-overlay {
    content: ' ';
    height: 80px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.show-more-container.open .show-more-overlay {
    display: none;
}

.show-more-container {
    max-height: 5rem;
    overflow: hidden;
    position: relative;
}

    .show-more-container.open {
        max-height: none;
        padding-bottom: 1rem;
    }
/* card */
.card {
    border-radius: 0;
    font-weight: 400;
}

.tender_table_body_row.card {
    border: 0;
}

.middle-card {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.small-card {
    width: 100%;
    margin: auto;
    max-width: 800px;
}

.extra-small-card {
    width: 100%;
    margin: auto;
    max-width: 400px;
}

.gradient-card-header {
    background: linear-gradient(to right, #c7e995, rgba(45, 85, 144, 1)) !important;
    color: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    border-radius: .25rem .25rem 0 0;
    padding: 0.5em 1em;
}

.card-header {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between !important;
    align-items: center;
}

.table {
    margin-bottom: 0.3rem;
}

.table-docs td {
    border-top: none;
}
/* card */
#criteria-container, #criteria-container-position, #lots-container, #biddingItemsContainer {
    padding: 1rem;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

    #lots-container thead tr .ordinal {
        width: 30px;
    }

    #lots-container thead tr .measure_unit {
        width: 100px;
    }

    #lots-container thead tr .Quantity {
        width: 100px;
    }

    #lots-container thead tr .action_block {
        width: 30px;
    }

.collapse_tr {
    -webkit-transition: all 0.5s;
    transition: all .5s;
}

    .collapse_tr a[aria-expanded="true"] i {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .collapse_tr[aria-expanded="true"] td {
        background-color: rgba(232, 240, 254,.4) !important;
    }

@media (max-width: 991px) {
    .adaptive-table table tbody tr td span.QntProp {
        margin-top: 5px;
        width: auto;
        display: inline-block;
        font-weight: 700;
    }

    .card .card .card-body {
        padding: .5rem;
    }
}
/* #criteria-container */
.adaptive-table .custom-file-label {
    background-color: #e0f1d3;
}

.adaptive-table .form-control.minmax {
    background-color: #ffff;
    border: 1px dashed #b0b0b0;
    max-width: 170px;
    margin-bottom: 10px;
}

.form-control.file-name {
    height: auto;
    min-height: calc(1.5em + .75rem + 2px);
}

.custom-file-input {
    cursor: pointer;
}

.adaptive-table {
    width: 100%;
}

.tender_table_wrap {
    display: table;
    width: 100%;
    position: relative;
    z-index: 100;
    border-collapse: collapse;
    table-layout: fixed;
}

.TimeTable {
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
}

.TimeTable {
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
}

.tableTimeRow {
    font-size: 0.6rem;
}

    .tableTimeRow.date_range span {
        font-size: 10px;
        font-weight: 700;
    }

.tableTimetitle {
    line-height: 1.2 !important;
}

    .tableTimetitle span {
        font-size: 11px !important;
        font-weight: 500;
    }

.tableTimeRow_cell .dlable {
    font-size: 1rem;
}

.tableTimeRow_cell {
    display: table-cell;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 1rem;
    line-height: 1;
}

.tender_table_header_sell {
    padding: 0.8rem .5rem;
}

.tender_table_header, .tender_table_body_row {
    display: table-row;
    text-align: center;
}

.tender_table_header {
    background-color: var(--color-dark-blue);
}

.tender_table_header.bidding {
    background-color: var(--color-lite-blue);
}

.tender_table_body_row {
    text-align: center;
    border-collapse: separate;
    font-size: 0.875rem;
}

.tender_table_wrap.card {
    -webkit-box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16);
    border: 0;
}

.tender_table_body_row:last-child {
    margin-bottom: 0 !important;
}

.tender_table_body_row:hover {
    background-color: #FAFAFA;
}

.tender_table_body_row:last-child:hover {
    border-bottom: 0;
}

.tender_table_body_row_cell {
    padding: 0.5rem;
}

    .tender_table_body_row_cell a {
        text-decoration: none;
        cursor: pointer;
    }

.tender_table_header_sell.type {
    width: 155px;
    min-width: 155px;
}

.tender_table_header_sell.date {
    width: 15%;
}

.tender_table_header_sell.status {
    width: 15%;
}

.tender_table_header_sell.dl {
    width: 7%;
}

.tender_table_header_sell.contragent {
    width: 15%;
}
.tender_table_header_sell.favorite {
    width: 4%;
}

.tender_table_body_row_cell.contragent span {
    font-size: 0.85rem;
}

.tender_table_header_sell {
    display: table-cell;
    background-color: var(--color-dark-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.tenders_scroll_block .tender_table_header_sell {
    position: sticky;
    top: 0;
    z-index: 10;
}

.tender_table_body_row_cell {
    display: table-cell;
    vertical-align: middle;
    border-bottom: 1px solid #dfe1e9;
}

.tender_table_body_row:last-child .tender_table_body_row_cell {
    border-bottom: 0 !important;
}

.tender_table_body_row_cell.dl {
    vertical-align: middle;
}

.tender_table_body_row_cell.fv {
    vertical-align: middle;
}

.lable {
    display: none;
}

@media screen and (max-width: 1200px) {
    .banner_block {
        display: none;
    }

    #tendersContent {
        width: 100% !important;
    }
}

.tender_name {
    font-size: 0.9375rem;
}

.tender_category {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tender-details-name a h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #003594;
    font-weight: 700;
}

.tender_table_body_row_cell.contragent {
    font-size: 13px;
    text-align: center;
}

.tender_table_body_row:hover .tender_name {
    color: var(--blue-color);
}

.tender-details .tender_name {
    font-size: 1.4rem !important;
}

.time_block {
    background: #eeeeee;
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
    padding: 5px;
    font-size: 1.5rem;
    width: 100px;
    overflow: hidden;
    border: 1px solid #EDEDED;
    overflow: hidden;
}

    .time_block.Finished {
        background: #dcdcdc;
        color: var(--color-black);
        border: 1px solid #dcdcdc;
    }

    .time_block.Review {
        background: #dcdcdc;
        color: var(--color-black);
        border: 1px solid #dcdcdc;
    }

    .time_block.NotStarted {
        background: #abcae9;
        color: var(--color-black);
        border: 1px solid #abcae9;
    }

    .time_block.Started {
        background: #c7e995;
        color: var(--color-black);
        border: 1px solid #c7e995;
    }

.dlable {
    font-size: 1rem;
}

/* colorStatus */
.STyellow {
    color: var(--color-lite-blue);
}

.STgreen {
    color: #00bc00;
}

.STgrey {
    color: #9f9c9c;
}

/* loader */
.loader-container {
    position: fixed;
    background-color: rgb(255 255 255 / 78%);
    width: 100%;
    height: 100%;
    z-index: 1050;
}

    .loader-container .loader-item {
        width: 60px;
        height: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -30px;
        margin-top: -25px;
        --m: no-repeat linear-gradient(90deg,#000 70%,#0000 0);
        -webkit-mask: var(--m) calc(0*100%/4) 100%/calc(100%/5) calc(1*100%/5), var(--m) calc(1*100%/4) 100%/calc(100%/5) calc(2*100%/5), var(--m) calc(2*100%/4) 100%/calc(100%/5) calc(3*100%/5), var(--m) calc(3*100%/4) 100%/calc(100%/5) calc(4*100%/5), var(--m) calc(4*100%/4) 100%/calc(100%/5) calc(5*100%/5);
        background: linear-gradient(#007aff 0 0) left/0% 100% no-repeat #ddd;
        animation: l14 1s infinite steps(6);
    }

@keyframes l14 {
    100% {
        background-size: 120% 100%
    }
}

.tender-details pre.description {
    font-size: 0.9175rem;
    font-weight: 400;
    word-wrap: break-word;
    /*    white-space: break-spaces;
*/
}

.tender-details .description {
    white-space: pre-line;
    overflow-x: hidden;
}

@-webkit-keyframes forward {
    0% {
        left: 40%;
        opacity: 0;
        background: #ffff;
    }

    10% {
        left: 45%;
        opacity: 1;
    }

    90% {
        left: 55%;
        opacity: 1;
    }

    100% {
        left: 62%;
        opacity: 0;
    }
}

@-moz-keyframes forward {
    0% {
        left: 40%;
        opacity: 0;
        background: rgb(255,255,0);
    }

    10% {
        left: 45%;
        opacity: 1;
    }

    90% {
        left: 55%;
        opacity: 1;
    }

    100% {
        left: 62%;
        opacity: 0;
    }
}

@-o-keyframes forward {
    0% {
        left: 40%;
        opacity: 0;
        background: rgb(255,255,0);
    }

    10% {
        left: 45%;
        opacity: 1;
    }

    90% {
        left: 55%;
        opacity: 1;
    }

    100% {
        left: 62%;
        opacity: 0;
    }
}

@keyframes forward {
    0% {
        left: 40%;
        opacity: 0;
        background: rgb(255,255,255);
    }

    10% {
        left: 45%;
        opacity: 1;
    }

    90% {
        left: 55%;
        opacity: 1;
    }

    100% {
        left: 62%;
        opacity: 0;
    }
}

/* search */
.main_search {
    width: 100%;
    margin-bottom: 0.65rem;
}

.filter-container .form-control {
    font-size: .9rem;
    padding: .5rem .65rem .5rem .65rem;
    line-height: 1;
}

.dashboardcode-bsmultiselect li {
    width: 100%;
    text-align: left;
}

.search_img .remove {
    display: none;
}

    .search_img .remove.not-empty {
        display: block;
    }

.filter-container .input-group-btn.search_img img {
    padding: 8px 2px;
    height: 34px;
}

.filter-container .search:focus + .search_img {
    z-index: 999;
}

.search_img .remove i {
    color: var(--color-border);
    font-size: 18px;
    line-height: 20px;
    padding: 10px 2px;
}

.adverts-home .forTenders {
    display: none
}

.slider.no-but .create-tender,
.slider.no-but .create-adverts {
    display: none
}

.adverts-home .forAdverts {
    display: block !important
}

.forAdverts {
    display: none
}

.companies-home .forTenders {
    display: none
}

.companies-home .remove {
    position: absolute;
    right: 5px;
    margin: 0;
}

.companies-home .dosearch {
    position: absolute;
    top: 1px;
    text-align: center;
    right: 40px;
    margin: 0;
}

.biddings-home .forBiddings {
    display: block !important
}

#biddings_list .forBiddings {
    display: block !important
}

.forBiddings {
    display: none
}

.dosearch {
    position: absolute;
    width: 20px;
    text-align: center;
    right: 205px;
    top: 0;
    height: 40px;
    margin-right: 5px;
    opacity: 1;
    transition: opacity 2s;
}

    .dosearch i {
        color: var(--blue-color);
        font-size: 18px;
        line-height: 20px;
        padding: 10px 2px;
    }

.FullWidth {
    width: 100%;
}

.adverts-home .dosearch {
    position: absolute;
    top: 1px;
    text-align: center;
    right: 30px;
    margin: 0;
}

.remove {
    width: 20px;
    position: absolute;
    text-align: center;
    top: 0;
    height: 40px;
    right: 179px;
    margin: 0;
    opacity: 1;
    transition: opacity 2s;
}

#companyContent .remove {
    position: absolute;
    right: 10px;
}

#companyContent .dosearch {
    position: absolute;
    right: 40px;
}

.adverts-home .remove {
    position: absolute;
    right: 0;
    margin: 0;
}

.modal-cpv-select .dosearch {
    width: 25px;
    min-height: 34px;
    position: absolute;
    top: 1px;
    text-align: center;
    right: 30px;
    bottom: 0;
    margin: 0;
}

.cpv_view {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-cpv-select .remove {
    width: 25px;
    min-height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.modal-cpv-select .search_img {
    z-index: 100;
}

.modal-cpv-select .modal-body {
    padding-top: 0;
}

.modal-cpv-select .modal-header {
    border-bottom: 0;
}

.modal-cpv-select .sticky_filter {
    padding-top: .8rem;
    padding-bottom: 5px;
}

.modal-cpv-select .cpv-sticky-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}

    .modal-cpv-select .cpv-sticky-header ul {
        border-bottom: 0;
    }

.user-tab .modal-cpv-select .tab-pane {
    border: 0
}

.modal-cpv-select .modal-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.label_search {
    width: 100%;
    margin-bottom: .1rem;
    font-weight: 700;
}

.left-side .directory {
    margin-top: 20px;
}

    .left-side .directory .directory_link {
        font-size: 0.9175rem;
        font-weight: bold;
        color: rgb(105,178,54);
    }

.tenders_scroll_block {
    max-height: calc(100vh - 220px);
    width: 100%;
    overflow: auto;
}

@media screen and (max-width: 1024px) {
    .tenders_scroll_block {
        height: auto;
        width: 100%;
        overflow: hidden;
        max-height: max-content;
    }

    #filterBar.full_tenders {
        height: 100vh !important;
        overflow-x: hidden !important;
    }

    #filterBar.active {
        height: 100vh !important;
        overflow-x: auto !important;
    }

        #filterBar.active .list-unstyled.Category {
            margin-top: 0;
            margin-bottom: 0;
        }
}

/* side */
.tender_wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 30px;
    max-width: 1920px;
}
.tender_wrapper_list {
    display: flex;
    width: 100%;
    align-items: stretch;
}
.with-filter-bar #filterBar {
    min-width: 250px;
    width: 250px;
    transition: all 0.3s;
    display: block;
}
.tenders-home .with-filter-bar #filterBar {
    position: relative;
}
#filterBar {
    display: none;
}

    #filterBar ul p {
        color: #fff;
        padding: 10px;
    }

.fixheight {
    position: sticky;
    top: 80px;
    left: 0;
}

.list-unstyled.Category li {
    padding: 10px;
    font-size: 12px;
    display: block;
}

.submenu {
    font-size: 0.9em !important;
    padding-left: 30px !important;
}

#filterBar ul li a:hover, #filterBar .list-unstyled span:hover {
    color: #c7e995 !important;
    background: #fff;
}

/* banner */

.banner_block {
    width: 280px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    /*    padding-right: 15px;
    padding-left: 0;*/
    padding-top: 10px;
    min-height: 650px;
}

.banner_hover_block {
    height: 247px;
    position: fixed;
    right: -250px;
    top: 50px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    z-index: 999;
}

.promo_title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px;
    margin-bottom: 2px;
    margin-top: 5px;
    font-size: 0.9175rem;
}

.banner_hover_block:hover {
    right: 0;
}

.banner_box_left {
    float: left;
    height: 245px;
    border-radius: 0 0 0 50px;
    background-color: #6dc495;
    margin: 0 0 0 9px;
    width: 40px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

    .banner_box_left p {
        transform: rotate(-90deg);
        transform-origin: left top 0;
        position: absolute;
        top: 200px;
        color: #fff;
        font-size: 28px;
        bottom: 0;
    }

.banner_box_right {
    float: left;
    height: 100%;
    background-color: #fff;
    width: 250px;
    line-height: 17px;
}

    .banner_box_right iframe {
        height: 500px;
    }

.filter-container {
    padding-top: 10px;
}

.dashboardcode-bsmultiselect ul.dropdown-menu {
    height: auto;
    max-height: 200px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    overflow-x: hidden;
}

.filter-bar .dashboardcode-bsmultiselect ul.dropdown-menu {
    max-width: 220px;
}

.filter-container .custom-control {
    font-size: 12px;
    padding-left: 5px;
}

.configSave {
    padding: 15px 2px 10px 10px;
    margin-left: 5px;
}

.form-check-input:checked ~ .form-check-label::before {
    color: #fff;
    border-color: var(--blue-color);
    background-color: var(--blue-color);
}

.filter-container .search.form-control {
    color: #424242;
    font-weight: 700;
    padding: .5rem 3.2rem .5rem .65rem;
    border-radius: 0;
}

.filter-container input.search.form-control::-webkit-input-placeholder {
    font-style: normal !important;
}

.filter-container .form-check-input:checked ~ .form-check-label::before {
    color: #fff;
    border-color: #ccc;
    background-color: transparent;
}

#tendersContent, #companyContent {
    padding: 0 10px 30px;
}

.badge span {
    font-size: 0.8rem;
    color: var(--blue-color);
    white-space: normal;
    margin-right: 3px;
    font-weight: 700;
}

.badge .close span {
    color: red;
    font-size: 1.4rem !important;
}
/* banner */
a[data-bs-toggle="collapse"] {
    position: relative;
}

#filterBar .filter-container {
    padding: 0 10px;
}

.with-filter-bar #tenderCollapse {
    transform: none;
}

#tenderCollapse {
    height: 32px;
    float: left;
    margin-right: 15px;
    color: #007DFF;
    transform: rotate(180deg);
    font-size: 25px;
}
.left-filter {
    max-height: 100%;
    min-width: 250px;
    width: 250px;
    position: relative;
}
@media (min-width: 576px) {
    .modal-cpv-select .modal-dialog {
        max-width: 800px;
    }
}

@media (max-width: 800px) {
    .left-filter {
        max-height: auto;
        min-width: auto;
        width: auto;
    }
    #filterBar {
        width: 250px;
        height: 100%;
        max-height: 100vh;
        padding: 5px;
        position: fixed;
        top: 0;
        background-color: #ffffff;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
        z-index: 1030;
    }

    .with-filter-bar .FullWidth {
        margin-left: 0;
    }

    .filter-container ul.dropdown-menu {
        height: auto;
        max-height: 200px;
        overflow-x: hidden;
    }

    .sidebar-header {
        padding: 3px 5px;
        display: flex !important;
        text-align: left !important;
    }

    #close-sidebar {
        display: block !important;
    }

    .filterClear {
        padding: 2px 5px 2px;
    }

    .configSave {
        padding: 2px 5px 2px;
    }

    .banner_box_left {
        float: left;
        height: 150px;
        border-radius: 0 0 0 50px;
        background-color: #6dc495;
        margin: 0 0 0 9px;
        width: 40px;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    }

    .banner_hover_block {
        height: 150px;
    }

    .banner_box_left p {
        transform: rotate(-90deg);
        transform-origin: left top 0;
        position: absolute;
        top: 100px;
        color: #fff;
        font-size: 28px;
        bottom: 0;
    }

    textbox:before {
        display: none;
    }
}

.list-unstyled.Category {
    margin-top: 5px;
    margin-bottom: 0;
}

.filter-container .form-control {
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 2px;
    height: 40px;
}

.item-container {
    float: left;
}

.label-type {
    user-select: none;
    cursor: pointer;
    margin-bottom: 0;
    line-height: 20px;
}

    .label-type input:checked + .checkbox {
        border-color: var(--blue-color);
    }

        .label-type input:checked + .checkbox svg path {
            fill: var(--blue-color);
        }

        .label-type input:checked + .checkbox svg polyline {
            stroke-dashoffset: 0;
        }

    .label-type:hover .checkbox svg path {
        stroke-dashoffset: 0;
    }

    .label-type .checkbox {
        position: relative;
        top: 2px;
        float: left;
        margin-right: 8px;
        margin-left: 6px;
        width: 20px;
        height: 20px;
        border: 1px solid #e3e9f0;
        border-radius: 4px;
    }

        .label-type .checkbox svg {
            position: absolute;
            top: -1px;
            left: -1px;
        }

            .label-type .checkbox svg path {
                fill: none;
                stroke: var(--blue-color);
                stroke-width: 1;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 71px;
                stroke-dashoffset: 71px;
                transition: all 0.6s ease;
            }

            .label-type .checkbox svg polyline {
                fill: none;
                stroke: #FFF;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 18px;
                stroke-dashoffset: 18px;
                transition: all 0.3s ease;
            }

    .label-type > span {
        pointer-events: none;
        vertical-align: middle;
    }

.Category span {
    font-weight: 700;
    font-size: 0.875rem;
}

.invisible {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    opacity: 0;
}
/* star */
.rating {
    overflow: hidden;
    display: inline-block;
    width: 30px;
    min-width: 30px;
}

.rating-input {
    float: right;
    padding: 0;
    opacity: 0;
    position:absolute;
    left:-1000px;
}

    .rating-input:checked ~ .rating-star:before {
        color: #c7e995;
        cursor: pointer;
    }

.rating-star {
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    color: #dcdcdc;
}

    .rating-star:before {
        content: '\2605';
    }


.tender-details .rating-star {
    float: left
}

.main_search #Stage-select {
    width: 175px;
    height: 40px;
    overflow: hidden;
}

    .main_search #Stage-select select {
        background: transparent;
        width: 175px;
        font-size: 12px;
        font-weight: 700;
        border: 1px solid #e3e9f0;
        border-left: 0;
        height: 40px;
        padding: .5rem .2rem .5rem .2rem;
        line-height: 1;
    }

#Stage-select option {
    font-size: 12px;
    font-weight: 700;
}

.tender-list-select select {
    background: transparent;
    min-width: 185px;
    border: 1px solid #e3e9f0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    height: 36px;
    line-height: 1;
}

.Favorits_main_icon {
    float: left;
    text-align: center;
}

    .Favorits_main_icon i {
        font-size: 18px;
        padding: 8px 5px;
    }

@media (max-width: 500px) {

    .banner_box_left {
        float: left;
        height: 220px;
        border-radius: 0 0 0 50px;
        background-color: #6dc495;
        margin: 0 0 0 9px;
        width: 40px;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    }

    .banner_hover_block {
        height: 150px;
    }

    .banner_box_left p {
        transform: rotate(-90deg);
        transform-origin: left top 0;
        position: absolute;
        top: 160px;
        color: #fff;
        font-size: 28px;
        bottom: 0;
    }

    .dosearch {
        right: 30px;
    }

    .remove {
        right: 0;
    }
}

@media (max-width: 768px) {
    .main_search #Stage-select {
        width: 100%;
        float: left;
        padding-left: 41px;
        margin-top: 5px;
    }

        .main_search #Stage-select select {
            width: 100%;
            border-left: 1px solid #c3c3c3;
        }

    .tender-main-tabs .nav-item {
        margin-bottom: 5px;
    }

    .dosearch {
        right: 20px;
        opacity: 1;
    }

    .remove {
        right: 0;
        opacity: 1;
    }
}

fieldset {
    width: 100%;
}

.fieldset-border {
    border: 1px solid #d7d7d7 !important;
    border-radius: 0;
    padding: 0 10px 10px 10px !important;
    margin: 15px 0 15px 0;
    -webkit-box-shadow: 0 0 0 0 #000;
    box-shadow: 0 0 0 0 #000;
}

    .fieldset-border legend {
        width: auto;
        font-size: 1.1em !important;
        font-weight: bold !important;
        text-align: left !important;
        padding: 0 10px;
        margin-bottom: 0;
        color: #2d508b;
    }

.select_cpv button {
    margin: 0 0 0 5px;
    height: 2.8em;
    padding: .375rem .5rem !important;
}

.select_cpv input {
    width: 85%;
    float: left;
}

.select_cpv button img {
    height: 16px;
}

.select_cpv .form-control {
    overflow: hidden;
    width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.label_datetime {
    width: 100%;
}

.edit_time {
    max-width: 110px;
    margin-right: 10px;
    float: left;
}

    .edit_time input {
        padding-right: 3px;
    }

.edit_date {
    max-width: 160px;
    margin-right: 10px;
    float: left;
}

    .edit_date input {
        padding-right: 3px;
    }

#cpv-filter-view {
    padding-bottom: 5px;
    padding-top: 5px;
}

    #cpv-filter-view .selected-items {
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid #dee2e6;
        border-radius: 2px;
    }

    #cpv-filter-view .selected-items {
        padding: 10px;
        border: 1px solid #e2ebf5;
        background: #f9fbfd;
        margin: 0 0 5px 0;
    }

        #cpv-filter-view .selected-items span {
            margin-bottom: 0;
            line-height: 1.5;
            font-size: 0.8rem;
        }

        #cpv-filter-view .selected-items button {
            background-color: transparent;
            border: 0;
        }

            #cpv-filter-view .selected-items button i {
                font-size: 1rem;
            }

/*cpv-filter*/
/*criteria-container*/
.criteria_icon {
    height: 20px;
}

.add_row {
    display: inline-block;
    padding: 0 5px;
}
/* criteria_table */
#criteria-container .ordinal {
    width: 30px;
}

#criteria-container .Weight {
    width: 150px;
}

#criteria-container .purpose {
    width: 140px;
}

th.td_image_icon {
    width: 30px;
}

#criteria-container .action_block, #criteria-container-position .action_block {
    width: 50px;
}

.adaptive-table .add_row {
    float: left;
    margin-left: 5px;
}

.adaptive-table thead tr th {
    text-align: center;
    vertical-align: top;
}

@media (max-width: 991px) {
    .option_row {
        width: 100% !important;
    }

    .adaptive-table .add_row {
        float: right;
        margin-left: 40px;
    }

    .adaptive-table .form-control {
        margin-bottom: 0;
    }

    .adaptive-table .delite_row {
        float: none;
        margin: 10px;
    }
}

@media (min-width: 1000px) {
    .MimMax {
        float: left;
        width: 30%;
    }
}
/*criteria-container*/


.selected_block {
    background-color: #e9ecef;
}

    .selected_block .selected-items button i {
        width: 100%;
    }

    .selected_block .selected-items button {
        background-color: transparent;
        border: 0;
    }

    .selected_block .selected-items span {
        margin-bottom: 0;
        line-height: 1.5;
        font-size: 12px;
    }

/* FavoritsList */
.Removed {
    text-decoration: line-through;
}

.remove_tender_btn {
    color: red;
    border: 0;
    background-color: transparent;
    font-size: 1.5rem;
}

#Unsubscribe_block {
    background-color: #ffff;
    text-align: center;
}

.services_title {
    font-size: 2rem;
}

/* calendar */
.tcalInput {
    background: url('/images/calendar_icon/calendar.png') 100% 50% no-repeat;
    padding-right: 20px;
    cursor: pointer;
}

.tcalActive {
    background-image: url('/images/calendar_icon/check_calendar.png');
}

#tcal {
    position: absolute;
    visibility: hidden;
    z-index: 100;
    width: 170px;
    background-color: white;
    margin-top: 2px;
    padding: 0 2px 2px 2px;
    border: 1px solid silver;
    -moz-box-shadow: 3px 3px 4px silver;
    -webkit-box-shadow: 3px 3px 4px silver;
    box-shadow: 3px 3px 4px silver;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='silver')";
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='silver');
}


#tcalControls {
    border-collapse: collapse;
    border: 0;
    width: 100%;
}

    #tcalControls td {
        border-collapse: collapse;
        border: 0;
        padding: 0;
        width: 16px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    #tcalControls th {
        border-collapse: collapse;
        border: 0;
        padding: 0;
        line-height: 25px;
        font-size: 13px;
        text-align: center;
        font-weight: bold;
        white-space: nowrap;
    }

#tcalPrevYear {
    background-image: url('/images/calendar_icon/prev_year.gif');
}

#tcalPrevMonth {
    background-image: url('/images/calendar_icon/prev_mon.gif');
}

#tcalNextMonth {
    background-image: url('/images/calendar_icon/next_mon.gif');
}

#tcalNextYear {
    background-image: url('/images/calendar_icon/next_year.gif');
}

#tcalGrid {
    border-collapse: collapse;
    border: 1px solid silver;
    width: 100%;
}

    #tcalGrid th {
        border: 1px solid silver;
        border-collapse: collapse;
        padding: 3px 0;
        text-align: center;
        font-size: 13px;
        background-color: gray;
        color: white;
    }

    #tcalGrid td {
        border: 0;
        border-collapse: collapse;
        padding: 2px 0;
        text-align: center;
        width: 14%;
        font-size: 14px;
        cursor: pointer;
    }

        #tcalGrid td:hover {
            background: #2d508b;
            color: #fff;
        }

        #tcalGrid td.tcalOtherMonth {
            color: silver;
        }

        #tcalGrid td.tcalWeekend {
            background-color: #8bc34a57;
        }

        #tcalGrid td.tcalToday {
            border: 2px solid #2d508b;
        }

        #tcalGrid td.tcalSelected {
            background-color: #c7e995;
            color: #fff;
        }

/* tender-step-section */
.tender-step-section {
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    margin-bottom: 45px;
    background: #FFF;
}

    .tender-step-section:after, .rms-wizard .tender-step-section:before {
        content: " ";
        clear: both;
        display: block;
    }

.progressbar {
    list-style: none;
    margin: 0;
    padding: 0;
    clear: both;
}

    .progressbar li.step:before {
        content: " ";
        width: 40px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #d9d9d9;
        display: block;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        margin: 0 auto 5px;
        border-radius: 50%;
        background: #eaeaea;
        color: #a9a9a9;
    }

    .progressbar li.step:first-child:after {
        width: 50%;
        left: 50%;
    }

    .progressbar li.step:last-child:after {
        width: 50%;
    }

    .progressbar li.step:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: #eaeaea;
        top: 19px;
        left: 0;
        z-index: -1;
        border-top: 1px solid #d9d9d9;
        border-bottom: 1px solid #d9d9d9;
    }

.tender-step-section .progressbar li .step-icon {
    width: 30px;
    height: 30px;
    background-color: #dedada;
    border-radius: 50%;
}

.step-icon i {
    padding-top: 5px;
}

.tender-step-section .progressbar li.active-step .step-icon {
    background-color: var(--color-lite-blue);
}

.tender-step-section .progressbar li .step-icon {
    z-index: 1024;
    position: absolute;
    top: 0;
    margin-top: 5px;
    font-size: 19px;
    color: #ffffff;
    margin-left: -15px;
    line-height: 20px;
}

    .tender-step-section .progressbar li .step-icon img {
        height: 22px;
    }

.tender-step-section .progressbar li.first-active-step .step-icon,
.tender-step-section .progressbar li.second-active-step .step-icon {
    color: #FFF;
}

.progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.progressbar li.step.active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_5 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_2 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_90 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_91 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_54 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_90 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_91 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_54 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_5 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_2 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_121 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_121 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_122 .progressbar li.step.second-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_122 .progressbar li.step.first-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_90 .progressbar li.step.third-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_121 .progressbar li.step.third-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_122 .progressbar li.step.third-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}


.doc_status_91 .progressbar li.step.third-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_91 .progressbar li.step.fourth-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_54 .progressbar li.step.third-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_54 .progressbar li.step.fourth-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_121 .progressbar li.step.fourth-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_122 .progressbar li.step.fifth-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_122 .progressbar li.step.fourth-active-step:before {
    background-color: #FFF;
    border-color: #c7e995;
    color: #FFF;
}

.doc_status_121 .progressbar li.step.fifth-active-step:before {
    background-color: #FFF;
    border-color: var(--color-lite-blue);
    color: #FFF;
}

.doc_status_122 .progressbar li.step.fifth-active-step:before {
    background-color: #FFF;
    border-color: #abcae9;
    color: #FFF;
}

.progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_5 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_2 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_90 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_91 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_54 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}


.doc_status_5 .progressbar li.step.second-active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.doc_status_2 .progressbar li.step.second-active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.doc_status_90 .progressbar li.step.second-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_91 .progressbar li.step.second-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_91 .progressbar li.step.third-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_91 .progressbar li.step.fourth-active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.doc_status_54 .progressbar li.step.second-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_54 .progressbar li.step.third-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_54 .progressbar li.step.fourth-active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.doc_status_121 .progressbar li.step.fourth-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_121 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_121 .progressbar li.step.second-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_122 .progressbar li.step.fourth-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_122 .progressbar li.step.first-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_122 .progressbar li.step.second-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_90 .progressbar li.step.third-active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.doc_status_121 .progressbar li.step.third-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_121 .progressbar li.step.fifth-active-step:after {
    background-color: var(--color-lite-blue);
    border-color: var(--color-lite-blue);
}

.doc_status_122 .progressbar li.step.third-active-step:after {
    background-color: #c7e995;
    border-color: #c7e995;
}

.doc_status_122 .progressbar li.step.fifth-active-step:after {
    background-color: #abcae9;
    border-color: #abcae9;
}

.tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_5 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_2 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_90 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_91 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_90 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_91 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_54 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: #c7e995;
}

.doc_status_5 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: var(--color-lite-blue);
}

.doc_status_2 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: var(--color-lite-blue);
}

.doc_status_90 .tender-step-section .progressbar li.third-active-step .step-icon {
    background-color: var(--color-lite-blue);
    color: #fff;
}

.doc_status_91 .tender-step-section .progressbar li.third-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_91 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_54 .tender-step-section .progressbar li.third-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_54 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_121 .tender-step-section .progressbar li.third-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_121 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_121 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_122 .tender-step-section .progressbar li.third-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_122 .tender-step-section .progressbar li.first-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_122 .tender-step-section .progressbar li.second-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}


.doc_status_91 .tender-step-section .progressbar li.fourth-active-step .step-icon {
    background-color: var(--color-lite-blue);
    color: #fff;
}

.doc_status_54 .tender-step-section .progressbar li.fourth-active-step .step-icon {
    background-color: var(--color-lite-blue);
    color: #fff;
}

.doc_status_121 .tender-step-section .progressbar li.fourth-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_121 .tender-step-section .progressbar li.fifth-active-step .step-icon {
    background-color: var(--color-lite-blue);
    color: #fff;
}

.doc_status_122 .tender-step-section .progressbar li.fourth-active-step .step-icon {
    background-color: #c7e995;
    color: #fff;
}

.doc_status_122 .tender-step-section .progressbar li.fifth-active-step .step-icon {
    background-color: #abcae9;
    color: #fff;
}

.progressbar li.step {
    list-style-type: none;
    float: left;
    width: 25%;
    position: relative;
    text-align: center;
    height: 40px;
    z-index: 10;
}

.progressbar li.step {
    list-style-type: none;
    float: left;
    width: 20%;
    position: relative;
    text-align: center;
    height: 40px;
    z-index: 10;
}

    .progressbar li.step .step-title {
        display: block;
        font-size: .875rem;
        font-weight: 400;
        color: black;
        text-align: center;
        line-height: 20px;
    }

    .progressbar li.step .step-subtitle {
        display: block;
        text-align: left;
        font-size: 12px;
        color: #a8a8a8;
        padding-left: 20%;
        line-height: 15px;
    }

@media only screen and (max-width: 800px) and (min-width: 700px) {
    .progressbar li.step {
        width: 50%;
        height: auto;
    }
}

@media only screen and (max-width:800px) {
    .progressbar li.step:after {
        display: none
    }

    .progressbar li.step:before {
        float: left
    }

    .progressbar li.step .step-subtitle,
    .progressbar li.step .step-title {
        padding-left: 60px;
    }

    .progressbar li.step.completed-step .step-title:after {
        left: auto;
        padding-left: 10px
    }

    .form-tooltip {
        left: auto;
        top: auto;
        bottom: 45px;
        right: 0
    }

        .form-tooltip:before {
            border-color: #fb6b5b transparent transparent;
            top: auto;
            left: auto;
            right: 10px;
            bottom: -20px
        }

    .tender-step-section .progressbar li .step-icon {
        z-index: 1024;
        position: absolute;
        top: 0;
        margin-top: 5px;
        font-size: 18px;
        color: #a9a9a9;
        margin-left: 5px;
        left: 0
    }
}

@media only screen and (min-width:700px) and (max-width:800px) {
    .progressbar li.step {
        width: 50%;
        height: auto
    }
}

@media only screen and (max-width: 800px) {
    .progressbar li.step .step-subtitle,
    .progressbar li.step .step-title {
        padding-left: 60px;
    }
}

@media only screen and (max-width:700px) {
    .progressbar li.step {
        width: 100%;
        height: auto
    }
}

/* EditTenderDateTimeBlock */
.hidden {
    display: none !important;
}

.tender-header_block h1 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.EditTender_block, .Proposal_block {
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.Announcement {
    width: 100%;
}

.Announcement-header {
    padding: 10px;
}

    .Announcement-header h1 {
        font-size: 1rem;
    }

.Announcement_block {
    width: 100%;
    min-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .Announcement-header.fixed-header {
        position: relative;
    }

    .Announcement_block {
        padding-top: 25px;
    }
}

.Announcement_Preview_block {
    padding-top: 15px;
    min-width: 300px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-wrap: wrap;
}

.Announcement-comments-block, .Announcement-massage-block {
    margin-top: 5px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.person-comments-items {
    border: 1px solid #e9e9e9;
    margin-top: 5px;
}

.person-comments-header {
    position: relative;
    padding: 8px 16px;
    border-bottom: 1px solid #e9e9e9;
}

.person-comments-autor {
    font-weight: bold;
    color: #2d508b;
}

.massage-header, .Announcement-comments-header {
    background-color: #2d508b;
    color: #fff;
    padding: 15px;
}

.massage-body, .Announcement-comments-body {
    padding: 10px;
}

.fixed-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-radius: 0 !important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.sticky-header {
    position: sticky;
    top: 70px;
    width: 100%;
    z-index: 1000;
    border-radius: 0 !important;
}

.DateTimeRow {
    max-width: 170px;
    margin-right: 10px;
}

.filter-container .DateTimeRow {
    max-width: 100%;
    margin-right: 0;
}

.btn_edit {
    margin: 0;
}

.EditTender .table td, .EditTender .table th, .ViewTender .table th, .ViewTender .table td {
    font-size: 13px;
}

.Proposal .table td, .Proposal .table th {
    font-size: 12px;
}

/*#criteria-container .table td, #criteria-container .table th, #criteria-container-position .table td, #criteria-container-position .table th, .proposal_block .table td, .proposal_block .table th, #lots-container .table td, #lots-container .table th {
    padding: 3px 1px !important;
}
*/

.input-group-btn .btn_action {
    margin: 0 0 0 5px;
    height: 2.8em;
    padding: .375rem .5rem;
    background: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    font-size: .81rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    border: 0;
    -webkit-border-radius: .125rem;
    border-radius: .125rem;
    cursor: pointer;
}

.disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.is-required::after {
    content: "*";
    color: red;
    float: right;
    margin-left: 2px;
    display: block;
    font-weight: bold;
}

.object_status_2 .is-required::after, .object_status_90 .is-required::after,
.object_status_91 .is-required::after, .object_status_54 .is-required::after,
.object_status_5 .is-required::after, .object_status_121 .is-required::after,
.object_status_122 .is-required::after {
    display: none;
}
/* EditTenderDateTimeBlock */
#webAttachments-container label.form-control {
    background-color: #f9f8f8;
    overflow: hidden;
    width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.PrewFile img {
    max-width: 100%;
}

.invite_person {
    border: 1px dashed #ededed;
    background: #FFF;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.invite_person_text {
    border: 1px dashed #d9e2ed;
    padding: 5px;
    background: #FFF;
    margin-right: 5px;
    display: inline-block;
}

.Invite_title {
    color: #000000;
}

    .Invite_title:hover {
        color: #000000;
    }

.invite_person input {
    height: 33px;
    border: 0;
}

.address_person_input input {
    min-width: 150px;
}
/* captcha */
.grecaptcha-badge {
    z-index: 9999;
    bottom: 50px !important;
}
/* captcha */

.connect_platform {
    display: inline-block;
    position: relative;
}

    .connect_platform:hover::after {
        content: attr(data-title);
        position: absolute;
        right: 25px;
        bottom: 25px;
        z-index: 999;
        background: #fff;
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 4px;
        color: #c7e995;
        border: 1px solid #c7e995;
    }

.input-group-text {
    height: 40px;
    border-radius: 0 4px 4px 0;
}

.tender_hint {
    display: inline-block;
    position: relative;
}

    .tender_hint.always:hover::after {
        display: block !important;
    }

.tender_hint {
    cursor: pointer;
}

    .tender_hint:hover::after {
        content: attr(data-title);
        position: absolute;
        left: 0;
        top: 20px;
        z-index: 100;
        width: 250px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        padding: 5px 10px;
        border-radius: 4px;
        padding: 10px 15px;
        color: black;
        background: #ffffff;
        border: 1px solid #eeeeee;
        box-shadow: 0 3px 15px 0 #eeeeee;
    }

.object_status_2 .tender_hint, .object_status_90 .tender_hint,
.object_status_91 .tender_hint, .object_status_54 .tender_hint,
.object_status_5 .tender_hint, .object_status_121 .tender_hint,
.object_status_122 .tender_hint {
    cursor: text;
}

    .object_status_2 .tender_hint:hover::after, .object_status_90 .tender_hint:hover::after,
    .object_status_91 .tender_hint:hover::after, .object_status_54 .tender_hint:hover::after,
    .object_status_5 .tender_hint:hover::after, .object_status_121 .tender_hint:hover::after,
    .object_status_122 .tender_hint:hover::after {
        display: none;
    }

.tender_hint.message:hover::after {
    left: auto;
    right: 0;
}

.info_block {
    /*float: right;*/
    position: relative;
    display: inline-block;
    padding: 10px 0 10px 5px;
}

    .info_block:hover:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        border: 10px solid transparent !important;
        border-bottom: 7px solid #ffffff !important;
    }

    .info_block:hover .hintInfoFile {
        display: block !important;
        position: absolute;
        background: #fff;
        top: 27px;
        left: -330px;
        font-size: 14px;
        padding: 10px;
        z-index: 999;
        width: 360px;
        -webkit-box-shadow: 7px 4px 20px 0 rgba(162, 162, 162, .25);
        box-shadow: 7px 4px 20px 0 rgba(162, 162, 162, .25);
        border: 0;
        color: black;
    }

    .info_block.info-left {
        padding: 10px 5px 10px 0;
    }

        .info_block.info-left:hover .hintInfoFile {
            left: 0 !important;
            top: 28px;
        }

@media (max-width: 450px) {
    .info_block:hover:before {
        display: none;
    }

    .info_block:hover .hintInfoFile {
        top: 30px;
        left: -220px;
        width: 252px;
    }
}

@media (min-width: 768px) {
    .modal .modal-dialog.modal-left {
        top: 10px;
        left: 10px;
        position: absolute;
        margin: 0;
        width: 500px;
    }
}

.modal-dialog.modal-card-info-contragent .modal-header {
    background-color: #fff;
    color: #212529;
    text-transform: uppercase;
}

.toAuthLink {
    margin: 0 8px;
}

.criteria_description span {
    font-size: 12px;
    color: #2d508b;
    margin-bottom: 0;
}

td .form-control {
    padding: .3rem .5rem;
    font-size: 0.875rem;
}
/*Proposal_block*/
.Proposal_block thead tr .Quantity {
    width: 100px;
    min-width: 100px;
}

.Proposal_block thead tr .measure_unit {
    width: 100px;
    min-width: 100px;
}

@media (max-width: 739px) {
    .Proposal_block table thead {
        display: none;
    }

    .Proposal_block table,
    .Proposal_block tbody,
    .Proposal_block tr,
    .Proposal_block td {
        display: block;
        width: 100%;
        border: 0;
    }

    .Proposal_block tr {
        margin: 0 0 1em;
        border-bottom: 1px dotted !important;
        min-height: 200px;
    }

    .Proposal_block .table td, .Proposal_block .table th {
        padding: 3px 1px;
        font-size: 12px;
        padding-right: 0.75rem !important;
    }

    .Proposal_block tr td {
        /*font-weight: bold;
    text-transform: uppercase;*/
        margin-top: 5px;
        text-align: right;
    }

        .Proposal_block tr td:before {
            content: attr(data-title);
            display: block;
            float: left;
            font-weight: bold;
        }

    .Proposal_block .form-control {
        margin-bottom: 10px;
        text-align: right;
    }
}

.ListTitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 35px;
    color: #262A2D;
}
/*Proposal_block*/
.TableLotItemProposal {
    background: #f1f5f2;
}

@media (max-width: 654px) {
    .tender-header_block h1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 490px;
    }
}

@media (max-width: 500px) {
    .tender-header_block h1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 320px;
    }
}

@media (max-width: 400px) {
    .tender-header_block h1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 300px;
    }
}

.cookie_block {
    padding-top: 15px;
    padding-bottom: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 60px;
    text-align: center;
    background: rgba(0,0,0,.7);
    z-index: 1500;
}

    .cookie_block p {
        color: #fff;
        font-size: 16px;
        text-align: center;
    }

.cookie_block-close {
    position: absolute;
    top: 10%;
    background-color: var(--blue-color) !important;
    right: 30px;
    text-align: center;
    color: #ffffff !important;
}

    .cookie_block-close:hover {
        color: #fff;
    }

@media screen and (max-width: 1150px) {
    .cookie_block-close {
        position: relative;
        font-size: 10px !important;
        padding: .3rem 1rem !important;
        left: 50%;
        margin-left: -100%;
    }
}

#Tender_Contacts {
    display: none;
}

#Tender_ContactsIsNotAuth {
    display: block;
}

.isAuth #Tender_Contacts {
    display: block !important;
}

.isAuth #Tender_ContactsIsNotAuth {
    display: none !important;
}

.hideAttachments {
    display: block;
}

.isAuth .hideAttachments {
    display: none !important;
}

.showAttachments {
    display: none;
}

.isAuth .showAttachments {
    display: block !important;
}

.partition_title {
    font-weight: bold;
    font-size: 1rem;
}

.Mode_block {
    margin-top: 10px;
}

td.BestPrice, th.BestPrice {
    display: none;
}

td.Amount, th.Amount {
    display: none;
}

td.WinnerPosition, th.WinnerPosition {
    display: none;
}

/*hover_contergent_block*/

.contragent-block {
    position: relative;
}

.contragent-block-details {
    position: relative;
    display: none;
    background: #fff;
    top: 25px;
    left: 0;
    font-size: 14px;
    border-radius: 4px;
    color: #c7e995;
    border: 1px solid #c7e995;
    padding: 10px;
    z-index: 999;
    width: 290px;
    max-width: 100%;
}

.contragent-block:hover .contragent-block-details {
    display: block;
    position: absolute;
}

.custom-control.custom-checkbox img.incomplete {
    display: none;
}

.custom-checkbox.sub-select img.incomplete {
    display: inline-block;
}

.custom-checkbox.sub-select input {
    display: none;
}

.custom-checkbox.sub-select label {
    display: none;
}

.AuthorCompanyName {
    font-weight: 700;
}

/*swith-btn*/
.btn-toggle {
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    /*border-radius: 1.5rem;*/
    color: #6b7381;
    background: #bdc1c8;
}

    .btn-toggle:focus,
    .btn-toggle.focus,
    .btn-toggle:focus.active,
    .btn-toggle.focus.active {
        outline: none;
    }

    .btn-toggle:before,
    .btn-toggle:after {
        line-height: 1.5rem;
        width: 4rem;
        text-align: center;
        font-weight: 600;
        font-size: 0.75rem;
        position: absolute;
        bottom: 0;
        transition: opacity 0.25s;
    }

    .btn-toggle:before {
        content: 'Ні';
        left: -4rem;
    }

    .btn-toggle:after {
        content: 'Так';
        right: -4rem;
        opacity: 0.5;
    }

    .btn-toggle > .handle {
        position: absolute;
        top: 0.1875rem;
        left: 0.1875rem;
        width: 1.125rem;
        height: 1.125rem;
        background: #fff;
        transition: left 0.25s;
    }

    .btn-toggle.active {
        transition: background-color 0.25s;
    }

        .btn-toggle.active > .handle {
            left: 1.6875rem;
            transition: left 0.25s;
        }

        .btn-toggle.active:before {
            opacity: 0.5;
        }

        .btn-toggle.active:after {
            opacity: 1;
        }

    .btn-toggle:before,
    .btn-toggle:after {
        color: #6b7381;
    }

    .btn-toggle.active {
        background-color: #c7e995;
    }

.favorite-star label {
    height: 50px;
    display: flex;
    align-items: center;
}

    .favorite-star label span {
        margin-left: 5px;
    }

.favorite-star:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.favorite-star:not(:checked) > label {
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    color: #ccc;
    margin-bottom: 0;
}

    .favorite-star:not(:checked) > label span {
        font-size: 16px;
    }

        .favorite-star:not(:checked) > label span.StarUnchecked {
            display: inline-block;
            color: var(--color-lite-green);
        }

        .favorite-star:not(:checked) > label span.StarChecked {
            display: none;
        }

    .favorite-star:not(:checked) > label:before {
        content: '\2605';
    }

.favorite-star > input:checked ~ label {
    color: var(--color-lite-green);
}

    .favorite-star > input:checked ~ label span.StarUnchecked {
        display: none;
    }

    .favorite-star > input:checked ~ label span.StarChecked {
        display: inline-block;
        color: #ccc;
    }

.tender-info {
    width: 100%;
    border: 1px dashed #b0b0b0;
    padding: 5px 25px 5px 10px;
    font-size: 11px;
}

.getPushMessagesButton {
    padding-bottom: 10px;
}

@media (max-width: 400px) {
    .configSave {
        padding: 2px;
    }
}

.custom-checkbox .form-check-input:disabled:checked ~ .form-check-label::before {
    background-color: #8bc34a;
}

.autocomplete {
    width: 100%;
}


.visible_block iframe {
    min-height: 60vh;
}

.PrewFile iframe {
    min-height: 60vh;
}

.visible_block img {
    max-width: 100%;
}


.modal-loader {
    margin-bottom: 3.5em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    left: 50%;
    top: 50%;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
    margin-left: -3.5em;
    margin-top: 3.5em;
}

.Fileloader {
    display: none;
}


    .Fileloader:after {
        opacity: 1;
        height: 3.5em;
        width: 1.75em;
        transform-origin: left top;
        border-right: 3px solid #5cb85c;
        border-top: 3px solid #5cb85c;
        content: '';
        left: 1.75em;
        top: 3.5em;
        position: absolute;
    }

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: 1;
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
}

#saved-configs-view {
    padding-bottom: 15px;
}

.saved-config {
    padding: 5px;
    font-size: 12px;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.filter-promo-block div {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 0 8px 1px;
    font-size: 11px;
    color: #777;
    border: 1px solid #cecece;
    border-radius: 20px;
    cursor: pointer;
}

.slider-item table {
    width: 100%;
    margin: 1.5rem 0 2rem;
    color: #000;
    font-size: 0.875em;
    text-align: left;
}

.slider-item th {
    width: 50%;
    color: #999;
    font-size: 0.75em;
}

.slider-item .title {
    margin-top: 20%;
    color: #fff;
}

    .slider-item .title h2 {
        margin-top: 20%;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }

.slider .slider-item .title2 {
    /*    margin-top: 45%;*/
    font-size: 35px;
    border-left: 4px solid #2d508b;
    padding-left: 10px;
    text-align: left;
}

.slider.adverts .slider-item .title2 {
    border-left: 4px solid #c7e995;
}

.slider .slider-item .title2-blue {
    color: #2d508b;
}

.slider .slider-item .title2-black {
    color: #2d508b;
}


.slider-wrap {
    position: relative;
    max-width: 300px;
}

    .slider-wrap .logo {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 100;
        margin: 0;
        border-radius: 10em;
        box-shadow: 0 7px 20px rgba(0,0,0,.15);
        max-width: 50%;
    }

.slider {
    height: 500px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    box-shadow: 0 7px 20px rgba(0,0,0,.15);
    border-radius: 10px 100px 70px 70px;
    padding: 30px 10px 40px 10px;
}

.banner_box_right .slider {
    border-radius: 0;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 45%;
    transform-origin: 0 0;
    transform: skewY(-15deg);
    color: inherit;
    background-color: currentColor;
    background: linear-gradient(to right, rgba(45, 80, 139, 0.98), rgba(109, 196, 149, 0.9), rgba(105, 178, 54, 0.9));
    transition: color 500ms;
}

.slider.adverts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 45%;
    transform-origin: 0 0;
    transform: skewY(-15deg);
    color: inherit;
    background-color: currentColor;
    background: linear-gradient(to right, #2d508b, #c7e995, #feb71e);
    transition: color 500ms;
}

.slider-item .title {
    position: relative;
}

.slider-controls {
    position: absolute;
    z-index: 100;
    top: 95%;
    width: 100%;
    text-align: center;
    cursor: default;
}

.banner_box_right .slider-controls {
    top: 95%;
}

.slider-controls span {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    background-color: #ccc;
    border-radius: 50%;
}

    .slider-controls span.active {
        background-color: #999;
    }

.slider-items-wrap {
    position: relative;
    z-index: 10;
    display: table;
    width: 600%;
    table-layout: fixed;
    transition: transform 300ms;
    height: 100%;
}

.slider-item {
    width: 100%;
    vertical-align: top;
    height: fit-content;
    /*    text-align: center;*/
    margin-top: 30px;
    display: table-cell;
    padding: 1rem 1rem 0 1rem;
}

    .slider-item.main img {
        display: block;
        max-width: 100%;
        margin: 30px 0rem 0.8rem;
    }
/*
.slider.adverts .create-tender {
    display: none !important;
}

.slider.adverts .create-adverts {
    display: block !important;
}
*/
.slider-top-part {
    height: 140px;
    margin-top: 0;
}

    .slider-top-part .title {
        font-size: 18px;
        font-weight: bold;
        color: #2d508b;
    }

.slider-middle-part {
    margin-top: 0;
    height: 30%;
}


.slider-bottom-part {
    display: flex;
    align-items: flex-end;
    height: 100px;
    justify-content: center;
    text-align: center;
}

    .slider-bottom-part .btn {
        width: 200px;
    }


.flex-container {
    display: flex;
}

.pulse-btn {
    /*border-radius: 0;*/
    animation: radial-pulse 2s infinite;
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

.tender-main-title {
    padding: 15px 10px 0 10px;
}

    .tender-main-title h1 {
        font-size: 1.2rem;
        font-weight: 600;
    }

.tags a {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 0 8px 1px;
    font-size: 11px;
    color: #777;
    border: 1px solid #cecece;
    border-radius: 20px;
}

.list-InformTender {
    padding: 0;
    list-style: none;
}

    .list-InformTender li {
        padding: 10px 0;
        margin: 0 !important;
    }

        .list-InformTender li:nth-child(n+2) {
            border-top: 1px solid #e5e5e5;
        }

        .list-InformTender li h3 {
            display: block;
            font-size: 1.133rem;
            line-height: 1.4;
            color: #333;
            overflow: hidden;
            cursor: pointer;
        }

            .list-InformTender li h3:hover {
                text-decoration: underline;
                cursor: pointer;
            }

            .list-InformTender li h3::after {
                content: "-";
                width: 1.4em;
                height: 1.4em;
                color: red;
                font-size: 25px;
                float: right;
            }

            .list-InformTender li h3.collapsed::after {
                content: "+";
                width: 1.4em;
                height: 1.4em;
                color: #709e56;
                font-size: 25px;
                float: right;
            }


.nav-tabs.tender-main-tabs .nav-link {
    background-color: #FAFAFA;
    color: var(--blue-color);
    border: 1px solid #EDEDED;
    padding: 8px 20px 8px 20px;
    text-decoration: none;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
    text-transform: uppercase;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0;
    margin-right: 5px;
    min-height: 40px;
}

    .nav-tabs.tender-main-tabs .nav-link.active {
        border: 1px solid #003594;
        color: #fff;
        background-color: #003594;
        border-radius: 0;
    }

.AnnouncementMainPhoto .PrewFile img {
    max-height: 200px;
    max-width: 100%;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.AnnouncementMainPhoto {
    padding: 5px;
    text-align: center;
    border: 1px solid #eeee;
    min-height: 200px;
    margin-bottom: 10px;
}

.action-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/*@media (min-width: 501px) and (max-width: 800px) {
    .action-btn .btn {
        width: 45%;
    }
}
*/
@media (max-width: 500px) {
    .action-btn .btn {
        width: 100%;
    }
}

.Announcement-type {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.Announcement-price {
    width: 100%;
    padding: 5px;
    border: 1px solid #efefef;
    border-radius: 0 4px 4px 0;
    background: #eee;
    color: #414e41;
    text-align: center;
}

.Announcement-contact-phone {
    background: -webkit-linear-gradient(to right, #c7e995, rgba(45, 85, 144, 1)) !important;
    background: -o-linear-gradient(to right, #c7e995, rgba(45, 85, 144, 1)) !important;
    background: linear-gradient(to right, #c7e995, rgba(45, 85, 144, 1)) !important;
    color: #fff !important;
    text-align: center;
    padding: 5px;
    width: 100%;
    margin-top: 10px;
    min-height: 38px;
    line-height: 28px;
}

.Announcement-price span {
    font-size: 1.2rem;
}

.right-preview-card {
    width: 300px;
    float: left;
    position: relative;
    padding-left: 5px;
}

    .right-preview-card .card {
        padding: 8px;
        height: 100%;
    }

.main-preview-card {
    width: calc(100% - 300px);
    float: left;
    position: relative;
    background-color: #fff;
    /*padding: 8px;*/
    min-height: 250px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

    .main-preview-card .action-btn {
        padding: 8px 10px;
        border-bottom: 1px solid #eee;
    }

.main-preview-card-content {
    padding: 15px;
    width: 100%;
}

.AnnouncementsList-header, .CompanyProfilesList-header, BiddingsList-header {
    width: 100%;
    background-color: var(--color-dark-blue);
    min-height: 40px;
    padding: 10px;
    position: relative;
    z-index: 100;
    text-align: right;
}

.Announcement-markers-column {
    position: absolute;
    top: 65px;
    left: 25px
}

.Announcement-marker {
    width: 46px;
    height: 46px;
    max-width: none;
    max-height: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    z-index: 100;
    background: rgba(14, 14, 14, 0.6);
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .79rem;
}

.Announcement-main-content-block {
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    margin-top: 5px;
    padding-bottom: 10px;
}

@media (min-width: 751px) and (max-width: 1000px) {
    .right-preview-card {
        width: calc(30% - 5px);
    }

    .main-preview-card {
        width: 70%;
    }
}

@media (min-width: 501px) and (max-width: 750px) {
    .right-preview-card {
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
    }

    .main-preview-card {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .right-preview-card {
        width: 100%;
        margin-top: 10px;
        padding-left: 0;
    }

    .main-preview-card {
        width: 100%;
        margin-left: 0;
    }
}

.Announcement-img {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 50px;
    align-content: center;
    margin-bottom: 15px;
}

.main-preview-card-content .Announcement-img {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 400px;
    overflow: hidden;
    align-content: center;
    margin-bottom: 15px;
    background-color: #f9f8f8;
}

    .main-preview-card-content .Announcement-img a {
        width: 100%;
        height: 100%;
    }

.treaty {
    font-size: 15px;
    color: #777;
}

.Announcement-contact-block {
    background-color: #fff;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #efefef;
}

.Announcement-marker .rate:not(:checked) > label:hover, .Announcement-marker .rate:not(:checked) > label:hover ~ label {
    border: 0;
    border-radius: 6px;
}

.Announcement-main-content-block .description {
    white-space: pre-line;
    padding-bottom: 0px;
    color: #606060;
    font-size: 15px;
    margin-bottom: 0px;
}

.Announcement-EndPublication {
    margin-top: 10px;
    background-color: #f9f8f8;
    padding: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #efefef;
}

@media (max-width: 500px) {
    .EndPublication span {
        width: 100%;
    }
}

.AnnouncementsList-card, .CompanyProfilesList-card {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    background-color: #e4e9ec;
    z-index: 999;
    position: relative;
}

.Announcement-card {
    width: 100%;
    margin-top: 5px;
    min-height: 100px;
    z-index: 100;
    cursor: pointer;
    background-color: #f9f8f8;
}

.Companies-card {
    width: 100%;
    margin-top: 5px;
    min-height: 100px;
    z-index: 100;
    display: block;
    cursor: pointer;
}


    .Companies-card .card {
        height: 170px;
    }

@media (max-width: 600px) {
    .Companies-card .card {
        height: auto;
    }
}

.Announcement-card:hover, .CompanyProfilesList-card:hover {
    background-color: #dceaf1;
}

@media (min-width: 1300px) {
    .tender_wrapper_list .Announcement-card {
        width: 49.6%;
        margin-bottom: 5px;
        margin-top: 5px;
        margin-right: 0.4%;
        min-height: 100px;
    }
}

@media (min-width: 1800px) {
    .tender_wrapper_list .Announcement-card {
        width: 33%;
        margin-right: 0.33%;
    }
}

@media (min-width: 1400px) {
    .Companies-card {
        width: 50%;
        padding-right: 0.4%;
    }
}

@media (min-width: 1600px) {
    .Companies-card {
        width: 33.33%;
        padding-right: 0.33%;
    }
}

.PrewFile object {
    min-height: 60vh;
}

.buy {
    background-color: #abcae9;
    padding: 5px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

#nav-trading-activity .buy {
    display: inline-block;
}

.sale {
    background-color: #c7e995;
    padding: 5px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

#nav-trading-activity .sale {
    display: inline-block;
}
/*gallary*/
.thumb img {
    -webkit-filter: grayscale(0);
    filter: none;
    /*   background-color: #d0d0d0;*/
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 400ms ease-out;
    cursor: zoom-in;
}

/*.thumb img:hover {
-webkit-filter: grayscale(1);
filter: grayscale(1);
}*/

.Announcement-additional-options {
    margin-top: 10px;
    border: 1px solid #eee;
    padding: 5px;
}

    .Announcement-additional-options ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .Announcement-additional-options ul li {
            display: inline-block;
            width: 100%;
        }

            .Announcement-additional-options ul li div {
                float: left;
                margin: 2px 5px;
            }

            .Announcement-additional-options ul li .options {
                font-weight: bold;
            }

.Announcement-type .IsOverdue {
    background-color: #f9f8f8;
    padding: 5px;
}


/*Announcement-input-file*/
.btn-file {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.btn-file-actions {
    margin: 0;
    padding: 0;
}

.btn-file-actions-item {
    cursor: pointer;
    min-height: 200px;
}

.btn-file-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 128px;
    height: 128px;
    background: url(../images/icon/image.png);
}

.form-group label.attachment {
    width: 100%;
    max-width: 250px;
    padding: 10px;
    border: 1px dashed #d3e0e9;
}

.logo-company-block .form-group label.attachment {
    width: 100%;
    max-width: 250px;
    padding: 10px;
    border: 1px solid #EDEDED;
}

@media (max-width: 1200px) {
    .logo-company-block .form-group label.attachment {
        width: 100%;
        max-width: 250px;
    }
}


.form-group label.attachment input[type='file'] {
    display: none;
}

.btn-file .PrewFile img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-height: 96.5%;
    max-width: 100%;
}

.AttachMassageFile {
    margin-top: 10px;
    margin-bottom: 10px;
}

.SelectMassageFile {
    border: 1px dashed grey;
    margin-bottom: 5px;
}

.AttachMassageFile input[type="file"] {
    outline: 0;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    position: absolute;
}

.AttachMassageFile .label {
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    margin-bottom: 0;
    background-color: #fff;
    color: #c7e995;
    margin-right: 7px;
}

    .AttachMassageFile .label i {
        font-size: 18px;
    }

    .AttachMassageFile .label:hover i {
        color: #2d508b;
    }

.AttachMassageFile .PrewFile {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #f9f8f8;
    text-align: center;
}

[s-click] {
    cursor: pointer;
}

.person-reviews-text {
    margin-bottom: 10px;
}

.PrewFile {
    text-align: center;
}

.ArticleBlock {
    padding: 15px;
    background-color: #fff;
}

.cpv_category {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.event-title {
    font-size: 0.9375rem;
}

.MessageFile {
    padding: 2px;
}

.msg-letter {
    background: #f2feea;
    padding: 18px 20px;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
}


.message-data-time {
    color: #a8aab1;
    font-size: 12px;
}

.massage-details ul li {
    list-style: none;
}

.massage-details ul {
    margin: 0;
    padding: 0;
}

.Announcement-Massage-card {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

    .Announcement-Massage-card:last-child {
        border-bottom: 0;
    }

.Announcement-Massage-dateTime {
    width: 150px;
    padding: 15px 10px;
    border-right: 1px solid #eee;
}

.Announcement-Massage-status {
    width: 170px;
    padding: 15px 10px;
    border-left: 1px solid #eee;
}

.Announcement-Massage-body {
    padding: 15px 10px;
    width: calc(100% - 620px);
}

.Announcement-Massage-title {
    padding: 15px 10px;
    width: 300px;
}

@media (max-width: 992px) {
    .Announcement-Massage-body {
        width: 100%;
    }

    .Announcement-Massage-title {
        width: 100%;
    }
}

.Announcement-Massage-card[data-object-status="2"] .status {
    color: #09f909;
}

.checkmark img {
    height: 27px !important;
}


/*user-tab*/

/*.user-tab nav > div a.nav-item.nav-link {
    border: none;
    padding: 18px 25px;
    color: #c7e995;
    background-color: rgba(0,0,0,.03);
    border-radius: 0;
    margin-right: 5px;
    margin-top: 5px;
}*/

/*    .user-tab nav > div a.nav-item.nav-link:last-child {
        margin-right: 0;
    }

    .user-tab nav > div a.nav-item.nav-link:hover {
        background: #dedbdb;
    }

    .user-tab nav > div a.nav-item.nav-link.active {
        border: 1px solid #003594;
        color: #fff;
        background-color: #003594;
        border-radius: 0;
    }*/

/*.user-tab .tab-pane {
    border-top: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.user-tab .nav-tabs {
    border-bottom: 0 !important;
}*/

/*.user-tab > .tab-content {
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
}*/

.note-editor .btn {
    box-shadow: none !important
}

.note-editor .dropdown-toggle::after {
    display: none;
}


.note-editor .btn.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: 0;
}


.descriptionMarkup-block {
    border: 1px solid #d7d7d7;
    padding: 5px 10px;
    min-height: 60px;
    background: #f9f8f8;
}

.note-editor .panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.CompanyProfiles-img {
    width: 150px;
    padding: 10px;
    height: 100%;
    background-color: #f9fafa;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
}

    .CompanyProfiles-img .PrewFile {
        text-align: center;
        padding: 10px;
        height: 100%;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .CompanyProfiles-img .PrewFile img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-height: 100%;
            max-width: 100%;
            margin-bottom: 0;
        }

.CompanyProfiles-content {
    padding: 15px 10px 10px;
    width: calc(100% - 150px);
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.main-company-info {
    font-size: 12px;
}

@media (max-width: 600px) {
    .CompanyProfiles-content {
        width: 100%;
        padding: 10px 20px;
    }

    .CompanyProfiles-img {
        width: 100%;
        height: 150px;
    }

    .Companies-card {
        margin-bottom: 10px;
    }
}

.Companies-wrapper-list {
    width: 100%;
}

.form-check-label.always-checked::before {
    color: #fff;
    border-color: #c7e995;
    background-color: #c7e995;
}

.form-check-label.always-checked::after {
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem);
}

.logo-prew-img {
    padding: 10px;
    border: 1px dashed #d3e0e9;
    width: 300px;
    height: 250px;
}

.main-company-details-info {
    width: calc(100% - 300px);
    padding: 0 15px 15px;
}

@media (max-width: 1100px) {
    .main-company-details-info {
        width: 100%;
        padding: 0;
        margin-top: 15px;
    }
}

.main-company-details-info a {
    color: #32548e;
}

    .main-company-details-info a:hover {
        text-decoration: underline;
    }

.logo-prew-img .PrewFile {
    width: 100%;
    height: 100%;
    position: relative;
}

    .logo-prew-img .PrewFile img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

#CompanyProfilePreview .PrewFile {
    text-align: center;
}

    #CompanyProfilePreview .PrewFile img {
        max-height: 250px;
        max-width: 100%;
    }

.wrap-item-details {
    width: 100%;
    max-width: 1600px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
}

    .wrap-item-details h5, .wrap-item-details .h5 {
        line-height:1.5;
    }

    @media screen and (max-width:800px) {
        .card-body {
        padding: .8rem;
    }
}

.CompanyProfilesList-card .description {
    height: 120px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

    .CompanyProfilesList-card .description:after {
        position: absolute;
        display: block;
        content: '';
        bottom: 0;
        left: 0;
        width: 100%;
        background: url(../images/shad.png) center repeat-x;
        height: 10px;
    }

.CompanyProfilesList-card .attachments-view .view-file-block {
    width: 100%;
}

.CompanyProfilesList-card .attachments-view .view-img-block {
    width: 25%;
    height: 250px;
    padding-right: 20px;
}

    .CompanyProfilesList-card .attachments-view .view-img-block img {
        max-height: 100%;
        max-width: 100%;
        background-color: #f9f8f8;
    }

#CompanyProfile_WebAttachmentsViewContainer .attachments-view {
    width: 100%;
}

.company-description-block {
    padding-bottom: 10px;
}

#nav-company-announcement .AnnouncementsList-card {
    background-color: #fff;
}

.Announcement-comments-body .attachments-view .view-img-block {
    height: 200px;
    width: 200px;
    position: relative;
}

    .Announcement-comments-body .attachments-view .view-img-block img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

.view-img-block {
    height: 200px;
    width: 200px;
    background-color: #f9f8f8;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}

.attachments-view .view-img-block img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.view-file-block {
    width: 100%;
}

#CompanyProfile .tab-pane {
    padding: 10px;
}

.cpv-container .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--blue-color);
    background-color: #FAFAFA;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
    border-radius: 0;
    margin: 2px;
    border: 1px solid #EDEDED;
}

.cpv-container .nav-tabs:first-child .nav-link {
    margin-left: 0;
}

.cpv-container .nav-tabs:last-child .nav-link {
    margin-right: 0;
}

.cpv-container .nav-tabs .nav-link.active {
    color: #fff;
    background: #003594;
    border-radius: 0;
    border-bottom: 0;
}

    .cpv-container .nav-tabs .nav-link.active:hover {
        background: #003594;
    }

table.user-company-table th {
    vertical-align: middle;
}

.table thead th {
    vertical-align: top;
    border-bottom: 0;
}

.delite i {
    color: #ccc;
}

    .delite i:hover {
        color: red;
    }

.user-setting-item {
    min-height: 50px;
}

.user-setting-item {
    border-bottom: 1px dashed #dee2e6;
}

.user-setting-link {
    font-weight: bold;
    color: black;
    font-size: 1rem;
}

    .user-setting-link:hover {
        color: #2d508b !important;
    }

@media screen and (max-width: 600px) {
    .user-setting-block {
        justify-content: flex-end;
        width: 100%;
        margin-left: 0;
    }
}

.rotate-icon {
    margin-left: 5px;
}

a[aria-expanded="true"] .rotate-icon {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.user-setting-collapse-block {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .user-setting-collapse-block {
        width: 100%;
        padding-left: 1em;
    }
}

.user-company-details h5 {
    font-weight: bold;
    color: #000000;
    font-size: 1rem;
}

a.user-company-details h5:hover {
    color: #007DFF !important;
}

.user-company-details h5 i {
    color: #007DFF !important;
}

.list-unstyled.user-linenews-chapter li {
    padding: 10px 10px 10px 0;
    font-size: 12px;
    display: inline-block;
}

.user-linenews-chapter .label-type .checkbox {
    position: relative;
    top: 2px;
    float: left;
    margin-right: 8px;
    margin-left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,.15);
    border-radius: 3px;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
}

.notification > a {
    font-size: 25px;
    position: relative;
    vertical-align: middle;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
    position: relative;
}

    .notification > a > .badge {
        color: #ffffff;
        background-color: #00bc00;
        min-width: 21px;
        height: 21px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3px;
        border-radius: 50%;
        line-height: 19px;
        position: absolute;
        font-size: 12px;
        top: 5px;
        left: 18px;
        z-index: 999;
        font-weight: 400;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12) !important;
    }

.nav .notification .dropdown-menu {
    padding: 0;
}

ul.notification-list {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    min-width: 450px;
    max-height: 500px;
    overflow: auto;
}

@media screen and (max-width:600px) {
    ul.notification-list {
        width: 100%;
        min-width: initial;
    }
}

.notification-list li {
    border-top: 1px solid #eee;
    line-height: initial;
    padding: 10px;
    width: 100%;
}

    .notification-list li:first-child {
        border-top: 0;
    }


.notification-setting {
    padding: 20px 10px;
    border-top: 0;
}

.notification-list li a {
    color: rgb(172,172,172);
}

.notification-list li .notification-media {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.notification-list li:hover {
    background-color: #f1f1f1;
}

.notification-time {
    margin-top: 5px;
}

    .notification-time .time {
        font-size: 10px;
        font-weight: 700;
    }

.dropdown-menu .notification-setting {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

    .dropdown-menu .notification-setting a {
        font-size: 14px;
        color: var(--blue-color);
    }

    .dropdown-menu .notification-setting h6 {
        margin-bottom: 0;
    }

    .dropdown-menu .notification-setting .label-counter {
        font-size: 18px;
        color: var(--blue-color);
        display: block;
        margin-right: 10px;
        font-weight: 600;
    }

.frequency-day {
    border-radius: .1rem;
    outline: initial !important;
    -webkit-box-shadow: initial !important;
    box-shadow: none !important;
    line-height: 1.5;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #212121;
    width: 50px;
}

/*MAIL-BOX*/

.mail-box {
    min-height: 400px;
    position: sticky;
    top: 72px;
}

.mail-box-subject {
    font-size: 14px;
}

.mail-box-date {
    font-size: 12px;
    width: 150px;
}

.mail-details .nav-link {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    color: #000000;
}

    .mail-details .nav-link:hover {
        background-color: #f1f1f1;
    }

    .mail-details .nav-link .nav-link-icon {
        font-size: .8rem;
        width: 30px;
        text-align: center;
        margin-left: -10px;
    }

.mail-box-header {
    padding: .75rem 1.5rem;
}

.mail-box-body {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mail-box-footer {
    padding: .75rem 1.5rem;
}

.mail-box-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

@media (max-width:600px) {
    td.mail-box-mark {
        display: none;
    }

    td.mail-box-icon {
        display: none;
    }
}

.mail-details tr .read-mail-mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
    margin: auto;
}

.mail-details tr.active .read-mail-mark {
    background-color: #c7e995;
}

.mail-details tr.active .mail-box-subject, .mail-details tr.active .mail-box-date {
    font-weight: bold;
}
.mail-details tr .mail-box-icon img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.mail-details tr.active .mail-box-icon img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.mail-details tr .mail-box-name a {
    color: rgb(102,102,102);
}

.mail-details tr.active .mail-box-name {
    font-weight: bold;
}

.mail-details .col, .mail-details [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.mail-details .nav .nav-item .nav-link .nav-link-icon {
    width: 20px;
    font-size: 18px;
    margin-right: 10px
}

.trading-activity-seller {
    margin-bottom: 20px;
    border-right: 1px solid #eee;
    padding: 0 10px;
}

    .trading-activity-seller:first-child {
        padding-right: 10px;
    }

.trading-activity-buyer {
    padding: 0 10px;
}

#nav-company-details-announcement .AnnouncementsList-card {
    background-color: #fff;
}
/*pie*/
@keyframes bake-pie {
    from {
        transform: rotate(0deg) translate3d(0,0,0);
    }
}

.pieID {
    display: inline-block;
    vertical-align: top;
}

.pie {
    height: 200px;
    width: 200px;
    position: relative;
    margin: 0 30px 30px 0;
}

    .pie::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        width: 100px;
        height: 100px;
        background: #f9f8f8;
        border-radius: 50%;
        top: 50px;
        left: 50px;
    }

    .pie::after {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: rgba(0,0,0,0.1);
        border-radius: 50%;
        box-shadow: 0 0 3px 4px rgba(0,0,0,0.1);
        margin: 220px auto;
    }

.slice {
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 200px, 200px, 100px);
    animation: bake-pie 1s;
}

    .slice span {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: black;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        clip: rect(0px, 200px, 200px, 100px);
    }

.legend {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background: #FFF;
    padding: 15px;
    font-size: 13px;
    box-shadow: 1px 1px 0 #DDD, 2px 2px 0 #BBB;
}

    .legend li {
        width: 110px;
        height: 1.25em;
        margin-bottom: 0.7em;
        padding-left: 0.5em;
        border-left: 1.25em solid black;
    }

    .legend em {
        font-style: normal;
    }

    .legend span {
        float: right;
    }


.request-connect {
    padding-left: 0;
}

    .request-connect li {
        list-style: none;
    }

.subscriptions-key-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 5px 0;
    border-bottom: 1px dotted #ccc;
}

.user-tab ul li.badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 5px 0;
    border-bottom: 1px dotted #ccc;
}

    .user-tab ul li.badge .close:hover span {
        color: red !important;
    }

    .user-tab ul li.badge span {
        font-size: 0.9175rem;
        color: rgb(102,102,102) !important;
        font-weight: 400;
    }

.user-tab .fa-times-circle:hover {
    color: red;
}

/*DailySubscriptionResults*/
.user-subscription-block ul {
    margin-bottom: 10px;
}

.user-subscription-item {
    display: inline-block;
    min-height: 25px;
    line-height: 2;
    font-size: 12px;
    margin-right: 10px;
    border: 1px dashed #c7e995;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.user-subscription-title {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #c7e995;
}

.subscription-user-result .ListTitle {
    font-size: 18px;
}

.user-subscription-block ul li .subscription-item {
    margin-right: 5px;
}

    .user-subscription-block ul li .subscription-item:last-child {
        margin-right: 0;
    }

.user-setting-collapse-block .fieldset-border {
    min-height: 140px;
}

    .user-setting-collapse-block .fieldset-border legend {
        width: auto;
        font-size: 1em !important;
        font-weight: bold !important;
        text-align: left !important;
        margin-bottom: 15px;
    }

.custom-switch .form-check-label::before {
    cursor: pointer;
}

.analytics-list {
    display: flex;
}

.filter-content {
    width: 360px;
    height: auto;
    padding-right: 10px;
}

    .filter-content .card {
        max-height: 75vh;
        overflow-y: auto;
    }

.analytics-card {
    width: calc(100% - 360px);
}

@media (max-width: 1400px) {
    .filter-content {
        width: 290px;
    }

    .analytics-card {
        width: calc(100% - 290px);
    }
}

@media (max-width: 992px) {
    .filter-content {
        position: fixed;
        display: none;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 2000;
    }

        .filter-content.active {
            display: block;
        }

    .analytics-card {
        width: 100%;
    }

    .filter-content .card {
        max-height: none;
        height: 100%;
        overflow-y: auto;
    }
}

@media (min-width: 1025px) {
    .filter-content button.close {
        display: none;
    }

    .filter-btn {
        display: none;
    }
}

@media (min-width: 1030px) {
    .product-filter-btn {
        display: none;
    }
}


.main-indicators, .tender-places-stacked {
    text-align: center;
    border-bottom: 1px dashed #dee2e6;
    margin-bottom: 20px;
}

.main-indicators, .tender-places-piechart {
    padding: 20px 0 20px;
    text-align: center;
    border-bottom: 1px dashed #dee2e6;
    margin-bottom: 20px;
    margin-top: 20px;
}

.form-check-label {
    cursor: pointer;
}

.main-indicators .title, .tender-places-stacked .title {
    font-size: 18px;
    font-weight: bold;
    color: #2d508b;
    margin-bottom: 20px;
}

span.form-control {
    background-color: #f8f8f8;
    height: auto;
    min-height: 40px;
    line-height: 25px;
}

.message-box .title {
    font-size: 18px;
    font-weight: bold;
    color: #e8f0fe;
    margin-bottom: 20px;
}

.notification-list li .dropdown-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .notification-list li .dropdown-title .action-Notification {
        margin-left: 10px;
    }

.criterion_title {
    margin-bottom: .5rem;
    display: inline-block;
}

.DateTimeRow:last-child {
    margin-right: 0;
}

.doc-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

#DocumentCollapseBlock label.form-control {
    background-color: #f9f8f8;
    overflow: hidden;
    width: 200px;
    white-space: nowrap;
    text-overflow: clip;
}

.proposal-attachment .dropdown-toggle::after {
    display: none;
}

.proposal-attachment .dropdown-item:hover {
    color: black !important;
    text-decoration: none;
    background-color: #eee !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.proposal-attachment-doc {
    position: relative;
    cursor: pointer;
}

    .proposal-attachment-doc img {
        height: 24px;
    }

    .proposal-attachment-doc .badge {
        color: #ff9800 !important;
        background-color: #fff;
        min-width: 21px;
        height: 21px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3px;
        border-radius: 50% !important;
        line-height: 19px;
        position: absolute;
        font-size: 12px;
        top: -8px;
        right: -8px;
        font-weight: 400;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12) !important;
    }

.attachment-doc {
    border: 1px dashed #b0b0b0;
    padding: 5px;
    background: #FFF;
    margin-bottom: 5px;
    margin-right: 5px;
    display: inline-block;
}

.mail-details .DateTimeBlock {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    float: none;
}

    .mail-details .DateTimeBlock .DateTimeRow:last-child {
        margin-right: 0;
    }

/*.app-modal.modal-body {
padding:0;
}*/

.app-modal.modal-body .file-view-dialog {
    position: relative;
}


    .app-modal.modal-body .file-view-dialog .btn.download {
        position: absolute;
        top: 10px;
        left: 10px;
    }

.action-mail-box {
    display: block;
    width: 40px;
    height: 40px;
    color: #294f8c;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background-color: transparent;
}

    .action-mail-box:hover {
        background-color: #f9f8f8;
    }

.dropdown.show .action-mail-box {
    background-color: #f9f8f8;
}

.profile-region {
    border-top: 1px dashed #d3e0e9;
    padding-top: 10px;
}

.user-tab ul li.badge {
    border-bottom: none;
}

.profile-region > div {
    color: #8ca96f;
    margin-bottom: 5px;
}

.user-management-reports {
    padding: 10px;
    background-color: #abcae9;
    margin-bottom: 10px;
}

.management-telegram-block {
    padding: 10px;
    border: 2px solid #eee;
    margin-bottom: 10px;
}

.user-setting-collapse-block .sale {
    background-color: transparent;
    border: 1px solid #d7d7d7;
    color: black;
}

.user-setting-collapse-block .sale {
    background-color: transparent;
    border: 1px solid #d7d7d7;
    color: black;
}


.user-setting-collapse-block .buy {
    background-color: transparent;
    border: 1px solid #d7d7d7;
    color: black;
}

.modal.info .modal-header {
    border-bottom: 0;
}

.modal.info .modal-body {
    text-align: center;
}

.modal.info .modal-footer {
    display: none;
}

.user-setting-link .user-setting-icon {
    color: var(--blue-color);
}

.subscription-content .card .card-header {
    padding: 10px;
}

.subscriptions-key-list {
    margin-bottom: 0;
}

    .subscriptions-key-list li:last-child {
        border-bottom: 0;
    }

.user-setting-collapse-block .fieldset-border {
    margin-bottom: 0 !important;
}

.fieldset-border .dashboardcode-bsmultiselect {
    margin-bottom: 10px;
}

.status-business-card {
    color: #ff5869;
    font-weight: bold;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
    background-color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

    .status-business-card.success {
        font-style: normal;
        background-color: var(--color-lite-green);
        color: #006400;
    }

.wizard-card {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    height: 100%;
    border-radius: .25rem !important;
}

    .wizard-card > ul.step-block {
        border: 0;
        border-bottom: 1px solid #ddd;
        padding: 0;
        background: #f5f5f5;
        border-radius: 0;
        border-top-right-radius: 5px;
        list-style: none;
        overflow: hidden;
        height: 40px;
    }

        .wizard-card > ul.step-block > li.active > a {
            border-color: #032f55 !important;
            color: #fff !important;
            background: #032f55 !important;
        }

        .wizard-card > ul.step-block > li > a, .wizard-card > ul.step-block > li > a:hover {
            color: #bbb;
            text-decoration: none;
            padding: 10px 0 10px 37px;
            position: relative;
            display: block;
            border: 0 !important;
            border-radius: 0;
            outline-style: none;
            background: #f5f5f5;
        }

        .wizard-card > ul.step-block > li:first-child > a, .wizard-card > ul.step-block > li:first-child > a:hover {
            padding: 10px 0 10px 10px;
        }

        .wizard-card > ul.step-block > li > a:before {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border-top: 50px solid transparent;
            border-bottom: 50px solid transparent;
            border-left: 30px solid #ddd;
            position: absolute;
            top: 50%;
            margin-top: -50px;
            margin-left: 1px;
            left: 100%;
            z-index: 1;
        }

        .wizard-card > ul.step-block > li > a:after {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border-top: 50px solid transparent;
            border-bottom: 50px solid transparent;
            border-left: 30px solid #f5f5f5;
            position: absolute;
            top: 50%;
            margin-top: -50px;
            left: 100%;
            z-index: 2;
        }

        .wizard-card > ul.step-block > li.active > a:after {
            border-left: 30px solid #032f55 !important;
        }

    .wizard-card .step-title {
        line-height: 2;
    }

.modal-wizard .modal-body {
    height: 400px;
    overflow: auto;
}

.modal-wizard .step-body {
    width: 100%;
    height: calc(100% - 40px);
    padding: 10px 0 10px
}

    .modal-wizard .step-body .step {
        width: 100%;
        height: 100%;
    }

.wizard-card img {
    max-width: 100%;
    max-height: 100px;
}

.wizard-card .step-title {
    margin-bottom: 0;
}

.step .input-block {
    width: 100%;
    max-width: 300px;
}

.wizard-card .step {
    height: 400px;
    width: 100%;
    overflow-y: auto;
    padding: 1rem;
}

.wizard-card .step-footer {
    padding: 1rem;
    background: #f9f8f8;
}

.telegram-setting .modal-header {
    border-bottom: 0;
}

.telegram-setting .modal-body {
    padding: 0;
}

.setting-card {
    box-shadow: none;
}

.setting-card {
    box-shadow: none;
}

    .setting-card .card-header {
        background-color: #fff;
        padding: 0 0 10px 0;
        color: #2d508b !important;
        font-size: 1rem;
    }

        .setting-card .card-header a {
            color: #2d508b !important;
            font-size: 1rem;
        }

.alert-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.input-error {
    outline: 1px solid red;
}

.payment-card {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.сompany-profile-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.Companies-card hr {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.tool {
    position: relative;
}

    .tool::after {
        left: 50%;
        opacity: 0;
        position: absolute;
        z-index: -100;
    }

    .tool:hover::after,
    .tool:focus::after {
        opacity: 1;
        transform: scale(1) translateY(0);
        z-index: 100;
    }

    .tool::after {
        background: #ffffff;
        border-radius: 0.25em;
        top: 110%;
        color: #ff9800;
        content: attr(data-tip);
        margin-left: -100px;
        padding: 1em;
        transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
        transform: scale(0.6) translateY(50%);
        width: 200px;
        -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
        box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    }

    .tool:hover::after,
    .tool:focus::after {
        transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26);
    }

@media (max-width: 760px) {
    .tool::after {
        font-size: 0.75em;
        margin-left: -5em;
        width: 10em;
    }
}

#user-sites-connection .table-responsive {
    height: 75vh;
}


#user-sites-connection table {
    position: relative;
    top: 0;
    z-index: 10;
    border-collapse: separate;
    border-spacing: 6px;
}

    #user-sites-connection table thead {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: #ffffff;
    }

        #user-sites-connection table thead th {
            color: #c7e995;
            background-color: rgba(0,0,0,.03);
            font-weight: 400;
            text-align: center;
            border-top: 0;
        }

            #user-sites-connection table thead th:last-child {
                background-color: transparent;
            }

    #user-sites-connection table tbody tr:first-child td {
        border-top: 0;
    }

    #user-sites-connection table tbody td:last-child {
        border-top: 0;
    }

.tab-pane .card-body {
    padding: 1rem;
}

.rates-card .card-footer {
    border-top: 0;
    padding-top: 0;
    background-color: #ffffff;
    border-radius: 0;
    padding-bottom: 25px;
}

.rates-card .card-body {
    padding-bottom: 0;
}

    .rates-card .card-body ul {
        margin-bottom: 0;
        padding-left: 30px;
    }

        .rates-card .card-body ul ul {
            margin-left: 30px;
            margin-top: 3px;
        }

            .rates-card .card-body ul ul > li {
                border-bottom: 0;
            }

.rates-info-block {
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #999998;
    font-weight: 400;
}

.rates-card .card-footer .btn {
    max-width: 300px;
    width: 100%;
    margin: 0;
}

.DateTimeRow .form-group {
    margin-bottom: .5rem;
}

@media (min-width: 992px) {
    .date-block {
        display: inline-block;
    }
}

.date-block i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.dates-wrap {
    display: flex;
    align-items: center;
}

    .dates-wrap img {
        margin-right: 5px;
    }

.hintInfoFile ul {
    padding-left: 15px;
}

    .hintInfoFile ul li {
        list-style: disc;
    }

.adaptive-table table {
    margin-bottom: 0;
}

label.tender_hint {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.form-select {
    height: 40px;
}
/*order*/
.order-container {
    padding: 1rem;
}

.order-card {
    width: 100%;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.order-info-block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid red;
    padding: 10px;
    color: red;
    margin-top: 2rem;
    font-size: 12px;
}

.order-card .order-info-block ul {
    padding-left: 40px;
}

    .order-card .order-info-block ul li {
        list-style: disc;
    }

.order-card .order-block td {
    padding-right: 1rem;
    padding-top: 0.5rem;
}

.order-card .order-block th {
    white-space: nowrap;
}

.order-card .order-block {
    margin-top: 1rem;
    font-size: 12px;
}

    .order-card .order-block:first-child {
        margin-top: 0;
    }

    .order-card .order-block .h4 {
        font-size: 19px;
        border-bottom: solid;
    }

.order-card .flex-container {
    align-items: center;
    justify-content: flex-end;
}

    .order-card .flex-container div {
        padding-right: 1rem;
        vertical-align: middle;
    }

.promo-customer-block {
    padding: 10px;
}

.promo-customer-image {
    width: 200px;
    float: left;
    margin: 10px 20px 10px 0;
}

    .promo-customer-image img {
        background-color: #ffffff;
        width: 100%;
        border-radius: 4px 30px 4px 30px;
        -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    }

.promo-customer-text {
    padding: 10px;
}

.promo-customer-text-title {
    color: #2d508b;
    font-weight: 700;
    margin-bottom: 0;
}

.promo-customer-text-subtitle {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
    display: inline-block;
}

.promo-customer-text-description {
    margin-bottom: 0;
}

/*bidding*/
.bidding-header {
    background-color: var(--color-bidding);
    color: black;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.bidding-block table thead th {
    text-align: center;
}

.bidding-block table th, .bidding-block table td {
    vertical-align: middle;
}

.bidding-block .form-control {
    background-color: rgba(232, 240, 254,.4) !important;
    max-width: 90%;
}

.bidding-price {
    margin: 0;
    /*    background-color: #c7e995;
    color: #fff;
    border-radius: .125rem;
    padding: .5rem;*/
    text-align: right;
}

.form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
    font-size: 14px;
    line-height: 24px;
}

.bidding-input {
    padding: .5rem;
    border-radius: .125rem;
    text-align: right;
    width: 150px;
    max-width: 150px;
}

    .bidding-input.blocked {
        background-color: #f9f8f8 !important;
    }

@media screen and (max-width:767px) {
    .bidding-header {
        flex-wrap: wrap;
    }
}

.bidding-clock {
    text-align: right;
    font-weight: 500;
    color: #bc0101;
    text-wrap: nowrap;
}

img.finger {
    height: 20px;
}

.gavel-icon {
    width: 30px;
    height: 30px;
    background-image: linear-gradient(to right, #355c7f, #c7e995);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.is-readonly .form-control {
    background-color: #f9f8f8;
}

/*.bidding-view .table tr td .form-control {
    background-color: transparent;
    padding: 0;
    border: 0;
    height: auto;
    min-height: auto;
}*/

.bidding-items-container table th, .bidding-items-container table td {
    font-size: 12px;
}

.card.bidding-history {
    min-height: 800px;
}

.nextBid {
    display: flex;
    -ms-align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

.custom-radio .form-check-input:disabled:checked ~ .form-check-label::before {
    background-color: #c7e995;
}

.home-content {
    width: 100%;
}

.with-filter-bar .home-content {
    width: calc(100% - 250px);
    padding-bottom: 30px;
}

.tender-container, .content-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.create-tender.btn, .create-tender .btn {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1000;
}

.main-content {
    position: relative;
}

    .main-content .overlay {
        position: absolute;
        background-image: url(../images/bg.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        left: -30px;
        width: 300px;
        height: 100%;
    }

#tendersContent .tab-content > .tab-pane, #companyContent .tab-content > .tab-pane {
    position: relative;
}

.Companies-card .card {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.rates-card-container .rates-card.card-footer {
    background-color: #ffffff;
}

.rates-card-container .rates-card .rates-header .rates-tax {
    color: #000000;
}

.rates-card .rates-header h2 {
    font-weight: 400;
    font-size: 28px;
    color: var(--blue-color);
    line-height: 33px;
    margin-bottom: 0;
}

.left-home-menu {
    opacity: 0;
    visibility: hidden;
}

.left-home-menu {
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 280px;
    height: -webkit-calc(100vh);
    height: calc(100vh);
    background-color: #fff;
    transition: all .4s ease;
    -webkit-box-shadow: 7px 4px 20px 0 rgba(162, 162, 162, .25);
    box-shadow: 7px 4px 20px 0 rgba(162, 162, 162, .25);
    padding: 71px 30px 30px;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .left-home-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .left-home-menu .menu-close {
        position: fixed;
        top: 27px;
        left: 36px;
        z-index: 999;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }

    .left-home-menu .menu > li {
        border-bottom: 1px solid #EDEDED;
        width: 100%;
    }

        .left-home-menu .menu > li a {
            font-size: 14px;
            line-height: normal;
            font-weight: 400;
            color: #000;
            padding: 15px 0;
            width: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }
/*a.delite_row*/
.nav-fill .nav-item, .nav-fill > .nav-link {
    margin-right: 5px;
}

    .nav-fill .nav-item:last-child, .nav-fill > .nav-link:last-child {
        margin-right: 0;
    }

@media (max-width:768px) {
    .create-tender.btn, .create-tender .btn {
        position: initial;
    }

    .tender_table_wrap.card {
        margin-top: 5px;
    }
}

@media screen and (max-width: 1024px) {
    .tender_table_header {
        display: none;
    }

    .tender_name {
        font-size: 1rem !important;
    }

    .tender_category {
        font-size: 1rem !important;
    }

    .tender-details .tender_name {
        font-size: 1.4rem !important;
    }

    .tender_table_body_row_cell span {
        font-size: 0.9175rem;
    }

    .tender_table_body_row_cell.date span {
        font-size: 0.9175rem !important;
    }

    .tender_table_body_row {
        display: block;
        padding: 22px 15px;
        border-bottom: 0;
    }

    .tender_table_body_row_cell {
        display: block;
        margin-bottom: 10px;
        padding: 0;
        border-bottom: 0;
    }
    
        .tender_table_body_row_cell .label {
            display: inline-block;
        }

        .tender_table_body_row_cell.dl {
            display: flex;
            align-items: flex-end;
        }

        .tender_table_body_row_cell.date {
            display: inline-block;
            margin-bottom: 0;
        }

        .tender_table_body_row_cell.fv {
            width: 40px;
            display: flex;
            align-items: flex-start;
        }

    img.type {
        height: 25px;
    }

    .gavel-icon {
        width: 25px !important;
        height: 25px !important;
        min-width: 25px;
        font-size: 16px !important;
    }

    .tender_table_body_row_cell.tender-details-name {
        width: calc(100% - 40px);
    }

    .tender_table_body_row_cell.type {
        width: 100%;
    }

    .tender_table_body_row_cell.status .label {
        float: left;
        margin-right: 5px;
    }

    .tender_table_body_row_cell.contragent {
        display: block;
        width: calc(50% - 20px);
        text-align: left;
    }

    .tender_table_body_row_cell.status {
        display: block;
        width: 100%;
    }

    .tender_table_body_row {
        text-align: left;
        flex-direction: initial;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 5px;
        -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}

.table-sm > :not(caption) > * > * {
    background-color: transparent;
}

.select2 {
    display: block !important;
    width: 100% !important;
}

.select2-container .select2-selection--single {
    border-radius: 4px !important;
    outline: initial !important;
    -webkit-box-shadow: initial !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
    border: 1px solid #e3e9f0 !important;
    background: #fff;
    color: #212121 !important;
    height: 40px !important;
}

.select2-selection__rendered {
    line-height: 35px !important;
    height: 40px;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f8f8f8;
    cursor: default;
}

.card-header label {
    white-space: nowrap;
}

@media (max-width: 450px) {
    .tender-main-tabs .nav-item {
        margin-bottom: 5px;
        width: 100%;
    }
    .tender-main-tabs .nav-item a{
        margin-right: 0;
    }
    .tender-main-tabs {
        border-bottom:0;
    }
}

@media (max-width: 991px) {
    .criterion-cell input, .criterion-cell textarea, .criterion-cell select {
        background-color: #fff!important;
        border-color: #e3e9f0!important;
    }
    .progressbar li.step .step-title {
        text-align: left !important;
    }

    .adaptive-table table thead {
        display: none;
    }

    .adaptive-table table,
    .adaptive-table tbody,
    .adaptive-table tr,
    .adaptive-table td {
        display: block;
        width: 100%;
        border: 0;
    }

    .adaptive-table tr {
        margin: 0 0 1em;
        padding-bottom: 1em;
        background-color: #ffffff;
        border-bottom: 1px solid #eeeeee !important;
        min-height: 200px;
    }

        .adaptive-table tr td {
            font-weight: bold;
            text-align: left;
            width: 100% !important;
            max-width: 100% !important;
        }

            .adaptive-table tr td > span {
                text-align: left !important;
            }

    .adaptive-table table tbody tr td > span {
        margin-top: 17px;
        width: 100%;
        display: block;
        font-weight: 400;
        background-color: #f9f8f8;
        height: auto;
        min-height: calc(1.5em + .75rem + 2px);
        line-height: 1.1;
        border: 1px solid #d7d7d7;
        padding: .5rem;
    }

    .adaptive-table table .view-toggler {
        background-color: #ffffff !important;
        border: 2px solid #007DFF;
        margin-bottom: 5px;
    }

    .adaptive-table tr td:before {
        content: attr(data-title);
        display: block;
        float: left;
        font-weight: bold;
        margin-right: 10px;
        font-size: 12px;
    }

    .adaptive-table .sub-collapse-td {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .adaptive-table .table td {
        padding: 5px 10px;
        min-height: 40px;
    }

    .option_row {
        width: 100% !important;
    }

    .adaptive-table .add_row {
        float: right;
        margin-left: 40px;
    }

    .adaptive-table .form-control {
        margin-bottom: 0;
    }

    .adaptive-table .delite_row {
        float: none;
        margin: 10px;
    }
}

.criterion ul {
    padding-left: 30px;
}

    .criterion ul li {
        list-style: disc;
    }

.title-section {
    padding: 40px 0 30px;
}

h1.main-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 40px;
    padding: 0 6px 0 8px;
}

.found {
    font-weight: bold;
    color: darkblue
}

.tender-details > .card > .card-header, .Proposal > .card > .card-header {
    padding: 15px 20px;
}

.Invite_title i {
    color: var(--blue-color);
    margin-right: 5px;
}

.Invite_title[aria-expanded="true"] i {
    transform: rotate(180deg);
}

[data-bs-toggle="collapse"] {
    cursor: pointer;
}

.form-control::file-selector-button {
    height: 40px;
    content: "";
    background: url(/images/icon/clip.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center center;
    border: none;
    padding: 0;
    color: transparent;
    background-color: transparent;
    border: none;
    padding: 0;
    width: 28px;
    margin-right: 5px;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: transparent;
}

td .form-control::file-selector-button {
    margin: -.3rem 0 -.3rem -.3rem;
}

td .form-control[type=file] {
    font-size: 12px;
}

td .btn-file-visible {
    position: absolute;
    top: 0;
    right: 0;
}

.user-linenews .card .card-body {
    padding: .5rem;
}

.user-linenews .card .card-header {
    padding-bottom: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        background-image: url(/images/icon/arrow-select.svg);
        background-repeat: no-repeat;
        z-index: 999;
        height: 12px;
        border: 0;
        width: 12px;
        margin-left: 0;
        display: block;
        top: 15px;
        left: 0;
        margin-top: 0;
        position: relative;
        border-width: 0;
    }

#appModal .modal-header {
    border-bottom: 0;
}

#appModal .modal-footer {
    border-top: 0;
}

#items-criteria-container tr td:first-child {
    vertical-align: middle;
}

    #items-criteria-container tr td:first-child i {
        font-size: 20px;
        color: #007aff;
    }

.info-icon {
    width: 16px;
    min-width: 16px;
    margin: -5px 5px 0;
}

.copy-tender {
    color: #abcae9;
    font-size: 18px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #e3e9f0;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #e3e9f0;
}

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        border: 1px solid #e3e9f0;
        background-color: #ffffff;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: #007DFF;
        border-right: 1px solid #e3e9f0;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        max-width: 98%;
    }

.table.grey-table thead th {
    vertical-align: top;
    border-bottom: 1px solid #dee2e6;
    font-weight: 400;
}

.table.grey-table thead th, .table.grey-table tbody td {
    background-color: #eeeeee;
}

.info-subscriptions {
    text-align: left;
}

.dropdown-menu .notification-setting .label-counter {
    border-radius: 3px;
    font-size: 75%;
    padding: 4px 7px;
    margin-right: 7px;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    background: #007dff;
    display: inline-block;
    float: left;
    min-width: 40px;
    text-align: center;
}

.option_row {
    width: 50%;
    margin-left: 30px;
}

@media screen and (max-width:800px) {
    .option_row {
        width: 100%;
        margin-left: 30px;
    }
}

.option_row table {
    border: 0;
}

    .option_row table tr td {
        border: 0;
    }

.info-subscriptions {
    margin-right: 20px;
}

.form-select:disabled, .selectpicker[disabled] {
    background-color: #f8f8f8;
}

.form-select {
    height: 40px;
    border-radius: 4px;
    border-color: #e3e9f0;
}

.readonly .form-select {
    background-color: #f8f8f8;
    background-image: none;
    padding: .375rem .75rem .375rem .75rem;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 0 4px 4px 0;
}

@media (min-width: 992px) {
    .td-form-view {
        background-color: #f8f8f8 !important;
    }

        .td-form-view span.form-control {
            border: 0;
            background-color: transparent;
            padding: 0;
        }

    .table-view td {
        background-color: #ffffff !important;
    }

    .table-view th {
        background-color: #f8f8f8 !important;
    }

    .table-view td span.form-control {
        border: 0;
        background-color: transparent;
        padding: 0;
    }
}

.tender-header_block h1 a:not([href]):not([tabindex]) {
    color: black;
}

.bidding-admin table td {
    background-color: #ffffff !important;
}

.bidding-admin table th {
    background-color: #f8f8f8 !important;
}

.bidding-admin table td span.form-control {
    border: 0;
    background-color: transparent;
    padding: 0;
}

.input-group.is-readonly .input-group-append .input-group-text {
    background-color: #f9f8f8;
}

    .input-group.is-readonly .input-group-append .input-group-text i {
        opacity: .5;
    }

.InvitedPersons > div {
    margin-bottom: 5px;
}

.NewInvitedPersons > div {
    margin-bottom: 5px;
}

.InvitedPersons > div:hover .invite_person_text {
    background-color: #f8f8f8;
}

.tender_table_body {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.select2-container--default.select2-container--disabled .select2-selection__arrow {
    display: none;
}

.show-file {
    padding-right: 40px;
}

    .show-file::before {
        content: "\f06e";
        position: absolute;
        right: 10px;
        font-family: "Font Awesome 6 Free";
        color: #007dff;
    }

/*@media (min-width: 667px) and (max-width: 991px) {
    .adaptive-table .table > tbody > tr:not(.collapse) {
        display: inline-flex;
        flex-wrap: wrap;
        vertical-align: top;
        width: 48% !important;
        max-width: 48% !important;
    }
        .adaptive-table .table > tbody > tr:nth-child(2n+1) {
            margin-right: 2%;
        }

    .adaptive-table .table.table-collapse > tbody > tr:not(.collapse) {
        display: block;
        vertical-align: top;
        width: 100% !important;
        max-width: 100% !important;
    }
    .adaptive-table .table > tbody.table-collapse > tr:nth-child(2n+1) {
        margin-right: 0;
    }    
}*/
.bidding-item-name {
    width: 40%;
    min-width: 40%;
}

.contragent-info:hover {
    color: var(--blue-color);
}

@-moz-document url-prefix() {
    .table-bordered {
        border-collapse: inherit;
        border-spacing: 0;
    }
}

td textarea.form-control::-webkit-resizer {
    display: none;
}

.companies-list {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
}

.textbox {
    margin-bottom: 5px;
}

.bidding-header a {
    color: black;
}

.file-criteria input[type='file'] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-criteria label {
    padding: 0;
    background-color: transparent;
    margin: .375rem;
    color: inherit;
    text-transform: uppercase;
    word-wrap: break-word;
    white-space: normal;
    cursor: pointer;
    border: 0;
    border-radius: 0rem;
}

.btn-file-select-bage {
    background-color: white;
    min-width: 22px;
    height: 22px;
    border-radius: 100%;
    padding: 0;
    text-align: center;
    line-height: 10px;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    border: 0;
    top: 0;
    left: -8px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.file-criteria .RemoveFile {
    position: absolute;
    right: -10px;
    top: 3px;
}

.criterion-cell input, .criterion-cell textarea, .criterion-cell select {
    background-color: transparent;
    border-color: transparent;
}

    .criterion-cell input:focus, .criterion-cell textarea:focus, .criterion-cell select:focus {
        background-color: transparent;
        border-color: var(--blue-color);
    }

    .criterion-cell input[readonly], .criterion-cell textarea[readonly], .criterion-cell select[disabled] {
        border: 0;
    }

.criterion-cell .form-control:disabled, .criterion-cell .form-control[readonly] {
    background-color: transparent;
    opacity: 1;
}

.order-block table.table-bordered {
    border-color: black !important;
}

.order-block a {
    color: #000000 !important;
}

.order-block table.table-bordered, .order-block th, .order-block td {
    box-sizing: border-box;
}

    .order-block table.table-bordered th, .order-block table.table-bordered td {
        border: 1px solid black;
    }

.user-subscriptions .form-switch {
    padding-right: 2.5em;
}

    .user-subscriptions .form-switch .form-check-input {
        margin-right: -2.5em;
        float: right;
    }

.user-subscriptions .user-linenews-chapter li {
    padding: 0 10px 0;
}

    .user-subscriptions .user-linenews-chapter li .label-type .checkbox svg {
        top: -2px;
        left: -2px;
    }

.user-subscriptions .select2-container--default .select2-selection--multiple .select2-selection__choice {
    max-width: 100%;
    width: 100%;
    border: 0;
    line-height: 20px;
    height: auto;
}

.user-subscriptions .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #000000;
    border-right: 0;
    opacity: .5;
}

    .user-subscriptions .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
        opacity: .75;
        background-color: transparent;
    }

.user-subscriptions .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 20px;
    font-weight: 400;
}

.user-subscriptions .select2-container--default .select2-selection--multiple {
    min-height: 40px;
}

.user-subscriptions .select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: 20px !important;
}

.select2-container--default .select2-selection--multiple {
    position: relative;
    padding-right: 30px;
}

    .select2-container--default .select2-selection--multiple:after {
        content: '';
        position: absolute;
        bottom: 7px;
        right: 10px;
        background-image: url(/images/icon/arrow-select.svg);
        background-repeat: no-repeat;
        z-index: 999;
        height: 12px;
        width: 12px;
        display: block;
        border-width: 0;
    }

@media (min-width: 992px) {
    .tender-template #lots_block td, .disabled-table table td {
        background-color: #f8f8f8 !important;
    }
}
.tour-criteria-modal .description-block > div{
    display:block;
    max-height:150px;
    overflow-y:auto;
}
.date-group i {
    margin-right: 2px;
}

@media screen and (max-width:990px) {
    .view-toggler td {
        padding: 5px 10px !important;
    }
    .view-toggler td table {
        width: 100% !important;
        float: none !important;
    }
}
.table-collapse tr.active td {
    background-color: rgba(232, 240, 254, .4) !important;
}
.Companies-card .rating {
    margin-left:30px;
}
.mail-box-icon, .mail-box-status {
    max-width: 35px;
    width: 35px;
}
@media (max-width: 767px) {
    .mail-box {
        min-height: auto;
        position: relative;
        top: 0;
    }
}