_legal.scss
2.5 KB
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
26
27
28
29
30
31
32
33
34
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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
135
136
137
138
139
140
141
.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 {
color: #467fbf;
}
}
.legal-area {
@include wfl;
padding: 0 15px;
margin-top: 7px;
label {
color: #467fbf;
}
}
.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;
border: 1px solid #467fbf;
padding: 0 0 0 0;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
cursor: pointer;
color: #467fbf;
@include Transition(0.2);
&:hover {
background: #467fbf;
color: #fff;
}
&:active {
background: #3f74ad;
border: 1px solid #3f74ad;
color: #fff;
}
}
}
.legal-form-contacts {
@include wfl;
padding: 0 15px;
div {
float: left;
margin-top: 4px;
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) {
.legal-form-contacts div {
padding-right: 0;
width: 100%;
}
.legal-input {
width: 100%;
}
}