2017-11-09 17:47:10 +01:00
|
|
|
.loading-overlay {
|
2018-04-18 09:56:52 +02:00
|
|
|
left: 0;
|
2017-11-09 17:47:10 +01:00
|
|
|
z-index: 50;
|
|
|
|
position: absolute;
|
|
|
|
flex-direction: column;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2018-04-18 09:56:52 +02:00
|
|
|
flex: 1 1 auto;
|
2017-11-09 17:47:10 +01:00
|
|
|
width: 100%;
|
2018-04-18 09:56:52 +02:00
|
|
|
background: rgba(255, 255, 255, .8);
|
2017-11-09 17:47:10 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
2018-05-30 19:38:53 +02:00
|
|
|
margin-top: 66px;
|
|
|
|
height: calc(100% - 66px);
|
2017-11-09 17:47:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 576px) {
|
|
|
|
margin-top: 75px;
|
|
|
|
height: calc(100% - 75px);
|
|
|
|
}
|
2018-04-18 09:56:52 +02:00
|
|
|
|
|
|
|
&--full-screen {
|
|
|
|
position: fixed;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2018-05-01 03:28:34 +02:00
|
|
|
|
|
|
|
&__container {
|
|
|
|
position: absolute;
|
|
|
|
top: 33%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
margin-top: 32px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 20px;
|
|
|
|
color: $manatee;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
height: 58px;
|
|
|
|
width: 58px;
|
2017-11-09 17:47:10 +01:00
|
|
|
}
|