| 1 |
/* |
| 2 |
* Confirm popup styles |
| 3 |
*/ |
| 4 |
|
| 5 |
.wtotem_body .popup-overlay { |
| 6 |
position: fixed; |
| 7 |
inset: 0; |
| 8 |
background: rgba(94, 105, 119, 0.6); |
| 9 |
display: flex; |
| 10 |
z-index: 99999; |
| 11 |
padding: 0; |
| 12 |
} |
| 13 |
.wtotem_body .popup-content { |
| 14 |
z-index: 30!important; |
| 15 |
|
| 16 |
position: relative; |
| 17 |
width: 90%; |
| 18 |
height: 90%; |
| 19 |
margin: auto; |
| 20 |
border: 1px solid rgb(187, 187, 187); |
| 21 |
padding: 5px; |
| 22 |
border-radius: 10px; |
| 23 |
display: flex; |
| 24 |
align-items: center; |
| 25 |
justify-content: center; |
| 26 |
flex-direction: column; |
| 27 |
background: rgb(255, 255, 255); |
| 28 |
margin-top: 20px; |
| 29 |
} |
| 30 |
.wtotem_body .confirmation-dialog { |
| 31 |
padding: 20px; |
| 32 |
display: flex; |
| 33 |
align-items: center; |
| 34 |
justify-content: center; |
| 35 |
flex-direction: column; |
| 36 |
} |
| 37 |
.wtotem_body .confirmation-dialog__title { |
| 38 |
font-weight: 700; |
| 39 |
font-size: 24px; |
| 40 |
line-height: 1.5; |
| 41 |
color: #1d293f; |
| 42 |
margin: 0 0 20px; |
| 43 |
} |
| 44 |
.wtotem_body .confirmation-dialog__text { |
| 45 |
font-size: 14px; |
| 46 |
line-height: 1.5; |
| 47 |
color: #000; |
| 48 |
margin-bottom: 10px; |
| 49 |
max-width: 779px; |
| 50 |
white-space: pre-wrap; |
| 51 |
} |
| 52 |
.wtotem_body .confirmation-dialog__list{ |
| 53 |
font-size: 14px; |
| 54 |
line-height: 1.5; |
| 55 |
color: #000; |
| 56 |
margin-bottom: 24px; |
| 57 |
max-width: 584px; |
| 58 |
white-space: pre-wrap; |
| 59 |
width: 88%; |
| 60 |
list-style: disc; |
| 61 |
} |
| 62 |
|
| 63 |
.wtotem_body .confirmation-dialog__buttons-wrapper { |
| 64 |
display: flex; |
| 65 |
} |
| 66 |
.wtotem_body .wt-button { |
| 67 |
min-width: 28px; |
| 68 |
height: 36px; |
| 69 |
padding: 0 20px; |
| 70 |
color: #fff; |
| 71 |
font-size: 14px; |
| 72 |
border-radius: 5px; |
| 73 |
cursor: pointer; |
| 74 |
display: flex; |
| 75 |
align-items: center; |
| 76 |
justify-content: center; |
| 77 |
background-color: #3d50df; |
| 78 |
text-decoration: none; |
| 79 |
border: none; |
| 80 |
margin-bottom: 20px; |
| 81 |
} |
| 82 |
|