2018-01-27 19:12:06 +01:00
|
|
|
|
@import "variables.scss";
|
|
|
|
|
|
2021-12-15 23:32:00 +01:00
|
|
|
|
app-root {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
height: 100%;
|
2021-12-15 23:32:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#container {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 0;
|
2021-12-15 23:32:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-03 22:24:49 +01:00
|
|
|
|
.vault {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
> .groupings,
|
|
|
|
|
> .items,
|
|
|
|
|
> .details,
|
|
|
|
|
> .logo {
|
2018-01-27 19:12:06 +01:00
|
|
|
|
display: flex;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.inner-content {
|
|
|
|
|
padding: 10px 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2022-02-14 21:43:05 +01:00
|
|
|
|
> .items {
|
|
|
|
|
order: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> .details {
|
|
|
|
|
order: 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> .logo {
|
|
|
|
|
order: 4;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
> .groupings {
|
2022-02-14 21:43:05 +01:00
|
|
|
|
order: 1;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
width: 22%;
|
|
|
|
|
min-width: 175px;
|
2022-04-27 22:10:11 +02:00
|
|
|
|
max-width: 600px;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
border-right: 1px solid #000000;
|
2018-02-01 03:04:04 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt");
|
|
|
|
|
border-right-color: themed("borderColor");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inner-content {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
|
|
> ul,
|
|
|
|
|
> div > ul {
|
|
|
|
|
margin: 0 0 15px 0;
|
2018-02-01 03:04:04 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: $font-size-base;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("headingColor");
|
|
|
|
|
}
|
2018-02-01 03:04:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.heading {
|
|
|
|
|
display: flex;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
button {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
2018-05-30 15:28:19 +02:00
|
|
|
|
@include themify($themes) {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
color: themed("headingButtonColor");
|
2018-05-30 15:28:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
|
|
|
|
cursor: pointer;
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("headingButtonHoverColor");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-05 18:34:01 +01:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
ul:not(.bwi-ul) {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
li {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-05 18:34:01 +01:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
ul.bwi-ul {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
li {
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
top: 8px;
|
|
|
|
|
width: 1.1em;
|
2018-01-31 23:58:06 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-31 23:58:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Nested indentions
|
2022-01-27 18:21:53 +01:00
|
|
|
|
ul.bwi-ul {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 1
|
|
|
|
|
li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 12px;
|
|
|
|
|
}
|
2018-01-27 20:43:29 +01:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: -4px;
|
2019-04-02 14:43:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 11px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-30 21:21:41 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 2
|
|
|
|
|
ul li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 23px;
|
|
|
|
|
}
|
2018-01-27 20:43:29 +01:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 7px;
|
|
|
|
|
}
|
2018-05-30 21:21:41 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 22px;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 3
|
|
|
|
|
ul ul li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 34px;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 18px;
|
|
|
|
|
}
|
2018-09-12 19:18:22 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 33px;
|
2018-10-26 05:04:14 +02:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 4
|
|
|
|
|
ul ul ul li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 45px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 29px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 44px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 5
|
|
|
|
|
ul ul ul ul li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 56px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 40px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 55px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 6
|
|
|
|
|
ul ul ul ul ul li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 67px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 51px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 66px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
// Level 7
|
|
|
|
|
ul ul ul ul ul ul li {
|
|
|
|
|
> a {
|
|
|
|
|
padding-left: 78px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 62px;
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
&.active > a .bwi-li {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
left: 77px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
ul {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
li {
|
|
|
|
|
a {
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("textColor");
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
span {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
margin-left: auto;
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("headingButtonColor");
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("headingButtonHoverColor");
|
|
|
|
|
}
|
2018-10-26 05:04:14 +02:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
|
|
|
|
span {
|
|
|
|
|
visibility: visible;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&.active {
|
|
|
|
|
margin-left: -15px;
|
|
|
|
|
margin-right: -5px;
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("groupingsActiveColor");
|
|
|
|
|
}
|
2018-01-31 23:58:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
ul {
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt");
|
2018-02-01 02:42:56 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
|
|
|
|
|
margin-left: -15px;
|
|
|
|
|
margin-right: -5px;
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
}
|
2018-01-31 23:58:06 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
> .items {
|
|
|
|
|
width: 28%;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
max-width: 350px;
|
|
|
|
|
border-right: 1px solid #000000;
|
2018-01-28 00:13:01 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColor");
|
|
|
|
|
border-right-color: themed("borderColor");
|
|
|
|
|
}
|
2018-01-29 22:13:37 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.no-items {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 100%;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 0 10px;
|
2018-01-29 22:13:37 +01:00
|
|
|
|
|
2022-01-21 20:37:28 +01:00
|
|
|
|
.no-items-image {
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
content: url("../images/search-desktop" + themed("svgSuffix"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
margin-bottom: 10px;
|
2018-01-29 22:13:37 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("disabledIconColor");
|
2018-01-29 22:13:37 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-31 18:52:12 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
> .details {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt2");
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.inner-content {
|
|
|
|
|
min-width: 400px;
|
|
|
|
|
}
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.box {
|
|
|
|
|
max-width: 550px;
|
|
|
|
|
margin: 30px auto 0 auto;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:first-child {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:last-child {
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
> form {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> .logo {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
2018-01-27 19:12:06 +01:00
|
|
|
|
.content {
|
2021-12-20 15:47:17 +01:00
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
overflow-x: auto;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.inner-content {
|
|
|
|
|
min-width: 320px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
img {
|
|
|
|
|
width: 284px;
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
transition: all 1s ease-in-out;
|
2018-05-30 21:21:41 +02:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.content {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2018-01-29 22:13:37 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.footer {
|
|
|
|
|
height: 55px;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
border-top: 1px solid #000000;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt");
|
|
|
|
|
border-top-color: themed("borderColor");
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
2021-02-05 18:34:01 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
button {
|
|
|
|
|
margin-right: 10px;
|
2021-02-05 18:34:01 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
&:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
.btn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-size: $font-size-base * 0.8;
|
|
|
|
|
flex: 1;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
|
|
|
|
|
&:not(.active) {
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt");
|
2021-02-05 18:34:01 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
font-size: $font-size-base * 1.5;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2021-02-05 18:34:01 +01:00
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|