File: D:/HostingSpaces/SBogers10/shop.komma.nl/resources/sass/kms/Organisms/modal.scss
.o-modal {
position: fixed;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
&::before {
content: '';
position: absolute;
z-index: -1;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.5);
pointer-events: none;
}
}
.o-modal__content {
z-index: 2;
display: block;
overflow: hidden;
width: 100%;
max-width: 500px;
background-color: #fff;
border-radius: 5px 5px 0 0;
}
.o-modal__header {
margin: 0;
padding: 12px 40px;
font-weight: 100;
font-size: .8rem;
line-height: 1.6;
text-transform: uppercase;
text-align: center;
background-color: #262f43;
color: hsla(0,0%,100%,.75);
}
.o-modal__body {
padding: 25px 40px 40px;
}