8c203875
Виталий
add form legal, c...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.legal-form-wrapp {
box-shadow: 0px 0px 24px 0px rgba(233, 233, 233, 0.75);
padding: 28px 0 32px 0;
margin-bottom: 65px;
text-align: center;
margin-top: 41px;
}
.legal-form {
width: 780px;
max-width: 100%;
display: inline-block;
vertical-align: top;
text-align: left;
form {
margin-top: 4px;
@include dInline;
width: 100%;
}
}
.legal-input {
float: left;
width: 50%;
padding: 0 15px;
label {
|
d33ff9db
Виталий
new index header ...
|
26
|
color: #0096d6;
|
8c203875
Виталий
add form legal, c...
|
27
28
29
30
31
32
33
|
}
}
.legal-area {
@include wfl;
padding: 0 15px;
margin-top: 7px;
label {
|
d33ff9db
Виталий
new index header ...
|
34
|
color: #0096d6;
|
8c203875
Виталий
add form legal, c...
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
}
}
.legal-input-wrapp {
@include wfl;
}
.legal-radio-wrapp {
padding: 0 15px;
margin-top: 17px;
@include wfl;
.radio_custom {
margin-top: 12px;
}
}
.legal-button-wrapp {
padding: 0 15px;
margin-top: 32px;
@include wfl;
text-align: center;
button {
@include dInline;
max-width: 100%;
width: 214px;
height: 42px;
background: #fff;
line-height: 42px;
|
d33ff9db
Виталий
new index header ...
|
62
|
border: 1px solid #0096d6;
|
8c203875
Виталий
add form legal, c...
|
63
64
65
66
67
|
padding: 0 0 0 0;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
cursor: pointer;
|
d33ff9db
Виталий
new index header ...
|
68
|
color: #0096d6;
|
8c203875
Виталий
add form legal, c...
|
69
70
|
@include Transition(0.2);
&:hover {
|
d33ff9db
Виталий
new index header ...
|
71
|
background: #0096d6;
|
8c203875
Виталий
add form legal, c...
|
72
73
74
75
76
77
78
79
80
81
82
83
84
|
color: #fff;
}
&:active {
background: #3f74ad;
border: 1px solid #3f74ad;
color: #fff;
}
}
}
.legal-form-contacts {
@include wfl;
padding: 0 15px;
|
3287f30f
Виталий
change legal cont...
|
85
|
text-align: center;
|
8c203875
Виталий
add form legal, c...
|
86
|
div {
|
3287f30f
Виталий
change legal cont...
|
87
|
//float: left;
|
8c203875
Виталий
add form legal, c...
|
88
|
margin-top: 4px;
|
3287f30f
Виталий
change legal cont...
|
89
|
@include dInline;
|
8c203875
Виталий
add form legal, c...
|
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
span, a {
position: relative;
font-size: 17px;
line-height: 24px;
text-decoration: none !important;
padding-left: 22px;
color: #555555;
display: block;
font-family: "Helvetica";
&:before {
content: '';
position: absolute;
left: 0;
top: 0;
}
&.phone {
&:before {
width: 14px;
height: 24px;
background: url("../../img/phone-ico-form.svg");
background-position: 50% 50%;
background-size: 14px 24px;
background-repeat: no-repeat;
}
}
&.mail {
padding-left: 31px;
&:before {
width: 24px;
height: 24px;
background: url("../../img/mail-ico-form.svg");
background-position: 50% 50%;
background-size: 24px 20px;
background-repeat: no-repeat;
}
}
}
&:first-child {
padding-right: 47px;
}
}
}
@media (max-width: 550px) {
|
3287f30f
Виталий
change legal cont...
|
135
136
137
138
139
140
|
.legal-form-contacts {
text-align: left;
div {
padding-right: 0;
width: 100%;
}
|
8c203875
Виталий
add form legal, c...
|
141
142
143
144
145
|
}
.legal-input {
width: 100%;
}
}
|