2019-04-03 15:29:46 +02:00
|
|
|
#footer{
|
2019-06-05 14:49:26 +02:00
|
|
|
padding-bottom: 45px;
|
2019-04-03 15:29:46 +02:00
|
|
|
width: 100%;
|
2019-05-14 19:59:47 +02:00
|
|
|
background: $light-grey;
|
|
|
|
.block{
|
2019-05-09 00:26:27 +02:00
|
|
|
@include inlineflex;
|
|
|
|
width: 100%;
|
|
|
|
margin: 20px 0;
|
2019-06-05 12:59:18 +02:00
|
|
|
justify-content: center;
|
2019-05-09 00:26:27 +02:00
|
|
|
p{
|
2019-05-14 19:59:47 +02:00
|
|
|
padding: 0 20px;
|
|
|
|
|
2019-05-09 00:26:27 +02:00
|
|
|
img{
|
2019-05-14 19:59:47 +02:00
|
|
|
width: 100%;
|
|
|
|
max-width: 150px;
|
2019-05-09 00:26:27 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
&:nth-of-type(1){
|
|
|
|
img{
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:not(:nth-of-type(1)){
|
|
|
|
border-left: 1px solid black;
|
|
|
|
}
|
|
|
|
}
|
2019-04-05 00:19:26 +02:00
|
|
|
}
|
|
|
|
}
|
2019-06-05 12:00:17 +02:00
|
|
|
|
|
|
|
.opt-out{
|
|
|
|
height: auto;
|
2019-06-05 12:59:18 +02:00
|
|
|
-webkit-transform: translateY(70%);
|
|
|
|
transform: translateY(70%);
|
2019-06-05 12:00:17 +02:00
|
|
|
z-index: 9999;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
background: rgba(255,255,255,.5 );
|
|
|
|
text-align: center;
|
|
|
|
font-family: $Bold;
|
2019-06-05 12:59:18 +02:00
|
|
|
transition: background 0.3s ease, -webkit-transform 0.3s ease;
|
2019-06-05 12:00:17 +02:00
|
|
|
transition: transform 0.3s ease, background 0.3s ease;
|
2019-06-05 12:59:18 +02:00
|
|
|
transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
|
2019-06-05 12:00:17 +02:00
|
|
|
iframe{
|
|
|
|
height: 110px;
|
|
|
|
}
|
|
|
|
p{
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
img{
|
|
|
|
width: 20px;
|
|
|
|
height: auto;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
&.open{
|
2019-06-05 12:59:18 +02:00
|
|
|
-webkit-transform: translateX(0);
|
|
|
|
transform: translateX(0);
|
2019-06-05 12:00:17 +02:00
|
|
|
background: white;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
img{
|
2019-06-05 12:59:18 +02:00
|
|
|
-webkit-transform: rotate(180deg);
|
|
|
|
transform: rotate(180deg);
|
2019-06-05 12:00:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|