Blame view

public/css/blocks/modals/modal-open-catalog.css 2.42 KB
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
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
  .modal-catalog {
    z-index: 101;
    position: absolute;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
    left: 7%;
    max-width: 1320px;
    width: 100%;
    max-height: 688px;
    height: 100%;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @media (min-width: 1580px) {
    .modal-catalog {
      left: 15.5%;
    }
  }
  .modal-catalog--hidden {
    display: none;
  }
  
  .modal-catalog-left {
    background: #F7F7F9;
    margin-right: 0;
    margin-bottom: 0;
    max-width: 292px;
    width: 100%;
    padding-top: 10px;
    padding-left: 5px;
    overflow-y: auto;
  }
  
  .modal-cat-acc-but {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .modal-cat-acc-but:after {
    left: 220px;
  }
  
  .modal-cat-panel > li {
    font-size: 14px;
    line-height: 16px;
  }
  .modal-cat-panel > :not(:last-child) {
    margin-bottom: 14px;
  }
  
  .modal-catalog-centre {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
  }
  
  .modal-catalog-top {
    padding-top: 17px;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .modal-catalog-top__wrapper {
    border: 1px solid #636B78;
    border-radius: 40px;
    background-color: #F7F7F9;
    margin-right: 20px;
    margin-bottom: 12px;
  }
  .modal-catalog-top__name {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #636B78;
    padding: 5px 10px;
  }
  
  .modal-catalog-content {
    margin-top: 8px;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .modal-catalog-cont-line {
    max-width: 233px;
    width: 100%;
    margin-right: 10px;
  }
  .modal-catalog-cont-line > :not(:last-child) {
    margin-bottom: 20px;
  }
  .modal-catalog-cont-line__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #333B49;
    margin-bottom: 10px;
  }
  .modal-catalog-cont-line__list {
    margin-bottom: 20px;
  }
  .modal-catalog-cont-line__item {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
  }
  .modal-catalog-cont-line__item:not(:last-child) {
    margin-bottom: 10px;
  }