blob: 9d7b3f544e1ed1b4a782c7948fdeef414017ad7f (
plain)
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
|
.make_apppointment_area{
padding-top: 150px;
padding-bottom: 120px;
background: #fdf9f6;
@media #{$mobile_device} {
padding-top: 60px;
padding-bottom: 30px;
}
.appoint_ment_form{
margin-bottom: 30px;
form{
.single_field{
margin-bottom: 32px;
input,textarea{
width: 100%;
border: 0;
padding-bottom: 3px;
border-bottom: 1px solid #c1c1c1;
padding-left: 10px;
height: 50px;
font-family: $font2;
color: #000;
background: transparent ;
&::placeholder{
color: #96989a;
font-weight: 400;
font-family: $font2;
}
&:focus{
outline: none;
}
}
textarea{
resize: none;
margin-top: 41px;
padding: 11px 20px 14px 10px;
}
&:last-child{
margin-bottom: 0;
}
}
button{
transition: .3s;
cursor: pointer;
}
p{
margin-top: 17px;
margin-bottom: 40px;
font-size: 16px;
font-weight: 400;
color: #464444;
line-height: 30px;
}
}
}
// appointMent_info
.appointMent_info{
.single_appontment{
margin-bottom: 36px;
h4{
font-size: 18px;
color: #4a4948;
font-weight: 400;
}
p{
font-size: 16px;
line-height: 30px;
color: #7f7f7f;
font-weight: 400;
margin-bottom: 0;
span{
flex: 50% 0 0;
}
}
}
}
}
|