File size: 3,093 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
@media (min-width: 768px) {
    .modal-dialog-heatmap {
        width: 90%;
        max-width: 1200px;
    }
}

.modal-heatmap-close {
    position: absolute;
    top: 5px;
    right: 20px;
    color: #fff;
    z-index: 1080;
    float: none;
    opacity: 0.75;
}

.modal-heatmap-close:hover,
.modal-heatmap-close:focus {
    opacity: 1;
    color: #fff;
}


.heatmap-iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: 0;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .heatmap-iframe {
        height: 90vh;
    }
}

body.heatmap-iframe-body a.heatmap-link {
    position: relative;
    z-index: 1010;
}

.heatmap-label {
    position: absolute;
    z-index: 1050;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
}

.heatmap-label > p {
    padding: 6px 6px 4px 6px !important;
    margin: 0 !important;
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1 !important;
    color: #fff !important;
}

.heatmap-legend {
    display: none;
    position: absolute;
    z-index: 1060;
    right: 20px;
    top: 30px;
    color: #fff;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 4px;
}

@media (min-width: 768px) {
    .heatmap-legend {
        display: block;
    }
}

.heatmap-legend a {
    color: rgba(255, 255, 255, 0.6);
}
.heatmap-legend a.active,
.heatmap-legend a:focus,
.heatmap-legend a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.heatmap-legend > p:nth-child(1),
.heatmap-legend > p:nth-child(3) {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.1;
}

.heatmap-legend > p:nth-child(1) {
    margin-top: 0;
}

.heatmap-legend > p:nth-child(2) {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.heatmap-legend > p:nth-child(3) {
    margin-bottom: 5px;
}

.heatmap-scale {
    display: flex;
}

.heatmap-scale-header,
.heatmap-scale-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
}

.heatmap-scale-footer {
    padding-bottom: 0;
}

.heatmap-scale-header > div,
.heatmap-scale-footer > div {

}

.heatmap-scale-bar {
    position: relative;
    width: 47px;
    height: 16px;
    background: #fff;
}

.heatmap-scale-bar:nth-child(1) {
    background: linear-gradient(to right, #2c3bb6, #0a85ff);
    border-radius: 2px 0 0 2px;
}

.heatmap-scale-bar:nth-child(2) {
    background: linear-gradient(to right, #0a85ff, #f0df42);
}

.heatmap-scale-bar:nth-child(3) {
    background: linear-gradient(to right, #f0df42, #f8c344);
}

.heatmap-scale-bar:nth-child(4) {
    background: linear-gradient(to right, #f8c344, #ff843a);
}

.heatmap-scale-bar:nth-child(5) {
    background: linear-gradient(to right, #ff843a, #f83834);
    border-radius: 0 2px 2px 0;
}

.heatmap-scale-bar:nth-child(-n+4):after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: -4px;
    right: -1px;
    z-index: 1;
}