﻿.card section + section {
    margin-top: 32px;
}

.section-title {
    display: flex;
    align-items: center;
   font-family: "Inter", sans-serif;
    margin-bottom: 24px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
}

    .section-title > span + span,
    .section-subtitle > span + span {
        margin-left: 16px;
    }

.section-title__text {
    font-size: 24px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.3;
}

.section-options {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
}

    .section-options a {
        color: #8F9EAE;
    }

.link-w-icon {
    align-items: center;
    display: flex;
    transition: all .2s ease;
}

    .link-w-icon svg {
        margin-right: 6px;
    }

a.link-w-icon:hover {
    color: #2C2C2C;
}

    a.link-w-icon:hover path {
        transition: all .2s ease;
    }

    a.link-w-icon:hover g [fill] {
        fill: #2C2C2C;
    }

.section-options span.link-w-icon {
    color: #8F9EAE;
}

.--text-short {
    display: inline-block;
    white-space: nowrap;
    max-width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-options .label-inline {
    font-size: 14px;
    padding: 2px 8px;
    height: auto;
    transition: all .2s ease;
}

.section-options .label-gray {
    background: #F0F5FB;
    white-space: nowrap;
    transition: all .2s ease;
}

    .section-options .label-gray:hover, .section-options .label-gray.label-active {
        background: #E1F0FF;
        color: #3996FF;
    }

    .section-options .label-gray path {
        transition: all .2s ease;
    }

    .section-options .label-gray:hover g [fill],
    .section-options .label-gray.label-active g [fill] {
        fill: #3996FF;
    }

.section-options > span,
.section-options > a {
    margin-bottom: 16px;
    margin-right: 16px;
}

.section-options .svg-icon {
    margin-right: 8px;
}

.section-content {
    font-family: "Inter", sans-serif;
    display: none;
}

    .section-content.expanded {
        display: block;
    }

.label-ai {
    padding: 5px;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    background: #C9F5F3;
}

.label-collapse {
    padding: 5px;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    background: #F0F5FB;
    cursor: pointer;
}

    .label-collapse svg {
        transform: rotate(180deg);
        transition: all .2s ease;
    }

.section-title.expand .label-collapse svg,
.section-subtitle.expand .label-collapse svg {
    transform: rotate(0);
}

.text-highlight {
    color: #1BC5BD;
    font-weight: 700;
}

/* Smart filters */
.smart-fillers {
    display: flex;
    flex-wrap: nowrap;
}

.smart-fillters__item {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #8F9EAE;
    font-size: 14px;
    padding-right: 30px;
}

.smart-fillters__item-wrapper {
    max-height: 175px;
    overflow-y: auto;
    padding-right: 8px;
}

.smart-fillters__item + .smart-fillters__item {
    border-left: 1px solid #8F9EAE;
    padding-left: 24px;
}

.smart-fillters__list a {
    color: #3996FF;
    text-transform: uppercase;
}

    .smart-fillters__list a:hover {
        text-decoration: underline !important;
    }

.smart-fillters__item p {
    margin: 0 0 8px;
}

.smart-fillters__subtitle {
    font-weight: 700;
    color: #2C2C2C;
    margin: 16px 0 8px;
}

/* Criteria */
.criteria-list {
    display: flex;
    flex-wrap: nowrap;
}

.criteria-list__item {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #8F9EAE;
    font-size: 14px;
    padding-right: 30px;
}

.--criteria-with-detail {
    justify-content: space-between;
}

.criteria-list__item-wrapper {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
}

.criteria-list__item + .criteria-list__item {
    border-left: 1px solid #8F9EAE;
    padding-left: 24px;
}

.criteria-list__list a {
    color: #3996FF;
    text-transform: uppercase;
}

.criteria-list__item p {
    margin: 0 0 8px;
}

.criteria-list__subtitle {
    font-weight: 700;
    color: #2C2C2C;
    margin: 16px 0 8px;
}

.diagramm-block {
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
}

    .diagramm-block + .diagramm-block {
        margin-top: 32px;
    }

.diagramm-block__graph {
    width: 96px;
    padding-right: 16px;
}

.diagramm-block .circle-progress {
    width: 100%;
    height: auto;
}

.diagramm-block .circle-progress-circle {
    stroke: #E1F0FF;
    stroke-width: 10;
}

.diagramm-block .circle-progress-value {
    stroke: #3996FF;
    stroke-width: 10;
}

.diagramm-block .circle-progress-text {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    fill: #3996FF;
}

.diagramm-block__more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagramm-block__detail {
    display: flex;
    align-items: flex-start;
    padding: 5px 8px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all .2s ease;
}

    .diagramm-block__detail:hover {
        color: #2C2C2C;
    }

    .diagramm-block__detail path {
        transition: all .2s ease;
    }

    .diagramm-block__detail:hover g [fill] {
        fill: #2C2C2C;
    }

    .diagramm-block__detail svg {
        margin-left: 10px;
        transition: all .2s ease;
    }

.diagramm-block__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #2C2C2C;
}

.--diagramm-percentage-wrapper {
    max-height: 300px;
}

.diagramm-percentage {
    display: flex;
    flex-direction: column;
}

.diagramm-percentage__item {
    display: flex;
    margin-top: 16px;
    gap: 8px;
}

.diagramm-percentage__item-num {
    font-size: 14px;
    width: 50px;
    font-weight: 700;
    color: #2C2C2C;
}

/* Budget */
.budget,
.stages,
.procurement-objects {
    margin-bottom: 24px;
}

.budget__years {
    display: flex;
    flex-wrap: wrap;
}

.budget__years-item {
    display: flex;
    flex-direction: column;
    color: #8F9EAE;
    margin-right: 60px;
}

    .budget__years-item > p {
        margin-bottom: 8px;
    }

        .budget__years-item > p:first-child {
            font-weight: 500;
        }

.budget__table {
    padding-right: 8px;
}

.budget__table-wrapper {
    padding-right: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.budget__table table th {
    padding: 4px 8px;
    font-weight: 500;
    font-size: 16px;
}

.budget__table tr:hover {
    background: initial;
}

.budget__table table td {
    padding: 16px 8px;
}

.budget__table th,
.budget__table td {
    border-left: 1px solid #8F9EAE;
    white-space: nowrap;
    width: 1px;
}

    .budget__table th:first-child,
    .budget__table td:first-child {
        border: none;
    }

    .budget__table th:last-child,
    .budget__table td:last-child {
        padding-right: 30px;
    }

.budget__table tbody tr:nth-child(even) td {
    background: #F8F8F8;
}

.budget__table tr:hover td {
    background-color: aliceblue !important;
}

.budget__table .budget__table-content {
    width: 100%;
    white-space: normal;
}

.budget__table .budget__table-cart {
    text-align: center;
}

.column-toggle__content {
    display: inline-block;
}

.column-toggle_button {
    display: inline-block;
    text-decoration: underline;
    color: #8F9EAE;
    cursor: pointer;
}

    .column-toggle_button:hover {
        text-decoration: none;
    }

.column-notice {
    margin-top: 4px;
    color: #8F9EAE;
    font-size: 12px;
}

/* Tabs */
.tabs {
    display: flex;
    flex-direction: column;
}

.tabs__nav {
    display: flex;
}

.tabs__nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease;
}

    .tabs__nav-item > span {
        display: flex;
        align-items: center;
    }

.tabs__nav-icon {
    margin-left: 8px;
}

.tabs__content {
}

.tabs__content-item {
    display: none;
    -webkit-animation-name: tab-content;
    animation-name: tab-content;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

    .tabs__content-item.active {
        display: block;
    }

@-webkit-keyframes tab-content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes tab-content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}


.tabs__nav.--customer-information {
    margin-bottom: 24px;
}

.--customer-information .tabs__nav-item {
    font-size: 20px;
    font-weight: 500;
    color: #2C2C2C;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    margin-right: 24px;
}

    .--customer-information .tabs__nav-item:hover {
        color: #3996FF;
    }

    .--customer-information .tabs__nav-item.active {
        color: #3996FF;
        border-bottom: 2px solid #3996FF;
    }

        .--customer-information .tabs__nav-item.active .tabs__nav-text {
            color: #3996FF;
        }

.--customer-information .label-light-success,
.--customer-information .label-light-success path {
    transition: all .2s ease;
}

.--customer-information .tabs__nav-item.active .label.label-light-success,
.--customer-information .tabs__nav-item:hover .label.label-light-success {
    background: #E1F0FF;
}

.--customer-information .tabs__nav-item.active .label-light-success path,
.--customer-information .tabs__nav-item:hover .label-light-success path {
    fill: #3996FF;
}

.tabs__nav.--completed-tenders {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.--completed-tenders .tabs__nav-item {
    font-size: 16px;
    color: #2C2C2C;
}


    .--completed-tenders .tabs__nav-item:before {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M5.79991 12.0334C5.67769 11.9112 5.61658 11.7557 5.61658 11.5668C5.61658 11.3779 5.67769 11.2223 5.79991 11.1001L8.39991 8.50011L5.79991 5.90011C5.67769 5.77789 5.61658 5.62234 5.61658 5.43345C5.61658 5.24456 5.67769 5.089 5.79991 4.96678C5.92213 4.84456 6.07769 4.78345 6.26658 4.78345C6.45547 4.78345 6.61102 4.84456 6.73324 4.96678L9.79991 8.03345C9.86658 8.10011 9.91391 8.17234 9.94191 8.25011C9.96947 8.32789 9.98324 8.41123 9.98324 8.50011C9.98324 8.589 9.96947 8.67234 9.94191 8.75011C9.91391 8.82789 9.86658 8.90011 9.79991 8.96678L6.73324 12.0334C6.61102 12.1557 6.45547 12.2168 6.26658 12.2168C6.07769 12.2168 5.92213 12.1557 5.79991 12.0334Z' fill='%238F9EAE' /%3E%3C/g%3E%3C/svg%3E");
        width: 16px;
        height: 17px;
        margin: 0 8px;
        cursor: default;
    }

    .--completed-tenders .tabs__nav-item:first-child:before {
        display: none;
    }

.--completed-tenders .tabs__nav-separate {
    margin: 0 8px;
}

.--completed-tenders .tabs__nav-item.active {
    color: #3996FF;
}

    .--completed-tenders .tabs__nav-item.active .tabs__nav-text {
        color: #3996FF;
    }

.labels {
}

.labels__row {
    display: flex;
    flex-wrap: wrap;
}

    .labels__row > span {
        margin-bottom: 16px;
        margin-right: 16px;
    }

/* Potential competitors */
.competitors {
    display: flex;
    margin-bottom: 24px;
}

.competitors__list {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    padding-right: 8px;
    border-right: 1px solid #8F9EAE;
}

.competitors__list-wrapper {
    display: flex;
    flex-direction: column;
    padding-right: 8px;
    max-height: 470px;
    overflow-y: auto;
}

.competitors__list-item {
    font-size: 14px;
    padding: 8px 0;
    color: #2C2C2C;
    cursor: pointer;
    transition: all .2s ease;
}

    .competitors__list-item:hover {
        color: #000;
    }

    .competitors__list-item.active {
        color: #3996FF;
    }

    .competitors__list-item:nth-child(even) {
        background: #F8F8F8;
    }

.competitors__detail {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 16px;
}

.competitors__container {
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.competitors__detail-header .section-options {
    margin-bottom: 0;
}

.competitors__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    align-items: center;
}

    .competitors__title a {
        color: #8F9EAE
    }

.competitors__title-col {
}

.competitors__title-text {
}

    .competitors__title-text .link-w-icon {
        color: #2C2C2C;
        font-size: 16px;
        font-weight: 500;
    }

    .competitors__title-text svg {
        margin: 0 0 0 8px;
    }

.inn-text {
    font-size: 12px;
    margin-top: 8px;
    color: #8F9EAE;
    display: flex;
    align-items: center;
}

.calculate-button {
    padding: 4px 8px;
    color: #8F9EAE;
    font-size: 16px;
    transition: all .2s ease;
}

    .calculate-button svg {
        margin-left: 8px;
    }

    .calculate-button path {
        transition: all .2s ease;
    }

    .calculate-button:hover {
        color: #2C2C2C;
    }

        .calculate-button:hover path {
            fill: #2C2C2C;
        }

.competitors__detail-filter {
    margin-bottom: 16px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    color: #8F9EAE;
    margin-bottom: 0;
}

    .custom-checkbox input {
        display: none;
    }

    .custom-checkbox .custom-mark {
        display: inline-block;
        position: relative;
        width: 15px;
        height: 15px;
        border: 1px solid #8F9EAE;
        border-radius: 2px;
        margin-right: 8px;
    }

    .custom-checkbox input:checked + .custom-mark {
        border-color: #3996FF;
        background: #3996FF;
    }

        .custom-checkbox input:checked + .custom-mark:before {
            content: "";
            position: absolute;
            left: 4px;
            top: 1px;
            width: 5px;
            height: 9px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    .custom-checkbox input:checked ~ span {
        color: #3996FF;
    }

.custom-radio {
    display: flex;
    align-items: center;
    color: #8F9EAE;
    margin-bottom: 0;
}

    .custom-radio input {
        display: none;
    }

    .custom-radio .custom-mark {
        display: inline-block;
        position: relative;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        border: 1px solid #8F9EAE;
        margin-right: 8px;
    }

    .custom-radio input:checked + .custom-mark {
        border-color: #3996FF;
        background: #fff;
    }

        .custom-radio input:checked + .custom-mark:before {
            content: "";
            position: absolute;
            left: 3px;
            top: 3px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #3996FF;
        }

    .custom-radio input:checked ~ span {
        color: #3996FF;
    }

    .custom-radio > div {
        padding-left: 8px;
    }

.--options-cols {
    justify-content: space-between;
}

.labels-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

    .labels-col > span, .labels-col > a {
        margin: 8px 16px 0 0;
    }

        .labels-col > span:last-child,
        .labels-col > a:last-child {
            margin: 8px 0 0 0;
        }

.label-text {
    display: flex;
    align-items: center;
    color: #8F9EAE;
}

    .label-text > * + * {
        margin-left: 8px;
    }

.participacions__header .section-options {
    margin-bottom: 8px;
}

.participacions__list {
    padding-right: 8px;
}

.participacions__wrapper {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 8px;
}

.participacions__detail {
}

.participacions__item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #8F9EAE;
}

.participacions__header {
}

.participacions__description {
}

.participacions__description-text {
    position: relative;
    display: inline-block;
}

    /*.participacions__description-text:after {
    content: "...";
}*/

    .participacions__description-text.open {
        height: auto;
        width: auto;
    }

        .participacions__description-text.open:after {
            display: none;
        }

.participacions__description-more {
    display: inline-block;
    text-decoration: underline;
    color: #8F9EAE;
    cursor: pointer;
}

    .participacions__description-more:hover {
        text-decoration: none;
    }


/* Search with filters */
.search-line {
    display: flex;
    flex-wrap: wrap;
}

.search-line__item {
    display: flex;
    align-items: center;
}

    .search-line__item + .search-line__item {
        padding-left: 24px;
    }

.--search {
    width: 100%;
    max-width: 570px;
}

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

    .search-control input {
        padding: 4px 12px;
        border: 1px solid #8F9EAE;
        border-radius: 2px;
        width: 100%;
        max-width: 570px;
        transition: all .2s ease;
        outline: none;
    }

        .search-control input:focus {
            padding: 4px 12px;
            border-color: #3996FF;
            background: #E1F0FF;
        }

        .search-control input::placeholder {
            font-size: 16px;
            color: #8F9EAE;
            font-weight: 400;
        }


    .search-control button {
        position: absolute;
        right: 5px;
        top: 3px;
        outline: none;
        border: none;
        background: none;
    }

    .search-control path {
        transition: all .2s ease;
    }

    .search-control button:hover g [fill] {
        fill: #2C2C2C;
    }

.filter-control {
    display: flex;
    align-items: center;
}

    .filter-control + .filter-control {
        margin-left: 16px;
    }

/* Completed tenders */

.completed-tenders__list {
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow-y: auto;
}

.completed-tenders__list-item {
}

.tender {
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px;
    margin-top: 16px;
}

    .tender .--options-cols .svg-icon {
        margin: 0;
    }

        .tender .--options-cols .svg-icon svg {
            margin: 0;
            height: auto;
            width: auto;
        }

    .tender .section-options .--labels-negative .label-inline {
        padding: 2px 4px;
    }

    .tender .labels-col > span,
    .tender .labels-col > a {
        margin: 0 16px 8px 0;
    }

.tender__info {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 0 16px;
    font-size: 16px;
    color: #2C2C2C;
    line-height: 1.3;
}

    .tender__info > div + div {
        margin-top: 16px;
    }

.tender__info-company {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

    .tender__info-company svg {
        margin-right: 4px;
    }

.tender__description {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tender__info-price > span,
.tender__info-price > span svg {
    margin-right: 8px;
}

.tender__header {
}

.tender__name {
}

.tender__groups-collapse {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #8F9EAE;
}

.tender__groups-count {
    display: flex;
    align-items: center;
}

    .tender__groups-count,
    .tender__groups-count svg {
        margin-right: 8px;
    }

.tender__groups-collapse .tender__groups-more svg {
    transform: rotate(180deg);
    transition: all .2s ease;
}

.tender__groups-collapse.active .tender__groups-more svg {
    transform: rotate(0deg);
}

.tender__groups-list {
    display: none;
}

    .tender__groups-list.active {
        display: block;
    }

.tenders-table {
    font-size: 14px;
    padding-right: 8px;
}

.tenders-table-wrapper {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 8px;
}

.table__col-center {
    text-align: center;
}

.table__col-title {
    color: #8F9EAE;
}

.tenders-table table {
    width: 100%;
}

.tenders-table td {
    padding: 7px;
}

    .tenders-table td div + div {
        margin-top: 4px;
    }

    .tenders-table td:first-child {
        padding-left: 0;
    }

    .tenders-table td:last-child {
        padding-right: 0;
    }

.tenders-table tr:nth-child(even) td {
    background: #F8F8F8;
}

.--company-name-highlight,
.tenders-table__percent {
    color: #3996FF;
}

.tenders-table__name {
    text-transform: uppercase;
}

.tenders-table__inn {
    color: #8F9EAE;
    font-size: 12px;
}

.tenders-table__add {
    cursor: pointer;
    padding: 4px;
}

/* Request price */

.request-price__list {
    margin-top: 24px;
}

.request-price__items {
    padding-right: 8px;
}

.request-price__list-wrapper {
    overflow-y: auto;
    max-height: 620px;
    padding: 0 8px 8px 0;
}

.request-price__item {
    background: #FFFFFF;
    padding: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    font-size: 14px;
}

    .request-price__item + .request-price__item {
        margin-top: 16px;
    }

.request-price__item-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

    .request-price__item-title a {
        display: inline-flex;
        align-items: center;
        color: #3996FF;
        line-height: 1;
    }

        .request-price__item-title a > span + span {
            margin-left: 16px;
        }

        .request-price__item-title a:hover {
            color: #0073e9;
        }

.request-price__item-description {
}

.request-price__item .section-options {
    margin: 8px 0 0;
}


/* Current tenders */
.current-tenders {
}

.current-tenders__list-wrapper {
    margin-top: 24px;
}

.current-tenders__list-wrapper {
    overflow-y: auto;
    max-height: 620px;
    padding: 0 8px 8px 0;
}

.current-tenders__items {
    display: flex;
    flex-wrap: wrap;
    padding-right: 8px;
    margin: 0 -8px;
}

.current-tenders__item {
    display: flex;
    width: 50%;
    padding: 0 8px;
    margin-bottom: 16px;
}

.current-tenders__item-container {
    padding: 8px;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.current-tenders__item-title .section-options {
    margin-bottom: 0;
}

.current-tenders__item-title .labels-col > span,
.current-tenders__item-title .labels-col > a {
    margin: 0 16px 8px 0;
}

.label-text.label-price {
    font-size: 20px;
    font-weight: 500;
    color: #2C2C2C;
}

current-tenders__item-description {
}

.current-tenders__item-bottom {
}

    .current-tenders__item-bottom .section-options {
        justify-content: flex-end;
        margin: 16px 0 0;
    }

        .current-tenders__item-bottom .section-options > span {
            margin-bottom: 0;
            margin-right: 0;
        }
