| 1 |
/* General Style */ |
| 2 |
.wgm_setup_wizard_wrap { |
| 3 |
padding: 30px 0; |
| 4 |
max-width: 950px; |
| 5 |
margin: 0 auto; |
| 6 |
float: none; |
| 7 |
} |
| 8 |
.wgm_setup_wizard_header{ |
| 9 |
width: auto; |
| 10 |
display: flex; |
| 11 |
justify-content: center; |
| 12 |
margin-bottom: 30px; |
| 13 |
} |
| 14 |
.wgm_setup_wizard_header .wgm_logo{ |
| 15 |
width: 50px; |
| 16 |
} |
| 17 |
.wgm_setup_wizard_header .wgm_plugin_name{ |
| 18 |
text-align: center; |
| 19 |
color: #06142F; |
| 20 |
font-size: 24px; |
| 21 |
letter-spacing: .035em; |
| 22 |
font-weight: 400; |
| 23 |
margin-top: 0;line-height: 43px; |
| 24 |
margin-left: 10px; |
| 25 |
} |
| 26 |
|
| 27 |
.wgm_setup_wizard_steps { |
| 28 |
display: flex; |
| 29 |
position: relative; |
| 30 |
margin: 0 8%; |
| 31 |
justify-content: space-between; |
| 32 |
} |
| 33 |
.wgm_setup_wizard_steps.wgm_four { |
| 34 |
margin: 0 25%; |
| 35 |
} |
| 36 |
.wgm_setup_wizard_steps li { |
| 37 |
border-radius: 5px; |
| 38 |
background-color: #ffffff; |
| 39 |
border: 1px #e0d9d9 solid; |
| 40 |
text-align: center; |
| 41 |
padding: 8px 20px; |
| 42 |
position: relative; |
| 43 |
z-index: 1; |
| 44 |
} |
| 45 |
|
| 46 |
.wgm_setup_wizard_steps[data-step="0"] li:nth-child(-n + 1), |
| 47 |
.wgm_setup_wizard_steps[data-step="1"] li:nth-child(-n + 2), |
| 48 |
.wgm_setup_wizard_steps[data-step="2"] li:nth-child(-n + 3), |
| 49 |
.wgm_setup_wizard_steps[data-step="3"] li:nth-child(-n + 4), |
| 50 |
.wgm_setup_wizard_steps[data-step="4"] li:nth-child(-n + 5) { |
| 51 |
border: 1px solid #32c896; |
| 52 |
} |
| 53 |
|
| 54 |
.wgm_setup_wizard_steps:before, |
| 55 |
.wgm_setup_wizard_steps:after { |
| 56 |
content: ""; |
| 57 |
width: 100%; |
| 58 |
height: 5px; |
| 59 |
background-color: #ffffff; |
| 60 |
position: absolute; |
| 61 |
top: 50%; |
| 62 |
transform: translateY(-50%); |
| 63 |
z-index: 0; |
| 64 |
} |
| 65 |
.wgm_setup_wizard_steps:before { |
| 66 |
width: 10%; |
| 67 |
left: 0; |
| 68 |
background: #32c896; |
| 69 |
transition: width .5s; |
| 70 |
z-index: 1; |
| 71 |
border-radius: 5px; |
| 72 |
} |
| 73 |
|
| 74 |
/* For steps width define */ |
| 75 |
.wgm_setup_wizard_steps.wgm_four[data-step="0"]::before { |
| 76 |
width: 46%; |
| 77 |
} |
| 78 |
.wgm_setup_wizard_steps.wgm_four[data-step="1"]::before { |
| 79 |
width: 100%; |
| 80 |
} |
| 81 |
|
| 82 |
.wgm_step .wgm_step_name { |
| 83 |
font-size: 14px; |
| 84 |
line-height: 1.2em; |
| 85 |
color: #4e4362; |
| 86 |
font-weight: 400; |
| 87 |
margin-top: 5px; |
| 88 |
} |
| 89 |
|
| 90 |
.wgm_btn_collect:focus{ |
| 91 |
outline: none; |
| 92 |
} |
| 93 |
|
| 94 |
.wgm_setup_content { |
| 95 |
display: none; |
| 96 |
} |
| 97 |
.wgm_text_center{ |
| 98 |
text-align: center; |
| 99 |
} |
| 100 |
.wgm_text_right{ |
| 101 |
text-align: right; |
| 102 |
} |
| 103 |
.wgm_setup_content.active { |
| 104 |
display: block; |
| 105 |
} |
| 106 |
|
| 107 |
/* body */ |
| 108 |
.wgm_box { |
| 109 |
border-radius: 5px; |
| 110 |
background-color: #ffffff; |
| 111 |
border: 1px #e0d9d9 solid; |
| 112 |
padding: 30px; |
| 113 |
} |
| 114 |
.wgm_box .wgm_heading{ |
| 115 |
display: flex;justify-content: center; |
| 116 |
color: #06142F; |
| 117 |
font-size: 24px; |
| 118 |
letter-spacing: .035em; |
| 119 |
font-weight: 400; |
| 120 |
margin-top: 0;text-align: center; |
| 121 |
} |
| 122 |
.wgm_setup_body { |
| 123 |
margin-top: 20px; |
| 124 |
margin-bottom: 25px; |
| 125 |
} |
| 126 |
|
| 127 |
.wgm_setup_body iframe{ |
| 128 |
max-width: 100%; |
| 129 |
} |
| 130 |
.wgm_setup_body label{ |
| 131 |
font-weight: 600; |
| 132 |
float: left; |
| 133 |
width: 15%; |
| 134 |
padding-top: 5px; |
| 135 |
} |
| 136 |
.button.button-large.wgm_api_btn{ |
| 137 |
margin-left: 10px; |
| 138 |
} |
| 139 |
.wgm_setup_body input, .wgm_setup_body select{ |
| 140 |
margin-right: 5px; |
| 141 |
} |
| 142 |
.wgm_setup_body input[type=text], .wgm_setup_body select{ |
| 143 |
max-width: 100%; |
| 144 |
width: 100%; |
| 145 |
padding: 1px 8px; |
| 146 |
} |
| 147 |
.wgm_d_flex{ |
| 148 |
display: flex; |
| 149 |
} |
| 150 |
.wgm_align_items_center{ |
| 151 |
align-items: center; |
| 152 |
} |
| 153 |
|
| 154 |
#wgm_finalize_step .wgm_highlight p { |
| 155 |
margin: 8px 0 8px; |
| 156 |
font-size: 14px; |
| 157 |
line-height: 1.4em; |
| 158 |
color: #5a5a5a; |
| 159 |
font-weight: 400; |
| 160 |
padding-left: 15px; |
| 161 |
} |
| 162 |
.wgm_highlight{ |
| 163 |
background-color: #f1f1f1; |
| 164 |
border-left: 2px #24a97f solid; |
| 165 |
margin: 5px 0; |
| 166 |
padding: 0 15px; |
| 167 |
} |
| 168 |
#wgm_finalize_step .wgm_highlight label{ |
| 169 |
border-right: 2px #fff solid; |
| 170 |
padding: 8px 0; |
| 171 |
cursor: default; |
| 172 |
} |
| 173 |
.wgm_setup_footer { |
| 174 |
text-align: right; |
| 175 |
} |
| 176 |
|
| 177 |
.wgm_setup_wizard_wrap .wgm_btn { |
| 178 |
width: 140px; |
| 179 |
text-transform: capitalize !important; |
| 180 |
} |
| 181 |
|
| 182 |
.wgm_setup_wizard_wrap .button.wgm_btn:focus, .wgm_setup_wizard_wrap .button.wgm_btn:hover { |
| 183 |
background-color: #0c8a62 !important; |
| 184 |
} |
| 185 |
|
| 186 |
button#wgm_save[disabled] { |
| 187 |
cursor: wait; |
| 188 |
background-image: -webkit-linear-gradient(-169deg, rgb(146, 113, 255) 0%, rgb(87, 37, 255) 100%) !important; |
| 189 |
} |
| 190 |
|
| 191 |
button #wgm_next , button #wgm_save { |
| 192 |
background-color: #24a97f; |
| 193 |
} |
| 194 |
|
| 195 |
#wgm_prev { |
| 196 |
margin-right: 10px; |
| 197 |
margin-right: 10px; |
| 198 |
background-image: -webkit-linear-gradient( -169deg , rgb(104 204 176) 0%, rgb(28 204 139) 100% ); |
| 199 |
opacity: 0.5; |
| 200 |
} |
| 201 |
|
| 202 |
.wgm_faq_item { |
| 203 |
padding: 19px 22px; |
| 204 |
background: #f8fafb; |
| 205 |
color: #252525; |
| 206 |
font-size: 15px; |
| 207 |
font-weight: 600; |
| 208 |
text-decoration: none; |
| 209 |
display: block; |
| 210 |
border-radius: 4px 4px 0 0; |
| 211 |
} |
| 212 |
.wgm_row { |
| 213 |
display: flex; |
| 214 |
flex-flow: row wrap; |
| 215 |
padding: 15px 0; |
| 216 |
} |
| 217 |
|
| 218 |
/* Button */ |
| 219 |
.wgm_btn, .wgm_lng_custom_script_settings .button-primary { |
| 220 |
border-radius: 3px; |
| 221 |
background-image: -moz-linear-gradient( |
| 222 |
-169deg, |
| 223 |
#5b9dd9 0%, |
| 224 |
#007cba 100% |
| 225 |
); |
| 226 |
background-image: -webkit-linear-gradient( |
| 227 |
-169deg, |
| 228 |
#5b9dd9 0%, |
| 229 |
#007cba 100% |
| 230 |
); |
| 231 |
background-image: -ms-linear-gradient( |
| 232 |
-169deg, |
| 233 |
#5b9dd9 0%, |
| 234 |
#007cba 100% |
| 235 |
); |
| 236 |
width: 160px; |
| 237 |
height: 50px; |
| 238 |
transition: all 300ms ease-in-out; |
| 239 |
} |
| 240 |
|
| 241 |
/* Admin Blocks */ |
| 242 |
.wgm_info_notice{ |
| 243 |
position: relative; |
| 244 |
top: 10px; |
| 245 |
} |
| 246 |
.wgm_mb_40{ |
| 247 |
margin-bottom: 40px; |
| 248 |
} |
| 249 |
.wgm_setup_wizard_steps .wgm_icon i{ |
| 250 |
font-size: 25px; |
| 251 |
color: #32c896; |
| 252 |
} |
| 253 |
|
| 254 |
@media only screen and (max-width: 576px){ |
| 255 |
.wgm_step .wgm_step_name{ |
| 256 |
font-size: 11px; |
| 257 |
padding: 5px; |
| 258 |
} |
| 259 |
.wgm_box .wgm_heading{ |
| 260 |
line-height: 28px; |
| 261 |
} |
| 262 |
.wgm_setup_body iframe{ |
| 263 |
height: auto; |
| 264 |
} |
| 265 |
.wgm_api_btn{ |
| 266 |
margin: 10px 0 !important; |
| 267 |
} |
| 268 |
.col-half{ |
| 269 |
flex-basis: 100%; |
| 270 |
} |
| 271 |
.wgm_setup_wizard_steps li{ |
| 272 |
padding: 10px 0; |
| 273 |
} |
| 274 |
.wgm_box{ |
| 275 |
padding: 15px 15px 30px; |
| 276 |
} |
| 277 |
.wgm_api_btn{ |
| 278 |
margin-left: 15px; |
| 279 |
} |
| 280 |
.wgm_setup_wizard_steps.wgm_four{ |
| 281 |
grid-template-columns: repeat(2, 40%); |
| 282 |
grid-gap: 4%; |
| 283 |
margin: 0 1%; |
| 284 |
} |
| 285 |
.wgm_setup_footer{ |
| 286 |
display: flex; |
| 287 |
float: right; |
| 288 |
} |
| 289 |
.wgm_d_flex{ |
| 290 |
display: block; |
| 291 |
} |
| 292 |
.wgm_setup_body label{ |
| 293 |
margin-bottom: 10px; |
| 294 |
width: 100%; |
| 295 |
} |
| 296 |
#wgm_finalize_step .wgm_highlight label{ |
| 297 |
border-right: none; |
| 298 |
margin-bottom: 0; |
| 299 |
} |
| 300 |
#wgm_finalize_step .wgm_highlight p{ |
| 301 |
text-align: left; |
| 302 |
padding-left: 0; |
| 303 |
word-break: break-all; |
| 304 |
} |
| 305 |
.swal2-container.swal2-center{ |
| 306 |
z-index: 99999; |
| 307 |
} |
| 308 |
.swal2-content{ |
| 309 |
padding: 0 !important; |
| 310 |
} |
| 311 |
} |
| 312 |
@media only screen and (min-width: 577px) and (max-width: 767px){ |
| 313 |
.wgm_api_btn { |
| 314 |
margin: 10px 0 !important; |
| 315 |
} |
| 316 |
.wgm_setup_wizard_steps.wgm_four{ |
| 317 |
grid-template-columns: repeat(2, 40%); |
| 318 |
grid-gap: 4%; |
| 319 |
margin: 0 1%; |
| 320 |
} |
| 321 |
.wgm_setup_footer{ |
| 322 |
display: flex; |
| 323 |
float: right; |
| 324 |
} |
| 325 |
.wgm_d_flex{ |
| 326 |
display: block; |
| 327 |
} |
| 328 |
.wgm_setup_body select{ |
| 329 |
width: 100%; |
| 330 |
max-width: 100%; |
| 331 |
} |
| 332 |
.wgm_setup_body label{ |
| 333 |
margin-bottom: 5px; |
| 334 |
width: 25%; |
| 335 |
} |
| 336 |
#wgm_finalize_step label{ |
| 337 |
margin-right: 15px; |
| 338 |
margin-bottom: 0; |
| 339 |
} |
| 340 |
.swal2-container.swal2-center{ |
| 341 |
z-index: 99999; |
| 342 |
} |
| 343 |
.wgm_header_bar .title{ |
| 344 |
font-size: 16px; |
| 345 |
} |
| 346 |
} |
| 347 |
@media only screen and (min-width: 768px) and (max-width: 991px){ |
| 348 |
.wgm_step .wgm_step_name{ |
| 349 |
font-size: 12px; |
| 350 |
} |
| 351 |
.wgm_setup_wizard_steps li{ |
| 352 |
padding: 8px 10px; |
| 353 |
} |
| 354 |
} |
| 355 |
/*sweetalert2 customize*/ |
| 356 |
.wgm_m_0{ |
| 357 |
margin: 0; |
| 358 |
} |
| 359 |
.swal2-actions.swal2-loading{ |
| 360 |
margin: 1.25em 0; |
| 361 |
} |
| 362 |
.wgm_setup_content a{ |
| 363 |
text-decoration: none; |
| 364 |
} |
| 365 |
.wgm_setup_wizard_container{ |
| 366 |
padding: 15px; |
| 367 |
} |
| 368 |
.wgm_w_60{ |
| 369 |
min-width: 60%; |
| 370 |
} |
| 371 |
|