| 1 |
.bwp-notice { |
| 2 |
display: flex; |
| 3 |
margin: 10px 0 !important; |
| 4 |
gap: 20px; |
| 5 |
padding: 25px 20px !important; |
| 6 |
border-radius: 10px; |
| 7 |
position: relative; |
| 8 |
box-shadow: none !important; |
| 9 |
background-color: #ffffff !important; |
| 10 |
border: 1px solid #ddeaff !important; |
| 11 |
box-shadow: 0px 0px 5px 2px rgba(83, 113, 167, 0.05) !important; |
| 12 |
border-radius: 0px; |
| 13 |
background-color: #e6e8ff !important; |
| 14 |
border: 1px solid #ded5ff !important; |
| 15 |
box-shadow: 0px 10px 50px -10px #837dcf4a !important; |
| 16 |
margin: 20px auto !important; |
| 17 |
margin-right: 20px !important; |
| 18 |
|
| 19 |
&.no-title { |
| 20 |
align-items: center; |
| 21 |
} |
| 22 |
|
| 23 |
&.status-info { |
| 24 |
background-color: #e6e8ff !important; |
| 25 |
border: 1px solid #ded5ff !important; |
| 26 |
} |
| 27 |
|
| 28 |
&.status-error { |
| 29 |
background-color: #ffe1e1 !important; |
| 30 |
border: 1px solid #ffbaba !important; |
| 31 |
} |
| 32 |
|
| 33 |
&.status-warning { |
| 34 |
background-color: #ffe6c7 !important; |
| 35 |
border: 1px solid #ffd094 !important; |
| 36 |
} |
| 37 |
|
| 38 |
&.status-success { |
| 39 |
background-color: #adffc0 !important; |
| 40 |
border: 1px solid #8ff783 !important; |
| 41 |
} |
| 42 |
|
| 43 |
.icon { |
| 44 |
min-width: 50px; |
| 45 |
width: 50px; |
| 46 |
max-width: 50px; |
| 47 |
height: 50px; |
| 48 |
border-radius: 50%; |
| 49 |
background-color: #fff; |
| 50 |
display: flex; |
| 51 |
justify-content: center; |
| 52 |
align-items: center; |
| 53 |
} |
| 54 |
|
| 55 |
.content p { |
| 56 |
color: #061a3c; |
| 57 |
} |
| 58 |
|
| 59 |
.status-tag { |
| 60 |
text-transform: capitalize; |
| 61 |
background-color: #a4a4a4; |
| 62 |
display: inline-block; |
| 63 |
color: #fff; |
| 64 |
padding: 3px 10px; |
| 65 |
font-weight: 400; |
| 66 |
font-size: 12px; |
| 67 |
border-radius: 13px; |
| 68 |
margin-bottom: 5px; |
| 69 |
display: none; |
| 70 |
} |
| 71 |
|
| 72 |
.close { |
| 73 |
position: absolute; |
| 74 |
right: 20px; |
| 75 |
top: 20px; |
| 76 |
opacity: 1; |
| 77 |
cursor: pointer; |
| 78 |
} |
| 79 |
|
| 80 |
&.error .status-tag { |
| 81 |
background-color: #ff4c4c !important; |
| 82 |
} |
| 83 |
|
| 84 |
&.warning .status-tag { |
| 85 |
background-color: #ffb000 !important; |
| 86 |
} |
| 87 |
|
| 88 |
&.success .status-tag { |
| 89 |
background-color: #1dde59 !important; |
| 90 |
} |
| 91 |
|
| 92 |
.content { |
| 93 |
h5 { |
| 94 |
font-size: 15px; |
| 95 |
margin: 0; |
| 96 |
margin-bottom: 10px; |
| 97 |
color: #061a3c; |
| 98 |
} |
| 99 |
|
| 100 |
p { |
| 101 |
font-size: 14px; |
| 102 |
padding: 0; |
| 103 |
color: #061a3c; |
| 104 |
} |
| 105 |
|
| 106 |
.bwp-notice-btn { |
| 107 |
display: flex; |
| 108 |
margin-top: 14px; |
| 109 |
gap: 8px; |
| 110 |
|
| 111 |
.bwp-btn { |
| 112 |
text-decoration: none; |
| 113 |
color: #061a3c; |
| 114 |
background: #fff; |
| 115 |
padding: 10px 15px; |
| 116 |
display: block; |
| 117 |
line-height: 1; |
| 118 |
font-size: 13px; |
| 119 |
border-radius: 6px; |
| 120 |
border: 1px solid #dbe9fe; |
| 121 |
|
| 122 |
&.primary { |
| 123 |
background-color: #5057ff !important; |
| 124 |
color: #fff !important; |
| 125 |
} |
| 126 |
} |
| 127 |
} |
| 128 |
} |
| 129 |
} |
| 130 |
|
| 131 |
.berqwp-loader { |
| 132 |
width: 20px; |
| 133 |
float: left; |
| 134 |
margin-right: 10px; |
| 135 |
aspect-ratio: 1; |
| 136 |
border-radius: 50%; |
| 137 |
border: 4px solid #e5e6ff; |
| 138 |
border-right-color: #5057ff; |
| 139 |
animation: l2 1s infinite linear; |
| 140 |
} |
| 141 |
|
| 142 |
@keyframes l2 { |
| 143 |
to { |
| 144 |
transform: rotate(1turn) |
| 145 |
} |
| 146 |
} |
| 147 |
|
| 148 |
.bwp-notice.bwp_feedback { |
| 149 |
display:none; |
| 150 |
} |