| 1 |
.vipps-recurring-icon { |
| 2 |
width: 70px; |
| 3 |
} |
| 4 |
|
| 5 |
.vipps-recurring-payment-redirect-page { |
| 6 |
z-index: 100000; |
| 7 |
position: absolute; |
| 8 |
top: 0; |
| 9 |
left: 0; |
| 10 |
height: 100%; |
| 11 |
width: 100%; |
| 12 |
background: #FFF; |
| 13 |
color: #161225; |
| 14 |
|
| 15 |
&__container { |
| 16 |
height: 100%; |
| 17 |
display: flex; |
| 18 |
align-items: center; |
| 19 |
justify-content: center; |
| 20 |
padding: 0 15px; |
| 21 |
|
| 22 |
&__content { |
| 23 |
&__logo { |
| 24 |
display: flex; |
| 25 |
justify-content: center; |
| 26 |
width: 100%; |
| 27 |
|
| 28 |
img { |
| 29 |
height: 100%; |
| 30 |
width: 150px; |
| 31 |
} |
| 32 |
} |
| 33 |
|
| 34 |
&__loading { |
| 35 |
display: flex; |
| 36 |
justify-content: center; |
| 37 |
|
| 38 |
&__spinner { |
| 39 |
@keyframes spin { |
| 40 |
to { |
| 41 |
transform: rotate(360deg); |
| 42 |
} |
| 43 |
} |
| 44 |
@-webkit-keyframes spin { |
| 45 |
to { |
| 46 |
transform: rotate(360deg); |
| 47 |
} |
| 48 |
} |
| 49 |
|
| 50 |
display: inline-block; |
| 51 |
margin: 20px 0; |
| 52 |
width: 32px; |
| 53 |
height: 32px; |
| 54 |
border: 2px solid rgba(0, 0, 0, .3); |
| 55 |
border-radius: 50%; |
| 56 |
border-top-color: #161225; |
| 57 |
animation: spin 1s ease-in-out infinite; |
| 58 |
} |
| 59 |
} |
| 60 |
|
| 61 |
&__text { |
| 62 |
font-size: 1.2rem; |
| 63 |
text-align: center; |
| 64 |
|
| 65 |
p { |
| 66 |
padding: 0; |
| 67 |
margin: 0; |
| 68 |
} |
| 69 |
|
| 70 |
&__heading { |
| 71 |
font-size: 1.5rem; |
| 72 |
font-weight: 600; |
| 73 |
margin-top: 15px; |
| 74 |
} |
| 75 |
|
| 76 |
&__action { |
| 77 |
margin-top: 30px; |
| 78 |
} |
| 79 |
} |
| 80 |
} |
| 81 |
} |
| 82 |
} |
| 83 |
|