3b9aba82ce35d34fa8ef4858c01e62dfb3b28e49
[portal/sdk.git] /
1 .overlay {
2     position: fixed;
3     top: 0;
4     bottom: 0;
5     left: 0;
6     right: 0;
7     background-color: rgba(0, 0, 0, 0.705);
8     z-index: 999;
9   }
10
11   .dialog {
12     z-index: 1000;
13     position: fixed;
14     right: 0;
15     left: 0;
16     top: 20px;
17     margin-right: auto;
18     margin-left: auto;
19     min-height: 250px;
20     width: 90%;
21     max-width: 520px;
22     background-color: #fff;
23     padding: 12px;
24     box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.349), 0 13px 19px 2px rgba(0, 0, 0, 0.349), 0 5px 24px 4px rgba(0, 0, 0, 0.349);
25   }
26   
27   @media (min-width: 768px) {
28     .dialog {
29       top: 40px;
30     }
31   }
32   
33   .dialog__close-btn {
34     border: 0;
35     background: none;
36     color: #2d2d2d;
37     position: absolute;
38     top: 8px;
39     right: 8px;
40     font-size: 1.2em;
41     display: block;
42     border: #2d2d2d 1px solid;
43   }
44