200 lines
4.3 KiB
Plaintext
200 lines
4.3 KiB
Plaintext
// Filter {
|
|
#filter {
|
|
|
|
&.filter_in_catalog:not(.visible) {
|
|
display: none;
|
|
}
|
|
|
|
&.filter_in_catalog {
|
|
.container {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|
|
|
|
.filter_header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 40px;
|
|
|
|
.button {
|
|
width: calc(33.333% - 21px);
|
|
}
|
|
}
|
|
|
|
.filter_body {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
.form_field {
|
|
width: calc(33.333% - 21px);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.fieldgroup {
|
|
width: calc(33.333% - 21px);
|
|
|
|
.form_field {
|
|
width: calc(50% - 20px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Catalog smamm filter
|
|
#catalog_small_filter {
|
|
margin-bottom: 40px;
|
|
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.filter_body {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
select {
|
|
margin-right: 30px;
|
|
width: 306px;
|
|
}
|
|
|
|
button {
|
|
width: 220px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Order
|
|
#order {
|
|
|
|
.order_form {
|
|
position: relative;
|
|
margin: 0 -25px;
|
|
|
|
.order_email {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
z-index: 1;
|
|
background: #EDEFF5;
|
|
height: 235px;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
|
|
p {
|
|
width: 320px;
|
|
font-size: 24px;
|
|
line-height: 45px;
|
|
padding: 0 20px;
|
|
}
|
|
}
|
|
|
|
form {
|
|
width: 750px;
|
|
background: var(--blue);
|
|
box-sizing: border-box;
|
|
padding: 55px 90px;
|
|
margin: auto;
|
|
margin-left: 390px;
|
|
position: relative;
|
|
z-index: 2;
|
|
|
|
input {
|
|
margin-bottom: 32px;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
|
|
&::placeholder {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.policy {
|
|
position: relative;
|
|
z-index: 2;
|
|
margin: -16px 25px 45px 25px;
|
|
|
|
label {
|
|
color: #fff;
|
|
font-weight: 300;
|
|
|
|
&:before {
|
|
background: #fff;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
input:checked + label:before {
|
|
border-color: #fff;
|
|
background: url("/images/icons/checkbox_blue.svg") no-repeat center #fff;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
display: inherit;
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Login
|
|
.login {
|
|
max-width: 410px;
|
|
|
|
.form_field {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
input[name="login"] {
|
|
padding-left: 32px;
|
|
background: url("/images/icons/icon-login.svg") no-repeat 8px 50%;
|
|
}
|
|
|
|
input[name="pass"] {
|
|
padding-left: 32px;
|
|
background: url("/images/icons/icon-pass.svg") no-repeat 8px 50%;
|
|
}
|
|
|
|
.button {
|
|
width: 90px;
|
|
display: block;
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
|
|
// Поиск договора в лк
|
|
.contract_search {
|
|
margin-bottom: 55px;
|
|
form {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.form_field {
|
|
&:first-child {
|
|
width: calc(50% - 15px);
|
|
min-width: calc(50% - 15px);
|
|
margin-right: 15px;
|
|
}
|
|
|
|
&:nth-child(2),
|
|
&:nth-child(3) {
|
|
width: 100%;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.button {
|
|
width: 158px;
|
|
min-width: 158px;
|
|
}
|
|
}
|
|
}
|
|
} |