1 .overlay { 2 &__container, 3 &__container-light { 4 top: 0; 5 left: 0; 6 width: 100%; 7 height: 100%; 8 position: fixed; 9 z-index: 1016; 10 background: #474747; 11 } 12 13 &__container-light { 14 @include transparentBg(#474747, 0.7); 15 } 16 17 &__content { 18 position: absolute; 19 margin: 0 auto; 20 height: 100%; 21 width: 56%; 22 left: 50%; 23 @include transform(translateX(-50%)); 24 25 &_bottom { 26 position: absolute; 27 bottom: 0; 28 } 29 } 30 31 &__policy { 32 position: absolute; 33 bottom: 24px; 34 width: 100%; 35 } 36 37 &__spinner-container { 38 display: flex; 39 width: 100%; 40 height: 100%; 41 justify-content: center; 42 align-items: center; 43 } 44 }