@import "clarificaton_questions_answers.css";

/*================================================*/
/*                    MAIN STYLES                 */
/*================================================*/

body {
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    min-height: 100%;
}

body:not(.loaded) *,
body:not(.loaded) *:before,
body:not(.loaded) *:after {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

body:not(.loaded) .js-toggle-menu>li>ul {
    display: none;
}

/*.main-wrapper {*/
/*    position: relative;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-box-direction: normal;*/
/*    -ms-flex-direction: column;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*    min-width: 100%;*/
/*    max-width: 100%;*/
/*    min-height: 100vh;*/
/*    margin: 0 auto;*/
/*    padding: 0;*/
/*    overflow: hidden;*/
/*}*/

/*.main-grow {*/
/*    position: relative;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-flex: 1;*/
/*    flex-grow: 1;*/
/*    width: 100%;*/
/*    min-height: 1px;*/
/*    margin: 0;*/
/*}*/

/*.main-main {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-box-direction: normal;*/
/*    -ms-flex-direction: column;*/
/*    flex-direction: column;*/
/*    -webkit-box-flex: 1;*/
/*    flex-grow: 1;*/
/*    width: 1%;*/
/*}*/

/*.main {*/
/*    -webkit-box-flex: 1;*/
/*    flex-grow: 1;*/
/*    width: 100%;*/
/*}*/

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* or 100dvh */
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* keep only horizontal hidden if needed */
}

.main-grow {
    display: flex;          /* sidebar + main */
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;          /* IMPORTANT: allows children to size/scroll correctly */
}

.main-main {
    display: flex;
    flex-direction: column; /* content + footer */
    flex: 1 1 auto;
    min-width: 0;           /* IMPORTANT: replaces width: 1% hack */
}

.main {
    flex: 1 1 auto;
    min-width: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: none;
}

/*b,*/
/*strong {*/
/*    font-weight: 700;*/
/*}*/

/* Chrome, Safari, Edge (WebKit/Blink) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    /*noinspection CssUnknownProperty*/
    -moz-appearance: textfield;
    appearance: textfield; /* modern */
}

.light {
    font-weight: 300 !important;
}

.regular {
    font-weight: 400 !important;
}

.semi-bold {
    font-weight: 600 !important;
}

/*
.font-size--22 {
    font-size: 1.1rem;
}
*/

.text-left {
    text-align: left;
}

/*.text-center {
    text-align: center;
}*/

.text-right {
    text-align: right;
}

.text-green {
    color: var(--bs-green);
}

.text-red {
    color: var(--bs-red);
}

.text-yellow {
    color: #edcd2a;
}

.bg-green {
    background-color: #8bc466;
}

.bg-red {
    background-color: #cc2327;
}

.dir-ltr {
    direction: ltr;
}

.dir-rtl {
    direction: rtl;
}

a {
    font-family: inherit;
    color: inherit;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

a:hover {
    color: #4b8dcb;
}

.img-wrap {
    display: block;
}

.img-wrap img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    flex-shrink: 0;
}

.cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fit {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.fit img {
    display: block;
    width: 100%;
    height: 100%;
}

.d-none {
    display: none !important;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inline-flex {
    display: inline-flex !important;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.flex-grow-2 {
    -webkit-box-flex: 2;
    flex-grow: 2;
}

.flex-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

.flex-shrink-0 {
    flex-shrink: 0;
}

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

.flex-end {
    align-items: flex-end;
}

.btn--green {
    background: #8bc466;
}

.btn--green:hover {
    background: #9ccd7d;
}

.btn--green:active {
    background: #7bbc50;
}

.btn--blue {
    background: #4b8dcb;
}

.btn--blue:hover {
    background: #669ed3;
}

.btn--blue:active {
    background: #387fc2;
}

.btn--darkblue {
    background: #366dbe;
}

.btn--darkblue:hover {
    background: #4b8dcb;
}

.btn--darkblue:active {
    background: #366dbe;
}

.btn--grey {
    background: #bfbfbf;
}

.btn--grey:hover {
    background: #c9c9c9;
}

.btn--grey:active {
    background: #acacac;
}

.btn--grey.disabled,
.btn--grey.disabled:hover,
.btn--grey.disabled:focus,
.btn--grey.disabled:active {
    background: #aaa;
    cursor: default;
    outline: none;
    border: inherit;
    opacity: .5;
}

.btn--inverse {
    background: #acacac;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn--white {
    background-color: #ffffff;
    border: 2px solid #acacac;
    color: #333645;
}

.btn--white:hover {
    border-color: #4c5067;
}

.btn--darkgrey {
    color: #333645;
    background: #bfbfbf;
}

.btn--darkgrey:hover {
    color: #333645;
    background: #c9c9c9;
}

.btn--darkgrey:active {
    color: #333645;
    background: #acacac;
}

.btn--yellow {
    background: #edcd2c;
}

.btn--yellow:hover {
    background: #f0d54c;
}

.btn--yellow:active {
    background: #e9c614;
}

.btn--red {
    background: #cc2327;
}

.btn--red:hover {
    background: #dd3a3e;
}

.btn--red:active {
    background: #b82023;
}

.btn--border {
    background: none;
    border: 2px solid #333645;
    color: #333645;
    font-weight: 400;
}

.btn--border:hover {
    border-color: #4c5067;
}

.btn--border:active {
    border-color: #2e313e;
}

.btn--small-round {
    border-radius: 10px;
}

.btn--remove {
    cursor: pointer;
    display: block;
    outline: none;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    padding: 0 0.1em;
    margin: 0;
    -ms-transform: scaleY(0.7) translateY(-0.1em);
    transform: scaleY(0.7) translateY(-0.1em);
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.btn--remove:hover,
.btn--remove:focus-within {
    color: #f00;
}

.btn--small {
    font-size: 0.85em;
    height: 28px;
    padding: 0 1em;
}

.btn--small.btn--small-round {
    border-radius: 8px;
}

.btn--icon {
    padding-right: 0;
}

.btn--icon svg,
.btn--icon img {
    display: block;
    fill: #333645;
    width: 25px;
    height: 80%;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 0.5em;
}

.btn--icon:hover {
    background: #669ed3;
    border-color: #669ed3;
    color: #fff;
}

.btn--icon:hover svg {
    fill: #fff;
}

.btn--icon:active {
    background: #387fc2;
    border-color: #387fc2;
    color: #fff;
}

.btn--icon:active svg {
    fill: #fff;
}

.btn--icon.active {
    background: #4b8dcb;
    border-color: #4b8dcb;
    color: #fff;
}

.btn--icon.active svg {
    fill: #fff;
}

/*.select,
.input,
.textarea {
    display: block;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    background-color: #fff;
    border: 2px solid #bfbfbf;
    border-radius: 16px;
    outline: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 36px;
    padding: 0 0.5em;
    margin: 0;
}*/

.select--dark+.CaptionCont {
    border-color: #333645;
}

.select--dark+.CaptionCont>label {
    background: #333645;
}

.select--dark~.optWrapper {
    border-color: #333645;
}

.yes-no-box__fields {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.yes-no-box__fields:before {
    position: absolute;
    display: block;
    content: '';
    background: #fff;
    border: 2px solid #bfbfbf;
    border-radius: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.yes-no-box__radio {
    position: relative;
    width: 10%;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.yes-no-box__radio:first-child .yes-no-box__radio__btn {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.yes-no-box__radio:last-child .yes-no-box__radio__btn {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.yes-no-box__radio__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    text-align: center;
    font-weight: 300;
    min-width: 35px;
    height: 36px;
    padding: 0;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.yes-no-box__radio input:checked~.yes-no-box__radio__btn {
    background: #333645;
    color: #fff;
}

.input-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    height: 36px;
    padding: 0 0.5em;
}

span.required {
    color: #f00;
}

.table {
    border-collapse: collapse;
    border: none;
    font-weight: inherit;
    width: 100%;
    min-width: 750px;
}

.table--search2 {
    min-width: 1100px;
}

.table--search2 td:not(:last-child) {
    min-width: 140px;
}

.table th {
    text-align: right;
    font-weight: inherit;
}

.table td:first-child .table__td__inner {
    border-right-width: 2px;
    border-radius: 0 12px 12px 0;
}

.table td:last-child .table__td__inner {
    border-left-width: 2px;
    border-radius: 12px 0 0 12px;
}

/*.table__th__inner {*/
/*    padding: 0 10px 6px;*/
/*}*/

/*.table__td__inner {*/
/*    position: relative;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-box-direction: normal;*/
/*    -ms-flex-direction: column;*/
/*    flex-direction: column;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    border: 0 solid #e5e5e5;*/
/*    border-top-width: 2px;*/
/*    border-bottom-width: 2px;*/
/*    width: 100%;*/
/*    min-height: 78px;*/
/*    padding: 10px;*/
/*    -webkit-transition: 0.3s ease;*/
/*    -o-transition: 0.3s ease;*/
/*    transition: 0.3s ease;*/
/*}*/

/*.table__td__inner__row {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*}*/

/*.table__td__checkbox-date {*/
/*    color: #fff;*/
/*    min-width: 600px;*/
/*}*/

/*.table__td__checkbox-date>span {*/
/*    margin-right: 1.5em;*/
/*}*/

/*.table__td__hovered-dates {*/
/*    text-align: left;*/
/*    white-space: nowrap;*/
/*    color: #fff;*/
/*    margin-left: 1.5em;*/
/*}*/

/*.table .js-thead .table__th__inner {*/
/*    display: none;*/
/*}*/

/*.table tbody:not(:last-child):after {*/
/*    content: '';*/
/*    display: block;*/
/*    height: 10px;*/
/*    width: 100%;*/
/*    pointer-events: none;*/
/*}*/

/*.table tbody:not(:hover):not(:focus-within) .hover-show,*/
/*.table tbody:hover .hover-hide,*/
/*.table tbody:focus-within .hover-hide {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

/*.table tbody .hover-hide,*/
/*.table tbody .hover-show {*/
/*    -webkit-transition: 0.3s ease;*/
/*    -o-transition: 0.3s ease;*/
/*    transition: 0.3s ease;*/
/*}*/

/*.table tbody .hover-show {*/
/*    position: absolute;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 10px;*/
/*    z-index: 2;*/
/*}*/

/*.table tbody .hover-show.right {*/
/*    left: auto;*/
/*    right: 20px;*/
/*}*/

/*.table tbody.canceled .table__td__inner {*/
/*    background: #cc2327;*/
/*    border-color: #cc2327;*/
/*    color: #fff;*/
/*}*/

/*.table tbody.completed .table__td__inner {*/
/*    background: #8bc466;*/
/*    border-color: #8bc466;*/
/*    color: #fff;*/
/*}*/

/*.table tbody:hover .table__td__inner,*/
/*.table tbody:focus-within .table__td__inner,*/
/*.table tbody.active .table__td__inner {*/
/*    background: #333645;*/
/*    border-color: #333645;*/
/*    color: #fff;*/
/*}*/

/*.table tbody.active .hover-hide {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

/*.table tbody.active .hover-show {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

.table .td--checkbox {
    width: 45px;
    min-width: 45px;
    max-width: 45px;
}

.table .td--checkbox .checkbox__container {
    margin: 1px auto 0;
}

.table-clear {
    border-collapse: collapse;
    border: none;
    font-weight: inherit;
    width: 100%;
    min-width: 750px;
}

.table-clear th {
    text-align: right;
    font-weight: inherit;
    width: 25%;
    padding: 0 10px;
}

.table-clear td {
    font-weight: 600;
    width: 25%;
    padding: 0 10px;
}

.scroll-scrollx_visible .scrollbar__content-inner {
    padding-bottom: 20px;
}

/*================================================*/
/*                    MAIN  	                  */
/*================================================*/
.section {
    width: 100%;
/*    padding: 45px 0;*/
    padding: 1.4em 0;
}

.section__wrapper {
    width: 100%;
/*    max-width: 1560px;*/
    max-width: 1649px;
    padding: 0 4rem;
    margin: 0 auto;
}

.section__wrapper--small {
    max-width: 860px;
}

.section__wrapper--full {
    max-width: 100%;
}

.section--all-suppliers {
    padding-bottom: 0;
}

.section--personal {
    padding: 40px 0 0;
}

.section--intro {
    padding-top: 70px;
}

.section--bidding_auction,
.section--bidding_procedure {
    padding-bottom: 0;
}

.section--bidding_auction_step,
.section--bidding_auction_step {
    padding-top: 30px;
}

.section--bidding_auction_step .section__inner,
.section--bidding_auction_step .section__inner {
    border-top: 2px solid #333645;
    max-width: 1045px;
    padding-top: 20px;
}

.section--bidding_auction_finish,
.section--bidding_procedure_finish {
    text-align: center;
}

.section--bidding_auction_finish .section__inner,
.section--bidding_procedure_finish .section__inner {
    border: none;
    padding-top: 0;
}

.section--bidding_auction_questions {
    padding-top: 0;
}

.section--bidding_auction_questions .section__inner {
    max-width: 1045px;
    padding-top: 1px;
}

.section--supplier .section__inner {
    padding-right: 52px;
    /*padding-right: 52;*/
}

.section--supplier .breadcrumbs {
    margin-bottom: -5px;
}

.section--supplier__header__text {
    font-size: 1.1em;
}

.h1 {
    font-size: 3.1rem;
    font-weight: 700;
}

.h1--inline {
    display: inline-block;
}

.all-suppliers {
    padding-right: 10px;
}

.all-suppliers .breadcrumbs {
    margin-right: 42px;
    margin-bottom: -5px;
}

.all-suppliers__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 3.1rem;
    padding: 0 30px;
    margin-bottom: 0.1em;
}

.all-suppliers__title .h1 {
    margin-right: 0.5rem;
    margin-left: 0.5em;
}

/*.all-suppliers__title .btn {
    font-size: 1.05rem;
    margin: 1.15em 0;
}*/

/*.all-suppliers__search {
    font-size: 1.1em;
    font-weight: 300;
    padding: 0 20px;
}*/

/*.all-suppliers__search--two {
    padding: 0 50px;
}*/

/*.all-suppliers__search--bidding {
    padding: 0 32px;
}*/

/*
.all-suppliers__search__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
*/

/*.all-suppliers__search__data__title {
    font-weight: 600;
    padding-right: 0.5em;
    margin-bottom: 0.25em;
}*/

/*
.all-suppliers__search__field-container {
    padding: 0 10px;
}
*/

/*
@media (min-width: 993px) {
    .all-suppliers__search__field-container.flex-grow {
        max-width: calc(25% - 89px);
        min-width: 200px;
    }
}
*/

/*
.all-suppliers__search__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}*/

.all-suppliers__search__buttons [type="submit"] {
    padding: 0 1.5em;
}

.all-suppliers__results {
    font-weight: 300;
}

.all-suppliers__results__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #333645;
    border-radius: 12px 12px 0 0;
    color: #fff;
    padding: 15px 30px;
}

.all-suppliers__results__header__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}



/*.all-suppliers__results__header__select-all {
    text-decoration: underline;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9em;
    font-weight: 400;
    margin-left: 1em;
}*/

/*.modal {*/
/*  background: #fbfeff;*/
/*  border-radius: 28px;*/
/*  font-size: 1rem;*/
/*  font-weight: 300;*/
/*  max-width: 700px;*/
/*}*/
/*.modal.remodal-is-opened{*/
/*  display: inline-block !important;*/
/*}*/
/*.modal--verification {
    max-width: 400px;
}*/


/*.modal__close {*/
/*    position: absolute;*/
/*    display: block;*/
/*    font-size: 36px;*/
/*    font-weight: 400;*/
/*    top: 10px;*/
/*    left: 18px;*/
/*    -ms-transform: scaleY(0.7);*/
/*    transform: scaleY(0.7);*/
/*    z-index: 99;*/
/*}*/

/*
.modal__wrapper {
    padding: 10px 15px 25px;
}
*/


.modal__back.hidden {
    display: none;
}


.modal__subtitle {
    font-size: 1.1em;
}

.modal__form {
    text-align: right;
    max-width: 490px;
    margin: 20px auto 0;
}

.modal__form .fieldbox {
    margin-bottom: 15px;
}

.modal__form .button-box {
    text-align: left;
    margin-top: 25px;
}

.modal--auction {
    max-width: 1600px;
}

.modal--auction__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 23px;
    margin-bottom: 23px;
}

.modal--auction__header__title {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: flex-start;
}

.modal--auction__header__title--text {
    font-size: 20px;
    font-weight: 700;
}


.modal--auction__top_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px -5px 10px;
}

.modal--auction__top_buttons__wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .modal--auction__top_buttons__wrapper {
        justify-content: center;
    }
}

.modal--auction__top_buttons--title {
    font-size: 20px;
    font-weight: 700;
}

.modal--auction__top_button--green {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #27AE60;
    box-shadow: 0 7px 10px 0 #27AE6026;
    border-radius: 14px;
    color: #27AE60;
    background-color: transparent;
    transition: all 0.2s ease;
}

.modal--auction__top_button--green g path,
.modal--auction__top_button--green circle {
    transition: all 0.2s ease;
}

.modal--auction__top_button--green:hover {
    color: #ffffff;
    background-color: #27AE60;
}

.modal--auction__top_button--green:hover circle {
    fill: #fff !important;
}

.modal--auction__top_button--green:hover g path {
    stroke: #fff !important;
}


.modal--auction__top_button--yellow {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 7px 10px 0 #EECD23;
    border: 1px solid #EECD23;
    border-radius: 14px;
    color: #EECD23;
    background-color: transparent;
    transition: all 0.2s ease;
}


.modal--auction__top_button--yellow g path,
.modal--auction__top_button--yellow circle {
    transition: all 0.2s ease;
}

.modal--auction__top_button--yellow.active,
.modal--auction__top_button--yellow:hover {
    color: #ffffff;
    background-color: #EECD23;
}

.modal--auction__top_button--yellow.active circle,
.modal--auction__top_button--yellow:hover circle {
    fill: #fff !important;
}

.modal--auction__top_button--yellow.active g path,
.modal--auction__top_button--yellow:hover g path {
    stroke: #fff !important;
}

.modal--auction__top_button--gray {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 7px 10px 0 #838383;
    border: 1px solid #838383;
    border-radius: 14px;

        color: #838383;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
}

.modal--auction__top_button--gray g path{
    transition: all 0.2s ease;
    stroke: #838383 !important;
}

.modal--auction__top_button--gray circle {
    transition: all 0.2s ease;
    fill: #838383 !important;
}

.modal--auction__top_button--gray.active,
.modal--auction__top_button--gray:hover {
    color: #FFFFFF;
    background-color: #838383;
}

.modal--auction__top_button--gray.active circle,
.modal--auction__top_button--gray:hover circle {
    fill: #FFFFFF !important;
}

.modal--auction__top_button--gray.active g path,
.modal--auction__top_button--gray:hover g path {
    stroke: #838383 !important;
}


/*.modal--auction__top_buttons > * {*/
/*    margin: 0 5px 5px;*/
/*}*/

.modal--auction .all-suppliers__search,
.modal--procedure .all-suppliers__search {
    text-align: right;
}

.modal--bidder {
    /* max-width: 900px; */
}

.modal--bidder .modal__inner {
    padding: 0 15px;
}

.modal--bidder__text {
    /* max-width: 700px; */
    margin: 10px auto 20px;
}

@media (min-width: 992px) {
    .modal--bidder__form1__field-container {
        /* max-width: 250px; */
    }
}

.modal--bidder__end_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -5px;
}

.modal--bidder__end_buttons>* {
    margin: 0 5px;
}

.personal {
    text-align: center;
    padding-right: 20px;
}

.personal__header {
    font-size: 1.3em;
    line-height: 1.1;
}

.personal__header__image {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
}

.personal__header__image img {
    border-radius: 50%;
}

.personal__header__name {
    font-weight: 700;
}

.personal-information {
    font-size: 1.1em;
    font-weight: 300;
    padding-right: 20px;
}

.personal-information__title {
    font-size: 2em;
    font-weight: 700;
}

.personal-information__text {
    margin-bottom: 20px;
}

.personal-information__text strong {
    font-weight: 600;
}

.personal-information__panel {
    padding: 0 30px;
}

.personal-information__panel__caption {
    font-weight: 600;
    padding: 0 10px;
    margin-bottom: 5px;
}

.personal-information__panel table {
    margin-bottom: 30px;
}

.personal-information__panel__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.personal-information__panel__footer__title {
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1em;
}

.panels__caption {
    font-weight: 600;
    padding-right: 1em;
    margin-bottom: 0.66em;
}

.panels__caption+.panels__note {
    margin-top: -0.66em;
}

.panels__note {
    color: #ed1f24;
    font-weight: 600;
    padding-right: 1em;
    margin-bottom: 0.66em;
}

.panel {
  /*  border: 2px solid #bfbfbf;*/
/*    border-radius: 24px;*/
    /*font-size: 1rem;*/
    /*margin-bottom: 15px;*/
}

.panel__head {
    box-shadow: 0 5px 16px 0 #080F341A;
    display: block;
    cursor: pointer;
    color: inherit;
    font-size: 1.5em;
    font-weight: 700;
    padding: 4px 15px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.panel__head:hover,
.panel__head:active {
    color: inherit;
}

.panel__head:before {
    display: inline-block;
    text-align: center;
    content: "+";
    width: 0.6em;
    min-width: 0.6em;
    margin-left: 0.15em;
}

.panel__head--validity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.panel__head__text {
    margin: 0 0 0 auto;
}

.panel__head__validation {
    font-size: 0.73em;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 1em;
}

.panel__head--choose {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.panel__head__counting {
    position: relative;
    font-size: 0.73em;
    font-weight: 400;
    white-space: nowrap;
    top: -0.2em;
    margin-right: 1em;
}

.panel__head--removable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.panel__head__remove {
    margin-right: 0.5em;
    height: 1.25rem;
    width: 1.25rem;
    line-height: 100%;
}

.panel__head--auction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.panel__head--auction:after {
    display: block;
    content: '';
    border: 5px solid #333645;
    border-top: none;
    border-right: none;
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: auto;
    margin-left: 0;
    -ms-transform: translateY(-2px) rotate(-45deg);
    transform: translateY(-2px) rotate(-45deg);
}

.panel__head--auction.with-btn:after {
    margin-right: 0;
}

.panel__head--auction.with-btn .btn {
    flex-shrink: 0;
    font-size: 26px;
    padding: 0 0.66em;
    margin: 0 auto 0 5px;
}

/*.panel__body {*/
/*    display: none;*/
/*    -ms-overflow-style: none;*/
/*    overflow: visible;*/
/*}*/

.panel__body__inner {
    border-top: 2px solid #bfbfbf;
    padding: 25px 0 20px;
}

.panel .scrollbar__inner {
    height: auto !important;
    max-height: none !important;
    margin-bottom: 0 !important;
}

.panel .scrollbar__inner>div {
    height: auto;
}

.panel .scrollbar__content {
    padding-right: 0 !important;
}

.panel .scrollbar__content-inner {
    padding-bottom: 0;
}

.panel .scroll-y {
    display: none !important;
}

.panel.active>.panel__head:before {
    content: "-";
}

.panel.active .panel__head--auction:after {
    -ms-transform: scaleY(-1) translateY(-6px) rotate(-45deg);
    transform: scaleY(-1) translateY(-6px) rotate(-45deg);
}

.panel.error .panel__head__validation:before {
    content: attr(data-text-error);
    color: #ec2327;
}

.panel.success .panel__head__validation:before {
    content: attr(data-text-success);
    color: #8bc466;
}

.register {
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto;
}

.register--vendor {
    margin: 0;
}

.register__fields-section+.register__fields-section {
    margin-top: 30px;
}

.register__caption {
    font-weight: 600;
    padding: 0 10px;
    margin-bottom: 0.5em;
}

.register__caption__note {
    font-weight: 400;
}

.register__caption__note strong {
    font-weight: 600;
}

.register__text {
    font-weight: 300;
    padding: 0 10px;
}

.register__fields-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin: 0 -10px;*/
}

.register__fields-row.flex-nowrap {
    flex-wrap: nowrap;
}

.register__fields-row.flex-wrap {
    flex-wrap: wrap;
}

.register__fields-row.register__fields-row--align_top {
    align-items: flex-start;
}

.register__fields-row.register__fields-row--align_bottom {
    align-items: flex-end;
}

.register__field-container {
    width: 20%;
    padding: 0 10px;
}

.register__field-container.register__field-container--bigger {
    width: 30%;
}

.register__field-container--double-width {
    width: 40%;
}

/*@media screen and (max-width: 1439px) {*/
/*    .register__field-container.register__field-container--double-width {*/
/*        width: 40%;*/
/*    }*/
/*}*/

.register__field-container--width-auto {
    width: auto;
}

.register__field-container__title {
    font-weight: 600;
    margin-right: 0.5em;
    margin-bottom: 0.2em;
}

.register__field-container__double-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.fieldbox {
    font-size: 1.1rem;
    margin-bottom: 25px;
}


.fieldbox__label {
    display: inline-block;
    font-weight: 300;
    margin-right: 0.5em;
    margin-bottom: 0.2em;
}

.fieldbox__label_value {
    display: block;
    font-weight: 300;
    margin-bottom: 0.2em;
}

/* not used */
.fieldbox__tip {
    text-align: center;
    font-weight: 300;
    height: 1.2em;
    margin-bottom: -1.2em;
}

@media (min-width: 991px) {
    .register__field-container__double-fields .fieldbox {
        width: calc(50% - 10px);
    }
}

.register__field-container__half-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* margin: 0 -5px; */
}

@media (min-width: 992px) {
    .register__field-container__half-fields {

        margin: 0 -5px;
    }

    .register__field-container__half-fields .fieldbox {
        width: 50%;
    }
}

.register__field-container__half-fields .fieldbox {
    position: relative;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

/* .register__field-container__half-fields .fieldbox:not(:last-child) {
    padding-left: 5px;
} */

@media (max-width: 991px) {
    .register__field-container__half-fields .fieldbox:last-child {
        padding-right: 5px;
    }
}

.register__field-container__half-fields .fieldbox {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 15px;

}

.register__field-container__half-fields .fieldbox--estimate {
    width: 150px;
}

.register__field-container__half-fields .fieldbox--vat {
    width: 100px;
}

.register__field-container__half-fields .fieldbox--symbol {
    width: 80px;
    -webkit-box-flex: 0;
    flex-grow: 0;
}

/*.register__field-container__half-fields .fieldbox .a_field_hint_content {*/
/*    left: 15px;*/
/*}*/

.register__btn-container {
    padding: 0 10px;
}

.register__buttons-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1rem;
    margin: 0 -10px;
}

.register__buttons-row [type="submit"] {
    font-weight: 700;
    min-width: 140px;
}

.register__uploads {
    margin: 10px 0;
}

.register__uploads__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 12px;
}

.register__uploads__item__btn,
.register__uploads__item__label {
    margin-bottom: 12px;
}

.register__search {
    font-weight: 300;
    padding: 0 20px;
}

.register__search__caption {
    font-weight: 600;
    padding: 0 0.5em;
}

.register__search__text {
    padding: 0 0.5em;
}

.register__search__form {
    /*max-width: 500px;*/
    /*margin-top: 60px;*/
}

.register__editable {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 8px;
}

.register__editable__inner {
    position: relative;
    padding-left: 3em;
}

.register__editable__inner--static {
    padding: 0;
}

.register__editable__caption {
    margin-bottom: 0.1em;
}

.register__editable__text {
    font-weight: 300;
}

.register__editable__remove {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    top: 4px;
    left: 7px;
}

/*.register__editable__btn {*/
/*    position: absolute;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    height: 22px;*/
/*    padding: 0 0.5em;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*}*/

.register__add {
    margin-bottom: 10px;
}

.register__add__btn {
    padding: 0 1.25em;
}

/*
.register__offset-top {
    margin-top: 25px;
}
*/

.register__offset-bottom {
    margin-top: -25px;
}

/*.register__offset-bottom-1rem {
    margin-top: -1rem;
}*/
/*
.register__download {
    padding-top: 3rem;
    font-size: 1.35rem;
}*/
/*
.register__download__form {
    font-size: 1.1rem;
    min-height: 6em;
}*/

/*.breadcrumbs {
  font-size: 1.1rem;
  font-weight: 300;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li:not(:last-child):after {
  content: ">";
  margin-right: 0.25em;
}*/
.vendor {
    font-size: 1.1rem;
    max-width: 1400px;
}

.vendor__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    /*-ms-flex-wrap: wrap;*/
    /*flex-wrap: wrap;*/
}

@media screen and (max-width: 974px) {
    .vendor__top {
        flex-direction: column;
    }
}

.vendor__top__main {
    padding-right: 0.5rem;
    margin-bottom: 1.25em;
}

/*.vendor__top__title {*/
/*    line-height: 1;*/
/*    font-size: 3.1rem;*/
/*    !*font-weight: 700;*!*/
/*}*/

.vendor__top__select {
    min-width: 240px;
    max-width: 240px;
    margin: 0 auto 1.25em 0;
}

.vendor__top__select+.vendor__top__dots {
    margin-right: 20px;
    margin-top: 38px;
}

.vendor__top__dots {
    background: none;
    border: none;
    outline: none;
    padding: 0 10px;
    width: 30px;
    height: 18px;
    margin: 0;
}

.vendor__top__dots img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.vendor__table {
    margin: 0 -10px 0.75rem;
}

.vendor__table__caption {
    font-weight: 600;
    padding-right: 20px;
    margin-bottom: 0.5em;
}

.vendor__table th {
    font-weight: 300;
    white-space: nowrap;
}

.vendor__table th,
.vendor__table td {
    vertical-align: baseline;
    width: 20%;
}

.vendor__table th:first-child,
.vendor__table td:first-child {
    padding-right: 20px;
}

.vendor__table .fieldbox {
    font-weight: 400;
}

.vendor__table .scrollbar__inner {
    height: auto !important;
    max-height: none !important;
}

.vendor__table .scrollbar__inner>div {
    height: auto;
}

.vendor__table .scrollbar__content {
    padding-right: 0 !important;
}

.vendor__table .scroll-y {
    display: none !important;
}


.intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.intro__aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: -webkit-gradient(linear, left top, right top, from(#133c6c), color-stop(140%, #4a8dcb));
    background: -webkit-linear-gradient(left, #133c6c 0%, #4a8dcb 140%);
    background: -o-linear-gradient(left, #133c6c 0%, #4a8dcb 140%);
    background: linear-gradient(90deg, #133c6c 0%, #4a8dcb 140%);
    color: #fff;
    width: 49%;
    max-width: 800px;
    padding: 80px 70px 0.25em 100px;
}

.intro__aside>* {
    width: 100%;
}

.intro__aside__header {
    text-align: center;
    font-size: 1.8em;
    line-height: 1.1;
}

.intro__aside__header__image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 0.25em;
}

.intro__aside__header__image img {
    border-radius: 50%;
}

.intro__aside__title {
    font-weight: 700;
}

.intro__aside__text {
    text-align: justify;
    margin: 1em 0 60px;
}

.intro__aside__text p+p {
    margin-top: 1em;
}

.intro__aside__copyrights {
    text-align: center;
    margin-top: 60px;
}

.intro__main {
    position: relative;
    width: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    flex-grow: 1;
    z-index: 2;
}

.intro__main:after {
    position: absolute;
    display: block;
    content: '';
    background: #fff;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    pointer-events: none;
    z-index: -1;
}

.intro__main__header {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.33em;
}

.intro__main__header__title {
    font-weight: 700;
}

.intro__main__hello {
    text-align: center;
    color: #bfbfbf;
    margin-bottom: 1em;
}

.intro__tabs__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.intro__tabs__header .btn {
    font-size: 1.2em;
    padding-left: 0.5em;
    margin: 0.25em;
}

.intro__tab {
    padding-top: 1em;
}

.intro__tab__caption {
    font-size: 1.3em;
    font-weight: 700;
}

.intro__tab__text {
    margin-bottom: 1em;
}

.intro__tab__text p+p {
    margin-top: 1em;
}

.intro__tab__text ul li {
    padding-right: 0.75em;
}

.intro__login-form {
    width: 100%;
    max-width: 650px;
    margin: 40px auto 0;
}

.intro__login-form .input {
    text-align: center;
}

.intro__login-form .btn:not(.small-login-button) {
    width: 100%;
}

.intro__login-form .btn__container {
    position: relative;
    align-self: flex-end;
}

/*
.intro__login-form .fieldbox {
    margin-bottom: 0;
}
*/

/*
.intro__login-form .btn__container .register__forgot {
    position: absolute;
    color: #8e8e8e;
    left: 0;
    right: 0;
    !*bottom: -0.25em;*!
}
*/

/*.intro__or {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0.75em 0 1.25em;
}*/

/*.intro__get-verification-form,
.intro__sent-verification-form {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.intro__get-verification-form .fieldbox,
.intro__sent-verification-form .fieldbox {
    margin-bottom: 12px;
}

.intro__get-verification-form .input,
.intro__sent-verification-form .input {
    text-align: center;
}

.intro__sent-verification-form {
    margin-top: 30px;
}*/

/*.search__buttons2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 10px;
}*/

/*.bidding__search__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: left;
    margin-top: 10px;
}

.bidding__search__buttons .btn {
    width: 200px;
}*/

.bidding__panels {
    padding-right: 52px;
    margin-top: -3.5rem;
}

.bidding__panels__title {
    font-size: 2.4rem;
    font-weight: 700;
    padding-right: 10px;
    margin-bottom: 0.33em;
}

.bidding__panel {
    overflow: hidden;
    border-color: #e5e5e5;
    border-radius: 12px;
}

.bidding__panel.active .panel__head:after {
    -ms-transform: scaleY(-1) translateY(-6px) rotate(-45deg);
    transform: scaleY(-1) translateY(-6px) rotate(-45deg);
}

.bidding__panel__head:not(:hover) {
    background-color: #ffffff;
}

.bidding__panel__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.3em;
    font-weight: 600;
    min-height: 80px;
    padding-right: 30px;
}

.bidding__panel__head:before {
    content: none !important;
}

.bidding__panel__head:after {
    display: block;
    content: '';
    border: 5px solid #333645;
    border-top: none;
    border-right: none;
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 0.66em;
    -ms-transform: translateY(-2px) rotate(-45deg);
    transform: translateY(-2px) rotate(-45deg);
}

.bidding__panel__head__decoration {
    position: absolute;
    top: 0;
    bottom: -2px;
    right: 0;
    width: 16px;
}

.bidding__panel__head__submitted {
    text-align: left;
    padding-right: 0.5em;
}

.bidding__panel__body__inner {
    border-color: #e5e5e5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.bidding__panel__body__main {
    width: 10%;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.bidding__panel__body__text {
    font-size: 1.15em;
}

.bidding__panel__body__title {
    font-size: 1.25em;
    font-weight: 600;
    margin: 0.2em 0;
}

.bidding__panel__body ol {
    padding-right: 1em;
}

.bidding__panel__body__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    min-width: 375px;
    margin: 0 -8px;
}

.bidding__panel__body__buttons .btn {
    margin: 10px 8px 0;
}
/*

.bidding__field-container--service_name {
    max-width: 100%;
    min-width: 310px;
}

.bidding__field-container--amount {
    width: 85px;
}

.bidding__field-container--max_price_per_unit {
    width: 193px;
    min-width: 180px;
}

.bidding__field-container--bid_before_vat {
    width: 255px;
    min-width: 255px;
    flex-grow: 1;
    flex-shrink: 0;
}
*/

.bidding_procedure {
    font-size: 1.1rem;
    max-width: 1400px;
    padding-right: 80px;
    margin: 0 auto;
}

.bidding_auction__header,
.bidding_procedure__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: -30px;
}

.bidding_auction__header__title,
.bidding_auction__header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 15px;
}

.bidding_auction__header__avatar,
.bidding_auction__header__avatar {
    text-align: center;
    margin-bottom: -50px;
}

/*.bidding_auction__narrow {*/
/*    padding-right: 25px;*/
/*}*/

.bidding_auction__subtitle {
    font-size: 1.66rem;
    font-weight: 700;
    margin: 0.75em 0 0.5em;
}

.bidding_auction__subtitle-smaller {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.65em 0 0.35em;
}

.bidding_auction__subtitle.no_margin {
    margin: 0;
}

.bidding_tender__table_container table,
.bidding_auction__table_container table,
.bidding_procedure__table_container table {
    width: auto;
    min-width: 470px;
}

.bidding_auction__table_container table th:first-child,
.bidding_procedure__table_container table th:first-child,
.bidding_auction__table_container table td:first-child,
.bidding_procedure__table_container table td:first-child {
    padding-right: 0;
}

.bidding_auction__table_container table th:last-child,
.bidding_procedure__table_container table th:last-child,
.bidding_auction__table_container table td:last-child,
.bidding_procedure__table_container table td:last-child {
    padding-left: 0;
}

.bidding_auction__table_container table th,
.bidding_procedure__table_container table th,
.bidding_auction__table_container table td,
.bidding_procedure__table_container table td {
    width: auto;
}

.bidding_auction__schedules,
.bidding_procedure__schedules {
    margin-bottom: 1em;
}

.bidding_auction__schedules p,
.bidding_procedure__schedules p {
    line-height: 1.8;
}

.bidding_auction__schedules .btn,
.bidding_procedure__schedules .btn {
    font-size: 0.9em;
    font-weight: 700;
    height: 30px;
}

.bidding_auction__schedules__btn,
.bidding_procedure__schedules__btn {
    font-size: 1.1em;
}

.bidding_auction__uploads .register__uploads__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bidding_auction__uploads .register__uploads__item__label {
    margin-left: 1em;
}

/*
.bidding_auction__uploads .register__uploads__item .btn {
  margin-bottom: 12px;
}
*/


.bidding_auction__uploads__filename .input::-webkit-input-placeholder {
    color: #bfbfbf;
}

.bidding_auction__uploads__filename .input:-ms-input-placeholder {
    color: #bfbfbf;
}

.bidding_auction__uploads__filename .input::-moz-placeholder {
    color: #bfbfbf;
}

.bidding_auction_step__panels,
.bidding_auction_step__panels {
    margin: 40px 0 25px;
}

/* -------------------------------------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
.supplier__panels__title {
    font-size: 1.5em;
    margin: 0 0 0.66em;
}

.supplier__panels__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
}

.supplier__footer_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2em;
}

.page_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 1em 0;
}

.page_navigation.text-center {
    justify-content: center;
}

.page_navigation--auction {
    margin-top: 0;
}

.page_navigation.page_navigation--auction a {
    flex-grow: 1;
}

.page_navigation.page_navigation--auction a.hidden {
    display: none;
}

.page_navigation a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #bfbfbf;
    font-size: 23px;
    height: 56px;
    padding: 0 0.75em 0 1.5em;
    margin: 0 -1px;
}

.page_navigation a:first-child {
    border-radius: 0 23px 23px 0;
    padding-right: 1em;
}

.page_navigation a:last-child {
    border-radius: 23px 0 0 23px;
}

.page_navigation a svg {
    display: block;
    fill: #333645;
    width: auto;
    height: 36px;
    margin-left: 0.75em;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.page_navigation a.active {
    background: #4b8dcb;
    color: #fff;
}

.page_navigation a.active svg {
    fill: #fff;
}

.page_navigation a:not(.active):hover svg {
    fill: #4b8dcb;
}

.tender,
.procedure {
    font-size: 1.1rem;
    max-width: 1440px;
}

.auction__narrow {
    padding: 0 15px;
}

.auction__panel__rows--padding_left,
.procedure__panel__rows--padding_left {
    padding-left: 20px;
}

.auction__panel__row,
.procedure__panel__row {
    position: relative;
}

.auction__panel__row:not(:last-child),
.procedure__panel__row:not(:last-child) {
    margin-bottom: 20px;
}

.auction__panel__simple_row {
    margin-bottom: 20px;
}

.auction__panel__row:not(:last-child):after,
.procedure__panel__row:not(:last-child):after {
    position: absolute;
    display: block;
    content: '';
    top: 100%;
    right: 0;
    width: 100%;
    height: 1px;
    background: #bfbfbf;
}

.auction__panel__row--3fields:not(:last-child):after,
.procedure__panel__row--3fields:not(:last-child):after {
    width: calc(60% - 5px);
}

.auction__panel__row--4fields:not(:last-child):after,
.procedure__panel__row--4fields:not(:last-child):after {
    width: calc(80% - 5px);
}

/*.auction__panel__row--upload:not(:last-child):after,*/
/*.procedure__panel__row--upload:not(:last-child):after {*/
/*    width: calc(60% + 153px);*/
/*}*/

.auction__panel__row--upload--file {
    width: 150px;
}

/*.auction__panel__row__remove,
.procedure__panel__row__remove {
  width: 14px;
  margin-left: -14px;
  margin-bottom: 32px;
}*/

/*.auction__editable,*/
/*.procedure__editable {*/
/*    border: 2px solid #e5e5e5;*/
/*    border-radius: 16px;*/
/*    padding: 2px 8px;*/
/*    margin-bottom: 8px;*/
/*}*/

.auction__editable+.register__add__btn,
.procedure__editable+.register__add__btn {
    margin-top: 10px;
}

/*.auction__editable__header,*/
/*.procedure__editable__header {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*}*/

/*.auction__editable__title,*/
/*.procedure__editable__title {*/
/*    font-size: 16px;*/
/*}*/

/*.auction__editable__actions,*/
/*.procedure__editable__actions {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    align-self: flex-start;*/
/*}*/

/*.auction__editable__actions > *,*/
/*.procedure__editable__actions > * {*/
/*    margin-right: 10px;*/
/*}*/

/*.auction__editable__btn,*/
/*.procedure__editable__btn {*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    height: 22px;*/
/*    padding: 0 0.5em;*/
/*}*/

.auction__editable__body,
.procedure__editable__body {
    /*margin-top: 0.33em;*/
    /*margin-bottom: 0.33em;*/
    padding-left: 75px;
    /*white-space: pre-line;*/
}

.auction__textarea,
.procedure__textarea {
    min-height: 150px;
}

/*.auction__textarea__title,*/
/*.procedure__textarea__title {*/
/*    font-size: 30px;*/
/*    font-weight: 700;*/
/*    margin-right: 39px;*/
/*}*/

.auction__footer1,
.procedure__footer1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}

.auction__footer1__end,
.procedure__footer1__end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

/*.auction__footer1__end .btn,*/
/*.procedure__footer1__end .btn {*/
/*    margin-right: 20px;*/
/*}*/

.procedure .register__add__btn+.register__fields-row {
    margin-top: 10px;
}

.auction__parts,
.procedure__parts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.auction__part,
.procedure__part {
    text-align: center;
    width: 25%;
    margin-bottom: 20px;
}

.auction__part__body,
.procedure__part__body {
    font-size: 2rem;
    font-weight: 300;
}

.auction__step1__buttons_end,
.procedure__step1__buttons_end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.auction__step4__buttons_end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.auction__step3__mini-headline,
.procedure__step3__mini-headline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2em;
}

.auction__step3__cols,
.procedure__step3__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.auction__step3__col--checkboxes,
.procedure__step3__col--checkboxes {
    width: 35%;
    padding-right: 24px;
}

.auction__step3__col--bigger,
.procedure__step3__col--bigger {
    position: relative;
    padding-top: 20px;
    width: calc(65% - 15px);
}

/*.procedure__step3__status_container.register__field-container {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 10px;*/
/*  width: 300px;*/
/*  z-index: 2;*/
/*}*/
/*.procedure__step3__status_container.register__field-container .fieldbox {*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-box-align: center;*/
/*  -ms-flex-align: center;*/
/*  align-items: center;*/
/*}*/
/*.procedure__step3__status_container.register__field-container .fieldbox__label {*/
/*  font-weight: 400;*/
/*  margin: 0 0 0 0.75em;*/
/*}*/
.tender__reload,
.procedure__reload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: -20px 0 1em;
}

/*.report_content_copy_button {*/
/*    flex-shrink: 0;*/
/*    margin-right: 10px;*/
/*}*/

/*.report-save-button span,*/
/*.report_content_copy_button span,*/
/*.report-edit-button span {*/
/*    width: 1.1em;*/
/*    height: 1.1em;*/
/*    margin-left: 0.5em;*/
/*}*/

/*.report-save-button svg,*/
/*.report_content_copy_button svg,*/
/*.report-edit-button svg {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

.auction__doc {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 13px 13px 25px;
    margin-bottom: 20px;
}

.tender__doc__title,
.procedure__doc__title {
    text-align: center;
    font-weight: 600;
    font-size: 1.5em;
    margin: 0.5em 0 1em;
}

.tender__step5__head,
.procedure__step5__head {
    margin: 30px 0 20px;
}

.set_users_to_confirm_opening,
.tender__btn_envelope,
.procedure__btn_envelope {
    font-size: 1.2em;
}

.auction__tablebox__title {
    font-size: 1.55em;
    padding-right: 330px;
    margin-bottom: 0.1em;
}

.raw-points .auction__tablebox__title {
    padding-right: 0;
}

.tender__table,
.procedure__table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 330px;
    border-radius: 12px;
    overflow: auto;
    scrollbar-color: #333645 #fff;
}

.procedure__table::-webkit-scrollbar {
    height: 21px;
}

.procedure__table::-webkit-scrollbar-track {
    background-color: #333645;
    border-radius: 10px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
}

.procedure__table::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 11px;
    border: 5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
}

.procedure__table::-webkit-scrollbar-corner {
    background: transparent;
}

.auction__table__container {
    position: relative;
    margin-bottom: 20px;
}

.auction__table__container:after {
    position: absolute;
    display: block;
    content: '';
    /*border: 2px solid #bfbfbf;*/
    /* problem with border after main price scoring table */
    border-radius: 10px;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}


.auction__table__input {
    border-width: 1px;
    border-radius: 5px;
    max-width: 120px;
}



.auction__step5__end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -15px;
}

.auction__step5__end>* {
    margin: 0 15px 15px;
}

.procedure__updated {
    padding-right: 0.5em;
}

/*================================================*/
/*                    ASIDE		                  */
/*================================================*/



/*================================================*/
/*                    FOOTER	                  */
/*================================================*/
.footer {
    padding: 0.25em 0;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__copyrights {
    text-align: center;
}

.footer__copyrights.fullwidth {
    width: 100%;
}

.footer__copyrights:not(.fullwidth) {
    margin: 0 10px;
}

.footer__links,
.footer__support {
    white-space: nowrap;
    /*margin-left: 65px;*/ /* spase for accessibility button */

}

/*================================================*/
/*                    MEDIA		                  */
/*================================================*/
@media screen and (max-width: 1439px) {
/*    .footer__inner {
        display: block;
        text-align: center;
    }*/

    .footer__copyrights:not(.fullwidth) {
        margin: 8px 0;
    }

    .register__field-container {
        width: 25%;
    }

    .register__field-container--width-auto {
        width: auto;
    }

    .bidding_procedure {
        padding-right: 10px;
    }

    .bidding_procedure__header {
        display: block;
        margin-right: 0;
    }

    .bidding_auction__header__title {
        text-align: center;
        line-height: 1;
        padding-top: 0;
        margin-bottom: 0.5em;
    }

    .bidding_auction__header__avatar {
        margin-bottom: 15px;
    }

    .auction__panel__rows,
    .procedure__panel__rows {
        padding-left: 15px;
    }

    .procedure__panel__row--3fields:not(:last-child):after {
        width: 100%;
    }

    .procedure__panel__row--4fields:not(:last-child):after {
        width: 100%;
    }

    .procedure__panel__row--upload:not(:last-child):after {
        width: calc(50% + 153px);
    }
}

@media screen and (min-width: 992px) {
    .show-tablet {
        display: none !important;
    }
}

@media screen and (max-width: 991px) {
    .hide-tablet {
        display: none !important;
    }



    .all-suppliers,
    .personal,
    .personal-information {
        padding-right: 0;
    }

    .register__field-container {
        width: 33.33%;
    }

    .register__field-container--width-auto {
        width: auto;
    }

    .intro {
        display: block;
    }

    .intro__aside {
        display: block;
        background: none;
        color: inherit;
        width: 100%;
        max-width: 100%;
        padding: 60px 30px;
    }

    .intro__aside__header__image {
        background: #333645 !important;
    }

    .intro__aside__text {
        margin-bottom: 0;
    }

    .intro__main {
        position: static;
        width: 100%;
        display: block;
    }

    .intro__main:after {
        content: none;
    }

    .all-suppliers__search--two {
        padding: 0 20px;
    }

    .bidding_procedure {
        padding-right: 0;
    }

    .procedure__panel__row--upload:not(:last-child):after {
        width: calc(66.66% + 153px);
    }

    .procedure__part {
        width: 50%;
    }

    .auction__step3__cols,
    .procedure__step3__cols {
        display: block;
    }

    .auction__step3__col,
    .procedure__step3__col {
        width: 100%;
        padding: 0;
    }

    .auction__step3__col--bigger,
    .procedure__step3__col--bigger {
        margin-top: 30px;
    }

    .procedure__step3__status_container.register__field-container {
        position: static;
        width: 100%;
        max-width: 400px;
    }

    .auction__tablebox__title {
        padding-right: 10px;
    }
}

@media screen and (min-width: 768px) {
    .show-mob {
        display: none !important;
    }

    .vendor__table .scroll-wrapper,
    .vendor__table .scroll-wrapper>.scroll-content {
        overflow: visible !important;
    }
}

@media screen and (max-width: 767px) {
    .hide-mob {
        display: none !important;
    }

    .section__wrapper {
        padding: 0 15px;
    }

    .section--supplier .section__inner {
        padding-right: 0;
    }

    .personal-information__panel {
        padding: 0;
    }

    .personal-information__title {
        font-size: 1.75em;
    }

    .personal__header__image {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .panel__head {
        font-size: 1.2em;
    }

    .panel__head--auction.with-btn {
        position: relative;
        padding-bottom: 45px;
    }

    .panel__head--auction.with-btn:after {
        margin-right: auto;
    }

    .panel__head--auction.with-btn .btn {
        position: absolute;
        bottom: 4px;
        left: -10px;
        font-size: 20px;
    }

    .register__field-container {
        width: 50%;
    }

    .register__field-container--width-auto {
        width: auto;
    }

    .register__field-container__half-fields {
        display: contents;
        width: 100%;
        margin: 0;
    }

    .register__field-container__half-fields .fieldbox {
        padding: 0 10px;
    }

    .register__field-container__half-fields .fieldbox:not(:last-child) {
        padding-left: 10px;
    }

    /* .register__field-container__half-fields .fieldbox:last-child {
        padding-right: 10px;
    } */

    .register__field-container__half-fields .fieldbox--estimate {
        width: 50%;
    }

    .register__field-container__half-fields .fieldbox--vat {
        width: 50%;
    }

    .register__field-container__half-fields .fieldbox--symbol {
        width: 50%;
    }

    /*.register__field-container__half-fields .fieldbox .a_field_hint_content {*/
    /*    left: 25px;*/
    /*}*/

    .bidding__panels {
        padding-right: 0;
        margin-top: 0;
    }

    .bidding__panel__head {
        display: block;
        min-height: 0;
        padding: 0.5em 30px 0.5em 60px;
    }

    .bidding__panel__head:after {
        position: absolute;
        left: 15px;
        top: calc(50% - 9px);
    }

    .bidding__panel__head__submitted {
        text-align: inherit;
        padding-right: 0;
        margin-top: 0.33em;
    }

    .bidding__panel__body__inner {
        display: block;
    }

    .bidding__panel__body__main {
        width: 100%;
    }

    .bidding__panel__body__buttons {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: auto;
        min-width: 0;
        margin-top: 10px;
    }

    .bidding_auction__header__title,
    .bidding_auction__header__title {
        font-size: 2.5rem;
    }

    .bidding_auction__table_container table,
    .bidding_procedure__table_container table {
        min-width: 0;
    }

    .bidding_auction__table_container table th,
    .bidding_procedure__table_container table th {
        white-space: nowrap;
    }

    .vendor__top__select {
        margin-right: 0;
    }

    .tender__narrow {
        padding: 0;
    }

    .procedure__panel__row--upload:not(:last-child):after {
        width: 100%;
    }

    .procedure__part__body {
        font-size: 1.5rem;
    }

    .tender__reload,
    .procedure__reload {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: -10px 0 1em;
    }

    .report_content_copy_button {
        margin-top: 15px;
    }

    /*.procedure__table {*/
    /*    font-size: 16px;*/
    /*    padding-right: 0;*/
    /*}*/

    /*.procedure__table__cell {*/
    /*    height: 40px;*/
    /*    padding: 5px;*/
    /*}*/

    /*.procedure__table__cell:first-child {*/
    /*    height: 60px;*/
    /*}*/

    /*.procedure__table__col {*/
    /*    min-width: 120px;*/
    /*}*/

    /*.procedure__table__col:first-child {*/
    /*    position: static;*/
    /*    border-radius: 0 10px 10px 0;*/
    /*    width: 235px;*/
    /*    min-width: 235px;*/
    /*}*/

    /*.procedure__table__col:first-child .procedure__table__cell {*/
    /*    border-left-width: 2px;*/
    /*}*/

    /*.procedure__table__col:first-child .cell_padding_right {*/
    /*    padding-right: 20px;*/
    /*}*/

    /*.procedure__table__col:nth-child(2) {*/
    /*    min-width: 120px;*/
    /*    max-width: 120px;*/
    /*}*/

    /*.procedure__table__bubbles .procedure__table__bubble {*/
    /*    font-size: 16px;*/
    /*    width: 20px;*/
    /*    height: 20px;*/
    /*}*/

    .auction__table__input {
        max-width: 100px;
    }

    .modal--bidder .modal__inner {
        padding: 0;
    }
}

@media screen and (min-width: 441px) {
    .xs-show {
        display: none !important;
    }
}

@media screen and (max-width: 440px) {
    html {
        font-size: 16px;
    }

    .h1 {
        font-size: 2.5rem;
    }

    .btn {
        height: 30px;
    }

    .btn--small {
        height: 26px;
    }

    .fieldbox {
        margin-bottom: 10px;
    }

    .fieldbox__label_value {
        text-align: inherit;
    }

    .input__value {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .section__wrapper {
        padding: 0 10px;
    }

    .section--personal {
        padding-top: 20px;
    }

    .section--intro {
        padding-top: 30px;
    }

    .all-suppliers .breadcrumbs {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .all-suppliers__title {
        font-size: 2.5rem;
        padding: 0 10px;
    }

    .all-suppliers__title .h1 {
        margin-right: 0;
    }

  /*  .all-suppliers__title .btn {
        margin: 0.75em 0;
    }*/

    .all-suppliers__search {
        padding: 0;
        margin: 0 -5px;
    }

/*    .all-suppliers__search__field-container {
        padding: 0 5px;
    }

    .all-suppliers__search__field-container.flex-grow {
        width: 50%;
        min-width: 50%;
        max-width: 50%;
    }*/

    /*
    .all-suppliers__search .SumoSelect>.optWrapper {
        max-width: calc(100vw - 20px);
    }
    */

    .all-suppliers__results__header {
        padding: 15px;
    }

    .all-suppliers__results__header__col {
        display: block;
    }



    .register__fields-row {
        display: block;
    }

    .register__field-container {
        width: 100%;
    }

    .register__field-container__half-fields {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .register__field-container__half-fields .fieldbox {
        width: 100%;
    }

    .register__buttons-row {
        margin-top: 20px;
    }

    .register__uploads__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .register__uploads__item__label {
        padding-right: 10px;
        margin-bottom: 3px;
    }

    .register__offset-bottom {
        margin-top: -20px;
    }

    .intro__aside {
        padding: 20px 10px;
    }

    .intro__aside__header {
        font-size: 1.3em;
    }

    .intro__aside__header__image {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .intro__main__header {
        font-size: 1.8em;
    }

    .intro__tabs__header .btn {
        font-size: 1em;
    }

/*    .intro__or {
        margin: 1.25em 0;
    }*/

    .intro__login-form .btn {
        width: auto;
    }

    .intro__login-form .btn__container {
        margin-top: 20px;
    }

/*    .intro__login-form .btn__container .register__forgot {
        position: static;
        margin-top: 5px;
    }*/

    .bidding__panels__title {
        font-size: 2rem;
    }

    .bidding__panel.active .panel__head:after {
        -ms-transform: scaleY(-1) translateY(-3px) rotate(-45deg);
        transform: scaleY(-1) translateY(-3px) rotate(-45deg);
    }

    .bidding__panel__head {
        font-size: 1.1em;
        padding-right: 20px;
        padding-left: 40px;
    }

    .bidding__panel__head:after {
        border-width: 3px;
        width: 12px;
        min-width: 12px;
        height: 12px;
        -ms-transform: translateY(-1px) rotate(-45deg);
        transform: translateY(-1px) rotate(-45deg);
    }

    .bidding__panel__head__decoration {
        width: 10px;
    }

    .bidding__panel__body {
        padding: 0 10px 5px;
    }

    .bidding__panel__body__buttons .btn {
        min-width: 145px;
    }

    .bidding_auction__narrow,
    .bidding_auction__narrow {
        padding-right: 10px;
    }

    .bidding_auction__uploads .register__uploads__item__btn {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .bidding_auction__uploads .register__uploads__item__label {
        margin-left: 0;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .bidding_auction__uploads .register__uploads__item .btn {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: -5px;
    }

    /*.bidding_auction_step__form .btn,*/
    /*.bidding_auction_step__form .btn {*/
    /*    height: 36px;*/
    /*}*/

    .bidding_auction_step__panels,
    .bidding_auction_step__panels {
        margin-top: 50px;
    }

    .bidding_auction_questions__editable__chapters__title {
        width: 50px;
    }

    .bidding_auction_questions__editable__chapters__text,
    .bidding_auction_questions__editable__chapters__text {
        width: calc(100% - 65px);
    }

    .bidding_auction_questions__divider {
        margin: 35px 0;
    }

    .page_navigation {
        display: block;
    }

    .page_navigation a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        font-size: 18px;
        height: 40px;
        margin: -2px 0;
    }

    .page_navigation a:first-child {
        border-radius: 12px 12px 0 0;
        padding: 0 0.75em;
    }

    .page_navigation a:last-child {
        border-radius: 0 0 12px 12px;
        padding: 0 0.75em;
    }

    .page_navigation a svg {
        width: 100%;
        height: 100%;
    }

    .page_navigation__icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 32px;
        height: 30px;
    }

    .vendor__top__select+.vendor__top__dots {
        margin-top: 34px;
    }

    .auction__panel__rows,
    .procedure__panel__rows {
        padding-left: 0;
    }

    .auction__panel__row,
    .procedure__panel__row {
        padding-bottom: 5px;
    }

    .auction__panel__row__remove,
    .procedure__panel__row__remove {
        margin-right: 14px;
    }

    /*.auction__textarea__title,*/
    /*.procedure__textarea__title {*/
    /*    font-size: 19px;*/
    /*    margin-right: 31px;*/
    /*}*/

    .auction__editable__actions,
    .procedure__editable__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .auction__step4__buttons_end {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .procedure__doc__title {
        font-size: 1.2em;
    }

    .auction__step5__head__btn {
        margin: 0 0 0 auto;
    }

  

    .panel__head--auction.with-btn {
        padding-bottom: 40px;
    }

    .panel__head--auction.with-btn .btn {
        font-size: 16px;
    }
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .15s ease-out;
    transition: .15s ease-out;
    transition-delay: 0s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    right: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .15s ease-out;
    transition: .15s ease-out;
    transition-delay: 0s;
}

input:checked+.slider {
    background-color: #4b8dcb;
}

input:focus+.slider {
    box-shadow: 0 0 1px #4b8dcb;
}

input:checked+.slider:before {
    -ms-transform: translateX(-26px);
    transform: translateX(-26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 16px;
    border: 1px solid #FFFFFF;
}

.slider.round:before {
    border-radius: 50%;
}

/*================================================*/
/*             Authority Portal Page              */
/*================================================*/
/* moved to dashboard.css  */

/*================================================*/
/*             Supplier Finance Pages             */
/*================================================*/
/* 
.text_nowrap {
    text-wrap: nowrap;
}

.side_paddings {
    padding: 0 30px;
}



.profile-supplier .supplier_finance_header,
.profile-supplier .supplier_finance_content {
    justify-content: space-between;
}

.profile-supplier .supplier_main {

    width: 100%;
    margin-bottom: 1rem;
}

.profile-supplier .supplier_main {}

.profile-supplier .supplier_page_title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 0.1em;
    display: flex;
    gap: 0.5em;
    align-items: baseline;
}

.profile-supplier .supplier_page_subtitle {
    font-size: 1.7em;
}

.supplier_profile_button {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 33%;
    text-align: center;
}

.supplier_profile_button a {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.2em 0.5em 0.2em 0.8em;
    border: 2px solid #2f313f;
    border-radius: 10px;
    font-size: 1.2em;
    color: #2f313f;
    transition: all 0.2s;
}

.supplier_profile_button a:hover {
    color: #FFFFFF;
    background: #2f313f;
}

.supplier_profile_button a svg {
    stroke: #fff;
    stroke-width: 0.5;
}

.supplier_profile_button a:hover svg {
    fill: #ffffff;
    stroke: #2f313f;
}

.supplier_portal_button {
    width: 100%;
    padding: 0 2em;
    margin-bottom: 1.5em;
}

.supplier_portal_button a {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.7em 0.5em 0.7em 0.5em;
    border-radius: 10px;
    font-size: 1.8em;
    font-weight: 700;
    background: #ffffff;
    color: #2f313f;
    box-shadow: 0 0 10px #bbbbbb;
    transition: all 0.2s;
}

.supplier_portal_button a:hover {
    background: #366dbe;
    color: #ffffff;
}

.supplier_aside_header {
    font-weight: 700;
    font-size: 2.2em;
    margin-bottom: 0.7em;
}

.supplier_recent_payments_button a:before,
.profile-page-recent_payments .supplier_page_title:before {
    content: '';
    display: block;
    width: 1.6em;
    height: 1.5em;
    background: url(../../../front/img/cards_icon_black.svg) no-repeat center;
    background-size: contain;
}

.supplier_recent_payments_button a:hover:before {
    background: url(../../../front/img/cards_icon_white.svg) no-repeat center;
    background-size: contain;
}

.supplier_orders_button a:before,
.profile-page-my_orders .supplier_page_title:before {
    content: '';
    display: block;
    width: 1.8em;
    height: 1.5em;
    background: url(../../../front/img/list_icon_black.svg) no-repeat center;
    background-size: contain;
}

.supplier_orders_button a:hover:before {
    background: url(../../../front/img/list_icon_white.svg) no-repeat center;
    background-size: contain;
}

.supplier_invoices_button a:before,
.profile-page-my_invoices .supplier_page_title:before {
    content: '';
    display: block;
    width: 1.8em;
    height: 1.5em;
    background: url(../../../front/img/doc_icon_black.svg) no-repeat center;
    background-size: contain;
}

.supplier_invoices_button a:hover:before {
    background: url(../../../front/img/doc_icon_white.svg) no-repeat center;
    background-size: contain;
}

.supplier_rise_invoice_button a:before {
    content: '';
    display: block;
    width: 1.8em;
    height: 1.2em;
    background: url(../../../front/img/plus_icon_white.svg) no-repeat center;
    background-size: contain;
}

.supplier_rise_invoice_button a:hover:before {
    background: url(../../../front/img/plus_icon_white.svg) no-repeat center;
    background-size: contain;
}

.supplier_disabled_button {
    position: relative;
    margin-top: 0.2em;
}

.supplier_disabled_button a {
    background: #b0b0ae;
    color: #ffffff;
    pointer-events: none;
}

.coming_soon_badge {
    display: none;
}

.supplier_disabled_button .coming_soon_badge {
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    background: #94d468;
    padding: 0.1em 0.4em;
    border-radius: 0.2em;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 700;
}

.supplier_buttons_wrap {
    flex-wrap: wrap;
    gap: 2%;
    margin-top: 4em;
    width: 67%;
    align-self: flex-start;
}

.api__filters_wrapper {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    margin-top: 1em;
}

.finances__filters_wrapper {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 992px) {
    .supplier_buttons_wrap {
        width: 100%;
        margin-top: 1em;
    }

    .profile-supplier.profile-page-procedures .select_authority_wrap,
    .profile-supplier.profile-page-tenders .select_authority_wrap,
    body.profile-page-suppliers_database .select_authority_wrap,
    body.profile-page-suppliers_tenders .select_authority_wrap,
    body.profile-page-suppliers_procedures .select_authority_wrap,
    .all-suppliers__results__header__col.select_authority_wrap {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .finances__filters_wrapper {
        width: 100%;
        flex-wrap: wrap;
    }

    .api__filters_wrapper {
        width: 100%;
    }

    .bidding__search__btns__wrap,
    .input_wrap_with_label {
        flex-grow: 1;
        max-width: unset !important;
        width: 100%;
        margin-top: 1em;

    }
}

.api-auth-select-row {
    display: flex;
}

.supplier_main_button {
    width: 49%;
    min-height: 9em;
    display: flex;
    align-items: center;
    margin-bottom: 2%;
    border: 3px solid;
    border-radius: 10px;
    background: #ffffff;
}

.supplier_main_button a {
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: 1.8em;
    font-weight: 700;
    padding: 1em;
    width: 100%;
    color: inherit;
    height: 100%;
}

.supplier_main_button a:before {
    content: '';
    display: block;
    width: 3em;
    height: 3em;
    background-size: contain;
    background: url(../../../front/img/doc_icon_black.svg) no-repeat center;
}

.green_server_supplier_button a:before {
    background: url(../../../front/img/server_icon_green.svg) no-repeat center;
    background-size: contain;
}

.green_server_supplier_button a,
.green_server_supplier_button {
    color: #6bcb9d;
    border-color: #6bcb9d;
}

.green_server_supplier_button a:hover:before {
    background: url(../../../front/img/server_icon_white.svg) no-repeat center;
    background-size: contain;
}

.green_server_supplier_button a:hover {
    color: #ffffff;
    background: #6bcb9d;
}


.red_label_supplier_button a:before {
    background: url(../../../front/img/label_icon_red.svg) no-repeat center;
    background-size: contain;
}

.red_label_supplier_button a,
.red_label_supplier_button {
    color: #f36365;
    border-color: #f36365;
}

.red_label_supplier_button a:hover:before {
    background: url(../../../front/img/label_icon_white.svg) no-repeat center;
    background-size: contain;
}

.red_label_supplier_button a:hover {
    color: #ffffff;
    background: #f36365;
}

.yellow_server_supplier_button a:before {
    background: url(../../../front/img/server_icon_yellow.svg) no-repeat center;
    background-size: contain;
}

.yellow_server_supplier_button a,
.yellow_server_supplier_button {
    color: #fbc226;
    border-color: #fbc226;
}

.yellow_server_supplier_button a:hover:before {
    background: url(../../../front/img/server_icon_white.svg) no-repeat center;
    background-size: contain;
}

.yellow_server_supplier_button a:hover {
    color: #ffffff;
    background: #fbc226;
} */

/***** Invoices page ******/
.status_boxes_wrap {
    gap: 1em;
    flex-wrap: wrap;
}

.status_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 8em;
    padding: 0.5em;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px #bbbbbb;

}

.status_box .status_value_wrap {
    font-size: 1.8em;
    font-weight: 700;
}

.status_box .status_name {
    font-size: 1.5em;
}

.status_green {
    color: #94d468;
}

.status_yellow {
    color: #fbc226;
}

.status_red {
    color: #f36365;
}

.status_blue {
    color: #4d8cc6;
}

.status_gray {
    color: #bfbfbf;
}

/*.status_black {*/
/*  color: #333645;*/
/*}*/


/***** Suppliers Database page *******/
/* body.profile-page-suppliers_database .supplier_page_title:before {
    content: '';
    display: block;
    width: 1.3em;
    height: 1.3em;
    background: url(../../../front/img/server_icon_black.svg) no-repeat center;
    background-size: contain;
}

.profile-supplier.profile-page-procedures .supplier_page_title:before,
.profile-suppliers.profile-page-tenders .supplier_page_title:before,
body.profile-page-suppliers_auctions .supplier_page_title:before,
body.profile-page-suppliers_tenders .supplier_page_title:before {
    content: '';
    display: block;
    width: 1.3em;
    height: 1.3em;
    background: url(../../../front/img/label_icon_black.svg) no-repeat center;
    background-size: contain;
}

.profile-supplier.profile-page-procedures .custom_select_box_wrap,
.profile-supplier.profile-page-tenders .custom_select_box_wrap,
body.profile-page-suppliers_auctions .custom_select_box_wrap,
body.profile-page-suppliers_tenders .custom_select_box_wrap,
body.profile-page-suppliers_database .custom_select_box_wrap {

    flex-basis: 10em;
    min-width: 7.5em;
}


.input_wrap_with_label input {
    margin-left: 1em;
}

.input_wrap_with_label input {
    line-height: 1.8em;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    padding: 0 16px;
}

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


.select_authority_wrap {
    align-items: flex-end;
}

span.filters_header {
    line-height: 1.5em;
}

.input_wrap_with_label>label {
    font-weight: 600;
    margin-bottom: 0.3em;
    margin-right: 0.6em;
}

.input_wrap_with_label.cols-4>label {
    margin-right: 0;
}

.suppliers__results__wrap {

    display: grid;
    grid-template-columns: repeat(auto-fill, 25%);
}

.single_supplier_wrap a {

    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    color: inherit;
    box-shadow: 0 0 10px #bbbbbb;
    border-radius: 10px;
    margin: 20px;
    font-weight: 400;
}

.single_supplier_wrap a:hover {
    background: #2f3140;
    color: #ffffff;
}

.single_supplier_logo {
    width: 6em;
    height: 6em;
    display: inherit;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #cccccc;
}

.single_supplier_wrap a img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.single_supplier_wrap a:hover img {

    border-radius: 50%;

}

.auth_status_green {
    background: #94d468;
}

.auth_status_yellow {
    background: #fbc226;
}

.auth_status_initial {
    background: #2f3140;
}

.single_supplier_title {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
}

.single_supplier_status {
    position: relative;
    bottom: 12px;
    color: #fff;
    padding: 0.2em 1em;
    border-radius: 6px;
}


.profile-supplier.profile-page-tenders .bidding__panels,
.profile-supplier.profile-page-procedures .bidding__panels,
body.profile-page-suppliers_auctions .bidding__panels {
    margin-top: initial;
}

.suppliers__search__row__wrap {
    align-items: end;
    margin: 2em 0;
}

.suppliers__search__row__wrap .btn {
    border-radius: 10px;
}

.searchform_field_container {
    margin-left: 1em;
}

.searchform_field_container .custom_select_box_wrap {
    min-width: 10em;
}



.hidden_entry_row {
    display: none;
}


.profile-supplier th {
    font-weight: 600;
}

thead.sticky_thead {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 2;
}

.profile-supplier thead tr {
    border-bottom: 2px solid #555658;
}

thead.sticky_thead tr {
    border-bottom: none;
    box-shadow: 0 2px 0 #555658;
}

tbody.supplier_entry_row {
    border-bottom: 1px solid #b0b0ae;
}

tbody.supplier_entry_row:hover {
    background: #333645;
    color: #ffffff;
}

tbody.supplier_entry_row td,
.profile-supplier thead th {
    padding: 0.4em 0.2em;
}

tbody.supplier_entry_row td div.inner_td {
    max-width: 18em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.table tbody.supplier_entry_row:after {
    display: none;
}

td.bold_td {
    font-weight: 700;
}

tbody.supplier_entry_row td {
    font-weight: 400;
}

tbody.supplier_entry_row .bold_td {
    font-weight: 600;
}

span.button_text {
    width: 80%;
} */

/****** toggle table *******/
.with_toggle {
    position: relative;
    cursor: pointer;
}

.with_toggle .toggle_arrow {
    border: solid #231f20;
    border-width: 0px 2px 2px 0px;
    display: inline-block;
    padding: 5px;
    transform: rotate(135deg);
    transition: all 0.2s;
    position: absolute;
    left: 14px;
    top: 14px;
}

.with_toggle.active .toggle_arrow {
    transform: rotate(45deg);
}

.supplier_entry_row.with_toggle .toggle_table {
    display: none;
}

.supplier_entry_row.with_toggle .toggle_table>td {
    max-width: 528px;
    padding: 5px 20px;
}

tbody.supplier_entry_row.with_toggle:hover .toggle_arrow,
tbody.supplier_entry_row.with_toggle.active .toggle_arrow {
    border-color: #ffffff;
}

td.narrow_col,
th.narrow_col {
    width: 156px;
}

tbody.supplier_entry_row .toggle_table {
    color: #333645;
    background: #ffffff;
}

tbody.supplier_entry_row.active {
    color: #ffffff;
    background: #366dbe;
    outline: solid 2px #366dbe;
    outline-offset: -2px;
}

.toggle_table_item thead tr {
    border-bottom: 1px solid #555658;
}

.toggle_table_item thead th {
    font-weight: 400;
}

.toggle_table_item tbody tr:not(:last-of-type) {
    border-bottom: 1px solid #b0b0ae;
}

/* Datepicker */
#filter_by_date_from_input,
#filter_by_date_to_input,
#filter_by_status_select {
    line-height: 1.8em;
    border: none;
    border-radius: 10px;
    margin-left: 2em;
    font-size: 1em;
    max-width: 8em;
    /* text-align: center; */
}

#ui-datepicker-div {
    z-index: 99 !important;
}

a.filter_by_date_and_status {
    color: #ffffff;
    background: #4b8dcb;
    padding: 0.3em 0.6em;
    border-radius: 6px;
}

a.filter_by_date_and_status:hover {
    background: #669ed3;
}



/****** Select Boxes ********/
.select_authority_wrap {
    margin: 1.5em 0;
    flex-wrap: wrap;
}

.custom_select_box_wrap {
    width: 100%;
    max-width: 18em;
    margin-left: 1em;
    font-weight: 600;
}

.custom_select_box_wrap .SelectBox {
    border: none !important;
    border-radius: 10px !important;
}

.custom_select_box_wrap.with_shadow .SelectBox,
.with_shadow input {
    box-shadow: 0 0 10px #bbbbbb !important;
}

.custom_select_box_wrap .SelectBox label {
    background: none;
    top: -8px;
    left: 4px;
    bottom: -2px;
    border: none !important;
    border-radius: 0 !important;
}

.custom_select_box_wrap .SelectBox label i {
    border: solid #231f20;
    border-width: 0px 2px 2px 0px;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
    transition: all 0.2s;
    top: 0.1rem;
}

.custom_select_box_wrap .open .SelectBox label i {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.filter_by_status_select_wrap {
    min-width: 8em;
}

.supplier_orders_dropdown {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #bbbbbb;
    position: relative;
    z-index: 38;
    clip-path: inset(0px -10px -10px -10px);
}

.supplier_orders_dropdown.select2-dropdown--above {
    clip-path: inset(-10px -10px 0px -10px);
}

.select_api_order_wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid #231f20 !important;
    border-width: 0 2px 2px 0 !important;
    padding: 6px;
    transform: rotate(45deg);
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    transition: all 0.2s;
}

.select_api_order_wrap .select2-container {
    z-index: 40;
}

.select_api_order_wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    top: 0.8rem;
    transform: rotate(-135deg);
}

.select_api_order_wrap .select2-container--default .select2-selection--single {
    border: none;
    border-radius: 10px;
    font-size: 1em;
    padding: 0 16px;
    z-index: -1;
    position: relative;
    height: 1.8rem;
    box-shadow: 0 0 10px #bbbbbb;
}

.select_api_order_wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.8rem;
    padding-right: 1rem;
}

.select2-container--default .supplier_orders_dropdown .select2-search--dropdown,
.scrollbar-supplier-orders.scroll-content {
    padding: 0 1.6rem 0 0.4rem;
}

.scrollbar-supplier-orders.scroll-content .supplier_orders_option:not(:last-child) {
    border-bottom: 1px solid;
}

.scrollbar-supplier-orders.scroll-content .supplier_orders_option:last-child {
    margin-bottom: 1rem;
}

.select2-container--default .supplier_orders_dropdown .select2-search--dropdown .select2-search__field {
    border: none;
    border-top: 2px solid;
    border-bottom: 1px solid;
    outline: none;
    font-size: 1rem;
    line-height: 1.8rem;
}

.select2-container--default .supplier_orders_dropdown.select2-dropdown--above .select2-search--dropdown .select2-search__field {
    border-top: none;
}

.supplier_orders_dropdown .select2-results__option {
    padding: 0.2rem 0;
    background: #ffffff;
}

.supplier_orders_dropdown .select2-results__option:hover,
.supplier_orders_dropdown .select2-results__option[aria-selected=true],
.supplier_orders_dropdown .select2-results__option.select2-results__option--highlighted[aria-selected] {
    background-color: #366dbe;
    color: #fff;
}

.supplier_orders_option .orders_select_option_top_line {
    font-weight: bold;
}


/**** Supplier Portal Logo wrap ****/
/* .selected_authority_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supp_auth_logo {
    min-width: 6em;
    min-height: 6em;
    text-align: center;
    width: 6em;
    height: 6em;
    margin-bottom: 0.3em;
}

.supp_auth_logo img {
    max-width: 6em;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #cccccc;
    min-width: 6em;
    min-height: 6em;
    width: 6em;
    height: 6em;
}

.supp_auth_title {
    font-size: 1.3em;
    font-weight: 600;
    white-space: nowrap;
} */

/* @media screen and (max-width: 1440px) {

    .supplier_main_button a,
    .supplier_portal_button a {
        font-size: 1.4em;
        gap: 0.5em;
        padding: 0.5em;
    }
} */

/* @media screen and (max-width: 1140px) {
    .suppliers__results__wrap {
        grid-template-columns: repeat(auto-fill, 33.3%);
    }
} */

@media screen and (max-width: 992px) {
    /* .profile-page-finances .supplier_main {
        flex-wrap: wrap;
    } */

    .supplier_aside {
        padding: 0 30px;
        margin: 0 0 1em;
    }
}

/* @media screen and (max-width: 768px) {
    .side_paddings {
        padding: 0 10px;
    }

    .profile-supplier .supplier_main {
        margin-top: 1rem;
    } */

    /* .profile-supplier .supplier_finance_header,
    .profile-supplier .supplier_finance_content {
        flex-direction: column;
    } */

    /* .profile-supplier.profile-page-my_invoices .supplier_finance_header,
    .profile-supplier.profile-page-recent_payments .supplier_finance_header,
    .profile-supplier.profile-page-suppliers_orders_invoices .supplier_finance_header,
    .profile-supplier.profile-page-my_orders .supplier_finance_header {
        flex-direction: column-reverse;
    } */
/* 
    .profile-supplier .supplier_main {
        flex-direction: column;
        width: 100%;
    }

    .supplier_main_button a {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .supplier_aside_align_left {
        align-items: center;
    }

    .supp_auth_logo {
        min-width: initial;
        min-height: initial;
    }

    #filter_by_date_from_input,
    #filter_by_date_to_input,
    #filter_by_status_select {
        max-width: initial;
        width: 100%;
    }

    a.filter_by_date_and_status {
        margin-top: 0.5em;
    }

    .with_toggle i.toggle_arrow {
        left: 18px;
        top: 12px;
        padding: 4px;
    }

    .suppliers__results__wrap {
        grid-template-columns: repeat(auto-fill, 50%);
    }

} */

/* @media screen and (max-width: 425px) {
    .supplier_portal_button {
        padding: 0;
    }

    .supplier_main_button {
        width: 100%;
    }

    .profile-supplier .select_authority_wrap {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 0.6em;

    }

    .status_box {
        min-width: initial;
        width: 46%;
    }

    .suppliers__results__wrap {
        grid-template-columns: repeat(auto-fill, 100%);
    }

} */

.profile-page-my_invoices .SumoSelect>.optWrapper,
.profile-page-my_orders .SumoSelect>.optWrapper,
.profile-page-recent_payments .SumoSelect>.optWrapper {
    z-index: 10000;
}

.toggle_navigation {
    position: relative;
    display: inline-flex;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px #bbbbbb;
    width: fit-content;
}

.toggle_navigation__active-state {
    position: absolute;
    background: #366dbe;
    height: calc(100%);
    width: 50px;
    border-radius: 10px;
    top: 0;
    left: 0px;
    opacity: 0;
    transition: left 0.4s ease-out, width 0.4s ease-out, opacity 0.4s ease-out 0.4s;
}

.toggle_navigation__btn {
    cursor: pointer;
    color: #333333;
    font-weight: 600;
    padding: 0.3rem 1.7rem;
    transition: color 0.3s ease-out;
    z-index: 1;
}

.toggle_navigation__btn--active {
    color: #ffffff;
    font-weight: 500;
}

.toggle_navigation__btn:last-child {
    margin-right: 0;
}

.toggle_navigation__btn:hover {
    color: inherit;
}

.toggle_navigation__btn--active {
    pointer-events: none;
}

.box_with_shadow {
    box-shadow: 0 0 10px #bbbbbb;
}

.round_corners_box {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    overflow: hidden;
}


/* ---------------------------------------------------------------- */
/* ------------------ supplier specific ------------------------------ */
/* todo: move to separated file and include only for supplier's profile */
.vendor__table_wrapper {
    font-weight: 300;
}

.all-suppliers__results__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #333645;
    border-radius: 12px 12px 0 0;
    color: #fff;
    padding: 15px 30px;
}

.all-suppliers__results__header__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}


/* 
.vendor__table_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #333645;
    border-radius: 12px 12px 0 0;
    color: #fff;
    padding: 15px 30px;
}


.vendor__table_header__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
    flex-wrap: wrap;
}

.vendor__table_header__filter_control {
    display: flex;
    flex-direction: row;
    margin: 0.2em 0;
}

.vendor__table_header__filter_control__label {
    font-weight: 700;
    font-size: 1.4em;
    margin-left: 1em;
    flex-shrink: 0;
}


.vendor__table_body {
    border: 2px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 15px 6px 10px 15px;
    -ms-overflow-style: none;
    overflow: visible;
} */

.vendor__table_body .scroll-wrapper>.scroll-content {
    margin-bottom: 0 !important;
}


@media screen and (max-width: 768px) {
    .vendor__table_header__filter {
        flex-direction: column;
        align-items: start;
        gap: 0.2em;
    }
}

/******** Suppliers Orders Invoices *******/
#orders_invoices_wrap {
    justify-content: space-between;
    gap: 1rem;
}

#upload_invoices_wrap {
    width: 55%;
    max-width: 28.6rem;
    height: 100%;
}

#recent_invoices_wrap {
    width: 45%;
    max-width: 32rem;
    height: 100%;
}

#recent_invoices_wrap:not(.hidden) {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

#recent_invoices_top_block {
    min-height: 18rem;
}

.input_wrap_with_label.cols-3 {
    width: 33.3%;
}

.input_wrap_with_label.cols-4 {
    width: 25%;
    padding: 0.25em;
}

.profile-page-suppliers_orders_invoices .input_wrap_with_label.cols-4 input,
.profile-page-suppliers_orders_invoices .input_wrap_with_label.cols-3 input {
    margin-left: 0;
    max-width: 99%;
    text-align: center;
}

.currency_sign_wrap {
    align-items: center;
    justify-content: space-between;
    max-width: 99%;
    width: 90%;
}

.currency_sign_wrap input {
    max-width: 100%;
}

.currency_sign {
    padding-right: 4px;
    font-size: 1.2rem;
    font-weight: 600;
}

.file_upload_wrap {
    position: relative;
}

#uploaded_filename {
    position: absolute;
    bottom: -1.2rem;
}

.upload_invoice_form_row {
    justify-content: space-between;
    margin-bottom: 2rem;
}

button#upload_file_button {
    border: none;
    color: #ffffff;
    background: #bbb;
    font-size: 1rem;
    padding: 0.3rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #bbbbbb;
    margin-left: 1.2rem;
    transition: background 0.4s;
}

button#upload_file_button:hover {
    background: #366dbe;
}

button#upload_file_button.outlined {
    outline: 2px solid #ff0000;
}

.uploaded_invoice_file_wrap {
    gap: 1rem;
}

.uploaded_invoice_file_wrap a {
    background: #333645;
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0.3rem 1.4rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 0 10px #bbbbbb;
}

#uploaded_invoice_file {
    align-items: center;
    gap: 0.8rem;
}

.remove_file {
    background: #333645;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.4rem;
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.select_api_order_wrap {
    max-width: initial;
}

.select_api_order_wrap label {
    margin-bottom: 0.3em;
    margin-right: 0.6em;
    display: block;
}

.upload_invoice_submit_button_wrap button {
    margin: 0 auto;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    height: auto;
    padding: 0.4rem 1.5rem;
}

#select_api_order option.disabled {
    pointer-events: none;
    color: red;
}

.select_api_order_wrap .SumoSelect.open>.optWrapper {
    max-width: 100%;
}

#select_api_order_input::placeholder {
    color: #333645;
}

#select_api_order_input {
    width: 100%;
    border-radius: 10px 10px 0 0;
    margin-left: 0;
    border-bottom: 2px solid;
    outline: none;
}

.supplier_orders_block {
    padding: 10px;
    background: #fff;
    position: relative;
}

.supplier_orders_block_bottom {
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.input_arrow_down {
    border: solid #231f20;
    border-width: 0 2px 2px 0;
    padding: 6px;
    transform: rotate(45deg);
    position: absolute;
    left: 20px;
    top: 20px;
}

#supplier_orders_list {
    display: flex;
    flex-direction: column;
}

#supplier_orders_list a {
    padding: 6px 20px 6px 0;
}

#supplier_orders_list a {
    border-bottom: 1px solid #333;
}

#supplier_orders_list a:nth-last-child(1 of :not(.hidden)) {
    border-bottom: none;
}

#supplier_orders_list a:hover,
#supplier_orders_list a.selected {
    color: #fff;
    background: #366dbe;
}

.recent_invoices_header {
    background: #333645;
    color: #ffff;
    padding: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

#recent_invoices_wrap .scroll-wrapper,
#recent_invoices_wrap .scroll-wrapper>.scroll-content {
    height: inherit !important;
}

.recent_invoices_table_wrap {
    padding: 1rem;
}

table.recent_invoices_table {
    width: 100%;
    min-width: 22rem;
}

table.recent_invoices_table th {
    text-align: start;
    padding: 0.5rem 0 0.5rem 0.2rem;
}

.recent_invoices_row:not(:last-child) {
    border-bottom: 2px solid #dddddd;
}

.recent_invoices_row td {
    padding: 0.5rem 0 0.5rem 0.2rem;
}

table.recent_invoices_table a {
    color: #366dbe;
}

table.recent_invoices_table a:hover {
    color: #4b8dcb;
}

body.profile-page-suppliers_orders_invoices .ui-widget.ui-widget-content {
    padding: 0;
    border-radius: 10px;
    border: none;
    overflow: hidden;
}

body.profile-page-suppliers_orders_invoices .ui-draggable .ui-dialog-titlebar {
    background: #333645;
}

body.profile-page-suppliers_orders_invoices .ui-dialog .ui-dialog-buttonpane button {
    margin: 0.5em 0.4em 0.5em 0;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    color: #ffffff;
    background: #366dbe;
}

body.profile-page-suppliers_orders_invoices .ui-dialog .ui-dialog-buttonpane button:hover {
    background: #4b8dcb;
}

body.profile-page-suppliers_orders_invoices .ui-widget-overlay {
    background: #aaa;
    opacity: .4;
    filter: Alpha(Opacity=.4);
}

@media screen and (max-width: 1252px) and (min-width: 992px) {
    .upload_invoice_form_mob_col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .profile-page-suppliers_orders_invoices .input_wrap_with_label.cols-4 input,
    .file_upload_wrap,
    .profile-page-suppliers_orders_invoices .input_wrap_with_label.cols-3 input,
    .file_upload_wrap {
        width: 90%;
    }

    #upload_invoices_wrap,
    #recent_invoices_wrap,
    .input_wrap_with_label.cols-4,
    #upload_invoices_wrap,
    #recent_invoices_wrap,
    .input_wrap_with_label.cols-3 {
        width: 100%;
        max-width: 100%;
    }

    .input_wrap_with_label.cols-4 {
        align-items: flex-start;
    }

    .input_wrap_with_label.cols-4 label {
        margin-right: 0.6em;
    }
}

@media screen and (max-width: 991px) and (min-width: 769px) {

    #orders_invoices_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
    }

    #upload_invoices_wrap,
    #recent_invoices_wrap {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    #recent_invoices_wrap {
        flex-direction: column-reverse;
    }
}


@media screen and (max-width: 768px) {

    #orders_invoices_wrap,
    .upload_invoice_form_mob_col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #upload_invoices_wrap,
    #recent_invoices_wrap,
    .input_wrap_with_label.cols-4,
    #upload_invoices_wrap,
    #recent_invoices_wrap,
    .input_wrap_with_label.cols-3 {
        width: 100%;
        max-width: 100%;
    }

    .profile-page-suppliers_orders_invoices .input_wrap_with_label.cols-4 input,
    .file_upload_wrap,
    .profile-page-suppliers_orders_invoices .input_wrap_with_label.cols-3 input,
    .file_upload_wrap {
        width: 90%;
    }
}

/******* Confirm Dialog **********/
.dialog_confirm_wrap {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #33333355;
    z-index: 999;
}

.dialog_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 0.8rem 3rem;
    border-radius: 16px;
}

.dialog_popup_close {
    position: absolute;
    display: block;
    font-size: 26px;
    font-weight: 400;
    top: 0.6rem;
    left: 0.5rem;
    -ms-transform: scaleY(0.7);
    transform: scaleY(0.7);
}

.popup_button_wrap {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.popup_button_wrap .confirm_button,
.popup_button_wrap .reject_button {
    cursor: pointer;
    border-radius: 10px;
    border: none;
    padding: 0.2rem 1rem;
    color: #ffffff;
}

.popup_button_wrap .confirm_button {
    background: #366dbe;
}

.popup_button_wrap .reject_button {
    background: #bfbfbf;
}

.popup_button_wrap .confirm_button:hover,
.popup_button_wrap .reject_button:hover {
    background: #4b8dcb;
}

/******* END Confirm Dialog **********/


/*================================================*/
/*                Stars Ratings                   */
/*================================================*/
/*
[data-star] {
  text-align:left;
  font-style:normal;
  display:inline-block;
  position: relative;
  unicode-bidi: bidi-override;
}
[data-star]::before {
  display:block;
  content: '★★★★★';
  color: #989FA9;
  letter-spacing: 0.2rem;
}
[data-star]::after {
  white-space:nowrap;
  position:absolute;
  top:0;
  right:0;
  content: '★★★★★';
  width: 0;
  color: #FCB718;
  overflow:hidden;
  height:100%;
  letter-spacing: 0.2rem;
}
[data-star^="0.5"]::after{width:12%}
[data-star^="1"]::after{width:20%}
[data-star^="1.5"]::after{width:32%}
[data-star^="2"]::after{width:40%}
[data-star^="2.5"]::after{width:52%}
[data-star^="3"]::after{width:60%}
[data-star^="3.5"]::after{width:72%}
[data-star^="4"]::after{width:80%}
[data-star^="4.5"]::after{width:92%}
[data-star^="5"]::after{width:100%}
*/



/*#supplier_rating_wrap {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    margin: 2rem 0 3rem;*/
/*}*/

/*#single_ratings_wrap {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    padding-right: 2rem;*/
/*}*/

/*.rating_block {*/
/*    position: relative;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*}*/

/*.rating_label {*/
/*    padding-right: 0.5rem;*/
/*    font-size: 1.4rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: 0.1rem;*/
/*}*/

/*.rating_number {*/
/*    color: #ffffff;*/
/*    position: relative;*/
/*    padding: 0.5rem 1.5rem 0.5rem 7rem;*/
/*    font-size: 1rem;*/
/*    font-weight: 600;*/
/*}*/

/*.rating_number:before {*/
/*    content: "";*/
/*    display: block;*/
/*    background-color: #111723;*/
/*    border-radius: 6px;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    top: 0;*/
/*    left: 0;*/
/*    transform: skew(25deg, 0);*/
/*    transform-origin: left;*/
/*}*/

/*.rating_stars_block {*/
/*    font-size: 1.2rem;*/
/*    position: relative;*/
/*    left: 4.6rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.rating_stars {*/
/*    width: max-content;*/
/*}*/

/*.single_star {*/
/*    color: #989FA9;*/
/*    cursor: pointer;*/
/*}*/

/*.single_star.active {*/
/*    color: #FCB718;*/
/*}*/

/*.rating_stars_bg {*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    !* top: 0; *!*/
/*    right: -15%;*/
/*    transform: skew(25deg, 0);*/
/*    transform-origin: left;*/
/*    box-shadow: -0.2rem 0 0.4rem #a5a5a5;*/
/*    border-radius: 6px;*/
/*    height: 100%;*/
/*    width: 130%;*/
/*    background: #fff;*/
/*}*/

/*#total_rating_wrap {*/
/*    padding-right: 3rem;*/
/*}*/

/*#total_rating {*/
/*    color: #ffffff;*/
/*    background-color: #111723;*/
/*    border-radius: 10px;*/
/*    display: grid;*/
/*    justify-items: center;*/
/*    align-content: center;*/
/*    width: 8rem;*/
/*    height: 8rem;*/
/*}*/

/*.total_rating_label {*/
/*    font-size: 1.4rem;*/
/*    font-weight: 600;*/
/*}*/

/*.total_rating_star {*/
/*    font-size: 2rem;*/
/*    line-height: 2rem;*/
/*    color: #FCB718;*/
/*    padding-top: 0.2rem;*/
/*}*/

/*.total_rating_number {*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*    line-height: 2rem;*/
/*}*/

/*.total_rating_count {*/
/*    font-size: 0.7rem;*/
/*}*/

/*@media screen and (max-width: 1024px) {*/
/*    #supplier_rating_wrap {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 2rem;*/
/*    }*/
/*}*/

/*@media screen and (max-width: 768px) {*/
/*    #supplier_rating_wrap {*/
/*        justify-items: center;*/
/*    }*/

/*    #single_ratings_wrap {*/
/*        grid-template-columns: 1fr;*/
/*        justify-items: center;*/
/*        gap: 1rem;*/
/*    }*/

/*    #total_rating_wrap {*/
/*        padding-right: initial;*/
/*    }*/
/*}*/

.profile-page-index .vendor__table th,
.profile-page-settings .vendor__table th {
    padding: 0 10px;
    font-weight: 300;
}

.profile-page-index .vendor__table tr,
.profile-page-settings .vendor__table tr {
    border-bottom: none;
}

.profile-page-index .vendor__table th:first-child,
.vendor__table td:first-child,
.profile-page-settings .vendor__table th:first-child,
.vendor__table td:first-child {
    padding-right: 20px;
}

/************* Terms Popup ***********/
#terms_popup_wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup_container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1rem;
}

.popup_image_wrap img {
    width: 100%;
}

.popup_content {
    font-size: 1rem;
}

.popup_top_title {
    font-size: 1.6rem;
    font-weight: 600;
}

.popup_main_title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffc53d;
    margin-top: -0.5rem;
}

.popup_main_text {
    margin-bottom: 1rem;
}

.popup_checkbox_list_wrap {
    width: max-content;
    margin: 0 auto 1rem;
}

.popup_checkbox_list {
    text-align: start;
}

/* The popup checkmark container */
.popup_checkmark_container {
    display: block;
    width: max-content;
    position: relative;
    padding-right: 1.8rem;
    margin-bottom: 0.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.popup_checkmark_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.popup_checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 1.4rem;
    width: 1.4rem;
    background-color: #6ac4a5;
    border-radius: 1rem;
}

/* On mouse-over, add a grey background color */
.popup_checkmark_container:hover input~.popup_checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.popup_checkmark_container input:checked~.popup_checkmark {
    background-color: #6ac4a5;
}

/* Create the checkmark/indicator (hidden when not checked) */
.popup_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.popup_checkmark_container .popup_checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.popup_checkmark_container .popup_checkmark:after {
    width: 100%;
    height: 100%;
    -ms-transform: rotate(45deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
    background-size: contain;
}

.popup_terms {
    font-size: 0.66rem;
}

.popup_terms_button_wrap {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

#popup_terms_accept {
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFFFFF;
    background: #ffc53d;
    padding: 0.6rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0rem 0.3rem 0.5rem #0002;
    cursor: pointer;
    transition: all 0.3s;
}

#popup_terms_accept:hover {
    box-shadow: none;
}

#popup_terms_accept.disabled {
    opacity: 0.5;
    pointer-events: none;
}

#popup_terms_deny {
    font-size: 0.8rem;
    margin: 1.2rem 0 0.6rem;
}

#popup_terms_deny:hover {
    color: #ffc53d;
}

.popup_footer {
    margin: 0.5rem 0;
    padding-top: 1rem;
    background: linear-gradient(#f6f6f6, #ffffff);
}

/************* END Terms Popup ***********/

.bidder_threshold_condition__header {
    margin-bottom: 0.4em;
}

.bidder_threshold_condition__file {
    margin-right: 0.7em;
}

.threshold_condition_document_item .btn--remove {
    margin-right: 8px;
}

.arbitrary_field .register__field-container.SupplierArbitraryFieldValue {
    width: auto;
}

.forbidden_logout_link {
    position: fixed;
    bottom: 0.5em;
    left: 0.5em;
}

/*
.modal--verification__alt-code {
    margin-top: 1.2em;
}

.modal--verification__alt-code-link {
    text-decoration: underline;
}*/
