@CHARSET "UTF-8";
html, body
{
    padding: 0;
    margin: 0;
    height: 100%;
}

body
{
    font-family: 'Roboto', sans-serif;
	font-size: 17px;
	color: #222222;
}

h1
{
    font-weight: bold;
    font-size: 30px;
    line-height: 0.9;
    margin: 20px 0px;
}

h2
{
    font-weight: bold;
    font-size: 25px;
    line-height: 0.8;
    margin: 25px 0px;
}

a,a:visited
{
    color: #222;
    text-decoration: underline;
}

a:hover
{
    text-decoration: none;
}

.content-width
{
    width: 1200px;
    margin: 0 auto;
}

.wrapper
{
	display: flex;
	flex-direction: column;
	height: 100%;
}

.wrapper.empty
{
    padding-top: 100px;
    box-sizing: border-box;
}

.wrapper.empty .page
{
	padding-left: 100px;
}

.content
{
	flex: 1 0 auto;
	display: flex;
}

.footer
{
	flex: 0 0 auto;
	border-top: solid 1px gray;
}

.footer > .content-width
{
    padding: 20px 0;
}

.form .row
{
    margin-bottom: 13px;

}

.form .row.disabled {
    color: gray;
}

.form .row_inline
{
    display: flex;
    align-items: center;
}

.form .row_inline .inputTitle
{
    margin-right: 10px
}


.form .row.bottom
{
    display: flex;
    align-items: flex-end;
}

.form > .row:last-child
{
    margin-top: 13px;
}

.form .row .inputTitle
{
    font-size: 16px;
    margin-bottom: 3px;
    display: inline-block;
}

.form .row .inputTitle.required::after
{
    content: "*";
    color: #c9256a;
    position: relative;
    left: 5px;
    font-size: 16px;
}

.form .row .inputTitle.bold
{
    font-family: 'Roboto';
}

.bold
{
    font-family: 'Roboto';
}

.form .inputContainer
{
    position: relative;
}

.form .inputContainer.w180
{
    width: 180px;
}

.form .row.error input[type=text]
{
    border: 1px solid #c9256a;
}

.form .row.error input[type=password]
{
    border: 1px solid #c9256a;
}

.form .row.error textarea
{
    border: 1px solid #c9256a;
}

.form .error-message
{
    color: #c9256a;
    font-size: 15px;
    margin-top: 5px;
}

.error-message
{
    color: #c9256a;
    font-size: 15px;
    margin-top: 5px;
}

.form input[type=text], .form input[type=password]
{
    height: 40px;
    box-shadow: inset 0 1px 2px rgba(0, 1, 2, 0.12);
    border-radius: 7px;
    border: 1px solid #d1d1d1;
    background-color: #fff;
    padding: 0px 9px 0px 9px;
    font-size: 17px;
    font-family: 'Roboto';
    box-sizing: border-box;
    width: 100%;
    outline: none;
}

.form select
{
	height: 40px;
    box-shadow: inset 0 1px 2px rgba(0, 1, 2, 0.12);
    border-radius: 7px;
    border: 1px solid #d1d1d1;
    background-color: #fff;
    padding: 0px 9px 0px 9px;
    font-size: 17px;
    font-family: 'Roboto';
    box-sizing: border-box;
    outline: none;
}

.form textarea
{
    height: 120px;
    box-shadow: inset 0 1px 2px rgba(0, 1, 2, 0.12);
    border-radius: 7px;
    border: 1px solid #d1d1d1;
    background-color: #fff;
    padding: 9px 9px;
    font-size: 17px;
    font-family: 'Roboto';
    box-sizing: border-box;
    width: 100%;
    outline: none;
}

.form input[type=submit]
{
	border-radius: 22px;
    background-color: #2572c9;
    font-family: 'Roboto';
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    border: none;
    cursor: pointer;
    padding: 12px 40px 12px;
    box-sizing: border-box;
    outline: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.form input[type=submit]:disabled {
    background-color: #BDBDBD;
    cursor: default;
}

.form input[type=submit].submit2
{
	color: #2572c9;
	background-color: #fff;
	border: solid 4px #2572c9;
	padding: 8px 40px 8px;
}

.form input[type=submit].small
{
    padding: 10px 20px 10px;
    text-transform: none;
    font-size: 16px;
}

.form .rowH2
{
    display: flex;
    justify-content: space-between;
}

.form .rowF
{
    display: flex;
}

.form .rowF .row
{
    margin-right: 15px;
}

.form .rowF .row.long
{
    flex-grow: 1;
}

.form .rowH2 .row
{
    flex-basis: 47%;
}

.form .rowW2
{
    display: flex;
    justify-content: flex-start;
}

.form .rowW2 .row
{
    margin-right: 20px;
}

.form .rowW2 .row:last-child
{
    margin-right: 0px;
}

.form500
{
    width: 520px;
}

.keyblock
{
    background: url('/img/key.png') no-repeat left center;
    padding-left: 50px;
	min-height: 32px;
	margin-bottom: 20px;
}

.page-container
{
    width: 100%;
	flex: 1 0 auto;
	display: flex;
	justify-content: flex-start;
}

.page-container .menu
{
	width: 240px;
	margin-right: 10px;
	background: #ccc;
	box-sizing: border-box;
	padding: 30px 20px 10px;
	border-right: solid 1px gray;
}

.page-container .page
{
	flex: 1;
	box-sizing: border-box;
	padding: 10px 20px;
}

.content-padded
{
	padding: 10px 20px;
}

.empty-message
{
	border-radius: 15px;
	border: solid 1px gray;
	color: gray;
	display: inline-block;
	margin-top: 20px;
	padding: 20px 50px;
}

.page-header
{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.page-header h1
{

}

.page-header a:last-child
{
	margin-left: 30px;
    font-size: 25px;
}

.page-header a:first-child
{
	margin-right: 30px;
    font-size: 25px;
}

table
{
	border-spacing: 0;
}

td {
  padding: 4px 5px;
  vertical-align: top;
}

th {
  padding: 4px 5px;
  text-align: left;
}

table.list tr:hover {
  background-color: #ebebeb;
}

.list td {
	padding: 4px;
	border-bottom: solid 1px #ccc;
}

.v-center td
{
	vertical-align: middle;
}

.list th {
	padding: 4px;
	border-bottom: solid 1px #000;
	text-align: center;
}

.link-two a
{
	display: inline-block;
	margin-right: 20px;
}


.link-two a:last-child
{
	margin-right: 0px;
}

.option-selected {
	border-radius: 5px;
	padding: 4px 10px;
	border: solid 1px #e0ebf3;
	margin: 5px 5px;
	background: #edf7ff;
	position: relative;
	display: inline-block;
}

.option-selected .close-option
{
	margin-left: 10px;
	margin-top: 3px;
	width: 15px;
	height: 15px;
	background: url(/img/delete-small.png) no-repeat #edf7ff;
	background-position: center center;
	display: inline-block;
	cursor: pointer;
}

.option-selected .title
{
	position: relative;
	top: -2px;
	font-size: 15px;
}

.option-selected2 {
	border-radius: 5px;
	padding: 4px 10px;
	border: solid 1px #e0ebf3;
	margin: 5px 5px;
	background: #edf7ff;
	position: relative;
	display: inline-block;
}

.option-selected2 .close-option
{
	position: absolute;
	right: 2px;
	top: 2px;
	width: 15px;
	height: 15px;
	background: url(/img/delete-small.png) no-repeat #edf7ff;
	background-position: center center;
	display: inline-block;
	cursor: pointer;
}

.option-selected2 .title
{
	position: relative;
	top: -2px;
	font-size: 15px;
}

.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }

.out-link
{
	background: url('/img/out.png') no-repeat center center;
	display: inline-block;
	width: 15px;
	height: 15px;
	opacity: 0.5;
}

.out-link-long
{
	background: url('/img/out.png') no-repeat right 10px center;
	padding-right: 30px;
	display: inline-block;
}


.out-link:hover
{
	opacity: 1;
}

.relative
{
	position: relative;
}

.hidden
{
	display: none;
}

.form input[name=time] {
    width: 66px;
}

.aggregation-list .detail-row {
    display: none;
}

.aggregation-list .aggregation-open + .detail-row {
    display: table-row;
}

.aggregation-list .number {
    padding-left: 30px;
}

.aggregation-list .detail-row > td {
    padding: 20px 20px 20px 50px;
    background-color: #d1d1d1;
}

.aggregation-list .detail-row {
    font-size: 14px;
}

.aggregation-list .detail-row .skipped {
    color: red;
    font-weight: bold;
}

.acceptance_report .purchase_orders_table {
    border-collapse: collapse;
    font-size: 12px;
}

.acceptance_report .purchase_orders_table td,
.acceptance_report .purchase_orders_table th
{
    border: 1px solid gray;
}

.acceptance_report .purchase_orders_table th {
    text-align: center;
}


.acceptance_report .order_detail {
    border-collapse: collapse;
    width: 15cm;
    font-size: 12px;
    margin-top: 0.7cm;
}

.acceptance_report .order_detail td,
.acceptance_report .order_detail th
{
    border: 1px solid gray;
}

.acceptance_report .order_detail th {
    text-align: center;
}

.acceptance_report .order_detail {
    margin-bottom: 30px;
}

.acceptance_report .order_detail:last-of-type {
    margin-bottom: 0;
}


.acceptance_report .order_detail .number {
    text-align: right;
    padding-right: 10px;
}

.acceptance_report .deficit {
    color: red;
    font-weight: bold;
}

.acceptance_report .excess {
    color: blue;
    font-weight: bold;
}

.acceptance_report .order_detail .articul {
    text-align: right;
    padding-right: 5px;
}

@media print {
    html, body { height: auto; }
    table, tr, td, th {
        page-break-inside: avoid;
    }
}

.profileSuperAccessString {
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 10px;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 10px;
}

.txt-gray {
    color: gray;
}

.settings-selector {
    display: flex;
    flex-wrap: wrap;
    font-size: 22px;
    margin: 20px 0 30px;
}
.settings-selector > div {
    margin-right: 30px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.provider-list .header {
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: solid 1px #ccc;
    align-items: flex-start;
}

.provider-list .header > div {
    flex-shrink: 0;
    flex-grow: 0;
}

.provider-list .provider.unactive {
    color: gray;
}

.provider-list .provider.unactive a {
    color: gray;
}

.provider-list .provider .data {
    display: flex;
    justify-content: space-between;
}

.provider-list .provider .data > div {
    flex-shrink: 0;
    flex-grow: 0;
}

.provider-list .name {
    width: 15%;
}

.provider-list .brand {
    width: 10%;
}

.provider-list .org {
    width: 10%;
}

.provider-list .time {
    width: 10%;
}

.provider-list .order-form {
    width: 10%;
}

.provider-list .shipment {
    width: 10%;
}

.provider-list .payment {
    width: 10%;
}

.provider-list .provider {
    padding: 10px 0;
    border-bottom: solid 1px #ccc;
}

.provider-list .name a {
    font-size: 14px;
}

.provider-list .more-open {
    text-decoration-style: dashed;
    color: #2572c9;
}

.provider-list .more-open-container {
    margin: 2px 0 2px;
}

.provider-list .more-block {
    background: #ebebeb;
    font-size: 14px;
    padding: 15px 20px;
    margin-top: 10px;
}

.provider-list .more-block .comment {
    margin-top: 10px;
    font-style: italic;
    margin-left: 5px;
}

.provider-list .more-block strong {
    display: block;
    margin-left: 5px;
}

.provider-list .more-block table {
    border-spacing: 0;
    margin-top: 8px;
}

.provider-list .more-block table td {
    padding: 2px 5px;
}

.provider_document_inactive {
    color: gray;
}

.provider_document_inactive a {
    color: gray;
}

.detect-organization-change-events td:nth-last-child(n+2) {
    padding-right: 10px;
}

.provider-documents-header {
    display: flex;
}

.provider-documents-header__column:nth-last-child(n+2) {
    margin-right: 200px;
}

.provider-org__element_override {
    background-color: #96e7f4;
}

.brand-modal__brands {
    column-count: 2;
    column-gap: 20px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 2em;
}

.dimmable.dimmed {
    padding-right: 17px;
}

.provider-list__filter-input {
    display: block;
    max-width: calc(100% - 15px);
    font-size: 14px !important;
}
