2021-03-05 14:30:46 +01:00
|
|
|
.fs-modal {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 9999;
|
|
|
|
overflow: auto;
|
|
|
|
background-color: white;
|
2021-03-05 16:12:16 +01:00
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0);
|
|
|
|
transition: transform linear .3s, opacity linear .3s;
|
2021-03-05 14:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fs-modal > .close {
|
|
|
|
position: fixed;
|
|
|
|
opacity: 0.7;
|
2021-03-05 14:50:18 +01:00
|
|
|
top: 30px;
|
|
|
|
left: 30px;
|
2021-03-05 14:30:46 +01:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fs-modal > .header {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 80px;
|
|
|
|
padding: 10px 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fs-modal > .content {
|
|
|
|
margin-top: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fs-modal > .content > .content-inner {
|
2021-03-05 16:12:16 +01:00
|
|
|
padding: 30px 90px;
|
2021-03-05 14:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 639px) {
|
|
|
|
.fs-modal > .header {
|
|
|
|
padding: 10px 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fs-modal > .content > .content-inner {
|
2021-03-05 16:12:16 +01:00
|
|
|
padding: 30px 45px;
|
2021-03-05 14:30:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html.fs-modal-open {
|
|
|
|
overflow: hidden !important;
|
|
|
|
}
|
|
|
|
|
2021-03-05 16:12:16 +01:00
|
|
|
html.fs-modal-open .fs-modal {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
2021-01-15 16:46:56 +01:00
|
|
|
.uk-modal.uk-open ~ .uk-tooltip {
|
|
|
|
z-index: 10001;
|
|
|
|
}
|
2021-03-05 14:30:46 +01:00
|
|
|
|
|
|
|
.fs-modal ~ .uk-tooltip {
|
|
|
|
z-index: 10000;
|
|
|
|
}
|