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
.nav-container {
min-width: 1397px;
padding-left: 8px;
.btn-sm-hide {
display: block;
}
.btn-sm-show {
font-size: 22px;
display: none;
}
.nav-element-right .user-menu {
.link-sm-show {
display: none;
}
}
@media (max-width: 1400px) {
& {
min-width: 100%;
padding-left: 0;
}
.btn-sm-hide {
display: none;
}
.btn-sm-show {
display: block;
width: 15%;
}
.nav-element-right {
max-width: 26%;
word-break: break-all;
}
.search-area {
display: none;
}
.nav-element-right .user-menu {
.link-sm-show {
display: inline-block;
}
p {
color: #333;
};
}
}
}
@media screen and (max-width: 1400px) {
.user-menu{
position:absolute!important;
top: 55px!important;
left: -50px!important;
}
}