2022-11-27 05:49:48 +00:00
|
|
|
.backdrop {
|
2022-09-09 11:53:35 +00:00
|
|
|
align-items: center;
|
|
|
|
background: rgb(20 20 20 / 70%);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
2022-11-07 21:07:42 +00:00
|
|
|
overflow: auto;
|
|
|
|
pointer-events: all;
|
2022-09-09 11:53:35 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2022-11-27 05:49:48 +00:00
|
|
|
z-index: 100;
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
|
2022-11-27 05:49:48 +00:00
|
|
|
.modal {
|
|
|
|
background: #fff;
|
|
|
|
max-width: 1000px;
|
|
|
|
position: relative;
|
|
|
|
width: 80%;
|
|
|
|
|
|
|
|
.close {
|
2022-09-09 11:53:35 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 1em;
|
|
|
|
cursor: pointer;
|
2022-12-01 18:45:35 +00:00
|
|
|
height: 18px;
|
|
|
|
width: 16px;
|
2022-09-09 11:53:35 +00:00
|
|
|
opacity: 1;
|
|
|
|
padding: 0;
|
|
|
|
right: 0;
|
|
|
|
transition: opacity 0.3s;
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
svg {
|
2022-12-01 18:45:35 +00:00
|
|
|
display: block;
|
2022-09-09 11:53:35 +00:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 800px) and (max-width: 991px) {
|
|
|
|
// top: 11em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-27 05:49:48 +00:00
|
|
|
&.narrow {
|
|
|
|
max-width: 460px;
|
|
|
|
width: 50%;
|
|
|
|
@media (min-width: 800px) and (max-width: 991px) {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2022-12-01 18:45:35 +00:00
|
|
|
|
2022-11-27 05:49:48 +00:00
|
|
|
.close {
|
|
|
|
right: 12px;
|
|
|
|
top: 12px;
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|