| 1 |
.dashboard_tabs_wrapper { |
| 2 |
width: 100%; |
| 3 |
border-bottom: 1px solid #d8d7d7; |
| 4 |
display: flex; |
| 5 |
flex-direction: row; |
| 6 |
position: relative; |
| 7 |
} |
| 8 |
.dashboard_tab { |
| 9 |
font-size: 18px; |
| 10 |
padding: 2px 35px; |
| 11 |
width: fit-content; |
| 12 |
color: #8f8f8f; |
| 13 |
cursor: pointer; |
| 14 |
border-top-right-radius: 3px; |
| 15 |
border-top-left-radius: 3px; |
| 16 |
|
| 17 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 18 |
} |
| 19 |
.dashboard_tab:hover { |
| 20 |
color: #000; |
| 21 |
background-color: #f6eefb; |
| 22 |
} |
| 23 |
.dashboard_tab.ss_selected { |
| 24 |
border-bottom: 1px solid #6e23a6; |
| 25 |
color: #6e23a6; |
| 26 |
} |
| 27 |
.dashboard_tab.selected:hover { |
| 28 |
background-color: #fff; |
| 29 |
} |
| 30 |
.ss_tab_wrapper { |
| 31 |
display: none !important; |
| 32 |
} |
| 33 |
.ss_tab_wrapper.ss_tab_active { |
| 34 |
display: block !important; |
| 35 |
} |
| 36 |
.ss_page_link { |
| 37 |
color: #6e23a6 !important; |
| 38 |
} |
| 39 |
.ss_page_link:hover { |
| 40 |
color: #fa5304 !important; |
| 41 |
} |
| 42 |
|
| 43 |
.gsp_link_info_active { |
| 44 |
font-size: 22px !important; |
| 45 |
color: green !important; |
| 46 |
} |
| 47 |
.gsp_link_info_plg_v { |
| 48 |
font-size: 18px !important; |
| 49 |
color: #8d2cd0 !important; |
| 50 |
border-bottom: 1px dotted #8d2cd0; |
| 51 |
} |
| 52 |
|
| 53 |
.gsp_link_content_activate, |
| 54 |
.gsp_link_content_login { |
| 55 |
color: green !important; |
| 56 |
font-size: 18px !important; |
| 57 |
} |
| 58 |
|
| 59 |
.gsp_link_content_logout { |
| 60 |
color: #c74545 !important; |
| 61 |
font-size: 18px !important; |
| 62 |
|
| 63 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 64 |
} |
| 65 |
.gsp_link_content_logout:hover { |
| 66 |
color: #fc1919 !important; |
| 67 |
} |
| 68 |
|
| 69 |
.gsp_input_cw_wrapper { |
| 70 |
margin-bottom: 0px; |
| 71 |
margin-top: 9px; |
| 72 |
display: flex; |
| 73 |
flex-direction: row; |
| 74 |
justify-content: flex-end; |
| 75 |
} |
| 76 |
.gsp_input_cw_val { |
| 77 |
font-size: 12px; |
| 78 |
color: #878887; |
| 79 |
|
| 80 |
transition: 0.4s ease-out; |
| 81 |
cursor: pointer; |
| 82 |
} |
| 83 |
.gsp_input_cw_val:hover { |
| 84 |
color: #333; |
| 85 |
text-decoration: underline; |
| 86 |
} |
| 87 |
|
| 88 |
.gsp_input_forgot_wrapper { |
| 89 |
margin-bottom: 10px; |
| 90 |
margin-top: 9px; |
| 91 |
display: flex; |
| 92 |
flex-direction: row; |
| 93 |
justify-content: flex-end; |
| 94 |
} |
| 95 |
.gsp_forgot_link { |
| 96 |
font-size: 12px; |
| 97 |
color: #632692; |
| 98 |
text-decoration: none; |
| 99 |
|
| 100 |
transition: 0.4s ease-out; |
| 101 |
cursor: pointer; |
| 102 |
} |
| 103 |
.gsp_forgot_link:hover { |
| 104 |
color: #333; |
| 105 |
text-decoration: underline; |
| 106 |
} |
| 107 |
|
| 108 |
.gsp_login_email, |
| 109 |
.gsp_link_info b { |
| 110 |
margin-right: 3px; |
| 111 |
margin-left: 3px; |
| 112 |
} |
| 113 |
|
| 114 |
|
| 115 |
.gsp_login_email { |
| 116 |
color: #8250ad; |
| 117 |
text-decoration: underline; |
| 118 |
font-size: 18px; |
| 119 |
} |
| 120 |
|
| 121 |
.gsp_shortcode_html { |
| 122 |
resize: none; |
| 123 |
height: 34px; |
| 124 |
width: 270px; |
| 125 |
padding: 8px; |
| 126 |
background-color: #e5e5e5; |
| 127 |
color: #333; |
| 128 |
margin-left: 6px; |
| 129 |
margin-right: 4px; |
| 130 |
} |
| 131 |
.gsp_shortcode_html_1 { |
| 132 |
resize: none; |
| 133 |
height: 34px; |
| 134 |
width: 270px; |
| 135 |
padding: 8px; |
| 136 |
background-color: #e5e5e530; |
| 137 |
color: #333; |
| 138 |
margin-left: 6px; |
| 139 |
margin-right: 4px; |
| 140 |
} |
| 141 |
|
| 142 |
.gsp_info_sep { |
| 143 |
margin: 0 12px; |
| 144 |
color: #a2a2a2; |
| 145 |
height: 14px; |
| 146 |
width: 14px; |
| 147 |
display: flex; |
| 148 |
transition: 0.4s ease-out; |
| 149 |
} |
| 150 |
|
| 151 |
.wpgs_slider .ui-slider-handle { |
| 152 |
border: 1px solid #0b7fff !important; |
| 153 |
border-radius: 50% !important; |
| 154 |
} |
| 155 |
|
| 156 |
.ss_dash_loader { |
| 157 |
position: absolute; |
| 158 |
top: 30%; |
| 159 |
left: 50%; |
| 160 |
transform: translateX(-50%); |
| 161 |
|
| 162 |
transition: 0.4s ease-out; |
| 163 |
} |
| 164 |
|
| 165 |
.gsp_gspeech_info_inner { |
| 166 |
width: 100%; |
| 167 |
border: 1px solid #cecece; |
| 168 |
border-radius: 5px; |
| 169 |
background-color: #fdfdfd; |
| 170 |
height: fit-content; |
| 171 |
position: relative; |
| 172 |
overflow: hidden; |
| 173 |
margin: 10px 0; |
| 174 |
} |
| 175 |
.gsp_gspeech_info_inner_bg { |
| 176 |
|
| 177 |
position: absolute; |
| 178 |
top: 0; |
| 179 |
left: 0; |
| 180 |
width: 100%; |
| 181 |
height: 100%; |
| 182 |
opacity: 0.45; |
| 183 |
|
| 184 |
background-image: url("../images/gray8.png"); |
| 185 |
background-repeat: repeat; |
| 186 |
z-index: 7; |
| 187 |
|
| 188 |
transition: 0.4s ease-out; |
| 189 |
} |
| 190 |
.gsp_gspeech_info_inner:hover .gsp_gspeech_info_inner_bg { |
| 191 |
opacity: 0.75; |
| 192 |
} |
| 193 |
.gsp_gspeech_info_inner_c { |
| 194 |
/*box-sizing: content-box !important;*/ |
| 195 |
padding: 30px; |
| 196 |
position: relative; |
| 197 |
top: 0; |
| 198 |
left: 0; |
| 199 |
width: 100%; |
| 200 |
height: 100%; |
| 201 |
z-index: 8; |
| 202 |
} |
| 203 |
.gsp_data_title { |
| 204 |
text-transform: uppercase; |
| 205 |
font-size: 18px; |
| 206 |
color: #724498; |
| 207 |
} |
| 208 |
|
| 209 |
.gsp_info_ul { |
| 210 |
margin: 20px 0 0 0; |
| 211 |
} |
| 212 |
|
| 213 |
.gsp_info_ul li { |
| 214 |
list-style: none; |
| 215 |
margin: 0; |
| 216 |
padding: 0; |
| 217 |
display: flex; |
| 218 |
flex-direction: row; |
| 219 |
align-items: center; |
| 220 |
|
| 221 |
color: #6b6b6b; |
| 222 |
font-size: 14px; |
| 223 |
} |
| 224 |
|
| 225 |
.gsp_info_ul li a, |
| 226 |
.gsp_info_ul li .gsp_list_link_style { |
| 227 |
white-space: nowrap; |
| 228 |
text-decoration: none; |
| 229 |
color: #545454; |
| 230 |
padding: 0; |
| 231 |
height: 38px; |
| 232 |
display: inline-flex; |
| 233 |
align-items: center; |
| 234 |
margin-left: 0px; |
| 235 |
outline: none !important; |
| 236 |
box-shadow: none !important; |
| 237 |
transition: 0.4s ease-out; |
| 238 |
} |
| 239 |
.gsp_info_ul li a:focus, |
| 240 |
.gsp_info_ul li a:hover, |
| 241 |
.gsp_info_ul li a:visited { |
| 242 |
outline: none !important; |
| 243 |
box-shadow: none !important; |
| 244 |
} |
| 245 |
.gsp_info_ul li:hover a, |
| 246 |
.gsp_info_ul li:hover .gsp_list_link_style { |
| 247 |
margin-left: 7px; |
| 248 |
} |
| 249 |
.gsp_link_info { |
| 250 |
color: #6b6b6b; |
| 251 |
display: inline-flex; |
| 252 |
font-size: 14px; |
| 253 |
line-height: 1.5; |
| 254 |
align-items: center; |
| 255 |
} |
| 256 |
.gsp_link_content { |
| 257 |
transform: translateY(2px); |
| 258 |
padding-bottom: 3px; |
| 259 |
display: inline-flex; |
| 260 |
border-bottom: 1px dotted #545454; |
| 261 |
font-size: 16px; |
| 262 |
color: #545454; |
| 263 |
|
| 264 |
transition: 0.4s ease-out; |
| 265 |
} |
| 266 |
|
| 267 |
|
| 268 |
.gsp_link_icon { |
| 269 |
color: #a1a0a2; |
| 270 |
height: 24px; |
| 271 |
width: 24px; |
| 272 |
display: inline-flex; |
| 273 |
align-items: center; |
| 274 |
justify-content: center; |
| 275 |
margin-right: 18px; |
| 276 |
transition: 0.4s ease-out; |
| 277 |
transform: scale(1,1); |
| 278 |
} |
| 279 |
.gsp_link_list_2 .gsp_link_icon { |
| 280 |
margin-right: 22px; |
| 281 |
margin-left: 2px; |
| 282 |
width: 18px; |
| 283 |
height: 18px; |
| 284 |
} |
| 285 |
|
| 286 |
.gsp_info_ul a:hover .gsp_link_content, |
| 287 |
.gsp_info_ul .gsp_list_link_style:hover .gsp_link_content { |
| 288 |
color: #7122a8; |
| 289 |
border-bottom: 1px solid #7122a8; |
| 290 |
} |
| 291 |
.gsp_info_ul a:hover .gsp_link_icon, |
| 292 |
.gsp_info_ul .gsp_list_link_style:hover .gsp_link_icon { |
| 293 |
color: #7122a8; |
| 294 |
transform: scale(1.1,1.1); |
| 295 |
} |
| 296 |
.gsp_info_ul li:hover .gsp_info_sep { |
| 297 |
color: #7122a8; |
| 298 |
transform: scale(1.45,1.45); |
| 299 |
} |
| 300 |
|
| 301 |
|
| 302 |
|
| 303 |
|
| 304 |
.gsp_v_i { |
| 305 |
display: inline-block; |
| 306 |
border-bottom: 1px dotted #969595; |
| 307 |
transform: translateY(4px); |
| 308 |
margin-left: 9px !important; |
| 309 |
color: #696868; |
| 310 |
font-size: 14px; |
| 311 |
} |
| 312 |
|
| 313 |
.gsp_magic_wrapper { |
| 314 |
position: relative; |
| 315 |
display: flex; |
| 316 |
width: 100%; |
| 317 |
flex-direction: row; |
| 318 |
|
| 319 |
margin: 0; |
| 320 |
padding-top: 13px; |
| 321 |
|
| 322 |
background-color: #d8d8d8; |
| 323 |
border-radius: 7px; |
| 324 |
border: 1px solid #cecece; |
| 325 |
|
| 326 |
min-height: 800px; |
| 327 |
|
| 328 |
transition: 0.4s ease-out; |
| 329 |
} |
| 330 |
.ss_bg_ff { |
| 331 |
background-color: #fff !important; |
| 332 |
} |
| 333 |
.ss_hidden { |
| 334 |
display: none !important; |
| 335 |
} |
| 336 |
.ss_flex { |
| 337 |
display: flex !important; |
| 338 |
} |
| 339 |
|
| 340 |
.gsp_gspeech_info_wrapper { |
| 341 |
margin: 0 20px 0 20px; |
| 342 |
|
| 343 |
height: 100%; |
| 344 |
min-height: 600px; |
| 345 |
|
| 346 |
display: flex; |
| 347 |
flex-direction: column; |
| 348 |
flex-grow: 1; |
| 349 |
position: relative; |
| 350 |
} |
| 351 |
|
| 352 |
.gsp_videos_wrapper { |
| 353 |
min-width: 800px; |
| 354 |
flex-grow: 0; |
| 355 |
margin: 0 20px 30px 0; |
| 356 |
width: 40%; |
| 357 |
height: 100%; |
| 358 |
min-height: 600px; |
| 359 |
display: flex; |
| 360 |
flex-direction: column; |
| 361 |
justify-content: space-around; |
| 362 |
} |
| 363 |
.ss_video_item_3 { |
| 364 |
margin-top: 20px; |
| 365 |
align-items: flex-start; |
| 366 |
display: flex; |
| 367 |
flex-direction: column; |
| 368 |
/*overflow: hidden;*/ |
| 369 |
height: fit-content; |
| 370 |
justify-content: center; |
| 371 |
width: 100%; |
| 372 |
} |
| 373 |
|
| 374 |
.ss_video_item_holder { |
| 375 |
display: flex; |
| 376 |
overflow: hidden; |
| 377 |
height: 480px; |
| 378 |
width: 100%; |
| 379 |
background-color: #000; |
| 380 |
|
| 381 |
background-size: contain; |
| 382 |
background-repeat: no-repeat; |
| 383 |
background-position: center center; |
| 384 |
} |
| 385 |
.ss_video_title { |
| 386 |
width: 100%; |
| 387 |
color: #5e5e5e; |
| 388 |
display: flex; |
| 389 |
justify-content: flex-start; |
| 390 |
margin-bottom: 10px; |
| 391 |
font-size: 16px; |
| 392 |
} |
| 393 |
.ss_title_green { |
| 394 |
/*color: #4d942b !important;*/ |
| 395 |
} |
| 396 |
.ss_title_violet { |
| 397 |
/*color: #9364b6 !important;*/ |
| 398 |
} |
| 399 |
.ss_title_orange { |
| 400 |
/*color: #ac7030 !important;*/ |
| 401 |
} |
| 402 |
.ss_video_gb_1 { |
| 403 |
background-image: url("../images/gsp_video_bg_1.png"); |
| 404 |
} |
| 405 |
.ss_video_gb_2 { |
| 406 |
background-image: url("../images/gsp_video_bg_2.png"); |
| 407 |
} |
| 408 |
.ss_video_gb_3 { |
| 409 |
background-image: url("../images/gsp_video_bg_3.png"); |
| 410 |
} |
| 411 |
|
| 412 |
|
| 413 |
|
| 414 |
.ss_audio_url_holder a { |
| 415 |
text-decoration: underline; |
| 416 |
color: #8643b7; |
| 417 |
|
| 418 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 419 |
} |
| 420 |
.ss_audio_url_holder a:hover { |
| 421 |
color: #e6560f; |
| 422 |
} |
| 423 |
|
| 424 |
.ss_graph_wrapper input { |
| 425 |
font-size: 10px !important; |
| 426 |
background-color: #fff !important; |
| 427 |
color: #999 !important; |
| 428 |
border: 1px solid #bdbdbd !important; |
| 429 |
padding: 0 !important; |
| 430 |
height: 16px !important; |
| 431 |
min-height: 16px !important; |
| 432 |
} |
| 433 |
|
| 434 |
/*audio*/ |
| 435 |
#gsp_player_loading { |
| 436 |
color: #5e367b; |
| 437 |
font-size: 18px; |
| 438 |
margin: 5px 0 15px; |
| 439 |
} |
| 440 |
#ss_audio_content { |
| 441 |
width: 400px; |
| 442 |
height: 200px; |
| 443 |
} |
| 444 |
#ss_dash_audio_player { |
| 445 |
margin-top: 5px; |
| 446 |
margin-bottom: 5px; |
| 447 |
width: 50%; |
| 448 |
} |
| 449 |
.graph_container1_wrapper { |
| 450 |
width: 100%; |
| 451 |
height: 300px; |
| 452 |
position: relative; |
| 453 |
} |
| 454 |
.graph_container2_wrapper { |
| 455 |
width: 33%; |
| 456 |
height: 300px; |
| 457 |
position: relative; |
| 458 |
} |
| 459 |
.graph_container3_wrapper { |
| 460 |
width: 33%; |
| 461 |
height: 300px; |
| 462 |
position: relative; |
| 463 |
} |
| 464 |
.graph_container4_wrapper { |
| 465 |
width: 33%; |
| 466 |
height: 300px; |
| 467 |
position: relative; |
| 468 |
} |
| 469 |
.graph_no_data_wrapper { |
| 470 |
position: absolute; |
| 471 |
color: #999; |
| 472 |
font-size: 24px; |
| 473 |
top: 45px; |
| 474 |
left: 50%; |
| 475 |
transform: translateX(-50%); |
| 476 |
} |
| 477 |
.ss_graphs_wrapper { |
| 478 |
margin-bottom: 10px; |
| 479 |
display: flex; |
| 480 |
flex-direction: row; |
| 481 |
height: 300px; |
| 482 |
width: 100%; |
| 483 |
} |
| 484 |
.ss_graph_wrapper { |
| 485 |
position: absolute; |
| 486 |
top: 0; |
| 487 |
left: 0; |
| 488 |
width: 100%; |
| 489 |
height: 100%; |
| 490 |
z-index: 10; |
| 491 |
} |
| 492 |
.ss_chart_link_hider { |
| 493 |
position: absolute; |
| 494 |
background-color: #fff; |
| 495 |
width: 88px; |
| 496 |
height: 15px; |
| 497 |
right: 0; |
| 498 |
bottom: 0; |
| 499 |
z-index: 11; |
| 500 |
} |
| 501 |
.ss_graph_wrapper span, |
| 502 |
.ss_graph_wrapper input { |
| 503 |
display: inline-block; |
| 504 |
} |
| 505 |
|
| 506 |
.graph_wrapper_3 { |
| 507 |
margin-top: 35px; |
| 508 |
width: 100%; |
| 509 |
height: 300px; |
| 510 |
position: relative; |
| 511 |
} |
| 512 |
.downloads_graphs_wrapper { |
| 513 |
margin-top: 25px; |
| 514 |
margin-bottom: 10px; |
| 515 |
display: flex; |
| 516 |
flex-direction: row; |
| 517 |
height: 300px; |
| 518 |
width: 100%; |
| 519 |
} |
| 520 |
.graph_wrapper_1, |
| 521 |
.graph_wrapper_2 { |
| 522 |
width: 50%; |
| 523 |
height: 100%; |
| 524 |
position: relative; |
| 525 |
} |
| 526 |
.ss_graph_wrapper input { |
| 527 |
background-color: #fff !important; |
| 528 |
} |
| 529 |
|
| 530 |
/*widget*/ |
| 531 |
#ss_template_blocks_wrapper { |
| 532 |
margin: 7px 0; |
| 533 |
display: flex; |
| 534 |
flex-direction: row; |
| 535 |
flex-wrap: wrap; |
| 536 |
} |
| 537 |
.ss_tmp_block { |
| 538 |
width: 40px; |
| 539 |
height: 40px; |
| 540 |
border-radius: 50%; |
| 541 |
|
| 542 |
border: 2px solid #ededed; |
| 543 |
margin-right: 11px; |
| 544 |
margin-bottom: 5px; |
| 545 |
|
| 546 |
cursor: pointer; |
| 547 |
transition: 400ms ease-out; |
| 548 |
} |
| 549 |
.ss_tmp_selected { |
| 550 |
border: 2px solid #7d32b6 !important; |
| 551 |
} |
| 552 |
.ss_tmp_block:hover { |
| 553 |
transform: scale(1.1,1.1); |
| 554 |
border: 2px solid #999; |
| 555 |
} |
| 556 |
.ss_tmp_block_1 { |
| 557 |
background: linear-gradient(#73afe0 0%, #0b3c63 100%); |
| 558 |
} |
| 559 |
.ss_tmp_block_2 { |
| 560 |
background: linear-gradient(#d73838 25%, #540808 100%); |
| 561 |
} |
| 562 |
.ss_tmp_block_3 { |
| 563 |
background: linear-gradient(#429f2a 0%, #0b2c03 100%); |
| 564 |
} |
| 565 |
.ss_tmp_block_4 { |
| 566 |
background: linear-gradient(180deg, #f55e12 48%, #af4c1a); |
| 567 |
} |
| 568 |
.ss_tmp_block_5 { |
| 569 |
background: linear-gradient(180deg, #fada4a 48%, #d6bb40 100%); |
| 570 |
} |
| 571 |
.ss_tmp_block_6 { |
| 572 |
background: linear-gradient(#b536cb 0%, #3a0643 100%); |
| 573 |
} |
| 574 |
.ss_tmp_block_7 { |
| 575 |
background: linear-gradient(#555353 0%, #111010 100%); |
| 576 |
} |
| 577 |
.ss_tmp_block_8 { |
| 578 |
background: linear-gradient(#cccccc 0%, #393939 100%); |
| 579 |
} |
| 580 |
.ss_tmp_block_9 { |
| 581 |
background: linear-gradient(180deg, #f6f6f6 48%, #b9b9b9 100%); |
| 582 |
} |
| 583 |
.ss_tmp_block_10 { |
| 584 |
background: linear-gradient(#00a6b7 25%, #003b3d 100%); |
| 585 |
} |
| 586 |
.ss_tmp_block_11 { |
| 587 |
background: linear-gradient(180deg, #7929b5 48%, #340d4e 100%); |
| 588 |
} |
| 589 |
.ss_tmp_block_12 { |
| 590 |
background: linear-gradient(#946f66 15%, #351f1a 100%); |
| 591 |
} |
| 592 |
.ss_tmp_block_13 { |
| 593 |
background: linear-gradient(#4b7082 15%, #1c262b 100%); |
| 594 |
} |
| 595 |
.ss_tmp_block_14 { |
| 596 |
background: linear-gradient(#6eae40 15%, #1a3d0c 100%); |
| 597 |
} |
| 598 |
.ss_tmp_block_15 { |
| 599 |
background: linear-gradient(#e2734a 25%, #582b1b 100%); |
| 600 |
} |
| 601 |
.ss_tmp_block_16 { |
| 602 |
background: linear-gradient(#2525ba 25%, #00002c 100%); |
| 603 |
} |
| 604 |
|
| 605 |
|
| 606 |
.ss_no_prevew { |
| 607 |
font-size: 14px; |
| 608 |
margin: 15px; |
| 609 |
color: #777; |
| 610 |
} |
| 611 |
|
| 612 |
|
| 613 |
.ss_opts_hidden { |
| 614 |
display: none; |
| 615 |
} |
| 616 |
.ss_dash_page_type_0 .ss_opts_visible_0 { |
| 617 |
display: block; |
| 618 |
} |
| 619 |
.ss_dash_page_type_1 .ss_opts_visible_1 { |
| 620 |
display: block; |
| 621 |
} |
| 622 |
.ss_dash_page_type_2 .ss_opts_visible_2 { |
| 623 |
display: block; |
| 624 |
} |
| 625 |
.ss_dash_page_type_3 .ss_opts_visible_3 { |
| 626 |
display: block; |
| 627 |
} |
| 628 |
.ss_dash_page_type_4 .ss_opts_visible_4 { |
| 629 |
display: block; |
| 630 |
} |
| 631 |
.ss_dash_page_type_5 .ss_opts_visible_5 { |
| 632 |
display: block; |
| 633 |
} |
| 634 |
|
| 635 |
/*add new widget*/ |
| 636 |
#add_new_website_wrapper { |
| 637 |
color: #111; |
| 638 |
left: 50%; |
| 639 |
top: 50%; |
| 640 |
position: absolute; |
| 641 |
width: 450px; |
| 642 |
height: 171px; |
| 643 |
display: flex; |
| 644 |
flex-direction: column; |
| 645 |
align-items: center; |
| 646 |
justify-content: space-between; |
| 647 |
transform: translate(-50%, -50%); |
| 648 |
} |
| 649 |
.add_new_title { |
| 650 |
font-size: 28px; |
| 651 |
text-align: center; |
| 652 |
} |
| 653 |
.add_new_content { |
| 654 |
font-size: 18px; |
| 655 |
text-align: center; |
| 656 |
} |
| 657 |
.add_new_title_popup { |
| 658 |
font-size: 28px; |
| 659 |
text-align: left; |
| 660 |
} |
| 661 |
.add_new_content_popup { |
| 662 |
font-size: 16px; |
| 663 |
text-align: left; |
| 664 |
margin: 10px 0 15px 0; |
| 665 |
line-height: 1; |
| 666 |
color: #555; |
| 667 |
} |
| 668 |
|
| 669 |
.add_new_website_popup_wrapper { |
| 670 |
border-radius: 10px; |
| 671 |
background-color: #fff; |
| 672 |
position: fixed; |
| 673 |
width: 500px; |
| 674 |
box-shadow: 0 0 3px 1px #00000029; |
| 675 |
/*height: 330px;*/ |
| 676 |
top: 50%; |
| 677 |
left: 50%; |
| 678 |
transform: translate(-50%, -50%); |
| 679 |
z-index: 1002; |
| 680 |
color: #111; |
| 681 |
|
| 682 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 683 |
|
| 684 |
display: none; |
| 685 |
opacity: 0; |
| 686 |
} |
| 687 |
.add_new_website_popup_wrapper.vis { |
| 688 |
display: block; |
| 689 |
} |
| 690 |
.add_new_website_popup_wrapper.z_index_low { |
| 691 |
z-index: 999; |
| 692 |
} |
| 693 |
.add_new_website_popup_wrapper.visible { |
| 694 |
opacity: 1; |
| 695 |
display: block; |
| 696 |
} |
| 697 |
.add_new_widget_popup_wrapper { |
| 698 |
border-radius: 10px; |
| 699 |
background-color: #fff; |
| 700 |
position: fixed; |
| 701 |
width: 500px; |
| 702 |
box-shadow: 0 0 3px 1px #00000029; |
| 703 |
/*height: 330px;*/ |
| 704 |
top: 50%; |
| 705 |
left: 50%; |
| 706 |
transform: translate(-50%, -50%); |
| 707 |
z-index: 1002; |
| 708 |
color: #111; |
| 709 |
|
| 710 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 711 |
|
| 712 |
display: none; |
| 713 |
opacity: 0; |
| 714 |
} |
| 715 |
.add_new_widget_popup_wrapper.vis { |
| 716 |
display: block; |
| 717 |
} |
| 718 |
.add_new_widget_popup_wrapper.z_index_low { |
| 719 |
z-index: 999; |
| 720 |
} |
| 721 |
.add_new_widget_popup_wrapper.visible { |
| 722 |
opacity: 1; |
| 723 |
display: block; |
| 724 |
} |
| 725 |
#add_new_website_popup_inner { |
| 726 |
width: 100%; |
| 727 |
height: 100%; |
| 728 |
padding: 25px; |
| 729 |
position: relative; |
| 730 |
|
| 731 |
display: flex; |
| 732 |
flex-direction: column; |
| 733 |
} |
| 734 |
#add_new_widget_popup_inner { |
| 735 |
width: 100%; |
| 736 |
height: 100%; |
| 737 |
padding: 25px; |
| 738 |
position: relative; |
| 739 |
|
| 740 |
box-sizing: border-box; |
| 741 |
|
| 742 |
display: flex; |
| 743 |
flex-direction: column; |
| 744 |
} |
| 745 |
#close_add_new_wrapper { |
| 746 |
position: absolute; |
| 747 |
right: 12px; |
| 748 |
top: 7px; |
| 749 |
width: 22px; |
| 750 |
height: 22px; |
| 751 |
color: #bdbdbd; |
| 752 |
cursor: pointer; |
| 753 |
|
| 754 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 755 |
} |
| 756 |
#close_add_new_wrapper:hover { |
| 757 |
color: #9843d9; |
| 758 |
transform: scale(1.1,1.1); |
| 759 |
} |
| 760 |
#close_add_new_widget_wrapper { |
| 761 |
position: absolute; |
| 762 |
right: 12px; |
| 763 |
top: 7px; |
| 764 |
width: 22px; |
| 765 |
height: 22px; |
| 766 |
color: #bdbdbd; |
| 767 |
cursor: pointer; |
| 768 |
|
| 769 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 770 |
} |
| 771 |
#close_add_new_widget_wrapper:hover { |
| 772 |
color: #9843d9; |
| 773 |
transform: scale(1.1,1.1); |
| 774 |
} |
| 775 |
.input_holder { |
| 776 |
width: 100%; |
| 777 |
margin-bottom: 10px; |
| 778 |
} |
| 779 |
.add_new_website_popup_wrapper .items_select_filter_wrapper, |
| 780 |
.add_new_widget_popup_wrapper .items_select_filter_wrapper { |
| 781 |
margin-left: 0; |
| 782 |
width: 100%; |
| 783 |
} |
| 784 |
/*end add new widget*/ |
| 785 |
.add_new_widget_title { |
| 786 |
width: 100%; |
| 787 |
background-color: #fff !important; |
| 788 |
color: #444 !important; |
| 789 |
border: 1px solid #bdbdbd !important; |
| 790 |
box-shadow: none !important; |
| 791 |
|
| 792 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 793 |
} |
| 794 |
.add_new_widget_title:hover, |
| 795 |
.add_new_widget_title:focus { |
| 796 |
box-shadow: none !important; |
| 797 |
border: 1px solid #6e23a6 !important; |
| 798 |
|
| 799 |
} |
| 800 |
.add_new_widget_title.error { |
| 801 |
border: 1px solid #e82b2b !important; |
| 802 |
} |
| 803 |
|
| 804 |
.gsp_readonly { |
| 805 |
cursor: default !important; |
| 806 |
} |
| 807 |
|
| 808 |
.dashboard_header_1 { |
| 809 |
padding: 0 25px; |
| 810 |
justify-content: space-between; |
| 811 |
display: flex; |
| 812 |
height: 80px; |
| 813 |
align-items: center; |
| 814 |
margin-top: -18px; |
| 815 |
flex-direction: row; |
| 816 |
} |
| 817 |
.gsp_dash_b { |
| 818 |
display: flex; |
| 819 |
flex-direction: row; |
| 820 |
} |
| 821 |
.add_shortcode_widgets_event_holder { |
| 822 |
background-color: green !important; |
| 823 |
color: white !important; |
| 824 |
margin-right: 15px; |
| 825 |
} |
| 826 |
|
| 827 |
|
| 828 |
|
| 829 |
|
| 830 |
.website_title { |
| 831 |
color: #3e3e3e; |
| 832 |
margin: 20px 0 5px 0px; |
| 833 |
font-size: 28px; |
| 834 |
} |
| 835 |
.dashboard_header_2 { |
| 836 |
margin-top: 30px; |
| 837 |
margin-bottom: 15px; |
| 838 |
} |
| 839 |
.dashboard_header_3 { |
| 840 |
margin-top: 10px; |
| 841 |
margin-bottom: 15px; |
| 842 |
} |
| 843 |
.dashboard_title_inner { |
| 844 |
background-color: #5e367b; |
| 845 |
text-shadow: 0 1px 2px #000000bd; |
| 846 |
text-transform: uppercase; |
| 847 |
padding: 10px 15px; |
| 848 |
width: 100%; |
| 849 |
font-size: 18px; |
| 850 |
color: #fff; |
| 851 |
margin-bottom: 20px; |
| 852 |
} |
| 853 |
.dashboard_title { |
| 854 |
font-size: 24px; |
| 855 |
color: #000; |
| 856 |
display: flex; |
| 857 |
} |
| 858 |
.website_name_wrapper { |
| 859 |
margin-left: 8px; |
| 860 |
} |
| 861 |
.dashboard_subtitle { |
| 862 |
margin-top: 15px; |
| 863 |
font-size: 16px; |
| 864 |
color: #888; |
| 865 |
} |
| 866 |
.plan_title { |
| 867 |
color: #a435f8; |
| 868 |
} |
| 869 |
.dashboard_button { |
| 870 |
color: #fff !important; |
| 871 |
font-size: 16px; |
| 872 |
cursor: pointer; |
| 873 |
background-color: #6e23a6; |
| 874 |
width: 200px; |
| 875 |
height: 47px; |
| 876 |
align-items: center; |
| 877 |
justify-content: center; |
| 878 |
display: flex; |
| 879 |
border-radius: 6px; |
| 880 |
|
| 881 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 882 |
} |
| 883 |
.dashboard_button:hover { |
| 884 |
background-color: #3e0f61; |
| 885 |
} |
| 886 |
.dashboard_button_1_self_size { |
| 887 |
color: #fff; |
| 888 |
font-size: 16px; |
| 889 |
cursor: pointer; |
| 890 |
background-color: #6e23a6; |
| 891 |
align-items: center; |
| 892 |
justify-content: center; |
| 893 |
display: flex; |
| 894 |
border-radius: 6px; |
| 895 |
padding: 8px 32px; |
| 896 |
width: fit-content; |
| 897 |
|
| 898 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 899 |
} |
| 900 |
.dashboard_button_1_self_size:hover { |
| 901 |
background-color: #3e0f61; |
| 902 |
} |
| 903 |
.dashboard_button_2_self_size { |
| 904 |
color: rgb(148, 58, 252); |
| 905 |
font-size: 16px; |
| 906 |
cursor: pointer; |
| 907 |
background-color: #fff; |
| 908 |
align-items: center; |
| 909 |
justify-content: center; |
| 910 |
display: flex; |
| 911 |
border-radius: 6px; |
| 912 |
padding: 8px 32px; |
| 913 |
width: fit-content; |
| 914 |
|
| 915 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 916 |
} |
| 917 |
.dashboard_button_2_self_size:hover { |
| 918 |
background-color: #6e23a6; |
| 919 |
color: #fff; |
| 920 |
} |
| 921 |
#add_popup_buttons_holder { |
| 922 |
display: flex; |
| 923 |
flex-direction: row; |
| 924 |
justify-content: flex-end; |
| 925 |
margin-top: 10px; |
| 926 |
} |
| 927 |
#add_popup_buttons_holder .dashboard_button_2_self_size { |
| 928 |
margin-right: 8px; |
| 929 |
} |
| 930 |
|
| 931 |
.dashboard_tabs_wrapper { |
| 932 |
width: 100%; |
| 933 |
border-bottom: 1px solid #d8d7d7; |
| 934 |
display: flex; |
| 935 |
flex-direction: row; |
| 936 |
position: relative; |
| 937 |
} |
| 938 |
.dashboard_tab { |
| 939 |
font-size: 18px; |
| 940 |
padding: 2px 35px; |
| 941 |
color: #8f8f8f; |
| 942 |
cursor: pointer; |
| 943 |
border-top-right-radius: 3px; |
| 944 |
border-top-left-radius: 3px; |
| 945 |
|
| 946 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 947 |
} |
| 948 |
.dashboard_tab:hover { |
| 949 |
color: #000; |
| 950 |
background-color: #f6eefb; |
| 951 |
} |
| 952 |
.dashboard_tab.ss_selected { |
| 953 |
border-bottom: 1px solid #6e23a6; |
| 954 |
color: #6e23a6; |
| 955 |
} |
| 956 |
.dashboard_tab.selected:hover { |
| 957 |
background-color: #fff; |
| 958 |
} |
| 959 |
.ss_tab_wrapper { |
| 960 |
display: none !important; |
| 961 |
} |
| 962 |
.ss_tab_wrapper.ss_tab_active { |
| 963 |
display: block !important; |
| 964 |
} |
| 965 |
.ss_page_link { |
| 966 |
color: #6e23a6 !important; |
| 967 |
} |
| 968 |
.ss_page_link:hover { |
| 969 |
color: #fa5304 !important; |
| 970 |
} |
| 971 |
|
| 972 |
.gsp_register_wrapper { |
| 973 |
width: 450px !important; |
| 974 |
} |
| 975 |
.gsp_terms_holder { |
| 976 |
display: flex; |
| 977 |
margin-bottom: 5px; |
| 978 |
flex-direction: row; |
| 979 |
align-items: center; |
| 980 |
justify-content: flex-start; |
| 981 |
width: 100%; |
| 982 |
height: 30px; |
| 983 |
margin-top: 12px; |
| 984 |
} |
| 985 |
.gsp_terms_holder |
| 986 |
#gsp_agree_terms { |
| 987 |
|
| 988 |
} |
| 989 |
.ss_label_link { |
| 990 |
text-decoration: none; |
| 991 |
transition: 0.4s ease-out; |
| 992 |
color: #631b9a; |
| 993 |
} |
| 994 |
.ss_label_link:hover { |
| 995 |
color: #f50; |
| 996 |
text-decoration: underline; |
| 997 |
} |
| 998 |
.gsp_terms_holder .ss_checkbox_label { |
| 999 |
color: #777; |
| 1000 |
font-size: 14px; |
| 1001 |
} |
| 1002 |
|
| 1003 |
.gsp_widget_id_title { |
| 1004 |
margin: 10px 0 33px 0; |
| 1005 |
font-size: 20px; |
| 1006 |
color: #561d82; |
| 1007 |
} |
| 1008 |
.ss_checkbox_wrapper.gsp_error { |
| 1009 |
border: 2px solid #db0707 !important; |
| 1010 |
} |
| 1011 |
|
| 1012 |
/*users*/ |
| 1013 |
#items_wrapper { |
| 1014 |
width: 100%; |
| 1015 |
padding: 20px; |
| 1016 |
border-radius: 5px; |
| 1017 |
height: 100%; |
| 1018 |
display: flex; |
| 1019 |
flex-direction: column; |
| 1020 |
position: relative; |
| 1021 |
background-color: #fff; |
| 1022 |
border: 1px solid #e0e0e0; |
| 1023 |
} |
| 1024 |
#items_wrapper_overlay { |
| 1025 |
z-index: 330; |
| 1026 |
position: absolute; |
| 1027 |
top: 0; |
| 1028 |
right: 0; |
| 1029 |
bottom: 0; |
| 1030 |
left: 0; |
| 1031 |
background-color: #e3e3e321; |
| 1032 |
display: none; |
| 1033 |
} |
| 1034 |
.items_wrapper_overlay_visible { |
| 1035 |
display: block !important; |
| 1036 |
} |
| 1037 |
.items_header { |
| 1038 |
width: 100%; |
| 1039 |
height: 80px; |
| 1040 |
display: flex; |
| 1041 |
align-items: center; |
| 1042 |
justify-content: space-between; |
| 1043 |
} |
| 1044 |
.items_count { |
| 1045 |
font-size: 15px; |
| 1046 |
} |
| 1047 |
.items_options { |
| 1048 |
display: flex; |
| 1049 |
position: relative; |
| 1050 |
} |
| 1051 |
|
| 1052 |
.search_items_wrapper { |
| 1053 |
width: 250px; |
| 1054 |
height: 35px; |
| 1055 |
border: 1px solid #b4b4b4; |
| 1056 |
background-color: #fff; |
| 1057 |
border-radius: 4px; |
| 1058 |
position: relative; |
| 1059 |
display: flex; |
| 1060 |
align-items: center; |
| 1061 |
|
| 1062 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 1063 |
} |
| 1064 |
.search_items_wrapper:hover { |
| 1065 |
border: 1px solid #777; |
| 1066 |
background-color: #f2f2f2; |
| 1067 |
} |
| 1068 |
.search_items_wrapper_focused { |
| 1069 |
border: 1px solid #a435f8 !important; |
| 1070 |
} |
| 1071 |
.search_items_wrapper_focused .search_icon_holder { |
| 1072 |
color: #a435f8; |
| 1073 |
} |
| 1074 |
.search_icon_holder { |
| 1075 |
width: 18px; |
| 1076 |
height: 18px; |
| 1077 |
display: block; |
| 1078 |
color: #7e7e7e; |
| 1079 |
margin-left: 10px; |
| 1080 |
cursor: pointer; |
| 1081 |
|
| 1082 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 1083 |
} |
| 1084 |
.search_icon_pasive { |
| 1085 |
cursor: default; |
| 1086 |
color: #c3c2c2; |
| 1087 |
} |
| 1088 |
input.search_input { |
| 1089 |
display: flex; |
| 1090 |
flex-grow: 1; |
| 1091 |
height: 80%; |
| 1092 |
border: none !important; |
| 1093 |
outline: none !important; |
| 1094 |
padding: 0; |
| 1095 |
color: #333; |
| 1096 |
margin-left: 7px; |
| 1097 |
background-color: transparent !important; |
| 1098 |
} |
| 1099 |
.search_input::placeholder { |
| 1100 |
color: #7e7e7e; |
| 1101 |
} |
| 1102 |
.search_input:hover, |
| 1103 |
.search_input:focus { |
| 1104 |
border: none; |
| 1105 |
outline: none; |
| 1106 |
box-shadow: none !important; |
| 1107 |
} |
| 1108 |
.reset_search { |
| 1109 |
cursor: pointer; |
| 1110 |
margin-right: 7px; |
| 1111 |
margin-left: 5px; |
| 1112 |
height: 22px; |
| 1113 |
color: #c2c2c2; |
| 1114 |
width: 22px; |
| 1115 |
display: none; |
| 1116 |
|
| 1117 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 1118 |
} |
| 1119 |
.reset_search_visible { |
| 1120 |
display: flex; |
| 1121 |
} |
| 1122 |
.reset_search:hover { |
| 1123 |
color: #7e7e7e; |
| 1124 |
} |
| 1125 |
|
| 1126 |
.gsp_left_link { |
| 1127 |
color: #585858; |
| 1128 |
align-items: center; |
| 1129 |
display: flex; |
| 1130 |
width: 100%; |
| 1131 |
text-decoration: none; |
| 1132 |
transition: 0.4s ease-out; |
| 1133 |
height: 100%; |
| 1134 |
} |
| 1135 |
.gsp_left_link:hover { |
| 1136 |
color: rgb(124 34 191) !important; |
| 1137 |
} |
| 1138 |
|
| 1139 |
/*ss checkbox*/ |
| 1140 |
.ss_checkbox_wrapper { |
| 1141 |
width: 22px; |
| 1142 |
height: 22px; |
| 1143 |
border: 2px solid #ededed; |
| 1144 |
border-radius: 3px; |
| 1145 |
margin-right: 10px; |
| 1146 |
|
| 1147 |
position: relative; |
| 1148 |
transition: 0.3s ease-out; |
| 1149 |
cursor: pointer; |
| 1150 |
} |
| 1151 |
.ss_checkbox_wrapper:hover, |
| 1152 |
.ss_checkbox_wrapper.ss_ch_hovered, |
| 1153 |
.ss_checkbox_wrapper.ss_checked { |
| 1154 |
border: 2px solid #8b44c1; |
| 1155 |
} |
| 1156 |
.ss_checkbox_wrapper.ss_checked .ss_checkbox_bg{ |
| 1157 |
background-color: #8b44c1; |
| 1158 |
} |
| 1159 |
.ss_checkbox_ripple { |
| 1160 |
width: 18px; |
| 1161 |
height: 18px; |
| 1162 |
z-index: 2; |
| 1163 |
border-radius: 50%; |
| 1164 |
position: absolute; |
| 1165 |
top: 0px; |
| 1166 |
left: 0px; |
| 1167 |
background-color: #8b44c1; |
| 1168 |
} |
| 1169 |
.ss_checkbox_wrapper.ss_checked .ss_checkbox_ripple{ |
| 1170 |
animation: ss_ripple 700ms forwards ease-out; |
| 1171 |
} |
| 1172 |
.ss_checkbox_wrapper.ss_apply_ripple .ss_checkbox_ripple{ |
| 1173 |
animation: ss_ripple_off 700ms forwards ease-out; |
| 1174 |
} |
| 1175 |
.ss_checkbox_bg { |
| 1176 |
width: 18px; |
| 1177 |
height: 18px; |
| 1178 |
z-index: 3; |
| 1179 |
position: absolute; |
| 1180 |
top: 0px; |
| 1181 |
left: 0px; |
| 1182 |
background-color: #fff; |
| 1183 |
transition: 0.3s ease-out; |
| 1184 |
} |
| 1185 |
.ss_checkbox_line1 { |
| 1186 |
border-radius: 0px; |
| 1187 |
transform-origin: left; |
| 1188 |
transform: rotate(42.5deg) scale(0,1); |
| 1189 |
position: absolute; |
| 1190 |
background-color: #fff; |
| 1191 |
height: 2px; |
| 1192 |
width: 8px; |
| 1193 |
top: 7px; |
| 1194 |
left: 1px; |
| 1195 |
z-index: 4; |
| 1196 |
|
| 1197 |
transition: 150ms ease-in-out; |
| 1198 |
transition: 150ms cubic-bezier(0.895, 0.03, 0.685, 0.22); |
| 1199 |
} |
| 1200 |
.ss_checked .ss_checkbox_line1 { |
| 1201 |
transform: rotate(42.5deg) scale(1,1); |
| 1202 |
} |
| 1203 |
.ss_checkbox_line2 { |
| 1204 |
transform-origin: left; |
| 1205 |
transform: rotate(314deg) scale(0,1); |
| 1206 |
position: absolute; |
| 1207 |
background-color: #fff; |
| 1208 |
height: 2px; |
| 1209 |
width: 15px; |
| 1210 |
top: 13px; |
| 1211 |
left: 6px; |
| 1212 |
transition: 150ms ease-in-out; |
| 1213 |
transition: 150ms cubic-bezier(0.895, 0.03, 0.685, 0.22); |
| 1214 |
transition-delay: 150ms; |
| 1215 |
z-index: 4; |
| 1216 |
} |
| 1217 |
.ss_checked .ss_checkbox_line2 { |
| 1218 |
transform: rotate(314deg) scale(1,1); |
| 1219 |
} |
| 1220 |
.ss_tr_d_150 { |
| 1221 |
transition-delay: 150ms !important; |
| 1222 |
} |
| 1223 |
.ss_tr_d_0 { |
| 1224 |
transition-delay: 0ms !important; |
| 1225 |
} |
| 1226 |
.ss_checkbox_label { |
| 1227 |
cursor: pointer; |
| 1228 |
} |
| 1229 |
/*end ss checkbox*/ |
| 1230 |
/*upgrade info*/ |
| 1231 |
.ss_upgrade_info { |
| 1232 |
align-items: center; |
| 1233 |
bottom: 0; |
| 1234 |
display: flex; |
| 1235 |
flex-direction: row; |
| 1236 |
align-items: center; |
| 1237 |
position: absolute; |
| 1238 |
right: 38px; |
| 1239 |
height: 34px; |
| 1240 |
} |
| 1241 |
.ss_locked_icon { |
| 1242 |
width: 22px; |
| 1243 |
height: 22px; |
| 1244 |
background-color: #444; |
| 1245 |
border-radius: 50%; |
| 1246 |
margin-right: 7px; |
| 1247 |
display: flex; |
| 1248 |
align-items: center; |
| 1249 |
justify-content: center; |
| 1250 |
/*remove to show*/ |
| 1251 |
} |
| 1252 |
.ss_upgrade_info a { |
| 1253 |
display: inline-block; |
| 1254 |
margin-right: 5px; |
| 1255 |
color: #b27adc; |
| 1256 |
} |
| 1257 |
.ss_locked_icon_inner { |
| 1258 |
width: 18px; |
| 1259 |
position: absolute; |
| 1260 |
right: -32px; |
| 1261 |
top: 50%; |
| 1262 |
transform: translateY(-50%); |
| 1263 |
cursor: not-allowed; |
| 1264 |
height: 18px; |
| 1265 |
background-color: #aca8a8; |
| 1266 |
transition: 0.3s ease-out; |
| 1267 |
display: none; |
| 1268 |
} |
| 1269 |
.ss_locked_icon_inner:hover { |
| 1270 |
background-color: #868282; |
| 1271 |
} |
| 1272 |
.ss_locked_icon_inner img { |
| 1273 |
width: 10px; |
| 1274 |
height: 10px; |
| 1275 |
} |
| 1276 |
.ss_user_plan_0 .ss_upgrade_info, |
| 1277 |
.ss_user_plan_0 .ss_locked_icon_inner { |
| 1278 |
display: flex; |
| 1279 |
} |
| 1280 |
|
| 1281 |
/*Characters info*/ |
| 1282 |
|
| 1283 |
.gsp_chars_counter_wrapper { |
| 1284 |
width: 300px; |
| 1285 |
display: flex; |
| 1286 |
flex-direction: column; |
| 1287 |
flex-shrink: 0; |
| 1288 |
height: 100%; |
| 1289 |
position: relative; |
| 1290 |
background-color: #fff; |
| 1291 |
} |
| 1292 |
|
| 1293 |
.gsp_chars_counter { |
| 1294 |
height: fit-content; |
| 1295 |
margin: 25px auto; |
| 1296 |
width: 90%; |
| 1297 |
border: 1px solid #bdbcbc; |
| 1298 |
border-radius: 5px; |
| 1299 |
padding: 12px; |
| 1300 |
background-color: #fff; |
| 1301 |
} |
| 1302 |
.gsp_chars_count_title { |
| 1303 |
color: #555; |
| 1304 |
font-size: 15px; |
| 1305 |
margin-bottom: 15px; |
| 1306 |
} |
| 1307 |
.gsp_chars_plan_info { |
| 1308 |
color: #555; |
| 1309 |
margin-top: 13px; |
| 1310 |
font-size: 14px; |
| 1311 |
} |
| 1312 |
.gsp_chars_plan_title { |
| 1313 |
color: #8d33d0; |
| 1314 |
} |
| 1315 |
.gsp_chars_count_val { |
| 1316 |
color: #8d33d0; |
| 1317 |
font-size: 28px; |
| 1318 |
margin-bottom: 15px; |
| 1319 |
} |
| 1320 |
.gsp_chars_per_m { |
| 1321 |
margin-top: -2px; |
| 1322 |
color: #999; |
| 1323 |
font-size: 15px; |
| 1324 |
margin-bottom: 15px; |
| 1325 |
} |
| 1326 |
.gsp_chars_count_progress__wrapper { |
| 1327 |
width: 100%; |
| 1328 |
height: 20px; |
| 1329 |
border-radius: 8px; |
| 1330 |
overflow: hidden; |
| 1331 |
position: relative; |
| 1332 |
background-color: #f2dfff; |
| 1333 |
} |
| 1334 |
.gsp_chars_count_progress { |
| 1335 |
position: absolute; |
| 1336 |
top: 0; |
| 1337 |
left: 0; |
| 1338 |
height: 100%; |
| 1339 |
width: 55%; |
| 1340 |
background: linear-gradient(270deg, rgb(242 0 7) 0%, rgb(155 79 242) 100%); |
| 1341 |
|
| 1342 |
transition: 4s ease-out; |
| 1343 |
} |
| 1344 |
.gsp_chars_block_upgrade { |
| 1345 |
border-radius: 9px; |
| 1346 |
margin-top: 10px; |
| 1347 |
border: 1px solid #8d33d0; |
| 1348 |
color: #8d33d0; |
| 1349 |
font-size: 16px; |
| 1350 |
width: 100%; |
| 1351 |
height: 35px; |
| 1352 |
display: flex; |
| 1353 |
align-items: center; |
| 1354 |
justify-content: center; |
| 1355 |
transition: 0.4s ease-out; |
| 1356 |
cursor: pointer; |
| 1357 |
} |
| 1358 |
.gsp_chars_block_upgrade:hover { |
| 1359 |
background-color: #8d33d0; |
| 1360 |
color: #fff; |
| 1361 |
} |
| 1362 |
.gsp_month_data { |
| 1363 |
color: #777; |
| 1364 |
display: inline-block; |
| 1365 |
font-size: 13px; |
| 1366 |
margin-left: 3px; |
| 1367 |
} |
| 1368 |
.gsp_chars_stat { |
| 1369 |
height: fit-content; |
| 1370 |
margin: 0px auto; |
| 1371 |
width: 90%; |
| 1372 |
border: 1px solid #bdbcbc; |
| 1373 |
border-radius: 5px; |
| 1374 |
padding: 12px; |
| 1375 |
background-color: #fff; |
| 1376 |
} |
| 1377 |
.gsp_upgrade_wrapper { |
| 1378 |
height: fit-content; |
| 1379 |
margin: 20px auto 0; |
| 1380 |
width: 90%; |
| 1381 |
border: 1px solid #bdbcbc; |
| 1382 |
border-radius: 5px; |
| 1383 |
padding: 12px; |
| 1384 |
background-color: #fff; |
| 1385 |
} |
| 1386 |
.gsp_upg_link { |
| 1387 |
font-size: 15px; |
| 1388 |
text-decoration: none; |
| 1389 |
display: flex; |
| 1390 |
justify-content: center; |
| 1391 |
align-items: center; |
| 1392 |
background-color: #5e367b; |
| 1393 |
border-radius: 8px; |
| 1394 |
color: #fff; |
| 1395 |
width: 100%; |
| 1396 |
height: 40px; |
| 1397 |
transition: 0.4s ease-out; |
| 1398 |
border: 1px solid #5e367b; |
| 1399 |
} |
| 1400 |
.gsp_upg_link:hover { |
| 1401 |
background-color: #fff; |
| 1402 |
color: #5e367b; |
| 1403 |
} |
| 1404 |
.gsp_upg_link img { |
| 1405 |
margin-left: 8px; |
| 1406 |
} |
| 1407 |
.gsp_upg_ul { |
| 1408 |
margin: 22px 0 0 5px; |
| 1409 |
} |
| 1410 |
.gsp_upg_ul li { |
| 1411 |
padding-bottom: 7px; |
| 1412 |
text-decoration: underline; |
| 1413 |
margin-bottom: 8px !important; |
| 1414 |
border-bottom: 1px dotted #5e367b; |
| 1415 |
font-size: 15px; |
| 1416 |
} |
| 1417 |
.gsp_icon_checked { |
| 1418 |
margin-right: 6px; |
| 1419 |
height: 22px; |
| 1420 |
color: #09800980; |
| 1421 |
width: 22px; |
| 1422 |
transition: 0.4s ease-out; |
| 1423 |
} |
| 1424 |
.gsp_upg_ul li:hover .gsp_icon_checked { |
| 1425 |
color: #048a04; |
| 1426 |
} |
| 1427 |
.gsp_icon_checked svg { |
| 1428 |
width: 100%; |
| 1429 |
height: 100%; |
| 1430 |
display: flex; |
| 1431 |
} |
| 1432 |
.gsp_upg_ul .title_holder_vertical { |
| 1433 |
border-bottom: none; |
| 1434 |
} |
| 1435 |
.gsp_upg_ul .title_holder_vertical:hover { |
| 1436 |
border-bottom: none; |
| 1437 |
} |
| 1438 |
.gsp_upg_ul .gs_title_vertical { |
| 1439 |
border-bottom: none; |
| 1440 |
right: initial !important; |
| 1441 |
left: -116px !important; |
| 1442 |
} |
| 1443 |
.gsp_com_f_t { |
| 1444 |
margin-top: 5px; |
| 1445 |
font-size: 20px; |
| 1446 |
color: #4e4e4e; |
| 1447 |
} |
| 1448 |
|
| 1449 |
|
| 1450 |
|
| 1451 |
.gsp_chars_stat_title { |
| 1452 |
color: #555; |
| 1453 |
font-size: 16px; |
| 1454 |
margin-bottom: 15px; |
| 1455 |
} |
| 1456 |
.gsp_chars_stat_line { |
| 1457 |
display: flex; |
| 1458 |
flex-direction: row; |
| 1459 |
align-items: center; |
| 1460 |
font-size: 14px; |
| 1461 |
height: 25px; |
| 1462 |
width: 100%; |
| 1463 |
} |
| 1464 |
.gsp_stat_line_title { |
| 1465 |
display: flex; |
| 1466 |
width: auto; |
| 1467 |
color: #777; |
| 1468 |
} |
| 1469 |
.gsp_stat_line_val { |
| 1470 |
display: flex; |
| 1471 |
justify-content: flex-end; |
| 1472 |
flex-grow: 1; |
| 1473 |
flex-shrink: 0; |
| 1474 |
color: #8d33d0; |
| 1475 |
} |
| 1476 |
|
| 1477 |
.gsp_dashboard_wrapper { |
| 1478 |
width: 100%; |
| 1479 |
height: 100%; |
| 1480 |
position: relative; |
| 1481 |
|
| 1482 |
transition: 0.4s ease-out; |
| 1483 |
} |
| 1484 |
|
| 1485 |
#gsp_dash_main_wrapper { |
| 1486 |
width: 100%; |
| 1487 |
display: flex; |
| 1488 |
flex-direction: row; |
| 1489 |
} |
| 1490 |
#gsp_chars_stat_wrapper { |
| 1491 |
width: 300px; |
| 1492 |
display: flex; |
| 1493 |
flex-direction: column; |
| 1494 |
flex-shrink: 0; |
| 1495 |
height: 100%; |
| 1496 |
position: relative; |
| 1497 |
background-color: #fff; |
| 1498 |
} |
| 1499 |
#dashboard_content { |
| 1500 |
padding: 15px; |
| 1501 |
flex-grow: 1; |
| 1502 |
background-color: #f1f1f1; |
| 1503 |
display: flex; |
| 1504 |
flex-direction: column; |
| 1505 |
align-items: center; |
| 1506 |
justify-content: flex-start; |
| 1507 |
position: relative; |
| 1508 |
border-radius: 6px; |
| 1509 |
} |
| 1510 |
|
| 1511 |
.opts_block_wrapper_row { |
| 1512 |
display: flex; |
| 1513 |
flex-direction: row; |
| 1514 |
margin-top: 3px; |
| 1515 |
} |
| 1516 |
.opts_block_wrapper_row .opts_block { |
| 1517 |
flex-basis: 155px; |
| 1518 |
} |
| 1519 |
|
| 1520 |
.dashboard_content { |
| 1521 |
padding: 15px; |
| 1522 |
flex-grow: 1; |
| 1523 |
background-color: #f1f1f1; |
| 1524 |
display: flex; |
| 1525 |
flex-direction: column; |
| 1526 |
align-items: center; |
| 1527 |
justify-content: flex-start; |
| 1528 |
position: relative; |
| 1529 |
border-radius: 6px; |
| 1530 |
} |
| 1531 |
|
| 1532 |
/*START Dash css*/ |
| 1533 |
.ss_buttons_holder { |
| 1534 |
display: flex; |
| 1535 |
flex-direction: row !important; |
| 1536 |
justify-content: space-between; |
| 1537 |
height: 85px; |
| 1538 |
} |
| 1539 |
|
| 1540 |
.inner_options_wrapper { |
| 1541 |
background-color: #f9f9f9; |
| 1542 |
border: 1px solid #d7d7d7; |
| 1543 |
border-radius: 6px; |
| 1544 |
width: 100%; |
| 1545 |
height: 100%; |
| 1546 |
padding: 15px; |
| 1547 |
|
| 1548 |
display: flex; |
| 1549 |
flex-direction: row; |
| 1550 |
flex-wrap: wrap; |
| 1551 |
} |
| 1552 |
.ss_options_group_1 { |
| 1553 |
display: flex; |
| 1554 |
background-color: #fff; |
| 1555 |
margin: 7px; |
| 1556 |
border-radius: 7px; |
| 1557 |
border: 1px solid #d2d2d2; |
| 1558 |
flex-direction: column; |
| 1559 |
width: 100%; |
| 1560 |
padding: 20px; |
| 1561 |
} |
| 1562 |
.ss_slider_element_wrapper { |
| 1563 |
width: 30%; |
| 1564 |
margin-top: -15px; |
| 1565 |
min-width: 350px; |
| 1566 |
position: relative; |
| 1567 |
} |
| 1568 |
.opts_block { |
| 1569 |
margin-top: 15px; |
| 1570 |
position: relative; |
| 1571 |
} |
| 1572 |
.opts_block .items_select_filter_wrapper { |
| 1573 |
margin-left: 0px; |
| 1574 |
} |
| 1575 |
.opts_block .gs_checkbox_wrapper { |
| 1576 |
margin-bottom: 0px; |
| 1577 |
} |
| 1578 |
.ss_voice_preview_wrapper, |
| 1579 |
.ss_voice_preview_widget_wrapper { |
| 1580 |
width: 250px; |
| 1581 |
} |
| 1582 |
.ss_option_info { |
| 1583 |
margin-top: 8px; |
| 1584 |
color: #777; |
| 1585 |
font-size: 14px; |
| 1586 |
} |
| 1587 |
|
| 1588 |
.opts_hor_wrapper { |
| 1589 |
display: flex; |
| 1590 |
flex-direction: row; |
| 1591 |
flex-wrap: wrap; |
| 1592 |
margin-top: 7px; |
| 1593 |
} |
| 1594 |
.opts_hor_wrapper .opts_block { |
| 1595 |
display: flex; |
| 1596 |
width: fit-content; |
| 1597 |
margin-left: 45px; |
| 1598 |
flex-direction: column; |
| 1599 |
} |
| 1600 |
.opts_hor_wrapper .opts_block:first-child { |
| 1601 |
margin-left: 0px; |
| 1602 |
} |
| 1603 |
|
| 1604 |
.opts_block_label { |
| 1605 |
font-size: 16px; |
| 1606 |
color: #333; |
| 1607 |
margin-bottom: 5px; |
| 1608 |
display: flex; |
| 1609 |
align-items: center; |
| 1610 |
width: fit-content; |
| 1611 |
position: relative; |
| 1612 |
z-index: 130; |
| 1613 |
} |
| 1614 |
.questions_icon { |
| 1615 |
margin-left: 5px; |
| 1616 |
border-radius: 50%; |
| 1617 |
width: 18px; |
| 1618 |
height: 18px; |
| 1619 |
padding: 4px; |
| 1620 |
display: flex; |
| 1621 |
align-items: center; |
| 1622 |
justify-content: center; |
| 1623 |
color: #ffffff; |
| 1624 |
background-color: #e6560f6e; |
| 1625 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 1626 |
} |
| 1627 |
.title_holder_vertical:hover .questions_icon { |
| 1628 |
background-color: #e6560f; |
| 1629 |
} |
| 1630 |
|
| 1631 |
.ss_rht_player_preview { |
| 1632 |
height: 60px; |
| 1633 |
width: 100%; |
| 1634 |
position: relative; |
| 1635 |
} |
| 1636 |
.ss_rht_player_preview .ssplayer_rht.ssplayer_display_none { |
| 1637 |
display: block !important; |
| 1638 |
} |
| 1639 |
.ss_opacity_1 { |
| 1640 |
opacity: 1 !important |
| 1641 |
} |
| 1642 |
.ss_rht_player_preview .ssplayer_rht { |
| 1643 |
top: 0 !important; |
| 1644 |
left: 25px !important; |
| 1645 |
} |
| 1646 |
|
| 1647 |
.opts_input, |
| 1648 |
.opts_input:hover, |
| 1649 |
.opts_input:focus { |
| 1650 |
box-shadow: none !important; |
| 1651 |
} |
| 1652 |
textarea.opts_input.ss_textarea_dynamic_height { |
| 1653 |
height: 35px; |
| 1654 |
padding-top: 0 !important; |
| 1655 |
line-height: 33px; |
| 1656 |
border: 1px solid #b4b4b4 !important; |
| 1657 |
border-radius: 7px; |
| 1658 |
resize: none; |
| 1659 |
|
| 1660 |
transition: 400ms ease-out; |
| 1661 |
} |
| 1662 |
textarea.opts_input.ss_textarea_dynamic_height.ss_textarea_active { |
| 1663 |
height: 120px; |
| 1664 |
line-height: 20px; |
| 1665 |
padding-top: 12px !important; |
| 1666 |
border: 1px solid #9a52cf !important; |
| 1667 |
} |
| 1668 |
|
| 1669 |
|
| 1670 |
#dashboard_content .opts_input, |
| 1671 |
.dashboard_content .opts_input, |
| 1672 |
.opts_input { |
| 1673 |
background-color: #fff !important; |
| 1674 |
border: 1px solid #b4b4b4 !important; |
| 1675 |
border-radius: 3px; |
| 1676 |
padding: 0 10px; |
| 1677 |
width: 50%; |
| 1678 |
color: #7e7e7e !important; |
| 1679 |
transition: 400ms ease-out; |
| 1680 |
} |
| 1681 |
.opts_input:hover { |
| 1682 |
border: 1px solid #222 !important; |
| 1683 |
} |
| 1684 |
.opts_input:focus { |
| 1685 |
border: 1px solid #a435f8 !important; |
| 1686 |
} |
| 1687 |
textarea.opts_input { |
| 1688 |
padding: 12px !important; |
| 1689 |
} |
| 1690 |
#dashboard_content .opts_input.ss_error, |
| 1691 |
.items_select_filter_wrapper.ss_error { |
| 1692 |
border: 1px solid #e82b2b !important; |
| 1693 |
} |
| 1694 |
.ss_options_group_1 .items_select_filter_wrapper { |
| 1695 |
width: 30%; |
| 1696 |
min-width: 350px; |
| 1697 |
} |
| 1698 |
.ss_options_group_1 .gsp_short_inp { |
| 1699 |
width: 30% !important; |
| 1700 |
min-width: 350px; |
| 1701 |
} |
| 1702 |
|
| 1703 |
#wbs_plan { |
| 1704 |
z-index: 102; |
| 1705 |
} |
| 1706 |
#lng_sel_type_0,#lng_sel_type_1 { |
| 1707 |
z-index: 101; |
| 1708 |
} |
| 1709 |
#wbs_voice { |
| 1710 |
z-index: 100; |
| 1711 |
} |
| 1712 |
.opts_title { |
| 1713 |
padding: 7px 10px; |
| 1714 |
width: 100%; |
| 1715 |
font-size: 18px; |
| 1716 |
margin: 0px 0 10px 0; |
| 1717 |
color: #5d5d5d; |
| 1718 |
background-color: #e6e6e6; |
| 1719 |
border-radius: 5px; |
| 1720 |
height: fit-content; |
| 1721 |
} |
| 1722 |
.ss_premium_icon { |
| 1723 |
position: absolute; |
| 1724 |
color: #ffcc00; |
| 1725 |
right: 15px; |
| 1726 |
top: 50%; |
| 1727 |
transform: translateY(-50%); |
| 1728 |
width: 20px; |
| 1729 |
height: 20px; |
| 1730 |
transition: 0.3s ease-out; |
| 1731 |
} |
| 1732 |
.ss_machine_icon { |
| 1733 |
position: absolute; |
| 1734 |
color: #7b7777; |
| 1735 |
right: 15px; |
| 1736 |
top: 50%; |
| 1737 |
transform: translateY(-50%); |
| 1738 |
width: 20px; |
| 1739 |
height: 20px; |
| 1740 |
transition: 0.3s ease-out; |
| 1741 |
} |
| 1742 |
.ss_premium_txt { |
| 1743 |
position: absolute; |
| 1744 |
font-size: 12px; |
| 1745 |
right: 45px; |
| 1746 |
top: 50%; |
| 1747 |
transform: translateY(-50%); |
| 1748 |
color: #6c5a86; |
| 1749 |
transition: 0.3s ease-out; |
| 1750 |
} |
| 1751 |
.li_selected .ss_premium_txt { |
| 1752 |
color: #6c5a86 !important; |
| 1753 |
} |
| 1754 |
.ss_machine_txt { |
| 1755 |
position: absolute; |
| 1756 |
font-size: 12px; |
| 1757 |
right: 45px; |
| 1758 |
top: 50%; |
| 1759 |
transform: translateY(-50%); |
| 1760 |
color: #7b7777; |
| 1761 |
transition: 0.3s ease-out; |
| 1762 |
} |
| 1763 |
.li_selected .ss_machine_txt, |
| 1764 |
.li_selected .ss_machine_icon { |
| 1765 |
color: #7b7777 !important; |
| 1766 |
} |
| 1767 |
.search_li:hover .ss_machine_txt, |
| 1768 |
.search_li:hover .ss_premium_txt, |
| 1769 |
.search_li:hover .ss_machine_icon { |
| 1770 |
color: #ededed; |
| 1771 |
} |
| 1772 |
.ss_disabled:hover .ss_premium_txt { |
| 1773 |
color: #6c5a86; |
| 1774 |
} |
| 1775 |
ul.items_select_ul .ss_disabled { |
| 1776 |
background-color: rgb(236 236 236) !important; |
| 1777 |
color: rgb(119 118 118) !important; |
| 1778 |
text-shadow: none !important; |
| 1779 |
cursor: not-allowed !important; |
| 1780 |
} |
| 1781 |
ul.items_select_ul .ss_disabled:hover { |
| 1782 |
background-color: rgb(224 224 224) !important; |
| 1783 |
} |
| 1784 |
|
| 1785 |
.play_voice_preview { |
| 1786 |
margin-left: -5px; |
| 1787 |
width: 25px !important; |
| 1788 |
height: 25px; |
| 1789 |
border-radius: 50%; |
| 1790 |
background-color: transparent; |
| 1791 |
color: #c3b6d8; |
| 1792 |
padding: 7px; |
| 1793 |
display: flex !important; |
| 1794 |
align-items: center; |
| 1795 |
margin-right: 7px; |
| 1796 |
cursor: pointer; |
| 1797 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 1798 |
} |
| 1799 |
.play_voice_preview:hover { |
| 1800 |
background: linear-gradient(rgb(177 112 252) 0%, rgb(255 44 51) 100%); |
| 1801 |
color: #fff; |
| 1802 |
} |
| 1803 |
.play_visible .icon_play { |
| 1804 |
display: inline-block; |
| 1805 |
} |
| 1806 |
.play_visible .icon_stop { |
| 1807 |
display: none; |
| 1808 |
} |
| 1809 |
.stop_visible .icon_play { |
| 1810 |
display: none; |
| 1811 |
} |
| 1812 |
.stop_visible .icon_stop { |
| 1813 |
display: inline-block; |
| 1814 |
} |
| 1815 |
|
| 1816 |
|
| 1817 |
.ss_title_colored1 { |
| 1818 |
color: #22c688; |
| 1819 |
} |
| 1820 |
|
| 1821 |
|
| 1822 |
#dashboard_content .opts_input.ss_disabled, |
| 1823 |
.opts_input.ss_disabled { |
| 1824 |
background-color: #e5e5e5 !important; |
| 1825 |
} |
| 1826 |
|
| 1827 |
|
| 1828 |
|
| 1829 |
/*END dashboard css*/ |
| 1830 |
|
| 1831 |
/* gs checkbox */ |
| 1832 |
|
| 1833 |
.gs_checkbox_wrapper { |
| 1834 |
margin: 0px 0 15px; |
| 1835 |
display: flex; |
| 1836 |
justify-content: flex-start; |
| 1837 |
align-items: center; |
| 1838 |
color: #9a9a; |
| 1839 |
height: 30px |
| 1840 |
} |
| 1841 |
|
| 1842 |
.gs_checkbox_title { |
| 1843 |
font-size: 15px; |
| 1844 |
color: #757575; |
| 1845 |
} |
| 1846 |
.gs_checkbox_title span { |
| 1847 |
border-bottom: 1px dotted #a4a2a299; |
| 1848 |
color: #757575; |
| 1849 |
line-height: 1.4; |
| 1850 |
} |
| 1851 |
.title_holder_vertical { |
| 1852 |
display: flex; |
| 1853 |
position: relative; |
| 1854 |
cursor: help; |
| 1855 |
width: fit-content; |
| 1856 |
border-bottom: 1px dotted #b1afaf; |
| 1857 |
line-height: 1.3; |
| 1858 |
transition: all 400ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 1859 |
} |
| 1860 |
.title_holder_vertical:hover { |
| 1861 |
border-bottom: 1px dotted #000; |
| 1862 |
} |
| 1863 |
.gs_title_vertical { |
| 1864 |
background-color: #212020; |
| 1865 |
|
| 1866 |
padding: 9px 11px; |
| 1867 |
border-radius: 5px; |
| 1868 |
height: fit-content; |
| 1869 |
color: #fff !important; |
| 1870 |
top: 0; |
| 1871 |
right: -116px; |
| 1872 |
width: 250px; |
| 1873 |
font-size: 13px; |
| 1874 |
position: absolute; |
| 1875 |
cursor: default; |
| 1876 |
z-index: 1000; |
| 1877 |
|
| 1878 |
opacity: 0; |
| 1879 |
visibility: hidden; |
| 1880 |
|
| 1881 |
transform: translateX(0%) translateY(-100%) translateY(-18px); |
| 1882 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 1883 |
line-height: 1.5; |
| 1884 |
} |
| 1885 |
.gs_title_vertical::before { |
| 1886 |
top: 100%; |
| 1887 |
content: ""; |
| 1888 |
position: absolute; |
| 1889 |
left: 50%; |
| 1890 |
transform-origin: 0% 0%; |
| 1891 |
transform: rotate(45deg) translate(-50%, -50%); |
| 1892 |
background-color: #212020; |
| 1893 |
width: 10px; |
| 1894 |
height: 10px; |
| 1895 |
display: block; |
| 1896 |
} |
| 1897 |
.gs_title_vertical.visible { |
| 1898 |
transform: translateX(0%) translateY(-100%) translateY(-8px); |
| 1899 |
opacity: 1; |
| 1900 |
visibility: visible; |
| 1901 |
} |
| 1902 |
.title_v_subtitle { |
| 1903 |
margin-bottom: 2px; |
| 1904 |
display: inline-block; |
| 1905 |
border-bottom: 1px dotted #c496f8 !important; |
| 1906 |
color: #c496f8 !important; |
| 1907 |
font-weight: bold; |
| 1908 |
margin-right: 1px; |
| 1909 |
font-size: 14px; |
| 1910 |
} |
| 1911 |
.title_holder_horizontal { |
| 1912 |
|
| 1913 |
} |
| 1914 |
.gs_switcher { |
| 1915 |
margin: 0 20px; |
| 1916 |
height: 100%; |
| 1917 |
width: 30px; |
| 1918 |
position: relative; |
| 1919 |
|
| 1920 |
cursor: pointer; |
| 1921 |
} |
| 1922 |
.gs_switcher_button { |
| 1923 |
background-color: #e6560e; |
| 1924 |
border-radius: 50%; |
| 1925 |
width: 20px; |
| 1926 |
height: 20px; |
| 1927 |
position: absolute; |
| 1928 |
top: 50%; |
| 1929 |
left: 0; |
| 1930 |
z-index: 11; |
| 1931 |
|
| 1932 |
transform: translateX(-50%) translateY(-50%); |
| 1933 |
|
| 1934 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 1935 |
} |
| 1936 |
.gs_switcher_button_on .gs_switcher_button { |
| 1937 |
left: 100%; |
| 1938 |
} |
| 1939 |
.gs_switcher_bar { |
| 1940 |
background-color: #dedede; |
| 1941 |
width: 100%; |
| 1942 |
height: 8px; |
| 1943 |
position: absolute; |
| 1944 |
top: 50%; |
| 1945 |
left: 0; |
| 1946 |
z-index: 10; |
| 1947 |
border-radius: 9px; |
| 1948 |
transform: translateY(-50%); |
| 1949 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 1950 |
} |
| 1951 |
.gs_switcher:hover .gs_switcher_button { |
| 1952 |
transform: translateX(-50%) translateY(-50%) scale(1.1,1.1); |
| 1953 |
background-color: #f50; |
| 1954 |
} |
| 1955 |
.gs_switcher:hover .gs_switcher_bar { |
| 1956 |
background-color: #c5c2c2; |
| 1957 |
} |
| 1958 |
/*gs mono swicther*/ |
| 1959 |
.gs_mono_checkbox_wrapper { |
| 1960 |
display: flex; |
| 1961 |
justify-content: flex-start; |
| 1962 |
align-items: center; |
| 1963 |
width: fit-content; |
| 1964 |
cursor: pointer; |
| 1965 |
} |
| 1966 |
.gs_mono_checkbox_wrapper.ss_disabled { |
| 1967 |
cursor: not-allowed !important; |
| 1968 |
} |
| 1969 |
.gs_mono_switcher { |
| 1970 |
background-color: #aca8a8; |
| 1971 |
margin-right: 5px; |
| 1972 |
border-radius: 13px; |
| 1973 |
height: 24px; |
| 1974 |
width: 45px; |
| 1975 |
position: relative; |
| 1976 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 1977 |
} |
| 1978 |
.gs_mono_switcher_button { |
| 1979 |
background-color: #fff; |
| 1980 |
border-radius: 50%; |
| 1981 |
width: 16px; |
| 1982 |
height: 16px; |
| 1983 |
position: absolute; |
| 1984 |
top: 50%; |
| 1985 |
left: 13px; |
| 1986 |
z-index: 11; |
| 1987 |
transform: translateX(-50%) translateY(-50%); |
| 1988 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 1989 |
} |
| 1990 |
.gs_mono_switcher_button_on .gs_mono_switcher_button { |
| 1991 |
left: 33px; |
| 1992 |
} |
| 1993 |
.gs_mono_checkbox_wrapper:hover .gs_mono_switcher { |
| 1994 |
background-color: #868282; |
| 1995 |
} |
| 1996 |
.gs_mono_checkbox_wrapper:hover .gs_mono_label_0 { |
| 1997 |
color: #868282; |
| 1998 |
} |
| 1999 |
.gs_mono_switcher_button_on .gs_mono_switcher { |
| 2000 |
background-color: #8b44c1 !important; |
| 2001 |
} |
| 2002 |
.gs_mono_checkbox { |
| 2003 |
display: none !important; |
| 2004 |
} |
| 2005 |
.gs_mono_label { |
| 2006 |
font-size: 13px; |
| 2007 |
text-transform: uppercase; |
| 2008 |
} |
| 2009 |
.gs_mono_label_0 { |
| 2010 |
color: #aca8a8; |
| 2011 |
display: flex; |
| 2012 |
} |
| 2013 |
.gs_mono_label_1 { |
| 2014 |
color: #8b44c1; |
| 2015 |
display: none; |
| 2016 |
} |
| 2017 |
.gs_mono_switcher_button_on .gs_mono_label_0 { |
| 2018 |
display: none; |
| 2019 |
} |
| 2020 |
.gs_mono_switcher_button_on .gs_mono_label_1 { |
| 2021 |
display: flex; |
| 2022 |
} |
| 2023 |
/*end mono checkbox*/ |
| 2024 |
|
| 2025 |
|
| 2026 |
.gsp_slider_element { |
| 2027 |
display: flex; |
| 2028 |
width: 100%; |
| 2029 |
flex-direction: column; |
| 2030 |
} |
| 2031 |
.gsp_slider_wrapper { |
| 2032 |
width: 100%; |
| 2033 |
height: 18px; |
| 2034 |
border-radius: 12px; |
| 2035 |
opacity: 1; |
| 2036 |
position: relative; |
| 2037 |
|
| 2038 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2039 |
|
| 2040 |
border: none; |
| 2041 |
box-sizing: border-box; |
| 2042 |
} |
| 2043 |
|
| 2044 |
.gsp_slider_wrapper_hidden { |
| 2045 |
opacity: 0 !important; |
| 2046 |
} |
| 2047 |
|
| 2048 |
.gsp_slider_bar { |
| 2049 |
position: absolute; |
| 2050 |
top: 0; |
| 2051 |
left: 0; |
| 2052 |
width: 100%; |
| 2053 |
height: 100%; |
| 2054 |
background-color: #dcdcdc; |
| 2055 |
border-radius: 12px; |
| 2056 |
} |
| 2057 |
.gsp_slider_bar_active { |
| 2058 |
position: absolute; |
| 2059 |
bottom: 0; |
| 2060 |
width: 0%; |
| 2061 |
height: 100%; |
| 2062 |
background-color: #4f1f73; |
| 2063 |
border-radius: 12px; |
| 2064 |
border-top-right-radius: 0 !important; |
| 2065 |
border-bottom-right-radius: 0 !important; |
| 2066 |
|
| 2067 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2068 |
} |
| 2069 |
.gsp_slider_bar_percents { |
| 2070 |
top: 0px; |
| 2071 |
position: absolute; |
| 2072 |
bottom: 0px; |
| 2073 |
/* height: 100%; */ |
| 2074 |
z-index: 10; |
| 2075 |
width: 100%; |
| 2076 |
} |
| 2077 |
.gsp_slider_z_index_low { |
| 2078 |
z-index: 9 !important; |
| 2079 |
} |
| 2080 |
.gsp_slider_bar_button { |
| 2081 |
position: absolute; |
| 2082 |
border-radius: 50%; |
| 2083 |
background-color: #f50; |
| 2084 |
width: 18px; |
| 2085 |
height: 18px; |
| 2086 |
transform: translateX(-50%); |
| 2087 |
top: 0; |
| 2088 |
left: 100%; |
| 2089 |
cursor: default; |
| 2090 |
box-shadow: 0 0 4px 0px #0000004f; |
| 2091 |
z-index: 11; |
| 2092 |
border: none; |
| 2093 |
|
| 2094 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2095 |
} |
| 2096 |
.gsp_slider_bar_button.gsp_slider_z_index_low { |
| 2097 |
/*transform: scale(1.2,1.2) translateX(-50%) translateY(50%);*/ |
| 2098 |
cursor: default; |
| 2099 |
} |
| 2100 |
|
| 2101 |
|
| 2102 |
.gsp_label_wrapper { |
| 2103 |
display: flex; |
| 2104 |
width: 100%; |
| 2105 |
|
| 2106 |
flex-direction: row; |
| 2107 |
align-items: center; |
| 2108 |
justify-content: flex-start; |
| 2109 |
} |
| 2110 |
.gsp_demo_label_small { |
| 2111 |
display: flex; |
| 2112 |
|
| 2113 |
flex-grow: 1; |
| 2114 |
font-size: 12px; |
| 2115 |
width: initial; |
| 2116 |
} |
| 2117 |
.gsp_value_label { |
| 2118 |
transform: translate(-3px, -4px); |
| 2119 |
font-size: 11px; |
| 2120 |
color: #4f1f73; |
| 2121 |
display: flex; |
| 2122 |
flex-grow: 0; |
| 2123 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2124 |
text-align: center; |
| 2125 |
outline: none; |
| 2126 |
width: 45px; |
| 2127 |
height: auto; |
| 2128 |
border-radius: 4px; |
| 2129 |
border: 1px solid #4f1f732e; |
| 2130 |
padding: 2px 0px; |
| 2131 |
box-shadow: 1px 1px 2px 0px #4f1f7347; |
| 2132 |
} |
| 2133 |
.gsp_label_reset_icon { |
| 2134 |
width: 24px; |
| 2135 |
height: 16px; |
| 2136 |
display: flex; |
| 2137 |
flex-grow: 0; |
| 2138 |
color: #4f1f73c7; |
| 2139 |
font-size: 11px; |
| 2140 |
justify-content: center; |
| 2141 |
align-items: center; |
| 2142 |
cursor: pointer; |
| 2143 |
margin-right: 5px; |
| 2144 |
transform: translate(-3px, -4px); |
| 2145 |
border-radius: 3px; |
| 2146 |
border: 1px solid #4f1f732e; |
| 2147 |
box-shadow: 1px 1px 2px 0px #4f1f7347; |
| 2148 |
background-color: #fff; |
| 2149 |
|
| 2150 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2151 |
} |
| 2152 |
.ss_slider_element_wrapper .gsp_label_reset_icon { |
| 2153 |
background-color: #fff !important; |
| 2154 |
border: 1px solid #4f1f732e !important; |
| 2155 |
|
| 2156 |
} |
| 2157 |
.ss_slider_element_wrapper .gsp_slider_bar { |
| 2158 |
background-color: #dcdcdc !important; |
| 2159 |
} |
| 2160 |
.ss_slider_element_wrapper .gsp_slider_bar_active { |
| 2161 |
background-color: #ffc9ad !important; |
| 2162 |
} |
| 2163 |
.ss_slider_element_wrapper .gsp_slider_wrapper { |
| 2164 |
} |
| 2165 |
.ss_slider_element_wrapper .gsp_slider_bar_button { |
| 2166 |
background-color: #ffc9ad !important; |
| 2167 |
} |
| 2168 |
.ss_slider_element_wrapper .gsp_label_reset_icon { |
| 2169 |
color: #747474 !important; |
| 2170 |
} |
| 2171 |
.ss_slider_element_wrapper label { |
| 2172 |
display: flex; |
| 2173 |
flex-grow: 1; |
| 2174 |
} |
| 2175 |
.ss_slider_element_wrapper.gsp_option_disabled .gsp_option_disable_wrapper { |
| 2176 |
display: block; |
| 2177 |
position: absolute; |
| 2178 |
top: -15px; |
| 2179 |
left: 0; |
| 2180 |
right: 0; |
| 2181 |
bottom: -5px; |
| 2182 |
background-color: #dfdfdf6b; |
| 2183 |
z-index: 12; |
| 2184 |
cursor: not-allowed; |
| 2185 |
} |
| 2186 |
|
| 2187 |
.gsp_label_reset_icon svg { |
| 2188 |
width: 50%; |
| 2189 |
height: auto; |
| 2190 |
} |
| 2191 |
.gsp_label_reset_icon:hover { |
| 2192 |
color: #f50; |
| 2193 |
border: 1px solid #4f1f738a; |
| 2194 |
box-shadow: 1px 1px 2px 0px #4f1f73b8; |
| 2195 |
} |
| 2196 |
.gsp_label_reset_icon.gsp_reset_disabled { |
| 2197 |
cursor: default !important; |
| 2198 |
color: #a7a7a7 !important; |
| 2199 |
|
| 2200 |
} |
| 2201 |
.gsp_label_reset_icon.gsp_reset_disabled:hover { |
| 2202 |
color: #a7a7a7; |
| 2203 |
border: 1px solid #4f1f732e; |
| 2204 |
box-shadow: 1px 1px 2px 0px #4f1f7347; |
| 2205 |
} |
| 2206 |
|
| 2207 |
|
| 2208 |
#gsp_slider_speed .gsp_value_label, |
| 2209 |
#gsp_w_slider_speed .gsp_value_label { |
| 2210 |
width: 47px; |
| 2211 |
height: 20px; |
| 2212 |
min-height: 20px; |
| 2213 |
} |
| 2214 |
#gsp_slider_pitch .gsp_value_label, |
| 2215 |
#gsp_w_slider_pitch .gsp_value_label { |
| 2216 |
width: 47px; |
| 2217 |
height: 20px; |
| 2218 |
min-height: 20px; |
| 2219 |
} |
| 2220 |
.gsp_value_label:focus, |
| 2221 |
.gsp_value_label:active { |
| 2222 |
outline: none; |
| 2223 |
color: #f50; |
| 2224 |
|
| 2225 |
border: 1px solid #4f1f738a; |
| 2226 |
box-shadow: 1px 1px 2px 0px #4f1f73b8; |
| 2227 |
} |
| 2228 |
|
| 2229 |
/*ss languages*/ |
| 2230 |
#ss_translation_options { |
| 2231 |
display: flex; |
| 2232 |
flex-wrap: wrap; |
| 2233 |
} |
| 2234 |
#ss_w_translation_options { |
| 2235 |
display: flex; |
| 2236 |
flex-wrap: wrap; |
| 2237 |
} |
| 2238 |
.ss_translation_item { |
| 2239 |
display: flex; |
| 2240 |
width: 100%; |
| 2241 |
flex-direction: column; |
| 2242 |
font-size: 14px; |
| 2243 |
margin-bottom: 5px; |
| 2244 |
} |
| 2245 |
.ss_tr_line1 { |
| 2246 |
height: 30px; |
| 2247 |
display: flex; |
| 2248 |
align-items: center; |
| 2249 |
} |
| 2250 |
.ss_tr_line2 { |
| 2251 |
display: block; |
| 2252 |
height: 0px; |
| 2253 |
transition: 300ms ease-out; |
| 2254 |
overflow: hidden; |
| 2255 |
} |
| 2256 |
.ss_tr_line2_v { |
| 2257 |
height: 35px !important; |
| 2258 |
} |
| 2259 |
.ss_tr_line2 .items_select_filter_wrapper { |
| 2260 |
width: 90% !important; |
| 2261 |
margin-left: 31px; |
| 2262 |
min-width: initial !important; |
| 2263 |
} |
| 2264 |
.ss_display_none { |
| 2265 |
display: none !important; |
| 2266 |
} |
| 2267 |
.ss_ov_h { |
| 2268 |
overflow: hidden !important; |
| 2269 |
} |
| 2270 |
.ss_ov_v { |
| 2271 |
overflow: visible !important; |
| 2272 |
} |
| 2273 |
|
| 2274 |
.ss_langs_opt { |
| 2275 |
width: 25%; |
| 2276 |
min-width: 330px; |
| 2277 |
margin-top: 15px; |
| 2278 |
} |
| 2279 |
|
| 2280 |
|
| 2281 |
|
| 2282 |
|
| 2283 |
|
| 2284 |
/*END slider*/ |
| 2285 |
|
| 2286 |
.gsp_login_wrapper { |
| 2287 |
box-sizing: border-box; |
| 2288 |
border-radius: 7px; |
| 2289 |
padding: 50px 40px 15px 40px; |
| 2290 |
width: 350px; |
| 2291 |
background-color: #fff; |
| 2292 |
margin: 50px auto 100px; |
| 2293 |
display: flex; |
| 2294 |
flex-direction: column; |
| 2295 |
color: #333; |
| 2296 |
box-shadow: 0 0 3px 1px #00000029; |
| 2297 |
} |
| 2298 |
.gsp_login_title { |
| 2299 |
text-align: center; |
| 2300 |
margin-bottom: 12px; |
| 2301 |
font-size: 26px; |
| 2302 |
} |
| 2303 |
.gsp_login_subtitle { |
| 2304 |
font-size: 16px; |
| 2305 |
color: #999; |
| 2306 |
text-align: center; |
| 2307 |
margin-bottom: 20px; |
| 2308 |
} |
| 2309 |
.gsp_login_input { |
| 2310 |
width: 100%; |
| 2311 |
height: 35px; |
| 2312 |
cursor: default; |
| 2313 |
margin-bottom: 7px; |
| 2314 |
background-color: #e4e4e4 !important; |
| 2315 |
color: #3d3c3c !important; |
| 2316 |
text-align: center !important; |
| 2317 |
border: none !important; |
| 2318 |
border-radius: 5px !important; |
| 2319 |
box-shadow: none !important; |
| 2320 |
} |
| 2321 |
.gsp_login_input::placeholder { |
| 2322 |
color: #999999 !important; |
| 2323 |
} |
| 2324 |
|
| 2325 |
.ss_buttons_holder .gsp_login_button { |
| 2326 |
max-width: 250px; |
| 2327 |
} |
| 2328 |
.gsp_login_button { |
| 2329 |
width: 100%; |
| 2330 |
max-width: 400px; |
| 2331 |
margin-top: 10px; |
| 2332 |
border-radius: 12px; |
| 2333 |
background-color: #561d81; |
| 2334 |
color: #fff; |
| 2335 |
font-size: 14px; |
| 2336 |
display: flex; |
| 2337 |
align-items: center; |
| 2338 |
justify-content: center; |
| 2339 |
height: 42px; |
| 2340 |
cursor: pointer; |
| 2341 |
border: none; |
| 2342 |
text-transform: uppercase; |
| 2343 |
transition: 0.4s ease-out; |
| 2344 |
} |
| 2345 |
.gsp_login_button.ss_red_button { |
| 2346 |
background-color: #930201; |
| 2347 |
} |
| 2348 |
.gsp_login_button.ss_red_button:hover { |
| 2349 |
background-color: #5d0403; |
| 2350 |
} |
| 2351 |
.gsp_login_button:hover { |
| 2352 |
background-color: #2e0d47; |
| 2353 |
} |
| 2354 |
#gsp_tabs_wrapper { |
| 2355 |
width: 100%; |
| 2356 |
border-bottom: 1px solid #b9b8b8; |
| 2357 |
display: flex; |
| 2358 |
flex-direction: row; |
| 2359 |
position: relative; |
| 2360 |
margin-top: 30px; |
| 2361 |
} |
| 2362 |
.gsp_tab { |
| 2363 |
height: 40px; |
| 2364 |
font-size: 18px; |
| 2365 |
margin-right: 10px; |
| 2366 |
padding: 0px; |
| 2367 |
color: #8f8f8f; |
| 2368 |
cursor: pointer; |
| 2369 |
border-top-right-radius: 5px; |
| 2370 |
border-top-left-radius: 5px; |
| 2371 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 2372 |
/*transform: translateY(1px);*/ |
| 2373 |
border-bottom: 1px solid transparent; |
| 2374 |
text-decoration: none; |
| 2375 |
box-shadow: none !important; |
| 2376 |
|
| 2377 |
display: flex; |
| 2378 |
align-items: center; |
| 2379 |
} |
| 2380 |
.gsp_tab_selected { |
| 2381 |
color: #561d82; |
| 2382 |
background-color: #ffffff; |
| 2383 |
border-bottom: 1px solid #902fda; |
| 2384 |
} |
| 2385 |
.gsp_tab:hover { |
| 2386 |
color: #561d82; |
| 2387 |
border-bottom: 1px solid #902fda; |
| 2388 |
} |
| 2389 |
|
| 2390 |
.gsp_tab_old_basic { |
| 2391 |
position: absolute; |
| 2392 |
right: 0px; |
| 2393 |
bottom: 0; |
| 2394 |
padding: 7px 0; |
| 2395 |
width: 190px; |
| 2396 |
text-align: center; |
| 2397 |
background-color: #f0f0f1; |
| 2398 |
} |
| 2399 |
.gsp_tab_old_basic_pos_2 { |
| 2400 |
right: 150px !important; |
| 2401 |
} |
| 2402 |
.gsp_hidden { |
| 2403 |
display: none !important; |
| 2404 |
} |
| 2405 |
.gsp_tab_old_styles { |
| 2406 |
position: absolute; |
| 2407 |
right: 0; |
| 2408 |
bottom: 0; |
| 2409 |
padding: 7px 0; |
| 2410 |
width: 150px; |
| 2411 |
text-align: center; |
| 2412 |
} |
| 2413 |
.gsp_tab_sign_out { |
| 2414 |
font-size: 15px; |
| 2415 |
position: absolute; |
| 2416 |
right: 0; |
| 2417 |
top: -64px; |
| 2418 |
color: #646464; |
| 2419 |
background-color: #fff; |
| 2420 |
} |
| 2421 |
|
| 2422 |
.gsp_dash_title { |
| 2423 |
color: #4a4a4a; |
| 2424 |
font-size: 22px; |
| 2425 |
margin: 25px 0 0px 5px; |
| 2426 |
display: flex; |
| 2427 |
flex-direction: row; |
| 2428 |
align-items: center; |
| 2429 |
} |
| 2430 |
.gsp_dash_title span { |
| 2431 |
margin-left: 9px; |
| 2432 |
} |
| 2433 |
.gsp_dash_title img { |
| 2434 |
overflow: hidden; |
| 2435 |
border-radius: 5px; |
| 2436 |
width: 64px; |
| 2437 |
height: auto; |
| 2438 |
} |
| 2439 |
|
| 2440 |
.gsp_tab_c { |
| 2441 |
display: none; |
| 2442 |
position: relative; |
| 2443 |
} |
| 2444 |
.gsp_tab_active { |
| 2445 |
display: block !important; |
| 2446 |
/*height: 100%;*/ |
| 2447 |
} |
| 2448 |
|
| 2449 |
.gsp_error, |
| 2450 |
.gsp_input.gsp_error, |
| 2451 |
input.gsp_input.gsp_error { |
| 2452 |
border: 1px solid #db0707 !important; |
| 2453 |
} |
| 2454 |
|
| 2455 |
.gsp_tab_c_old_basic, |
| 2456 |
.gsp_tab_c_old_styles { |
| 2457 |
margin: 30px; |
| 2458 |
border-radius: 7px; |
| 2459 |
border: 1px solid #cfcfcf; |
| 2460 |
padding: 30px; |
| 2461 |
background-color: #fff; |
| 2462 |
} |
| 2463 |
|
| 2464 |
|
| 2465 |
|
| 2466 |
#gsp_data { |
| 2467 |
display: none; |
| 2468 |
} |
| 2469 |
|
| 2470 |
.gsp_left_m_c { |
| 2471 |
display: none; |
| 2472 |
} |
| 2473 |
.gsp_left_m_c_active { |
| 2474 |
display: block !important; |
| 2475 |
} |
| 2476 |
|
| 2477 |
.gsp_tab_website_settings { |
| 2478 |
display: flex; |
| 2479 |
align-items: center; |
| 2480 |
justify-content: flex-start; |
| 2481 |
flex-direction: row; |
| 2482 |
} |
| 2483 |
|
| 2484 |
.ss_cloud_icon { |
| 2485 |
justify-content: center; |
| 2486 |
left: 15px; |
| 2487 |
align-items: center; |
| 2488 |
display: flex; |
| 2489 |
|
| 2490 |
position: absolute; |
| 2491 |
width: 26px; |
| 2492 |
height: 26px; |
| 2493 |
margin-right: 11px; |
| 2494 |
} |
| 2495 |
.ss_video_icon { |
| 2496 |
justify-content: center; |
| 2497 |
align-items: center; |
| 2498 |
display: flex; |
| 2499 |
left: 15px; |
| 2500 |
top: 1px; |
| 2501 |
position: absolute; |
| 2502 |
width: 20px; |
| 2503 |
height: 30px; |
| 2504 |
margin-right: 11px; |
| 2505 |
} |
| 2506 |
|
| 2507 |
.ss_video_icon img { |
| 2508 |
height: 24px; |
| 2509 |
} |
| 2510 |
.ss_top_menu_icon { |
| 2511 |
color: #929292; |
| 2512 |
height: 24px; |
| 2513 |
width: 24px; |
| 2514 |
display: flex; |
| 2515 |
align-items: center; |
| 2516 |
justify-content: center; |
| 2517 |
margin-left: 18px; |
| 2518 |
margin-right: 9px; |
| 2519 |
|
| 2520 |
transition: 0.4s ease-out; |
| 2521 |
} |
| 2522 |
.gsp_tab:hover .ss_top_menu_icon, |
| 2523 |
.gsp_tab_selected .ss_top_menu_icon { |
| 2524 |
color: #6f4196; |
| 2525 |
} |
| 2526 |
.ss_top_menu_icon svg { |
| 2527 |
display: flex; |
| 2528 |
width: 100%; |
| 2529 |
} |
| 2530 |
.gsp_tab span { |
| 2531 |
display: inline-block; |
| 2532 |
margin-right: 25px; |
| 2533 |
} |
| 2534 |
|
| 2535 |
|
| 2536 |
|
| 2537 |
|
| 2538 |
.gsp_tab_video_demo { |
| 2539 |
/*width: 200px;*/ |
| 2540 |
} |
| 2541 |
|
| 2542 |
.items_wrapper { |
| 2543 |
width: 100%; |
| 2544 |
padding: 20px; |
| 2545 |
border-radius: 5px; |
| 2546 |
height: 100%; |
| 2547 |
display: flex; |
| 2548 |
flex-direction: column; |
| 2549 |
position: relative; |
| 2550 |
background-color: #fff; |
| 2551 |
border: 1px solid #e0e0e0; |
| 2552 |
|
| 2553 |
min-height: 550px; |
| 2554 |
} |
| 2555 |
.items_wrapper_overlay { |
| 2556 |
z-index: 330; |
| 2557 |
position: absolute; |
| 2558 |
top: 0; |
| 2559 |
right: 0; |
| 2560 |
bottom: 0; |
| 2561 |
left: 0; |
| 2562 |
background-color: #e3e3e321; |
| 2563 |
display: none; |
| 2564 |
} |
| 2565 |
.items_wrapper_overlay_visible { |
| 2566 |
display: block !important; |
| 2567 |
} |
| 2568 |
.items_header { |
| 2569 |
width: 100%; |
| 2570 |
height: 80px; |
| 2571 |
display: flex; |
| 2572 |
align-items: center; |
| 2573 |
justify-content: space-between; |
| 2574 |
} |
| 2575 |
.items_count { |
| 2576 |
font-size: 15px; |
| 2577 |
} |
| 2578 |
.items_options { |
| 2579 |
display: flex; |
| 2580 |
position: relative; |
| 2581 |
} |
| 2582 |
.item_item { |
| 2583 |
align-items: center; |
| 2584 |
border-bottom: 1px solid #e4e4e4; |
| 2585 |
display: flex; |
| 2586 |
flex-direction: row; |
| 2587 |
padding: 16px 20px; |
| 2588 |
cursor: pointer; |
| 2589 |
} |
| 2590 |
.item_item:hover { |
| 2591 |
background-color: #f6ebff; |
| 2592 |
} |
| 2593 |
|
| 2594 |
.items_pagination { |
| 2595 |
color: #999; |
| 2596 |
font-size: 12px; |
| 2597 |
display: flex; |
| 2598 |
align-items: center; |
| 2599 |
justify-content: center; |
| 2600 |
margin-top: 15px; |
| 2601 |
width: 100%; |
| 2602 |
position: relative; |
| 2603 |
} |
| 2604 |
.items_pagination_itms_holder { |
| 2605 |
margin: 0 15px; |
| 2606 |
justify-content: center; |
| 2607 |
align-items: center; |
| 2608 |
display: flex; |
| 2609 |
width: 1px; |
| 2610 |
flex-basis: 100%; |
| 2611 |
flex-flow: wrap; |
| 2612 |
} |
| 2613 |
.p_hid { |
| 2614 |
display: none; |
| 2615 |
} |
| 2616 |
.itms_p_i { |
| 2617 |
font-size: 13px; |
| 2618 |
margin-right: 3px; |
| 2619 |
width: 35px; |
| 2620 |
height: 35px; |
| 2621 |
display: flex; |
| 2622 |
align-items: center; |
| 2623 |
justify-content: center; |
| 2624 |
color: #8731c8; |
| 2625 |
cursor: pointer; |
| 2626 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 2627 |
border-radius: 5px; |
| 2628 |
} |
| 2629 |
.itms_p_i:hover { |
| 2630 |
background-color: #cecece; |
| 2631 |
color: #ffffff; |
| 2632 |
} |
| 2633 |
.itms_p_sel { |
| 2634 |
cursor: default; |
| 2635 |
background-color: #8731c8; |
| 2636 |
color: #fff; |
| 2637 |
} |
| 2638 |
.itms_p_sel:hover { |
| 2639 |
background-color: #8731c8; |
| 2640 |
} |
| 2641 |
.itms_pages_limit { |
| 2642 |
width: 70px !important; |
| 2643 |
} |
| 2644 |
|
| 2645 |
|
| 2646 |
.items_body { |
| 2647 |
border-radius: 5px; |
| 2648 |
border: 1px solid #e4e4e4; |
| 2649 |
color: #999; |
| 2650 |
font-size: 13px; |
| 2651 |
} |
| 2652 |
.items_body_header { |
| 2653 |
border-bottom: 1px solid #e4e4e4; |
| 2654 |
display: flex; |
| 2655 |
flex-direction: row; |
| 2656 |
padding: 12px 20px |
| 2657 |
} |
| 2658 |
.item_row_item { |
| 2659 |
font-size: 14px; |
| 2660 |
color: #5e646e; |
| 2661 |
margin-right: 7px; |
| 2662 |
position: relative; |
| 2663 |
display: flex; |
| 2664 |
} |
| 2665 |
.itm_l { |
| 2666 |
border-radius: 5px; |
| 2667 |
position: absolute; |
| 2668 |
top: -5px; |
| 2669 |
left: -5px; |
| 2670 |
bottom: -5px; |
| 2671 |
right: 5px; |
| 2672 |
background-color: #eeeeee; |
| 2673 |
z-index: 1; |
| 2674 |
display: none; |
| 2675 |
|
| 2676 |
animation: loading_color 2000ms cubic-bezier(0.42, -0.09, 0.13, 0.83) normal infinite; |
| 2677 |
} |
| 2678 |
.itm_c { |
| 2679 |
white-space: nowrap; |
| 2680 |
overflow: hidden; |
| 2681 |
text-overflow: ellipsis; |
| 2682 |
} |
| 2683 |
.itm_c_nl { |
| 2684 |
display: none; |
| 2685 |
} |
| 2686 |
.itm_c a, .itm_c span { |
| 2687 |
/* overflow: hidden; |
| 2688 |
width: 100%; |
| 2689 |
text-overflow: ellipsis; |
| 2690 |
white-space: nowrap;*/ |
| 2691 |
} |
| 2692 |
.itm_c_hidden { |
| 2693 |
visibility: hidden; |
| 2694 |
} |
| 2695 |
.itm_l_visible { |
| 2696 |
display: block !important; |
| 2697 |
} |
| 2698 |
.item_row_item_4 .itm_l { |
| 2699 |
right: -10px; |
| 2700 |
} |
| 2701 |
|
| 2702 |
.item_row_item_h { |
| 2703 |
margin-right: 7px; |
| 2704 |
display: flex; |
| 2705 |
|
| 2706 |
-webkit-touch-callout: none; /* iOS Safari */ |
| 2707 |
-webkit-user-select: none; /* Safari */ |
| 2708 |
-khtml-user-select: none; /* Konqueror HTML */ |
| 2709 |
-moz-user-select: none; /* Old versions of Firefox */ |
| 2710 |
-ms-user-select: none; /* Internet Explorer/Edge */ |
| 2711 |
user-select: none; |
| 2712 |
} |
| 2713 |
.item_row_item_150 { |
| 2714 |
width: 150px; |
| 2715 |
} |
| 2716 |
.item_row_item_220 { |
| 2717 |
width: 220px; |
| 2718 |
} |
| 2719 |
.item_row_item_130 { |
| 2720 |
width: 130px; |
| 2721 |
} |
| 2722 |
.item_row_item_1 { |
| 2723 |
width: 200px; |
| 2724 |
} |
| 2725 |
.item_row_item_2 { |
| 2726 |
flex-grow: 1; |
| 2727 |
width: 1px; |
| 2728 |
} |
| 2729 |
.item_row_item_3 { |
| 2730 |
width: 90px; |
| 2731 |
} |
| 2732 |
.item_row_item_3_0 { |
| 2733 |
width: 150px; |
| 2734 |
} |
| 2735 |
|
| 2736 |
.item_row_item_4 { |
| 2737 |
justify-content: flex-end; |
| 2738 |
width: 50px; |
| 2739 |
display: flex; |
| 2740 |
} |
| 2741 |
.item_row_item_4_0 { |
| 2742 |
justify-content: flex-end; |
| 2743 |
width: 60px; |
| 2744 |
display: flex; |
| 2745 |
} |
| 2746 |
.itm_has_ord { |
| 2747 |
display: flex; |
| 2748 |
cursor: pointer; |
| 2749 |
|
| 2750 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 2751 |
} |
| 2752 |
.itm_has_ord:hover { |
| 2753 |
color: #000; |
| 2754 |
} |
| 2755 |
.item_t { |
| 2756 |
display: flex; |
| 2757 |
height: 100%; |
| 2758 |
align-items: center; |
| 2759 |
} |
| 2760 |
.itm_ord_active .item_t { |
| 2761 |
color: #000; |
| 2762 |
} |
| 2763 |
|
| 2764 |
.item_t_order { |
| 2765 |
margin-left: 3px; |
| 2766 |
display: flex; |
| 2767 |
height: 100%; |
| 2768 |
align-items: center; |
| 2769 |
color: rgb(153 153 153); |
| 2770 |
} |
| 2771 |
.item_ord_desc path:nth-child(2) { |
| 2772 |
color: #000; |
| 2773 |
} |
| 2774 |
.item_ord_asc path:nth-child(1) { |
| 2775 |
color: #000; |
| 2776 |
} |
| 2777 |
|
| 2778 |
|
| 2779 |
.refresh_login_wrapper { |
| 2780 |
padding: 30px 0px 25px !important; |
| 2781 |
margin: 0 !important; |
| 2782 |
box-shadow: none !important; |
| 2783 |
} |
| 2784 |
|
| 2785 |
.gsp_tab_c_website_settings.gsp_tab_active { |
| 2786 |
display: flex !important; |
| 2787 |
flex-direction: row; |
| 2788 |
height: 100%; |
| 2789 |
background-color: #fff; |
| 2790 |
} |
| 2791 |
.gsp_dash_col_1 { |
| 2792 |
display: flex; |
| 2793 |
flex-direction: column; |
| 2794 |
width: 260px; |
| 2795 |
flex-shrink: 0; |
| 2796 |
height: 100%; |
| 2797 |
border-right: 1px solid #bbb; |
| 2798 |
min-height: 800px; |
| 2799 |
padding-top: 25px; |
| 2800 |
} |
| 2801 |
.gsp_dash_col_2 { |
| 2802 |
display: flex; |
| 2803 |
flex-direction: column; |
| 2804 |
height: 100%; |
| 2805 |
/*min-height: 800px;*/ |
| 2806 |
flex-grow: 1; |
| 2807 |
|
| 2808 |
padding: 25px 0; |
| 2809 |
} |
| 2810 |
|
| 2811 |
.gsp_left_menu { |
| 2812 |
display: flex; |
| 2813 |
width: 100%; |
| 2814 |
height: 45px; |
| 2815 |
align-items: center; |
| 2816 |
color: #555; |
| 2817 |
padding-left: 25px; |
| 2818 |
font-size: 16px; |
| 2819 |
cursor: pointer; |
| 2820 |
|
| 2821 |
transition: 0.3s ease-out; |
| 2822 |
} |
| 2823 |
.gsp_left_menu:hover { |
| 2824 |
color: rgb(124 34 191) !important; |
| 2825 |
background-color: #f5e8ff; |
| 2826 |
} |
| 2827 |
.gsp_left_menu_dummy { |
| 2828 |
display: flex; |
| 2829 |
width: 100%; |
| 2830 |
height: 45px; |
| 2831 |
align-items: center; |
| 2832 |
color: #555; |
| 2833 |
padding-left: 25px; |
| 2834 |
font-size: 16px; |
| 2835 |
cursor: pointer; |
| 2836 |
|
| 2837 |
transition: 0.3s ease-out; |
| 2838 |
} |
| 2839 |
.gsp_left_menu_dummy:hover { |
| 2840 |
color: rgb(124 34 191) !important; |
| 2841 |
background-color: #f5e8ff; |
| 2842 |
} |
| 2843 |
.gsp_left_m_selected { |
| 2844 |
color: rgb(124 34 191) !important; |
| 2845 |
background-color: #f5e8ff; |
| 2846 |
} |
| 2847 |
|
| 2848 |
/*messages, overlay. loading*/ |
| 2849 |
.ss_message_container { |
| 2850 |
background-color: #fff; |
| 2851 |
box-shadow: 0px 4px 14px 1px #433d4769; |
| 2852 |
border: 1px solid #656565; |
| 2853 |
border-radius: 10px; |
| 2854 |
z-index: 1003; |
| 2855 |
width: 450px; |
| 2856 |
|
| 2857 |
position: fixed; |
| 2858 |
top: 70px; |
| 2859 |
left: 50%; |
| 2860 |
transform: translateX(-50%) translateY(-30px); |
| 2861 |
opacity: 0; |
| 2862 |
overflow: hidden; |
| 2863 |
display: none; |
| 2864 |
/*display: flex;*/ |
| 2865 |
flex-direction: column; |
| 2866 |
visibility: visible !important; |
| 2867 |
|
| 2868 |
transition: all 200ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 2869 |
} |
| 2870 |
.ss_message_container.ssvis { |
| 2871 |
display: flex; |
| 2872 |
} |
| 2873 |
.ss_message_container.sscomfirm-block { |
| 2874 |
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); |
| 2875 |
} |
| 2876 |
.ss_message_container.ss_error, |
| 2877 |
.ss_message_container.gsp_error { |
| 2878 |
border: 1px solid #f51c1c; |
| 2879 |
background-color: #ffefef; |
| 2880 |
} |
| 2881 |
.ss_message_container.ss_error .ss_message_title, |
| 2882 |
.ss_message_container.gsp_error .ss_message_title { |
| 2883 |
color: #f51c1c; |
| 2884 |
} |
| 2885 |
.ss_message_container.ss_error .ss_message_close, |
| 2886 |
.ss_message_container.ss_error .gsp_message_close { |
| 2887 |
color: #888888; |
| 2888 |
} |
| 2889 |
.ss_message_container.ss_success, |
| 2890 |
.ss_message_container.gsp_success { |
| 2891 |
border: 1px solid #307e3b; |
| 2892 |
background-color: #eafbed; |
| 2893 |
} |
| 2894 |
.ss_message_container.ss_success .ss_message_title, |
| 2895 |
.ss_message_container.gsp_success .ss_message_title { |
| 2896 |
color: #358343; |
| 2897 |
} |
| 2898 |
|
| 2899 |
.gsp_sign_out_button_wrapper { |
| 2900 |
width: 200px; |
| 2901 |
margin: 50px auto; |
| 2902 |
} |
| 2903 |
.gsp_submit_button { |
| 2904 |
width: 200px; |
| 2905 |
margin: 25px 0 15px 5px; |
| 2906 |
} |
| 2907 |
|
| 2908 |
.gsp_title_sub_1 { |
| 2909 |
color: #51d751; |
| 2910 |
display: inline-block; |
| 2911 |
} |
| 2912 |
.gsp_title_sub_code { |
| 2913 |
color: #f38e24; |
| 2914 |
display: inline-block; |
| 2915 |
font-style: italic; |
| 2916 |
} |
| 2917 |
.gsp_title_sub_link { |
| 2918 |
width: fit-content; |
| 2919 |
text-shadow: 0 1px 5px #000000db; |
| 2920 |
border-radius: 5px; |
| 2921 |
background-color: #1e797e; |
| 2922 |
color: #ffffff; |
| 2923 |
display: block; |
| 2924 |
text-decoration: none; |
| 2925 |
transition: 0.4s ease-out; |
| 2926 |
padding: 7px 29px; |
| 2927 |
margin: -3px 0 7px 0; |
| 2928 |
box-shadow: 0 0 3px 1px #ffffff47; |
| 2929 |
border: 1px solid #052324; |
| 2930 |
} |
| 2931 |
.gsp_title_sub_link:hover { |
| 2932 |
background-color: #561d82; |
| 2933 |
color: #fff; |
| 2934 |
box-shadow: 0 0 3px 0px #ffffff; |
| 2935 |
} |
| 2936 |
|
| 2937 |
.ss_disabled { |
| 2938 |
cursor: not-allowed !important; |
| 2939 |
} |
| 2940 |
|
| 2941 |
|
| 2942 |
.comfirm-sub-title { |
| 2943 |
font-size: 14px; |
| 2944 |
color: #7b8898; |
| 2945 |
padding-bottom: 20px; |
| 2946 |
text-align: center; |
| 2947 |
} |
| 2948 |
.comfirm-buttons-wrapper { |
| 2949 |
display: flex; |
| 2950 |
height: 32px; |
| 2951 |
flex-direction: row; |
| 2952 |
justify-content: center; |
| 2953 |
} |
| 2954 |
.ss-comfirm-button-1 { |
| 2955 |
align-items: center; |
| 2956 |
font-size: 12px; |
| 2957 |
border-radius: 4px; |
| 2958 |
background-color: #6b7986; |
| 2959 |
color: #fff; |
| 2960 |
padding: 0px 20px; |
| 2961 |
margin: 0 8px; |
| 2962 |
cursor: pointer; |
| 2963 |
height: 100%; |
| 2964 |
display: flex; |
| 2965 |
text-shadow: 0px 2px 1px rgba(6, 6, 6, 0.14); |
| 2966 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2967 |
} |
| 2968 |
.ss-comfirm-button-2 { |
| 2969 |
align-items: center; |
| 2970 |
font-size: 12px; |
| 2971 |
border-radius: 4px; |
| 2972 |
background-color: #51b82d; |
| 2973 |
color: #fff; |
| 2974 |
padding: 0px 20px; |
| 2975 |
margin: 0 8px; |
| 2976 |
cursor: pointer; |
| 2977 |
height: 100%; |
| 2978 |
display: flex; |
| 2979 |
text-shadow: 0px 2px 1px rgba(6, 6, 6, 0.14); |
| 2980 |
transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); |
| 2981 |
} |
| 2982 |
.ss-comfirm-button-1:hover, |
| 2983 |
.ss-comfirm-button-2:hover { |
| 2984 |
background-color: #000 !important; |
| 2985 |
} |
| 2986 |
.ss-comfirm-button-2.cmf-red { |
| 2987 |
background-color: #c54633; |
| 2988 |
} |
| 2989 |
.ss-comfirm-button-2.cmf-blue { |
| 2990 |
background-color: #1999e3; |
| 2991 |
} |
| 2992 |
.ss-comfirm-button-2.cmf-green { |
| 2993 |
background-color: #5cba3c; |
| 2994 |
} |
| 2995 |
.ss_message_container.ss_visible { |
| 2996 |
opacity: 1; |
| 2997 |
transform: translateX(-50%) translateY(0px); |
| 2998 |
display: flex; |
| 2999 |
} |
| 3000 |
.ss_message_title { |
| 3001 |
width: 100%; |
| 3002 |
/*height: 45px;*/ |
| 3003 |
font-size: 16px; |
| 3004 |
color: #4e4e4e; |
| 3005 |
display: flex; |
| 3006 |
align-items: center; |
| 3007 |
justify-content: center; |
| 3008 |
flex-direction: column; |
| 3009 |
|
| 3010 |
padding: 10px 35px 10px 35px; |
| 3011 |
|
| 3012 |
box-sizing: border-box; |
| 3013 |
line-height: 18px; |
| 3014 |
} |
| 3015 |
.sscomfirm-block .ss_message_title { |
| 3016 |
font-size: 17px; |
| 3017 |
color: #686f75; |
| 3018 |
background-color: #e2e2e2; |
| 3019 |
border-bottom: 1px solid #c3c3c3; |
| 3020 |
} |
| 3021 |
.sscomfirm-block .ss_message_close { |
| 3022 |
top: 1px; |
| 3023 |
color: #a9a9a9; |
| 3024 |
right: 7px; |
| 3025 |
font-size: 25px; |
| 3026 |
} |
| 3027 |
.ss_message_body { |
| 3028 |
padding-bottom: 7px; |
| 3029 |
} |
| 3030 |
.message-body { |
| 3031 |
display: none; |
| 3032 |
} |
| 3033 |
.sscomfirm-block .message-body { |
| 3034 |
display: flex; |
| 3035 |
flex-direction: column; |
| 3036 |
padding: 20px 0px; |
| 3037 |
} |
| 3038 |
.ss_message_title small { |
| 3039 |
text-decoration: underline; |
| 3040 |
font-size: 13px; |
| 3041 |
color: #797979; |
| 3042 |
} |
| 3043 |
.ss_message_container.ss_error .ss_message_title { |
| 3044 |
color: #f51c1c; |
| 3045 |
} |
| 3046 |
.ss_message_container.ss_success .ss_message_title { |
| 3047 |
color: #49906d; |
| 3048 |
} |
| 3049 |
.ss_message_close { |
| 3050 |
position: absolute; |
| 3051 |
top: 3px; |
| 3052 |
right: 5px; |
| 3053 |
color: #bdbdbd; |
| 3054 |
width: 22px; |
| 3055 |
height: 22px; |
| 3056 |
cursor: pointer; |
| 3057 |
|
| 3058 |
transition: all 200ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 3059 |
} |
| 3060 |
.ss_message_close:hover { |
| 3061 |
transform: scale(1.1,1.1); |
| 3062 |
color: #4f1f73e8; |
| 3063 |
} |
| 3064 |
.ss_body_overlay { |
| 3065 |
position: fixed; |
| 3066 |
top: 0; |
| 3067 |
left: 0; |
| 3068 |
width: 100%; |
| 3069 |
height: 100%; |
| 3070 |
z-index: 1001; |
| 3071 |
background-color: rgb(15 20 38 / 50%); |
| 3072 |
opacity: 0; |
| 3073 |
display: none; |
| 3074 |
|
| 3075 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 3076 |
} |
| 3077 |
.ss_body_overlay.ssvis { |
| 3078 |
display: block; |
| 3079 |
} |
| 3080 |
.ss_body_overlay.ss_visible { |
| 3081 |
display: block; |
| 3082 |
opacity: 1; |
| 3083 |
} |
| 3084 |
#ss_page_loading { |
| 3085 |
position: fixed; |
| 3086 |
z-index: -1; |
| 3087 |
top: 25%; |
| 3088 |
left: 50%; |
| 3089 |
|
| 3090 |
transform: translateX(-50%) translateY(-15px); |
| 3091 |
width: 120px; |
| 3092 |
height: auto; |
| 3093 |
opacity: 0; |
| 3094 |
|
| 3095 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 3096 |
display: block !important; |
| 3097 |
} |
| 3098 |
#ss_page_loading.ss_visible { |
| 3099 |
z-index: 1004; |
| 3100 |
opacity: 1; |
| 3101 |
transform: translateX(-50%) translateY(0px); |
| 3102 |
} |
| 3103 |
#ss_page_loading img { |
| 3104 |
width: 100%; |
| 3105 |
height: auto; |
| 3106 |
} |
| 3107 |
/*END messages. overlay, loading*/ |
| 3108 |
|
| 3109 |
.gsp_opts_holder { |
| 3110 |
border: 1px solid #c8c8c8; |
| 3111 |
border-radius: 7px; |
| 3112 |
width: 50%; |
| 3113 |
background-color: #fff; |
| 3114 |
margin: 15px 0 10px 5px; |
| 3115 |
padding: 15px |
| 3116 |
} |
| 3117 |
.gsp_opts_title { |
| 3118 |
font-size: 16px; |
| 3119 |
color: #474747; |
| 3120 |
margin-bottom: 3px; |
| 3121 |
margin-top: 10px; |
| 3122 |
} |
| 3123 |
.gsp_opts_holder .gsp_input { |
| 3124 |
width: 500px; |
| 3125 |
} |
| 3126 |
|
| 3127 |
|
| 3128 |
|
| 3129 |
.speaker_preview { |
| 3130 |
max-height: 60px; |
| 3131 |
background-color: rgb(252, 255, 218); |
| 3132 |
padding: 22px 25px; |
| 3133 |
border: 1px solid #e6db55; |
| 3134 |
border-radius: 4px; |
| 3135 |
position: relative; |
| 3136 |
} |
| 3137 |
.sound_container_pro { |
| 3138 |
display: inline-block; |
| 3139 |
position: relative; |
| 3140 |
z-index: 9999; |
| 3141 |
cursor: pointer; |
| 3142 |
} |
| 3143 |
.sound_container_pro.size_1 { |
| 3144 |
width: 32px; |
| 3145 |
height: 32px; |
| 3146 |
left: 7px; |
| 3147 |
top: -7px; |
| 3148 |
} |
| 3149 |
.sound_container_pro.size_0 { |
| 3150 |
width: 16px; |
| 3151 |
height: 16px; |
| 3152 |
left: 5px; |
| 3153 |
top: 0px; |
| 3154 |
} |
| 3155 |
.next_speaker,.next_tooltip { |
| 3156 |
color: rgb(128, 69, 15); |
| 3157 |
padding: 2px 0; |
| 3158 |
text-align: center; |
| 3159 |
border-radius: 4px; |
| 3160 |
width: 38px; |
| 3161 |
font-size: 12px; |
| 3162 |
position: absolute; |
| 3163 |
left: 0px; |
| 3164 |
top: -7px; |
| 3165 |
cursor: pointer; |
| 3166 |
border: 1px solid #e6db55; |
| 3167 |
background-color: rgb(252, 255, 218); |
| 3168 |
|
| 3169 |
} |
| 3170 |
.next_speaker:hover,.next_tooltip:hover { |
| 3171 |
text-decoration: underline; |
| 3172 |
background-color: rgb(253, 234, 194); |
| 3173 |
border-radius: 6px; |
| 3174 |
border: 1px solid rgb(230, 149, 85); |
| 3175 |
} |
| 3176 |
.prev_speaker,.prev_tooltip { |
| 3177 |
color: rgb(128, 69, 15); |
| 3178 |
padding: 2px 0; |
| 3179 |
text-align: center; |
| 3180 |
border-radius: 4px; |
| 3181 |
width: 38px; |
| 3182 |
font-size: 12px; |
| 3183 |
position: absolute; |
| 3184 |
left: 0px; |
| 3185 |
bottom: -4px; |
| 3186 |
cursor: pointer; |
| 3187 |
border: 1px solid #e6db55; |
| 3188 |
background-color: rgb(252, 255, 218); |
| 3189 |
} |
| 3190 |
.prev_speaker:hover,.prev_tooltip:hover { |
| 3191 |
text-decoration: underline; |
| 3192 |
background-color: rgb(253, 234, 194); |
| 3193 |
border-radius: 6px; |
| 3194 |
border: 1px solid rgb(230, 149, 85); |
| 3195 |
} |
| 3196 |
select { |
| 3197 |
cursor: pointer; |
| 3198 |
padding: 2px; |
| 3199 |
border: 1px solid rgb(177, 171, 171); |
| 3200 |
border-radius: 8px; |
| 3201 |
color: #333; |
| 3202 |
font-size: 12px; |
| 3203 |
} |
| 3204 |
select:hover,select:focus { |
| 3205 |
background-color: rgb(252, 255, 218); |
| 3206 |
border: 1px solid #e6db55; |
| 3207 |
} |
| 3208 |
|
| 3209 |
input,textarea { |
| 3210 |
cursor: pointer; |
| 3211 |
padding: 2px; |
| 3212 |
border: 1px solid rgb(177, 171, 171); |
| 3213 |
border-radius: 8px; |
| 3214 |
color: #333; |
| 3215 |
font-size: 12px; |
| 3216 |
} |
| 3217 |
input:hover,input:focus,textarea:hover,textarea:focus { |
| 3218 |
background-color: rgb(252, 255, 218); |
| 3219 |
border: 1px solid #e6db55; |
| 3220 |
} |
| 3221 |
.old_p { |
| 3222 |
margin: 12px 2px; |
| 3223 |
} |
| 3224 |
.wpgs_slider { |
| 3225 |
width: 353px; |
| 3226 |
} |
| 3227 |
|
| 3228 |
.purchase_block{ |
| 3229 |
position: relative; |
| 3230 |
padding: 10px; |
| 3231 |
margin: 10px 0 17px 0; |
| 3232 |
-webkit-border-radius: 3px; |
| 3233 |
-moz-border-radius: 3px; |
| 3234 |
border-radius: 3px; |
| 3235 |
|
| 3236 |
color:#111; |
| 3237 |
|
| 3238 |
font-weight: bold; |
| 3239 |
font-size: 14px; |
| 3240 |
text-align: center; |
| 3241 |
|
| 3242 |
border: 1px solid #DFDFDF; |
| 3243 |
background-color: #EFEFEF; |
| 3244 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#EFEFEF"); /* for IE */ |
| 3245 |
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#EFEFEF)); /* for webkit browsers */ |
| 3246 |
background: -moz-linear-gradient(top, #fff, #EFEFEF); /* for firefox 3.6+ */ |
| 3247 |
} |
| 3248 |
.purchase_block_txt { |
| 3249 |
color:#333; |
| 3250 |
margin-bottom: 6px; |
| 3251 |
text-shadow: 1px 1px 0px #fff; |
| 3252 |
} |
| 3253 |
|
| 3254 |
#scf_buy_pro{ |
| 3255 |
border: 1px solid #F3C3BA; |
| 3256 |
text-decoration: none; |
| 3257 |
display: inline-block; |
| 3258 |
font-weight: bold; |
| 3259 |
cursor: pointer; |
| 3260 |
background-color: #FD2600; |
| 3261 |
padding: 12px; |
| 3262 |
-webkit-border-radius: 5px; |
| 3263 |
-moz-border-radius: 5px; |
| 3264 |
color: #fff; |
| 3265 |
font-size: 16px; |
| 3266 |
text-shadow: 1px 1px 0px #000; |
| 3267 |
background: -webkit-gradient(linear, left top, left bottom, from(#FD2600), to(#961600)); |
| 3268 |
background: -moz-linear-gradient(top, #FD2600, #961600); /* for firefox 3.6+ */ |
| 3269 |
|
| 3270 |
box-shadow: 2px 2px 5px rgba(158, 20, 1, 0.4); |
| 3271 |
} |
| 3272 |
#scf_buy_pro:hover{ |
| 3273 |
box-shadow: 2px 2px 6px rgba(158, 20, 1, 0.65); |
| 3274 |
text-shadow: 1px 1px 1px #000; |
| 3275 |
} |
| 3276 |
|
| 3277 |
|
| 3278 |
.buy_pro { |
| 3279 |
white-space: nowrap; |
| 3280 |
text-shadow: 0px 0px 22px rgba(255, 226, 10, 0.74); |
| 3281 |
top: 61px; |
| 3282 |
right: 4px; |
| 3283 |
position: absolute; |
| 3284 |
color: rgb(240, 12, 12); |
| 3285 |
display: block; |
| 3286 |
font-weight: normal; |
| 3287 |
font-size: 17px; |
| 3288 |
} |
| 3289 |
.pro_img { |
| 3290 |
width: 140px; |
| 3291 |
display: block; |
| 3292 |
} |
| 3293 |
.pro_wrapper { |
| 3294 |
position: absolute; |
| 3295 |
right: 21px; |
| 3296 |
top: 11px; |
| 3297 |
} |
| 3298 |
|
| 3299 |
/***********************************************SPEAKERS***********************************************************************************/ |
| 3300 |
.sound_container_pro.speaker_1.size_0 { |
| 3301 |
background: transparent url("../images/16/speaker1.png") left top no-repeat; |
| 3302 |
} |
| 3303 |
.sound_container_pro.speaker_1.size_1 { |
| 3304 |
background: transparent url("../images/32/speaker1.png") left top no-repeat; |
| 3305 |
} |
| 3306 |
|
| 3307 |
.sound_container_pro.speaker_2.size_0 { |
| 3308 |
background: transparent url("../images/16/speaker2.png") left top no-repeat; |
| 3309 |
} |
| 3310 |
.sound_container_pro.speaker_2.size_1 { |
| 3311 |
background: transparent url("../images/32/speaker2.png") left top no-repeat; |
| 3312 |
} |
| 3313 |
|
| 3314 |
.sound_container_pro.speaker_3.size_0 { |
| 3315 |
background: transparent url("../images/16/speaker3.png") left top no-repeat; |
| 3316 |
} |
| 3317 |
.sound_container_pro.speaker_3.size_1 { |
| 3318 |
background: transparent url("../images/32/speaker3.png") left top no-repeat; |
| 3319 |
} |
| 3320 |
|
| 3321 |
.sound_container_pro.speaker_4.size_0 { |
| 3322 |
background: transparent url("../images/16/speaker4.png") left top no-repeat; |
| 3323 |
} |
| 3324 |
.sound_container_pro.speaker_4.size_1 { |
| 3325 |
background: transparent url("../images/32/speaker4.png") left top no-repeat; |
| 3326 |
} |
| 3327 |
|
| 3328 |
.sound_container_pro.speaker_5.size_0 { |
| 3329 |
background: transparent url("../images/16/speaker5.png") left top no-repeat; |
| 3330 |
} |
| 3331 |
.sound_container_pro.speaker_5.size_1 { |
| 3332 |
background: transparent url("../images/32/speaker5.png") left top no-repeat; |
| 3333 |
} |
| 3334 |
|
| 3335 |
.sound_container_pro.speaker_6.size_0 { |
| 3336 |
background: transparent url("../images/16/speaker6.png") left top no-repeat; |
| 3337 |
} |
| 3338 |
.sound_container_pro.speaker_6.size_1 { |
| 3339 |
background: transparent url("../images/32/speaker6.png") left top no-repeat; |
| 3340 |
} |
| 3341 |
|
| 3342 |
.sound_container_pro.speaker_7.size_0 { |
| 3343 |
background: transparent url("../images/16/speaker7.png") left top no-repeat; |
| 3344 |
} |
| 3345 |
.sound_container_pro.speaker_7.size_1 { |
| 3346 |
background: transparent url("../images/32/speaker7.png") left top no-repeat; |
| 3347 |
} |
| 3348 |
|
| 3349 |
.sound_container_pro.speaker_8.size_0 { |
| 3350 |
background: transparent url("../images/16/speaker8.png") left top no-repeat; |
| 3351 |
} |
| 3352 |
.sound_container_pro.speaker_8.size_1 { |
| 3353 |
background: transparent url("../images/32/speaker8.png") left top no-repeat; |
| 3354 |
} |
| 3355 |
|
| 3356 |
.sound_container_pro.speaker_9.size_0 { |
| 3357 |
background: transparent url("../images/16/speaker9.png") left top no-repeat; |
| 3358 |
} |
| 3359 |
.sound_container_pro.speaker_9.size_1 { |
| 3360 |
background: transparent url("../images/32/speaker9.png") left top no-repeat; |
| 3361 |
} |
| 3362 |
|
| 3363 |
.sound_container_pro.speaker_10.size_0 { |
| 3364 |
background: transparent url("../images/16/speaker10.png") left top no-repeat; |
| 3365 |
} |
| 3366 |
.sound_container_pro.speaker_10.size_1 { |
| 3367 |
background: transparent url("../images/32/speaker10.png") left top no-repeat; |
| 3368 |
} |
| 3369 |
|
| 3370 |
.sound_container_pro.speaker_11.size_0 { |
| 3371 |
background: transparent url("../images/16/speaker11.png") left top no-repeat; |
| 3372 |
} |
| 3373 |
.sound_container_pro.speaker_11.size_1 { |
| 3374 |
background: transparent url("../images/32/speaker11.png") left top no-repeat; |
| 3375 |
} |
| 3376 |
|
| 3377 |
.sound_container_pro.speaker_12.size_0 { |
| 3378 |
background: transparent url("../images/16/speaker12.png") left top no-repeat; |
| 3379 |
} |
| 3380 |
.sound_container_pro.speaker_12.size_1 { |
| 3381 |
background: transparent url("../images/32/speaker12.png") left top no-repeat; |
| 3382 |
} |
| 3383 |
|
| 3384 |
.sound_container_pro.speaker_13.size_0 { |
| 3385 |
background: transparent url("../images/16/speaker13.png") left top no-repeat; |
| 3386 |
} |
| 3387 |
.sound_container_pro.speaker_13.size_1 { |
| 3388 |
background: transparent url("../images/32/speaker13.png") left top no-repeat; |
| 3389 |
} |
| 3390 |
|
| 3391 |
.sound_container_pro.speaker_14.size_0 { |
| 3392 |
background: transparent url("../images/16/speaker14.png") left top no-repeat; |
| 3393 |
} |
| 3394 |
.sound_container_pro.speaker_14.size_1 { |
| 3395 |
background: transparent url("../images/32/speaker14.png") left top no-repeat; |
| 3396 |
} |
| 3397 |
|
| 3398 |
.sound_container_pro.speaker_15.size_0 { |
| 3399 |
background: transparent url("../images/16/speaker15.png") left top no-repeat; |
| 3400 |
} |
| 3401 |
.sound_container_pro.speaker_15.size_1 { |
| 3402 |
background: transparent url("../images/32/speaker15.png") left top no-repeat; |
| 3403 |
} |
| 3404 |
|
| 3405 |
.sound_container_pro.speaker_16.size_0 { |
| 3406 |
background: transparent url("../images/16/speaker16.png") left top no-repeat; |
| 3407 |
} |
| 3408 |
.sound_container_pro.speaker_16.size_1 { |
| 3409 |
background: transparent url("../images/32/speaker16.png") left top no-repeat; |
| 3410 |
} |
| 3411 |
|
| 3412 |
.sound_container_pro.speaker_17.size_0 { |
| 3413 |
background: transparent url("../images/16/speaker17.png") left top no-repeat; |
| 3414 |
} |
| 3415 |
.sound_container_pro.speaker_17.size_1 { |
| 3416 |
background: transparent url("../images/32/speaker17.png") left top no-repeat; |
| 3417 |
} |
| 3418 |
|
| 3419 |
.sound_container_pro.speaker_18.size_0 { |
| 3420 |
background: transparent url("../images/16/speaker18.png") left top no-repeat; |
| 3421 |
} |
| 3422 |
.sound_container_pro.speaker_18.size_1 { |
| 3423 |
background: transparent url("../images/32/speaker18.png") left top no-repeat; |
| 3424 |
} |
| 3425 |
|
| 3426 |
.sound_container_pro.speaker_19.size_0 { |
| 3427 |
background: transparent url("../images/16/speaker19.png") left top no-repeat; |
| 3428 |
} |
| 3429 |
.sound_container_pro.speaker_19.size_1 { |
| 3430 |
background: transparent url("../images/32/speaker19.png") left top no-repeat; |
| 3431 |
} |
| 3432 |
|
| 3433 |
.sound_container_pro.speaker_20.size_0 { |
| 3434 |
background: transparent url("../images/16/speaker20.png") left top no-repeat; |
| 3435 |
} |
| 3436 |
.sound_container_pro.speaker_20.size_1 { |
| 3437 |
background: transparent url("../images/32/speaker20.png") left top no-repeat; |
| 3438 |
} |
| 3439 |
|
| 3440 |
.sound_container_pro.speaker_21.size_0 { |
| 3441 |
background: transparent url("../images/16/speaker21.png") left top no-repeat; |
| 3442 |
} |
| 3443 |
.sound_container_pro.speaker_21.size_1 { |
| 3444 |
background: transparent url("../images/32/speaker21.png") left top no-repeat; |
| 3445 |
} |
| 3446 |
|
| 3447 |
.sound_container_pro.speaker_22.size_0 { |
| 3448 |
background: transparent url("../images/16/speaker22.png") left top no-repeat; |
| 3449 |
} |
| 3450 |
.sound_container_pro.speaker_22.size_1 { |
| 3451 |
background: transparent url("../images/32/speaker22.png") left top no-repeat; |
| 3452 |
} |
| 3453 |
|
| 3454 |
.sound_container_pro.speaker_23.size_0 { |
| 3455 |
background: transparent url("../images/16/speaker23.png") left top no-repeat; |
| 3456 |
} |
| 3457 |
.sound_container_pro.speaker_23.size_1 { |
| 3458 |
background: transparent url("../images/32/speaker23.png") left top no-repeat; |
| 3459 |
} |
| 3460 |
|
| 3461 |
.sound_container_pro.speaker_24.size_0 { |
| 3462 |
background: transparent url("../images/16/speaker24.png") left top no-repeat; |
| 3463 |
} |
| 3464 |
.sound_container_pro.speaker_24.size_1 { |
| 3465 |
background: transparent url("../images/32/speaker24.png") left top no-repeat; |
| 3466 |
} |
| 3467 |
|
| 3468 |
.sound_container_pro.speaker_25.size_0 { |
| 3469 |
background: transparent url("../images/16/speaker25.png") left top no-repeat; |
| 3470 |
} |
| 3471 |
.sound_container_pro.speaker_25.size_1 { |
| 3472 |
background: transparent url("../images/32/speaker25.png") left top no-repeat; |
| 3473 |
} |
| 3474 |
|
| 3475 |
.sound_container_pro.speaker_26.size_0 { |
| 3476 |
background: transparent url("../images/16/speaker26.png") left top no-repeat; |
| 3477 |
} |
| 3478 |
.sound_container_pro.speaker_26.size_1 { |
| 3479 |
background: transparent url("../images/32/speaker26.png") left top no-repeat; |
| 3480 |
} |
| 3481 |
|
| 3482 |
.sound_container_pro.speaker_27.size_0 { |
| 3483 |
background: transparent url("../images/16/speaker27.png") left top no-repeat; |
| 3484 |
} |
| 3485 |
.sound_container_pro.speaker_27.size_1 { |
| 3486 |
background: transparent url("../images/32/speaker27.png") left top no-repeat; |
| 3487 |
} |
| 3488 |
|
| 3489 |
.sound_container_pro.speaker_28.size_0 { |
| 3490 |
background: transparent url("../images/16/speaker28.png") left top no-repeat; |
| 3491 |
} |
| 3492 |
.sound_container_pro.speaker_28.size_1 { |
| 3493 |
background: transparent url("../images/32/speaker28.png") left top no-repeat; |
| 3494 |
} |
| 3495 |
|
| 3496 |
.sound_container_pro.speaker_29.size_0 { |
| 3497 |
background: transparent url("../images/16/speaker29.png") left top no-repeat; |
| 3498 |
} |
| 3499 |
.sound_container_pro.speaker_29.size_1 { |
| 3500 |
background: transparent url("../images/32/speaker29.png") left top no-repeat; |
| 3501 |
} |
| 3502 |
|
| 3503 |
.sound_container_pro.speaker_30.size_0 { |
| 3504 |
background: transparent url("../images/16/speaker30.png") left top no-repeat; |
| 3505 |
} |
| 3506 |
.sound_container_pro.speaker_30.size_1 { |
| 3507 |
background: transparent url("../images/32/speaker30.png") left top no-repeat; |
| 3508 |
} |
| 3509 |
|
| 3510 |
.sound_container_pro.speaker_31.size_0 { |
| 3511 |
background: transparent url("../images/16/speaker31.png") left top no-repeat; |
| 3512 |
} |
| 3513 |
.sound_container_pro.speaker_31.size_1 { |
| 3514 |
background: transparent url("../images/32/speaker31.png") left top no-repeat; |
| 3515 |
} |
| 3516 |
|
| 3517 |
.sound_container_pro.speaker_32.size_0 { |
| 3518 |
background: transparent url("../images/16/speaker32.png") left top no-repeat; |
| 3519 |
} |
| 3520 |
.sound_container_pro.speaker_32.size_1 { |
| 3521 |
background: transparent url("../images/32/speaker32.png") left top no-repeat; |
| 3522 |
} |
| 3523 |
|
| 3524 |
.sound_container_pro.speaker_33.size_0 { |
| 3525 |
background: transparent url("../images/16/speaker33.png") left top no-repeat; |
| 3526 |
} |
| 3527 |
.sound_container_pro.speaker_33.size_1 { |
| 3528 |
background: transparent url("../images/32/speaker33.png") left top no-repeat; |
| 3529 |
} |
| 3530 |
|
| 3531 |
.sound_container_pro.speaker_34.size_0 { |
| 3532 |
background: transparent url("../images/16/speaker34.png") left top no-repeat; |
| 3533 |
} |
| 3534 |
.sound_container_pro.speaker_34.size_1 { |
| 3535 |
background: transparent url("../images/32/speaker34.png") left top no-repeat; |
| 3536 |
} |
| 3537 |
|
| 3538 |
.sound_container_pro.speaker_35.size_0 { |
| 3539 |
background: transparent url("../images/16/speaker35.png") left top no-repeat; |
| 3540 |
} |
| 3541 |
.sound_container_pro.speaker_35.size_1 { |
| 3542 |
background: transparent url("../images/32/speaker35.png") left top no-repeat; |
| 3543 |
} |
| 3544 |
|
| 3545 |
.sound_container_pro.speaker_36.size_0 { |
| 3546 |
background: transparent url("../images/16/speaker36.png") left top no-repeat; |
| 3547 |
} |
| 3548 |
.sound_container_pro.speaker_36.size_1 { |
| 3549 |
background: transparent url("../images/32/speaker36.png") left top no-repeat; |
| 3550 |
} |
| 3551 |
|
| 3552 |
.sound_container_pro.speaker_37.size_0 { |
| 3553 |
background: transparent url("../images/16/speaker37.png") left top no-repeat; |
| 3554 |
} |
| 3555 |
.sound_container_pro.speaker_37.size_1 { |
| 3556 |
background: transparent url("../images/32/speaker37.png") left top no-repeat; |
| 3557 |
} |
| 3558 |
|
| 3559 |
.sound_container_pro.speaker_38.size_0 { |
| 3560 |
background: transparent url("../images/16/speaker38.png") left top no-repeat; |
| 3561 |
} |
| 3562 |
.sound_container_pro.speaker_38.size_1 { |
| 3563 |
background: transparent url("../images/32/speaker38.png") left top no-repeat; |
| 3564 |
} |
| 3565 |
|
| 3566 |
.sound_container_pro.speaker_39.size_0 { |
| 3567 |
background: transparent url("../images/16/speaker39.png") left top no-repeat; |
| 3568 |
} |
| 3569 |
.sound_container_pro.speaker_39.size_1 { |
| 3570 |
background: transparent url("../images/32/speaker39.png") left top no-repeat; |
| 3571 |
} |
| 3572 |
|
| 3573 |
.sound_container_pro.speaker_40.size_0 { |
| 3574 |
background: transparent url("../images/16/speaker40.png") left top no-repeat; |
| 3575 |
} |
| 3576 |
.sound_container_pro.speaker_40.size_1 { |
| 3577 |
background: transparent url("../images/32/speaker40.png") left top no-repeat; |
| 3578 |
} |
| 3579 |
|
| 3580 |
.sexy_tooltip_title { |
| 3581 |
position: absolute; |
| 3582 |
display: block; |
| 3583 |
z-index: 9997; |
| 3584 |
top: 2px; |
| 3585 |
left: 50%; |
| 3586 |
margin-left: -32px; |
| 3587 |
opacity: 0.95; |
| 3588 |
} |
| 3589 |
|
| 3590 |
.ui-accordion-content { |
| 3591 |
overflow: visible !important; |
| 3592 |
} |
| 3593 |
|
| 3594 |
.buy_pro { |
| 3595 |
white-space: nowrap; |
| 3596 |
text-shadow: 0px 0px 22px rgba(255, 226, 10, 0.74); |
| 3597 |
top: 61px; |
| 3598 |
right: 4px; |
| 3599 |
position: absolute; |
| 3600 |
color: rgb(240, 12, 12); |
| 3601 |
display: block; |
| 3602 |
font-weight: normal; |
| 3603 |
font-size: 17px; |
| 3604 |
} |
| 3605 |
.pro_img { |
| 3606 |
width: 140px; |
| 3607 |
display: block; |
| 3608 |
} |
| 3609 |
.pro_wrapper { |
| 3610 |
position: absolute; |
| 3611 |
right: 21px; |
| 3612 |
top: 3px; |
| 3613 |
} |
| 3614 |
.ext_title_wrapper { |
| 3615 |
padding: 25px 0 0 7px; |
| 3616 |
} |
| 3617 |
.ext_title_wrapper a{ |
| 3618 |
font-size: 25px; |
| 3619 |
text-decoration: none; |
| 3620 |
} |
| 3621 |
.ext_title_wrapper img{ |
| 3622 |
margin-bottom: -6px; |
| 3623 |
} |
| 3624 |
.ext_info_wrapper { |
| 3625 |
position: relative; |
| 3626 |
height: 87px; |
| 3627 |
} |
| 3628 |
|
| 3629 |
/*gspeech dashboard*/ |
| 3630 |
.gsp_input_holder .items_select_filter_wrapper { |
| 3631 |
width: 100%; |
| 3632 |
} |
| 3633 |
.gsp_dashboard_wrapper * { |
| 3634 |
box-sizing: border-box; |
| 3635 |
} |
| 3636 |
|
| 3637 |
.gsp_dashboard_wrapper ul, |
| 3638 |
.gsp_dashboard_wrapper li { |
| 3639 |
margin-bottom: 0; |
| 3640 |
} |
| 3641 |
|
| 3642 |
.gsp_input { |
| 3643 |
border: 1px solid #b4b4b4 !important; |
| 3644 |
background-color: #fff !important; |
| 3645 |
border-radius: 4px !important; |
| 3646 |
color: #2b2b2b !important; |
| 3647 |
margin-bottom: 12px !important; |
| 3648 |
|
| 3649 |
display: flex; |
| 3650 |
align-items: center; |
| 3651 |
height: 35px; |
| 3652 |
font-size: 13px; |
| 3653 |
|
| 3654 |
transition: 0.3s ease-out; |
| 3655 |
|
| 3656 |
box-shadow: none !important; |
| 3657 |
cursor: default !important; |
| 3658 |
} |
| 3659 |
.gsp_input:hover { |
| 3660 |
border: 1px solid #777 !important; |
| 3661 |
background-color: #f2f2f2 !important; |
| 3662 |
} |
| 3663 |
.gsp_input:focus { |
| 3664 |
border: 1px solid #a435f8 !important; |
| 3665 |
background-color: #f2f2f2 !important; |
| 3666 |
} |
| 3667 |
.gsp_input::placeholder { |
| 3668 |
color: #7f7f7f !important; |
| 3669 |
} |
| 3670 |
|
| 3671 |
#gsp_create_website_button { |
| 3672 |
margin-top: 22px; |
| 3673 |
} |
| 3674 |
.gsp_add_website_wrapper { |
| 3675 |
width: 450px; |
| 3676 |
} |
| 3677 |
.gsp_add_website_wrapper .gsp_login_subtitle { |
| 3678 |
margin-bottom: 28px; |
| 3679 |
} |
| 3680 |
|
| 3681 |
/*SS select*/ |
| 3682 |
.items_select_filter_wrapper { |
| 3683 |
margin-left: 0px; |
| 3684 |
width: 180px; |
| 3685 |
height: 35px; |
| 3686 |
border: 1px solid #b4b4b4; |
| 3687 |
background-color: #fff; |
| 3688 |
border-radius: 4px; |
| 3689 |
position: relative; |
| 3690 |
display: flex; |
| 3691 |
align-items: center; |
| 3692 |
font-size: 14px; |
| 3693 |
z-index: 100; |
| 3694 |
|
| 3695 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 3696 |
} |
| 3697 |
.items_options .items_select_filter_wrapper { |
| 3698 |
margin-left: 10px; |
| 3699 |
} |
| 3700 |
.items_select_filter_wrapper.ss_disabled { |
| 3701 |
cursor: not-allowed !important; |
| 3702 |
background-color: #e0e0e0; |
| 3703 |
} |
| 3704 |
.items_select_filter_wrapper.ss_disabled .items_select_filter { |
| 3705 |
cursor: not-allowed !important; |
| 3706 |
background-color: #e0e0e0; |
| 3707 |
} |
| 3708 |
.items_select_filter_wrapper.isfw_opened { |
| 3709 |
border: 1px solid #a435f8 !important; |
| 3710 |
} |
| 3711 |
.items_select_filter_wrapper:hover { |
| 3712 |
border: 1px solid #777; |
| 3713 |
background-color: #f2f2f2; |
| 3714 |
} |
| 3715 |
.items_select_filter_wrapper_focused { |
| 3716 |
border: 1px solid #a435f8 !important; |
| 3717 |
} |
| 3718 |
.items_select_filter { |
| 3719 |
width: 100%; |
| 3720 |
height: 100%; |
| 3721 |
display: flex; |
| 3722 |
position: relative; |
| 3723 |
cursor: pointer; |
| 3724 |
} |
| 3725 |
.items_select_filter_content { |
| 3726 |
height: 100%; |
| 3727 |
display: flex; |
| 3728 |
align-items: center; |
| 3729 |
width: 100%; |
| 3730 |
padding-right: 30px; |
| 3731 |
color: #7e7e7e; |
| 3732 |
padding-left: 10px; |
| 3733 |
user-select: none; |
| 3734 |
} |
| 3735 |
.items_select_filter_content span { |
| 3736 |
display: inline-block; |
| 3737 |
white-space: nowrap; |
| 3738 |
overflow: hidden; |
| 3739 |
text-overflow: ellipsis; |
| 3740 |
} |
| 3741 |
.items_select_filter_icon_wrapper { |
| 3742 |
position: absolute; |
| 3743 |
top: 0; |
| 3744 |
right: 0; |
| 3745 |
width: 30px; |
| 3746 |
height: 100%; |
| 3747 |
display: flex; |
| 3748 |
align-items: center; |
| 3749 |
justify-content: center; |
| 3750 |
perspective: 40px; |
| 3751 |
} |
| 3752 |
|
| 3753 |
.items_select_filter_icon_holder { |
| 3754 |
width: 8px; |
| 3755 |
height: 8px; |
| 3756 |
transform-style: preserve-3d; |
| 3757 |
} |
| 3758 |
.items_select_filter_icon_inner { |
| 3759 |
transform: rotateX(0deg); |
| 3760 |
transition: all 300ms ease; |
| 3761 |
} |
| 3762 |
.items_select_filter_icon { |
| 3763 |
color: #ababab; |
| 3764 |
display: flex; |
| 3765 |
align-items: center; |
| 3766 |
justify-content: center; |
| 3767 |
width: 100%; |
| 3768 |
height: 100%; |
| 3769 |
transform: rotate(90deg); |
| 3770 |
|
| 3771 |
transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1); |
| 3772 |
} |
| 3773 |
.isfi_opened .items_select_filter_icon { |
| 3774 |
color: #a435f8 !important; |
| 3775 |
} |
| 3776 |
.isfi_opened .items_select_filter_icon_inner { |
| 3777 |
transform: rotateX(180deg); |
| 3778 |
} |
| 3779 |
|
| 3780 |
#lng_sel_type_0 { |
| 3781 |
|
| 3782 |
} |
| 3783 |
|
| 3784 |
/*ss select*/ |
| 3785 |
.items_select_ul_wrapper { |
| 3786 |
width: 100%; |
| 3787 |
height: auto; |
| 3788 |
/*overflow: auto;*/ |
| 3789 |
|
| 3790 |
position: absolute; |
| 3791 |
top: calc(100% + 4px); |
| 3792 |
z-index: 10; |
| 3793 |
|
| 3794 |
right: 0; |
| 3795 |
left: 0; |
| 3796 |
perspective: 300px; |
| 3797 |
display: none; |
| 3798 |
} |
| 3799 |
.isfw_opened .items_select_ul_wrapper { |
| 3800 |
display: block; |
| 3801 |
} |
| 3802 |
.isfw_opened { |
| 3803 |
z-index: 200 !important; |
| 3804 |
} |
| 3805 |
.items_select_ul_holder { |
| 3806 |
width: 100%; |
| 3807 |
height: auto; |
| 3808 |
transform-style: preserve-3d; |
| 3809 |
} |
| 3810 |
.items_select_ul_inner { |
| 3811 |
border: 1px solid #c5c5c5; |
| 3812 |
width: 100%; |
| 3813 |
height: auto; |
| 3814 |
max-height: 210px; |
| 3815 |
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); |
| 3816 |
transform-origin: center; |
| 3817 |
box-shadow: rgb(0 0 0 / 32%) 0px 0px 30px 0px; |
| 3818 |
border-radius: 4px; |
| 3819 |
background-color: #fff; |
| 3820 |
overflow: auto; |
| 3821 |
|
| 3822 |
transform: rotateX(90deg); |
| 3823 |
opacity: 0; |
| 3824 |
} |
| 3825 |
.isuw_opened .items_select_ul_inner { |
| 3826 |
transform: rotateX(0deg); |
| 3827 |
opacity: 1; |
| 3828 |
} |
| 3829 |
.items_select_ul { |
| 3830 |
display: flex; |
| 3831 |
flex-direction: column; |
| 3832 |
width: 100%; |
| 3833 |
padding: 0px; |
| 3834 |
margin: 0px; |
| 3835 |
list-style: none; |
| 3836 |
} |
| 3837 |
.items_select_ul li { |
| 3838 |
display: flex; |
| 3839 |
align-items: center; |
| 3840 |
position: relative; |
| 3841 |
width: 100%; |
| 3842 |
font-size: 13px; |
| 3843 |
padding: 0 17px; |
| 3844 |
user-select: none; |
| 3845 |
cursor: pointer; |
| 3846 |
color: rgb(77 77 77); |
| 3847 |
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| 3848 |
height: 35px; |
| 3849 |
} |
| 3850 |
.li_h { |
| 3851 |
display: none !important; |
| 3852 |
} |
| 3853 |
.items_select_ul li span { |
| 3854 |
width: 100%; |
| 3855 |
display: inline-block; |
| 3856 |
white-space: nowrap; |
| 3857 |
overflow: hidden; |
| 3858 |
text-overflow: ellipsis; |
| 3859 |
} |
| 3860 |
.items_select_ul .ss_ul_li_act { |
| 3861 |
background-color: #e0e0e0; |
| 3862 |
color: rgb(77 77 77); |
| 3863 |
text-shadow: none; |
| 3864 |
} |
| 3865 |
.items_select_ul li:hover { |
| 3866 |
background-color: rgb(119 41 176); |
| 3867 |
color: #fff; |
| 3868 |
text-shadow: 1px 1px 3px #00000052; |
| 3869 |
} |
| 3870 |
.items_select_ul .li_selected { |
| 3871 |
background-color: rgb(234 222 255) !important; |
| 3872 |
color: rgb(77 77 77) !important; |
| 3873 |
text-shadow: none !important; |
| 3874 |
cursor: default; |
| 3875 |
} |
| 3876 |
.items_select_filter_wrapper .li_search_input { |
| 3877 |
padding-right: 23px; |
| 3878 |
height: calc(100% - 10px); |
| 3879 |
width: calc(100% - 5px); |
| 3880 |
top: 1px; |
| 3881 |
position: absolute; |
| 3882 |
font-size: 14px; |
| 3883 |
border: none !important; |
| 3884 |
box-shadow: none !important; |
| 3885 |
outline: none !important; |
| 3886 |
border-radius: 4px; |
| 3887 |
left: 1px; |
| 3888 |
color: #7e7e7e !important; |
| 3889 |
background-color: #fff !important; |
| 3890 |
display: none; |
| 3891 |
} |
| 3892 |
.items_select_filter_wrapper .li_search_input::placeholder { |
| 3893 |
color: #bcbcbc !important; |
| 3894 |
} |
| 3895 |
.items_select_filter_wrapper.isfw_closing .li_search_input { |
| 3896 |
display: none !important; |
| 3897 |
} |
| 3898 |
.items_select_filter_wrapper.isfw_opened .li_search_input { |
| 3899 |
display: block !important; |
| 3900 |
} |
| 3901 |
.items_select_filter_wrapper:hover .li_search_input{ |
| 3902 |
background-color: #f2f2f2 !important; |
| 3903 |
} |
| 3904 |
.li_search:hover { |
| 3905 |
background-color: #fff !important; |
| 3906 |
text-shadow: none !important; |
| 3907 |
} |
| 3908 |
.li_search_icon_holder { |
| 3909 |
width: 14px; |
| 3910 |
height: 14px; |
| 3911 |
position: absolute; |
| 3912 |
right: 13px; |
| 3913 |
top: 50%; |
| 3914 |
transform: translateY(-50%); |
| 3915 |
color: #a435f8; |
| 3916 |
} |
| 3917 |
|
| 3918 |
@keyframes ss_ripple { |
| 3919 |
0% { |
| 3920 |
opacity: 0.5; |
| 3921 |
} |
| 3922 |
100% { |
| 3923 |
opacity: 0; |
| 3924 |
transform: scale(3,3); |
| 3925 |
} |
| 3926 |
} |
| 3927 |
@keyframes ss_ripple_off { |
| 3928 |
0% { |
| 3929 |
opacity: 0.5; |
| 3930 |
} |
| 3931 |
100% { |
| 3932 |
opacity: 0; |
| 3933 |
transform: scale(3,3); |
| 3934 |
} |
| 3935 |
} |