Newer
Older
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
#map{
width:700px;
height:100%;
max-height:600px;
display:inline-block;
vertical-align: top;
}
.row {
display: table;
margin:5px;
display: flex;
justify-content: center;
align-items: center;
}
.hospital-selector{
background-color:rgba(0,0,0,0.1);
height:100%;
max-height:600px;
overflow:auto;
display:inline-block;
vertical-align: top;
padding:5px;
}
.row-hospital-selector{
height:600px;
overflow:hidden;
}
[class*="col-"] {
float: none;
display: table-cell;
vertical-align: top;
padding:5px;
min-width:100px;
}
.arrow_box {
position: relative;
background: #fff;
border: 1px solid #003c88;
}
.arrow_box:after, .arrow_box:before {
top: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.arrow_box:after {
border-color: rgba(255, 255, 255, 0);
border-top-color: #fff;
border-width: 10px;
margin-left: -10px;
}
.arrow_box:before {
border-color: rgba(153, 153, 153, 0);
border-top-color: #003c88;
border-width: 11px;
margin-left: -11px;
}
.arrow_box {
border-radius: 5px;
padding: 10px;
margin-bottom: 50px;
}
ul.breadcrumb {
padding: 10px 16px;
list-style: none;
background-color: #eee;
}
ul.breadcrumb li {
display: inline;
font-size: 18px;
ul.breadcrumb li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
ul.breadcrumb li a {
color: #0275d8;
text-decoration: none;
}
ul.breadcrumb li a:hover {
color: #01447e;
text-decoration: underline;
}
a:hover{
cursor:pointer;
}