panel.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013
  1. .responsive-image .browser {
  2. width: 86%;
  3. -webkit-box-shadow: 0 10px 60px -10px rgba(37,45,51, .5);
  4. box-shadow: 0 10px 60px -10px rgba(37,45,51, .5);
  5. }
  6. .responsive-image.desktop-size .browser {
  7. min-width: 768px;
  8. }
  9. .responsive-image .phone {
  10. -webkit-box-shadow: 0 10px 70px -10px rgba(37,45,51, .5);
  11. box-shadow: 0 10px 70px -10px rgba(37,45,51, .5);
  12. }
  13. .responsive-image .play:after,
  14. .responsive-image .browser:after,
  15. .responsive-image .phone:after {
  16. display: block;
  17. content: "";
  18. position: absolute;
  19. right: 0;
  20. top: 0;
  21. bottom: 0;
  22. z-index: 999;
  23. width: 50%;
  24. background-color: rgba(0,0,0, 0.05);
  25. }
  26. .image-lines {
  27. position: absolute;
  28. top: 100px;
  29. left: -80px;
  30. height: 54px;
  31. width: 300px;
  32. background: url(../img/section/lines.svg);
  33. }
  34. .image-lines-right {
  35. left: auto;
  36. right: -84px;
  37. }
  38. @media (max-width: 1199px) {
  39. .page-banner-home .responsive-image .phone {
  40. left: -30px;
  41. }
  42. }
  43. @media (max-width: 991px) {
  44. .page-banner-home .responsive-image .phone {
  45. display: none;
  46. left: -20px;
  47. }
  48. .responsive-image {
  49. margin: 0 -24px;
  50. }
  51. .responsive-image .browser:not(.mobile-size) {
  52. min-width: 758px;
  53. }
  54. }
  55. /* 5.2 Image: Resposive Devices */
  56. .responsive-image {
  57. position: relative;
  58. }
  59. .responsive-image .phone {
  60. position: absolute;
  61. left: -20px;
  62. bottom: -19px;
  63. z-index: 3;
  64. overflow: hidden;
  65. }
  66. .play {
  67. position: absolute;
  68. top: 0;
  69. bottom: 0;
  70. left: 0;
  71. right: 0;
  72. z-index: 1001;
  73. cursor: pointer;
  74. background: #026FCE;
  75. background: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  76. background-image: -ms-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  77. background-image: -moz-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  78. background-image: -o-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  79. background-image: -webkit-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  80. background-image: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  81. -webkit-transition: all .25s ease-in-out;
  82. -moz-transition: all .25s ease-in-out;
  83. transition: all .25s ease-in-out;
  84. }
  85. .animated .play {
  86. opacity: 0;
  87. visibility: hidden;
  88. }
  89. .play-btn {
  90. position: absolute;
  91. top: 50%;
  92. left: 50%;
  93. right: 0;
  94. display: inline-block;
  95. height: 52px;
  96. width: 52px;
  97. margin: -26px 0 0 -26px;
  98. border: 2px solid rgba(196, 227, 255, 0.8);
  99. color: rgba(196, 227, 255, 0.8);
  100. font-size: 24px;
  101. line-height: 50px;
  102. text-align: center;
  103. -webkit-border-radius: 100%;
  104. border-radius: 100%;
  105. -webkit-transition: all .25s ease-in-out;
  106. -moz-transition: all .25s ease-in-out;
  107. transition: all .25s ease-in-out;
  108. }
  109. .play-btn > i {
  110. margin-left: 2px;
  111. }
  112. .play:hover .play-btn {
  113. color: #fff;
  114. border-color: #fff;
  115. }
  116. .browser .play-btn {
  117. display: inline-block;
  118. height: 100px;
  119. width: 100px;
  120. margin: -50px 0 0 -50px;
  121. font-size: 42px;
  122. line-height: 98px;
  123. }
  124. .reponsive-image-types {
  125. margin-bottom: 30px;
  126. padding: 0;
  127. border: none;
  128. list-style: none;
  129. text-align: center;
  130. }
  131. .responsive-image .browser {
  132. -webkit-transition: all ease 0.5s;
  133. }
  134. .mobile-size .mobile-size-hidden {
  135. display: none!important;
  136. }
  137. /* Control Panel Preview */
  138. .control-panel {
  139. position: absolute;
  140. height: 100%;
  141. width: 100%;
  142. color: #616366;
  143. font-size: 11px;
  144. line-height: 15px;
  145. text-align: left;
  146. visibility: visible!important;
  147. }
  148. .control-panel p {
  149. margin-bottom: 10px;
  150. }
  151. /* Control Panel Navigation */
  152. .cp-navbar {
  153. position: absolute;
  154. top: 0;
  155. left: 0;
  156. height: 100%;
  157. width: 68px;
  158. padding: 24px 0;
  159. overflow: hidden;
  160. }
  161. .cp-navbar > * {
  162. position: relative;
  163. z-index: 1;
  164. }
  165. .cp-navbar:after {
  166. position: absolute;
  167. top: 0;
  168. left: 0;
  169. display: block;
  170. content: "";
  171. height: 100%;
  172. width: 350px;
  173. background: #026FCE;
  174. background: linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  175. background-image: -ms-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  176. background-image: -moz-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  177. background-image: -o-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  178. background-image: -webkit-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  179. background-image: linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
  180. }
  181. .cp-navbar .navbar-header {
  182. float: none;
  183. margin-bottom: 30px;
  184. text-align: center;
  185. }
  186. .cp-navbar .navbar-brand {
  187. display: inline-block;
  188. float: none;
  189. height: 32px;
  190. width: 32px;
  191. background-image: url(../img/section/bird2.html);
  192. background-size:32px auto;
  193. font-size: 0;
  194. line-height: 32px;
  195. text-indent: -9999px;
  196. }
  197. .cp-navbar .navbar-nav {
  198. display: block;
  199. width: 68px;
  200. margin: 0;
  201. padding: 0;
  202. list-style: none;
  203. }
  204. .cp-navbar .navbar-nav > li {
  205. float: none;
  206. margin-bottom: 12px;
  207. }
  208. .cp-navbar .navbar-nav > li > span {
  209. display: block;
  210. padding: 6px 0;
  211. color: rgba(196, 227, 255, 0.8);
  212. font-size: 10px;
  213. font-weight: bold;
  214. text-align: center;
  215. line-height: 16px;
  216. }
  217. .cp-navbar .navbar-nav > li.active > span:after {
  218. position: absolute;
  219. right: -3px;
  220. top: 50%;
  221. display: block;
  222. height: 16px;
  223. width: 8px;
  224. margin: -8px 0 0 0;
  225. content: "\f2f4";
  226. color: #fff;
  227. font-family: 'Material-Design-Iconic-Font';
  228. font-size: 30px;
  229. line-height: 16px;
  230. }
  231. .cp-navbar .navbar-nav > li > span > i {
  232. position: relative;
  233. display: block;
  234. margin-bottom: 5px;
  235. font-size: 17px;
  236. }
  237. .desktop-size .navbar-toggle,
  238. .desktop-size .notification-toggle,
  239. .tablet-size .notification-toggle,
  240. .desktop-size .cp-navbar .navbar-logout {
  241. display: none;
  242. }
  243. .tablet-size .cp-navbar {
  244. height: 58px;
  245. width: 100%;
  246. padding: 12px 0;
  247. }
  248. .tablet-size .cp-navbar:after,
  249. .mobile-size .cp-navbar:after {
  250. width: 120%;
  251. }
  252. .tablet-size .cp-navbar .navbar-header {
  253. float: left;
  254. width: auto;
  255. padding-left: 18px;
  256. padding-right: 6px;
  257. margin: 0;
  258. }
  259. .tablet-size .cp-navbar .navbar-nav {
  260. float: right;
  261. width: auto;
  262. }
  263. .tablet-size .cp-navbar .navbar-nav > li {
  264. float: left;
  265. margin: 0;
  266. }
  267. .tablet-size .cp-navbar .navbar-nav > li > span {
  268. padding: 0 14px;
  269. }
  270. .tablet-size .cp-navbar .navbar-nav > li.active > span:after {
  271. top: auto;
  272. bottom: -10px;
  273. right: 50%;
  274. height: 8px;
  275. width: 16px;
  276. margin: 0 -8px 0 0;
  277. content: "\f2f8";
  278. }
  279. .mobile-size .cp-navbar {
  280. height: 38px;
  281. width: 100%;
  282. padding: 4px 0;
  283. }
  284. .mobile-size .cp-navbar .navbar-container {
  285. display: none;
  286. }
  287. .mobile-size .cp-navbar .navbar {
  288. padding: 0 10px;
  289. }
  290. .mobile-size .cp-navbar .navbar-header {
  291. padding-left: 18px;
  292. margin: 0;
  293. }
  294. .mobile-size .cp-navbar .navbar-brand {
  295. margin-top: -3px;
  296. margin-bottom: -3px;
  297. }
  298. .mobile-size .cp-navbar .navbar-toggle {
  299. display: block;
  300. position: absolute;
  301. top: 6px;
  302. left: 6px;
  303. z-index: 3;
  304. padding: 5px;
  305. }
  306. .mobile-size .cp-navbar .navbar-toggle .icon-bar {
  307. height: 1px;
  308. width: 14px;
  309. background-color: #fff;
  310. }
  311. .mobile-size .cp-navbar .navbar-toggle .icon-bar + .icon-bar {
  312. margin-top: 3px;
  313. }
  314. .mobile-size .cp-navbar .navbar-header .notification-toggle {
  315. float: right;
  316. padding: 9px 5px;
  317. }
  318. .mobile-size .cp-navbar .navbar-header .notification-toggle > i {
  319. color: #fff;
  320. font-size: 15px;
  321. }
  322. /* Control Panel Content */
  323. .cp-content .row {
  324. margin-left: -5px;
  325. margin-right: -5px;
  326. }
  327. .cp-content [class*="col-"] {
  328. padding-right: 5px;
  329. padding-left: 5px;
  330. }
  331. .cp-content .h6 {
  332. display: block;
  333. margin: 0 0 20px 0;
  334. }
  335. .cp-content .panel {
  336. padding: 14px;
  337. margin-bottom: 12px;
  338. -webkit-border-radius: 2px;
  339. border-radius: 2px;
  340. }
  341. .cp-content .tabs-container {
  342. margin-bottom: 20px;
  343. }
  344. .cp-content .tabs-container > .btn {
  345. display: none;
  346. }
  347. .cp-content .nav-tabs {
  348. margin: 0 -8px;
  349. border-bottom: none;
  350. }
  351. .cp-content .nav-tabs > li > span {
  352. display: inline-block;
  353. padding: 10px 1px;
  354. margin: 0 8px;
  355. line-height: 10px;
  356. }
  357. .mobile-size .cp-content {
  358. margin: 38px 0 0 0
  359. }
  360. .mobile-size .cp-content .h6 {
  361. margin-top: 6px;
  362. font-size: 12px;
  363. line-height: 16px;
  364. }
  365. .mobile-size .step-list > li:nth-child(2) .h6 {
  366. margin-bottom: 10px;
  367. }
  368. /* Control Panel: Server List */
  369. .cp-server-loading {
  370. }
  371. /* Control Panel: Server List */
  372. .cp-server-list {
  373. opacity: 0;
  374. visibility: hidden;
  375. }
  376. .no-data {
  377. width: 200px;
  378. padding-top: 100px;
  379. margin: 0 auto;
  380. text-align: center;
  381. }
  382. .no-data .server {
  383. display: inline-block;
  384. margin-bottom: 10px;
  385. }
  386. .tablet-size .no-data {
  387. padding-top: 60px;
  388. }
  389. .mobile-size .no-data {
  390. width: 150px;
  391. padding-top: 40px;
  392. }
  393. .mobile-size .no-data .server {
  394. height: 59px;
  395. width: 47px;
  396. }
  397. .cp-servers-table {
  398. position: absolute;
  399. top: 20px;
  400. opacity: 0;
  401. visibility: hidden;
  402. }
  403. .desktop-size .cp-servers-table {
  404. width: 700px;
  405. }
  406. .desktop-size .cp-servers-table-mobile {
  407. display: none;
  408. }
  409. /* Control Panel: Server Deploying */
  410. .cp-server-deploying {
  411. position: absolute;
  412. left: 0;
  413. right: 0;
  414. top: 0;
  415. bottom: 0;
  416. z-index: 999;
  417. background: #fff;
  418. height: 100%;
  419. margin-left: 68px;
  420. opacity: 0;
  421. visibility: hidden;
  422. }
  423. .tablet-size .cp-server-deploying,
  424. .mobile-size .cp-server-deploying {
  425. margin-left: 0;
  426. }
  427. /* Control Panel: Server Deployment */
  428. /* Deploy Server: STEPS */
  429. .cp-content .step-list {
  430. padding: 10px 0 24px 0;
  431. margin: 0;
  432. list-style: none;
  433. }
  434. .cp-content .step-list > li {
  435. position: relative;
  436. padding: 0 0 0 40px;
  437. margin: 24px 0 0 0;
  438. }
  439. .tablet-size .cp-content .step-list {
  440. padding-bottom: 30px;
  441. }
  442. .tablet-size .cp-content .step-list > li {
  443. margin: 18px 0 0 0;
  444. }
  445. .cp-content .step-list > li:after,
  446. .cp-content .step-list > li:before {
  447. display: table;
  448. content: "";
  449. clear: both;
  450. }
  451. .cp-content .step-list li > .step {
  452. display: inline-block;
  453. height: 26px;
  454. width: 26px;
  455. border: 1px solid #D2D8DC;
  456. color: #8a9399;
  457. font-size: 11px;
  458. font-weight: bold;
  459. text-align: center;
  460. line-height: 26px;
  461. -webkit-border-radius: 26px;
  462. border-radius: 26px;
  463. }
  464. .desktop-size .cp-content .step-list li > .step,
  465. .tablet-size .cp-content .step-list li > .step {
  466. position: absolute;
  467. top: -3px;
  468. left: 0;
  469. }
  470. .mobile-size .cp-content .step-list > li {
  471. padding: 0;
  472. margin-top: 14px;
  473. }
  474. .mobile-size .cp-content .step-list li > .step {
  475. float: left;
  476. }
  477. .mobile-size .cp-content .step-list li > .h6 {
  478. margin-left: 36px;
  479. white-space: nowrap;
  480. }
  481. /* Deploy Server: PANELS */
  482. .cp-content .panel .select-icon {
  483. position: relative;
  484. font-size: 28px;
  485. }
  486. .cp-content .panel .select-icon:before {
  487. color: #1e88e5;
  488. }
  489. .cp-content .panel .select-icon span,
  490. .cp-content .panel .select-icon span:before {
  491. position: absolute;
  492. top: 0;
  493. left: 0;
  494. display: block;
  495. height: 100%;
  496. width: 102%;
  497. background: #fff;
  498. opacity: 0;
  499. }
  500. .cp-content .panel .select-icon span:before {
  501. left: 50%;
  502. top: 50%;
  503. content: "\f26b";
  504. height: 26px;
  505. width: 26px;
  506. margin: -13px 0 0 -13px;
  507. background: #1e88e5;
  508. -webkit-border-radius: 40px;
  509. border-radius: 40px;
  510. color: #fff;
  511. font-size: 14px;
  512. font-family: 'Material-Design-Iconic-Font';
  513. text-align: center;
  514. line-height: 26px;
  515. -webkit-transform: scale(.5);
  516. -ms-transform: scale(.5);
  517. transform: scale(.5);
  518. }
  519. .cp-content .select-name {
  520. display: block;
  521. margin: 0;
  522. color: #363b40;
  523. font-size: 11px;
  524. font-weight: bold;
  525. line-height: 11px;
  526. }
  527. .cp-content .select-name small {
  528. display: block;
  529. margin-top: 4px;
  530. color: #919699;
  531. font-size: 8px;
  532. font-weight: 300;
  533. text-transform: none;
  534. }
  535. .cp-content .select-header {
  536. position: relative;
  537. padding-left: 44px;
  538. }
  539. .cp-content .select-header:after,
  540. .cp-content .select-header:before {
  541. display: table;
  542. content: "";
  543. clear: both;
  544. }
  545. .cp-content .select-header .select-icon {
  546. position: absolute;
  547. top: 50%;
  548. left: 0;
  549. }
  550. .cp-content .select-header .select-icon.icon {
  551. margin-top: -15px;
  552. }
  553. .cp-content .select-header .select-icon.flag {
  554. margin-top: -10px;
  555. }
  556. .cp-content .select-options {
  557. position: absolute;
  558. top: -1px;
  559. left: -1px;
  560. right: -1px;
  561. z-index: 1;
  562. display: none;
  563. width: 101%;
  564. padding: 55px 0 14px 0;
  565. margin: 0;
  566. -webkit-border-radius: 3px;
  567. border-radius: 3px;
  568. list-style: none;
  569. }
  570. .cp-content .select-options > li {
  571. padding: 2px 14px;
  572. color: #616366;
  573. font-size: 10px;
  574. }
  575. /* Deploy Server: PACKAGES */
  576. .cp-content .packages {
  577. padding: 0;
  578. }
  579. .cp-content .package {
  580. margin-bottom: 12px;
  581. -webkit-border-radius: 2px;
  582. border-radius: 2px;
  583. }
  584. .cp-content .package-header {
  585. padding: 12px;
  586. }
  587. .cp-content .package-title {
  588. margin-bottom: 4px;
  589. font-size: 11px;
  590. line-height: 16px;
  591. }
  592. .cp-content .package-price {
  593. font-size: 24px;
  594. font-weight: 300;
  595. line-height: 24px;
  596. }
  597. .cp-content .package-price .cycle {
  598. font-size: 12px;
  599. }
  600. .cp-content .package-body ul > li {
  601. margin-bottom: 2px;
  602. }
  603. .cp-content .package-hourly {
  604. font-size: 10px;
  605. line-height: 10px;
  606. }
  607. .cp-content .package-body {
  608. padding: 12px;
  609. }
  610. .cp-content .form-control {
  611. height: 28px;
  612. font-size: 11px;
  613. -webkit-border-radius: 1px;
  614. border-radius: 1px;
  615. }
  616. /* Deploy Server: CHECKBOX */
  617. .cp-content .checkbox-style {
  618. position: relative;
  619. display: inline-block;
  620. height: 12px;
  621. width: 12px;
  622. margin-top: -6px;
  623. margin-right: 6px;
  624. background: #fff;
  625. border: 2px solid #cacdcf;
  626. border-radius: 2px;
  627. -webkit-transition: all .15s ease;
  628. transition: all .15s ease;
  629. cursor: pointer;
  630. vertical-align: middle;
  631. }
  632. .cp-content .checkbox-style:before {
  633. position: absolute;
  634. top: -2px;
  635. left: -2px;
  636. display: block;
  637. content: "\f26b";
  638. height: 12px;
  639. width: 12px;
  640. opacity: 0;
  641. color: #fff;
  642. font-size: 12px;
  643. font-family: 'Material-Design-Iconic-Font';
  644. text-align: center;
  645. line-height: 12px;
  646. -webkit-transition: 0.15s ease-in-out;
  647. transition: 0.15s ease-in-out;
  648. -webkit-transform: scale(.7);
  649. -ms-transform: scale(.7);
  650. transform: scale(.7);
  651. }
  652. .cp-content .checkbox {
  653. white-space: nowrap;
  654. }
  655. /* Deploy Server: LABEL */
  656. .cp-content .label {
  657. padding: 3px 4px;
  658. font-size: 8px;
  659. -webkit-border-radius: 1px;
  660. border-radius: 1px;
  661. }
  662. /* Deploy Server: SUMMARY */
  663. .cp-deploy-summary {
  664. position: absolute;
  665. right: 0;
  666. left: 0;
  667. z-index: 9999;
  668. padding: 14px 0;
  669. background: #fff;
  670. }
  671. .cp-deploy-summary:after,
  672. .cp-deploy-summary:before {
  673. display: table;
  674. content: "";
  675. clear: both;
  676. }
  677. .cp-summary-price {
  678. display: inline-block;
  679. padding: 8px 0;
  680. font-size: 13px;
  681. font-weight: bold;
  682. }
  683. .cp-summary-price span {
  684. color: #1e88e5;
  685. }
  686. .cp-summary-btn {
  687. float: right;
  688. display: block;
  689. padding: 8px 14px;
  690. background: #1e88e5;
  691. color: #fff;
  692. font-weight: bold;
  693. -webkit-border-radius: 2px;
  694. border-radius: 2px;
  695. }
  696. .desktop-size .cp-deploy-summary {
  697. bottom: 0;
  698. margin-left: 68px;
  699. -webkit-box-shadow: 0 0 15px rgba(0,0,0, 0.1);
  700. box-shadow: 0 0 15px rgba(0,0,0, 0.1);
  701. }
  702. .desktop-size .cp-deploy-server .cp-content .cp-container > .cp-deploy-summary {
  703. display: none;
  704. }
  705. .mobile-size .cp-deploy-server > .cp-deploy-summary,
  706. .tablet-size .cp-deploy-server > .cp-deploy-summary {
  707. display: none;
  708. }
  709. .tablet-size .cp-deploy-summary {
  710. border-top: 1px solid #edf0f2;
  711. }
  712. .mobile-size .cp-summary-price {
  713. padding-top: 0;
  714. padding-bottom: 15px;
  715. }
  716. .mobile-size .cp-deploy-summary {
  717. border-top: 1px solid #edf0f2;
  718. text-align: center;
  719. }
  720. .mobile-size .cp-summary-btn {
  721. display: block;
  722. width: 100%;
  723. }
  724. /* Control Panel: HEADER */
  725. .cp-header {
  726. margin-bottom: 0px;
  727. border-bottom: 1px solid #edf0f2;
  728. text-align: left;
  729. }
  730. .cp-header .h1 {
  731. display: inline-block;
  732. margin: 30px 0 18px;
  733. font-size: 17px;
  734. line-height: 20px;
  735. }
  736. .cp-header .tabs-container {
  737. margin: 0 0 -1px 0;
  738. }
  739. .cp-header-hero {
  740. text-align: center;
  741. }
  742. .cp-header-hero .h1 {
  743. margin: 38px 0 32px;
  744. font-size: 20px;
  745. line-height: 24px;
  746. }
  747. .mobile-size .cp-header .h1 {
  748. margin: 10px 0 0;
  749. font-size: 14px;
  750. font-weight: 500;
  751. }
  752. .mobile-size .cp-header-hero .h1 {
  753. margin: 15px 0 10px;
  754. }
  755. /* Deploy BTN */
  756. .cp-deploy-btn {
  757. position: absolute;
  758. height: 36px;
  759. width: 36px;
  760. background: #1e88e5;
  761. color: #fff;
  762. font-size: 18px;
  763. text-align: center;
  764. line-height: 36px;
  765. -webkit-border-radius: 100%;
  766. border-radius: 100%;
  767. -webkit-box-shadow: 0 3px 10px rgba(0,0,0, 0.2);
  768. box-shadow: 0 3px 10px rgba(0,0,0, 0.2);
  769. }
  770. .tablet-size .control-panel .cp-deploy-btn,
  771. .desktop-size .control-panel .cp-deploy-btn {
  772. bottom: -15px;
  773. right: 20px;
  774. -webkit-animation: all ease .4s 0.5s;
  775. animation: all ease .4s .5s;
  776. }
  777. .mobile-size .control-panel .cp-deploy-btn {
  778. bottom: -42px;
  779. right: 10px;
  780. z-index: 9999;
  781. -webkit-animation: all ease .4s 0.5s;
  782. animation: all ease .4s .5s;
  783. }
  784. /* Contorl Panel Content */
  785. .cp-content {
  786. position: absolute;
  787. left: 0;
  788. right: 0;
  789. top: 0;
  790. bottom: 0;
  791. margin-left: 68px;
  792. }
  793. .cp-container {
  794. position: relative;
  795. max-width: 776px;
  796. margin: 0 auto;
  797. padding: 0 20px;
  798. }
  799. .mobile-size .cp-container {
  800. padding: 0 10px;
  801. }
  802. .tablet-size .cp-content .col-sm-3 {
  803. width: 33.33333333%;
  804. }
  805. .tablet-size .cp-content .col-sm-3.col-xs-6 {
  806. width: 25%;
  807. }
  808. .mobile-size .cp-content .col-sm-3 {
  809. width: 100%;
  810. }
  811. /* desktop */
  812. .desktop-size .control-panel .cursor {
  813. position: absolute;
  814. right: 300px;
  815. top: 200px;
  816. z-index: 3;
  817. }
  818. /* tablet */
  819. .tablet-size.browser {
  820. height: 460px;
  821. width: 758px;
  822. padding: 10px 50px;
  823. border-radius: 20px;
  824. }
  825. .mobile-size .browser-header,
  826. .tablet-size .browser-header {
  827. display: none;
  828. }
  829. .tablet-size .cp-sidebar {
  830. height: 64px;
  831. width: 658px;
  832. background: url(../img/panel/panel-tablet-nav.png);
  833. }
  834. .tablet-size .cp-content {
  835. margin: 58px 0 0 0
  836. }
  837. .tablet-size.browser:after {
  838. display: block;
  839. content: "";
  840. position: absolute;
  841. right: 0;
  842. top: 0;
  843. bottom: 0;
  844. height: 34px;
  845. width: 34px;
  846. margin: auto 8px;
  847. background-color: #22292e;
  848. -webkit-border-radius: 100%;
  849. -moz-border-radius: 100%;
  850. border-radius: 100%;
  851. }
  852. .tablet-size.browser:before {
  853. display: block;
  854. content: "";
  855. position: absolute;
  856. left: 0;
  857. bottom: 0;
  858. top: 0;
  859. height: 6px;
  860. width: 6px;
  861. margin: auto 23px;
  862. background-color: #22292e;
  863. -webkit-border-radius: 2px;
  864. -moz-border-radius: 2px;
  865. border-radius: 2px;
  866. }
  867. /* mobile */
  868. .mobile-size.browser {
  869. height: 445px;
  870. width: 215px;
  871. padding: 50px 10px;
  872. border-radius: 20px;
  873. }
  874. .mobile-size.browser:after {
  875. top: auto;
  876. left: 0;
  877. right: 0;
  878. display: block;
  879. content: "";
  880. height: 34px;
  881. width: 34px;
  882. margin: 8px auto;
  883. background-color: #22292e;
  884. -webkit-border-radius: 100%;
  885. -moz-border-radius: 100%;
  886. border-radius: 100%;
  887. }
  888. .mobile-size.browser:before {
  889. display: block;
  890. content: "";
  891. position: absolute;
  892. left: 0;
  893. right: 0;
  894. top: 0;
  895. height: 3px;
  896. width: 40px;
  897. margin: 23px auto;
  898. background-color: #22292e;
  899. -webkit-border-radius: 2px;
  900. -moz-border-radius: 2px;
  901. border-radius: 2px;
  902. }
  903. /* cursor */
  904. .cp-cursor {
  905. position: absolute;
  906. z-index: 1000;
  907. right: 300px;
  908. top: 200px;
  909. width: 28px;
  910. height: 31px;
  911. }
  912. .desktop-size .cp-cursor:before {
  913. position: absolute;
  914. z-index: 1;
  915. display: block;
  916. content:"";
  917. width: 28px;
  918. height: 31px;
  919. background: url(../img/panel/cursor-pointer%402x.png);
  920. background-size: cover;
  921. }
  922. .animated .cp-cursor:after {
  923. position: absolute;
  924. top: -5px;
  925. left: 0;
  926. z-index: -1;
  927. height: 40px;
  928. width: 40px;
  929. display: block;
  930. content: "";
  931. background: #1e88e5;
  932. margin: -10px;
  933. -webkit-border-radius: 100%;
  934. border-radius: 100%;
  935. opacity: 1;
  936. -ms-filter: none;
  937. filter: none;
  938. -webkit-transform: scale(0);
  939. transform: scale(0);
  940. }
  941. .tablet-size .cp-cursor {
  942. right: 220px;
  943. top: 250px;
  944. }
  945. .mobile-size .cp-cursor {
  946. right: 100px;
  947. top: 100px;
  948. }
  949. @media(max-width: 1199px) {
  950. .cp-cursor {
  951. right: 210px
  952. }
  953. }
  954. @media(max-width: 991px) {
  955. .cp-cursor {
  956. right: 220px
  957. }
  958. }
  959. .cp-deploy-server {
  960. position: relative;
  961. z-index: 998;
  962. height: 100%;
  963. opacity: 0;
  964. }
  965. .mobile-size .cp-deploy-server .cp-content,
  966. .tablet-size .cp-deploy-server .cp-content,
  967. .desktop-size .cp-deploy-server .cp-content {
  968. z-index: 9999;
  969. height: 1400px;
  970. background: #fff;
  971. }
  972. .tablet-size .cp-deploy-server .cp-content {
  973. height: 1560px;
  974. }
  975. .mobile-size .cp-deploy-server .cp-content {
  976. height: 2960px;
  977. }
  978. /* Table */
  979. .cp-servers-table {
  980. padding-top: 20px;
  981. }
  982. .cp-servers-table .table {
  983. font-size: 11px;
  984. }
  985. .cp-servers-table .table thead th {
  986. padding: 6px 10px
  987. }
  988. .cp-servers-table .table > thead > tr > th,
  989. .cp-servers-table .table > tbody > tr > th,
  990. .cp-servers-table .table > tfoot > tr > th,
  991. .cp-servers-table .table > thead > tr > td,
  992. .cp-servers-table .table > tbody > tr > td,
  993. .cp-servers-table .table > tfoot > tr > td {
  994. padding: 6px 7px;
  995. }
  996. .cp-servers-table .table .flag-xs {
  997. margin-right: 4px;
  998. margin-bottom: -3px;
  999. }
  1000. .mobile-size .cp-servers-table {
  1001. top: 0;
  1002. left: 0;
  1003. right:0;
  1004. }
  1005. .mobile-size .cp-servers-table .table thead {
  1006. display: none;
  1007. }
  1008. .mobile-size .cp-servers-table .cp-table-servers > tbody > tr {
  1009. position: relative;
  1010. padding-left: 20px;
  1011. }
  1012. .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-title {
  1013. padding-right: 30px;
  1014. }
  1015. /*
  1016. .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-os {
  1017. position: absolute;
  1018. top: 0;
  1019. right: 0;
  1020. }
  1021. */
  1022. .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-os {
  1023. display: none;
  1024. }
  1025. /*
  1026. .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-checkbox {
  1027. position: absolute;
  1028. top: 0;
  1029. left: 0;
  1030. }
  1031. */
  1032. .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-checkbox {
  1033. display: none;
  1034. }
  1035. .mobile-size .cp-servers-table .table ,
  1036. .mobile-size .cp-servers-table .table tbody,
  1037. .mobile-size .cp-servers-table .table tr,
  1038. .mobile-size .cp-servers-table .table td {
  1039. display: block;
  1040. }
  1041. .mobile-size .cp-servers-table .table td {
  1042. border: none;
  1043. padding-top: 3px;
  1044. padding-bottom: 3px;
  1045. }
  1046. .mobile-size .cp-servers-table {
  1047. display: none;
  1048. }
  1049. .mobile-size .cp-servers-table-mobile {
  1050. position: absolute;
  1051. top: 20px;
  1052. opacity: 0;
  1053. visibility: hidden;
  1054. }
  1055. .mobile-size .cp-cell-costs,
  1056. .mobile-size .cp-cell-status {
  1057. float: left;
  1058. width: 50%;
  1059. }
  1060. .mobile-size .cp-cell-status {
  1061. text-align: right;
  1062. margin-bottom: 12px;
  1063. }
  1064. .cp-table-label {
  1065. display: none;
  1066. }
  1067. .mobile-size .cp-table-labe {
  1068. display: block;
  1069. }
  1070. .cp-cell-location {
  1071. white-space: nowrap;
  1072. }
  1073. .cp-progress {
  1074. position: absolute;
  1075. left: 50%;
  1076. top: 50%;
  1077. height: 12px;
  1078. width: 160px;
  1079. margin: -6px 0 0 -80px;
  1080. border: 1px solid #e6e9eb;
  1081. -webkit-border-radius: 30px;
  1082. border-radius: 30px;
  1083. }
  1084. .cp-progress-bar {
  1085. position: absolute;
  1086. top: 2px;
  1087. left: 2px;
  1088. height: 6px;
  1089. width: 0;
  1090. background: #1e88e5;
  1091. -webkit-border-radius: 30px;
  1092. border-radius: 30px;
  1093. }
  1094. /************************************
  1095. ANIMATIONS
  1096. ************************************** /
  1097. /* Desktop Animation: Step 1: click on deploy button */
  1098. .animated .cp-cursor:after {
  1099. -webkit-animation: cursorTap .4s .5s, cursorTap .4s 1.9s, cursorTap .4s 3s, cursorTap .4s 3.8s, cursorTap .4s 5s, cursorTap .4s 6.2s, cursorTap .4s 7.4s, cursorTap .4s 9.8s;
  1100. animation: cursorTap .4s .5s, cursorTap .4s 1.9s, cursorTap .4s 3s, cursorTap .4s 3.8s, cursorTap .4s 5s, cursorTap .4s 6.2s, cursorTap .4s 7.4s, cursorTap .4s 9.8s;
  1101. -webkit-animation-fill-mode: forwards;
  1102. animation-fill-mode: forwards;
  1103. }
  1104. .desktop-size .animated .cp-deploy-btn {
  1105. -webkit-animation: all ease .25s .5s;
  1106. animation: all ease .25s .5s;
  1107. }
  1108. .desktop-size .animated .cp-cursor {
  1109. -webkit-animation: cursorMove .5s, cursorMove2 .6s 1.5s, cursorMove3 .8s 2.3s, cursorMove4 .3s 3.5s, cursorMove5 .4s 4s, cursorMove6 .4s 5.8s, cursorMove7 1s 6.5s, cursorMove8 .8s 9.1s;
  1110. animation: cursorMove .5s, cursorMove2 .6s 1.5s, cursorMove3 .8s 2.3s, cursorMove4 .3s 3.5s, cursorMove5 .4s 4s, cursorMove6 .4s 5.8s, cursorMove7 1s 6.5s, cursorMove8 .8s 9.1s;
  1111. -webkit-animation-fill-mode: forwards;
  1112. animation-fill-mode: forwards;
  1113. }
  1114. .tablet-size .animated .cp-deploy-server .cp-content {
  1115. -webkit-animation: tabletContentMove 1s 2.3s, tabletContentMove2 1s 4s, tabletContentMove3 .8s 5.2s, tabletContentMove4 1s 6.5s;
  1116. animation: tabletContentMove 1s 2.3s, tabletContentMove2 1s 4s, tabletContentMove3 .8s 5.2s, tabletContentMove4 1s 6.5s;
  1117. -webkit-animation-fill-mode: forwards;
  1118. animation-fill-mode: forwards;
  1119. }
  1120. .tablet-size .animated .cp-cursor {
  1121. -webkit-animation: tabletCursorMove .5s, tabletCursorMove2 .6s 1.5s, tabletCursorMove3 .8s 2.3s, tabletCursorMove4 .3s 3.5s, tabletCursorMove5 .4s 4s, tabletCursorMove6 .4s 5.8s, tabletCursorMove7 1s 6.5s, tabletCursorMove8 .8s 9.1s;
  1122. animation: tabletCursorMove .5s, tabletCursorMove2 .6s 1.5s, tabletCursorMove3 .8s 2.3s, tabletCursorMove4 .3s 3.5s, tabletCursorMove5 .4s 4s, tabletCursorMove6 .4s 5.8s, tabletCursorMove7 1s 6.5s, tabletCursorMove8 .8s 9.1s;
  1123. -webkit-animation-fill-mode: forwards;
  1124. animation-fill-mode: forwards;
  1125. }
  1126. .tablet-size .animated .cp-deploy-btn,
  1127. .desktop-size .animated .cp-deploy-btn {
  1128. -webkit-animation-name: click;
  1129. animation-name: click;
  1130. }
  1131. .mobile-size .animated .cp-cursor:after {
  1132. -webkit-animation: cursorTap .4s .5s, cursorTap .4s 2.2s, cursorTap .4s 3.5s, cursorTap .4s 4.3s, cursorTap .4s 6s, cursorTap .4s 9.3s, cursorTap .4s 11.5s, cursorTap .4s 13.2s;
  1133. animation: cursorTap .4s .5s, cursorTap .4s 2.2s, cursorTap .4s 3.5s, cursorTap .4s 4.3s, cursorTap .4s 6s, cursorTap .4s 9.3s, cursorTap .4s 11.5s, cursorTap .4s 13.2s;
  1134. -webkit-animation-fill-mode: forwards;
  1135. animation-fill-mode: forwards;
  1136. }
  1137. .mobile-size .animated .cp-cursor {
  1138. -webkit-animation: mobileCursorMove .5s, mobileCursorMove2 .6s 1.5s, mobileCursorMove3 .6s 2.5s, mobileCursorMove4 .3s 4s, mobileCursorMove5 .3s 9s, mobileCursorMove6 .3s 11s, mobileCursorMove7 .3s 12.9s;
  1139. animation: mobileCursorMove .5s, mobileCursorMove2 .6s 1.5s, mobileCursorMove3 .6s 2.5s, mobileCursorMove4 .3s 4s, mobileCursorMove5 .3s 9s, mobileCursorMove6 .3s 11s, mobileCursorMove7 .3s 12.9s;
  1140. -webkit-animation-fill-mode: forwards;
  1141. animation-fill-mode: forwards;
  1142. }
  1143. .mobile-size .animated .cp-deploy-server .cp-content {
  1144. -webkit-animation: mobileContentMove 0.8s 1.3s, mobileContentMove2 1.5s 2.5s, mobileContentMove3 1.5s 4.7s, mobileContentMove4 2.5s 6.5s, mobileContentMove5 1.5s 10s;
  1145. animation: mobileContentMove 0.8s 1.3s, mobileContentMove2 1.5s 2.5s, mobileContentMove3 1.5s 4.7s, mobileContentMove4 2.5s 6.5s, mobileContentMove5 1.5s 10s;
  1146. -webkit-animation-fill-mode: forwards;
  1147. animation-fill-mode: forwards;
  1148. }
  1149. /*
  1150. .mobile-size .animated .cp-navbar {
  1151. -webkit-animation: mobileContentMove 0.8s 1.3s;
  1152. animation: mobileContentMove 0.8s 1.3s;
  1153. -webkit-animation-fill-mode: forwards;
  1154. animation-fill-mode: forwards;
  1155. }
  1156. */
  1157. /* Desktop Animation: Step 2: Show Deploy Content */
  1158. .animated .cp-server-list {
  1159. -webkit-animation: show 0s 0s, hide .5s .7s, show .5s 12s;
  1160. animation: show 0s 0s, hide .5s .7s, show .5s 12s;
  1161. -webkit-animation-fill-mode: forwards;
  1162. animation-fill-mode: forwards;
  1163. }
  1164. .animated .cp-server-list .no-data {
  1165. -webkit-animation: hide 0s 1s;
  1166. animation: hide 0s 1s;
  1167. -webkit-animation-fill-mode: forwards;
  1168. animation-fill-mode: forwards;
  1169. }
  1170. .animated .cp-servers-table {
  1171. -webkit-animation: show 0s 1s;
  1172. animation: show 0s 1s;
  1173. -webkit-animation-fill-mode: forwards;
  1174. animation-fill-mode: forwards;
  1175. }
  1176. .animated .cp-servers-table-mobile {
  1177. -webkit-animation: show 0s 1s;
  1178. animation: show 0s 1s;
  1179. -webkit-animation-fill-mode: forwards;
  1180. animation-fill-mode: forwards;
  1181. }
  1182. .animated .cp-deploy-server {
  1183. -webkit-animation: show .5s .9s, hide 0s 11s;
  1184. animation: show .5s .9s, hide 0s 11s;
  1185. -webkit-animation-fill-mode: forwards;
  1186. animation-fill-mode: forwards;
  1187. }
  1188. .desktop-size .animated .cp-deploy-server .cp-content {
  1189. -webkit-animation: contentMove 1s 2.3s, contentMove2 1s 4s, contentMove3 .8s 5.2s, contentMove4 1s 6.5s;
  1190. animation: contentMove 1s 2.3s, contentMove2 1s 4s, contentMove3 .8s 5.2s, contentMove4 1s 6.5s;
  1191. -webkit-animation-fill-mode: forwards;
  1192. animation-fill-mode: forwards;
  1193. }
  1194. .tablet-size .animated .cp-navbar {
  1195. -webkit-animation: tabletContentMove 1s 2.3s, tabletMenuBack 0s 11s;
  1196. animation: tabletContentMove 1s 2.3s, tabletMenuBack 0s 11s;
  1197. -webkit-animation-fill-mode: forwards;
  1198. animation-fill-mode: forwards;
  1199. }
  1200. .mobile-size .animated .cp-server-list {
  1201. -webkit-animation: show 0s 0s, hide .5s .7s, show .5s 15s;
  1202. animation: show 0s 0s, hide .5s .7s, show .5s 15s;
  1203. -webkit-animation-fill-mode: forwards;
  1204. animation-fill-mode: forwards;
  1205. }
  1206. .mobile-size .animated .cp-deploy-server {
  1207. -webkit-animation: show .5s .9s, hide 0s 14s;
  1208. animation: show .5s .9s, hide 0s 14s;
  1209. -webkit-animation-fill-mode: forwards;
  1210. animation-fill-mode: forwards;
  1211. }
  1212. /* Desktop Animation: Step 3: Choose Location */
  1213. .animated .cp-location-click,
  1214. .animated .cp-location-click .select-icon span,
  1215. .animated .cp-location-click .select-icon span:before {
  1216. -webkit-transition: all ease .15s 2s;
  1217. transition: all ease .15s 2s;
  1218. }
  1219. .mobile-size .animated .cp-location-click,
  1220. .mobile-size .animated .cp-location-click .select-icon span,
  1221. .mobile-size .animated .cp-location-click .select-icon span:before {
  1222. -webkit-transition: all ease .15s 2.2s;
  1223. transition: all ease .15s 2.2s;
  1224. }
  1225. .animated .cp-location-click {
  1226. border-color: #1e88e5
  1227. }
  1228. .animated .cp-location-click .select-icon span {
  1229. opacity: 1;
  1230. }
  1231. .animated .cp-location-click .select-icon span:before {
  1232. opacity: 1;
  1233. -webkit-transform: scale(1);
  1234. transform: scale(1);
  1235. }
  1236. /* Desktop Animation: Step 4: Choose OS */
  1237. .animated .cp-os-click {
  1238. -webkit-transition: all ease .15s 3.1s;
  1239. transition: all ease .15s 3.1s;
  1240. }
  1241. .animated .cp-os-click {
  1242. border-color: #1e88e5
  1243. }
  1244. .animated .cp-os-click .select-header {
  1245. position: relative;
  1246. z-index: 2;
  1247. }
  1248. .cp-os-click .select-options {
  1249. opacity: 0;
  1250. display: block;
  1251. background: #fff;
  1252. border: 1px solid #1e88e5;
  1253. -webkit-box-shadow: 0 0 40px -10px rgba(37,45,51, .5);
  1254. box-shadow: 0 0 40px -10px rgba(37,45,51, .5);
  1255. }
  1256. .animated .cp-os-click .select-options {
  1257. -webkit-animation: show .15s 3.1s, hide .15s 3.9s;
  1258. animation: show .15s 3.1s, hide .15s 3.9s;
  1259. -webkit-animation-fill-mode: forwards;
  1260. animation-fill-mode: forwards;
  1261. }
  1262. .animated .cp-os-click .select-icon span,
  1263. .animated .cp-os-click .select-icon span:before {
  1264. -webkit-transition: all ease .15s 3.9s;
  1265. transition: all ease .15s 3.9s;
  1266. }
  1267. .mobile-size .animated .cp-os-click {
  1268. -webkit-transition: all ease .15s 3.5s;
  1269. transition: all ease .15s 3.5s;
  1270. }
  1271. .mobile-size .animated .cp-os-click .select-options {
  1272. -webkit-animation: show .15s 3.5s, hide .15s 4.5s;
  1273. animation: show .15s 3.5s, hide .15s 4.5s;
  1274. -webkit-animation-fill-mode: forwards;
  1275. animation-fill-mode: forwards;
  1276. }
  1277. .mobile-size .animated .cp-os-click .select-icon span,
  1278. .mobile-size .animated .cp-os-click .select-icon span:before {
  1279. -webkit-transition: all ease .15s 4.4s;
  1280. transition: all ease .15s 4.4s;
  1281. }
  1282. /* version choose */
  1283. .animated .cp-os-click .select-options > li:first-child {
  1284. -webkit-transition: all ease .15s 3.5s;
  1285. transition: all ease .15s 3.5s;
  1286. }
  1287. .animated .cp-os-click .select-options > li:first-child {
  1288. color: #1e88e5
  1289. }
  1290. .animated .cp-os-click .select-icon span {
  1291. opacity: 1;
  1292. }
  1293. .animated .cp-os-click .select-icon span:before {
  1294. opacity: 1;
  1295. -webkit-transform: scale(1);
  1296. transform: scale(1);
  1297. }
  1298. .mobile-size .animated .cp-os-click .select-options > li:first-child {
  1299. -webkit-transition: all ease .15s 4.3s;
  1300. transition: all ease .15s 4.3s;
  1301. }
  1302. /* Desktop Animation: Step 5: Choose Package */
  1303. .animated .cp-package-click {
  1304. -webkit-transition: all ease .15s 5s;
  1305. transition: all ease .15s 5s;
  1306. }
  1307. .animated .cp-package-click {
  1308. border-color: #1e88e5
  1309. }
  1310. /*
  1311. .animated .cp-package-click {
  1312. border-color: #1e88e5;
  1313. background: rgba(0, 0, 0, 0) linear-gradient(45deg, #135fac 1%, #1e88e5 64%, #40baf5 97%) repeat scroll 0 0;
  1314. background-color: #1e88e5;
  1315. }
  1316. .animated .cp-package-click > .package-header {
  1317. border-color: #1669b5;
  1318. }
  1319. .animated .cp-package-click > .package-header > .package-title,
  1320. .animated .cp-package-click > .package-header > .package-price {
  1321. color: #ffffff;
  1322. }
  1323. .animated .cp-package-click > .package-header > .package-hourly,
  1324. .animated .cp-package-click > .package-body > ul > li {
  1325. color: #ffffff;
  1326. opacity: 0.6;
  1327. }
  1328. */
  1329. .mobile-size .animated .cp-package-click {
  1330. -webkit-transition: all ease .15s 6s;
  1331. }
  1332. /* Desktop Animation: Step 6: Choose Features */
  1333. .animated .cp-checkbox-click,
  1334. .animated .cp-checkbox-click:before {
  1335. -webkit-transition: all ease .15s 6.2s;
  1336. transition: all ease .15s 6.2s;
  1337. }
  1338. .animated .cp-checkbox-click:before {
  1339. opacity: 1;
  1340. -webkit-transform: scale(1);
  1341. transform: scale(1);
  1342. }
  1343. .animated .cp-checkbox-click {
  1344. border-color: #1e88e5;
  1345. background-color: #1e88e5;
  1346. }
  1347. .mobile-size .animated .cp-checkbox-click {
  1348. -webkit-transition: all ease .15s 9.4s;
  1349. transition: all ease .15s 9.4s;
  1350. }
  1351. /* Desktop Animation: Step 7: Instance Name */
  1352. .cp-instance-input {
  1353. position: relative;
  1354. color: #999;
  1355. }
  1356. .cp-instance-name {
  1357. position: absolute;
  1358. top: 7px;
  1359. left: 10px;
  1360. display: block;
  1361. width: 160px;
  1362. background: #fff;
  1363. color: #616366;
  1364. overflow: hidden;
  1365. }
  1366. .cp-instance-name > span {
  1367. position: absolute;
  1368. top: 0;
  1369. right: 0;
  1370. display: block;
  1371. width: 200px;
  1372. height: 100%;
  1373. background: #fff;
  1374. }
  1375. .animated .cp-instance-input .form-control {
  1376. -webkit-animation: borderColor .15s 7.5s;
  1377. animation: borderColor .15s 7.5s;
  1378. -webkit-animation-fill-mode: forwards;
  1379. animation-fill-mode: forwards;
  1380. }
  1381. .animated .cp-instance-name > span {
  1382. -webkit-animation: typing 1.5s steps(36, end) 7.6s;
  1383. animation: typing 1.5s steps(36, end) 7.6s;
  1384. -webkit-animation-fill-mode: forwards;
  1385. animation-fill-mode: forwards;
  1386. }
  1387. .mobile-size .animated .cp-instance-input .form-control {
  1388. -webkit-animation: borderColor .15s 11.5s;
  1389. -webkit-animation-fill-mode: forwards;
  1390. }
  1391. .mobile-size .animated .cp-instance-name > span {
  1392. -webkit-animation: typing 1.5s steps(36, end) 11.8s;
  1393. -webkit-animation-fill-mode: forwards;
  1394. }
  1395. @-webkit-keyframes typing {
  1396. from { width: 200px; }
  1397. to { width: 0; }
  1398. }
  1399. @keyframes typing {
  1400. from { width: 200px; }
  1401. to { width: 0; }
  1402. }
  1403. @-webkit-keyframes borderColor {
  1404. from { border-color: #e6e9eb; }
  1405. to { border-color: #1e88e5; }
  1406. }
  1407. @keyframes borderColor {
  1408. from { border-color: #e6e9eb; }
  1409. to { border-color: #1e88e5; }
  1410. }
  1411. .mobile-size .animated .cp-summary-btn {
  1412. -webkit-animation: click .15s 13.2s;
  1413. animation: click .15s 13.2s;
  1414. -webkit-animation-fill-mode: forwards;
  1415. animation-fill-mode: forwards;
  1416. }
  1417. /* Desktop Animation: Step 8: Server Deploying */
  1418. .animated .cp-server-deploying {
  1419. -webkit-animation: show .5s 10s, hide .5s 12s;
  1420. animation: show .5s 10s, hide .5s 12s;
  1421. -webkit-animation-fill-mode: forwards;
  1422. animation-fill-mode: forwards;
  1423. }
  1424. .animated .cp-progress-bar {
  1425. -webkit-animation: load 2s 10s;
  1426. animation: load 2s 10s;
  1427. -webkit-animation-fill-mode: forwards;
  1428. animation-fill-mode: forwards;
  1429. }
  1430. .mobile-size .animated .cp-server-deploying {
  1431. -webkit-animation: show .5s 13.4s, hide .5s 15.4s;
  1432. animation: show .5s 13.4s, hide .5s 15.4s;
  1433. -webkit-animation-fill-mode: forwards;
  1434. animation-fill-mode: forwards;
  1435. }
  1436. .mobile-size .animated .cp-progress-bar {
  1437. -webkit-animation: load 2s 13.4s;
  1438. animation: load 2s 13.4s;
  1439. -webkit-animation-fill-mode: forwards;
  1440. animation-fill-mode: forwards;
  1441. }
  1442. /*
  1443. .animated .play {
  1444. -webkit-animation: show .5s 13.4s;
  1445. animation: show .5s 13.4s;
  1446. -webkit-animation-fill-mode: forwards;
  1447. animation-fill-mode: forwards;
  1448. }
  1449. */
  1450. /*CSS Animations for browser */
  1451. @-webkit-keyframes show {
  1452. 0% {
  1453. opacity: 0;
  1454. visibility: hidden;
  1455. }
  1456. 100% {
  1457. opacity: 1;
  1458. visibility: visible;
  1459. }
  1460. }
  1461. @keyframes show {
  1462. 0% {
  1463. opacity: 0;
  1464. visibility: hidden;
  1465. }
  1466. 100% {
  1467. opacity: 1;
  1468. visibility: visible;
  1469. }
  1470. }
  1471. @-webkit-keyframes hide {
  1472. 0% {
  1473. opacity: 1;
  1474. visibility: visible;
  1475. }
  1476. 100% {
  1477. opacity: 0;
  1478. visibility: hidden;
  1479. }
  1480. }
  1481. @keyframes hide {
  1482. 0% {
  1483. opacity: 1;
  1484. visibility: visible;
  1485. }
  1486. 100% {
  1487. opacity: 0;
  1488. visibility: hidden;
  1489. }
  1490. }
  1491. @-webkit-keyframes load {
  1492. 0% {
  1493. width: 0;
  1494. }
  1495. 100% {
  1496. width: 154px;
  1497. }
  1498. }
  1499. @keyframes load {
  1500. 0% {
  1501. width: 0;
  1502. }
  1503. 100% {
  1504. width: 154px;
  1505. }
  1506. }
  1507. @-webkit-keyframes click {
  1508. 0% {
  1509. -webkit-transform: scale3d(1, 1, 1);
  1510. transform: scale3d(1, 1, 1);
  1511. }
  1512. 50% {
  1513. background: #3ba3ff;
  1514. -webkit-transform: scale3d(.8, .8, .8);
  1515. transform: scale3d(.8, .8, .8);
  1516. }
  1517. 100% {
  1518. background: #1e88e5;
  1519. -webkit-transform: scale3d(1, 1, 1);
  1520. transform: scale3d(1, 1, 1);
  1521. }
  1522. }
  1523. @keyframes click {
  1524. 0% {
  1525. -webkit-transform: scale3d(1, 1, 1);
  1526. transform: scale3d(1, 1, 1);
  1527. }
  1528. 50% {
  1529. background: #3ba3ff;
  1530. -webkit-transform: scale3d(.8, .8, .8);
  1531. transform: scale3d(.8, .8, .8);
  1532. }
  1533. 100% {
  1534. background: #1e88e5;
  1535. -webkit-transform: scale3d(1, 1, 1);
  1536. transform: scale3d(1, 1, 1);
  1537. }
  1538. }
  1539. @keyframes cursorTap {
  1540. 0% {
  1541. opacity: 1;
  1542. -webkit-transform: scale(0);
  1543. transform: scale(0);
  1544. }
  1545. 100% {
  1546. opacity: 0;
  1547. -webkit-transform: scale(1);
  1548. transform: scale(1);
  1549. }
  1550. }
  1551. @keyframes cursorMove {
  1552. 0% {
  1553. -webkit-transform: translate3d(0, 0, 0);
  1554. transform: translate3d(0, 0, 0)
  1555. }
  1556. 100% {
  1557. -webkit-transform: translate3d(200px, -100px, 0);
  1558. transform: translate3d(200px, -100px, 0);
  1559. }
  1560. }
  1561. @keyframes cursorMove2 {
  1562. 0% {
  1563. -webkit-transform: translate3d(200px, -100px, 0);
  1564. transform: translate3d(200px, -100px, 0);
  1565. }
  1566. 100% {
  1567. -webkit-transform: translate3d(-70px, 90px, 0);
  1568. transform: translate3d(-70px, 90px, 0);
  1569. }
  1570. }
  1571. @keyframes cursorMove3 {
  1572. 0% {
  1573. -webkit-transform: translate3d(-70px, 90px, 0);
  1574. transform: translate3d(-70px, 90px, 0);
  1575. }
  1576. 100% {
  1577. -webkit-transform: translate3d(-370px, 70px, 0);
  1578. transform: translate3d(-370px, 70px, 0);
  1579. }
  1580. }
  1581. @keyframes cursorMove4 {
  1582. 0% {
  1583. -webkit-transform: translate3d(-370px, 70px, 0);
  1584. transform: translate3d(-370px, 70px, 0);
  1585. }
  1586. 100% {
  1587. -webkit-transform: translate3d(-370px, 90px, 0);
  1588. transform: translate3d(-370px, 90px, 0);
  1589. }
  1590. }
  1591. @keyframes cursorMove5 {
  1592. 0% {
  1593. -webkit-transform: translate3d(-370px, 90px, 0);
  1594. transform: translate3d(-370px, 90px, 0);
  1595. }
  1596. 100% {
  1597. -webkit-transform: translate3d(-370px, -20px, 0);
  1598. transform: translate3d(-370px, -20px, 0);
  1599. }
  1600. }
  1601. @keyframes cursorMove6 {
  1602. 0% {
  1603. -webkit-transform: translate3d(-370px, -20px, 0);
  1604. transform: translate3d(-370px, -20px, 0);
  1605. }
  1606. 100% {
  1607. -webkit-transform: translate3d(-370px, 40px, 0);
  1608. transform: translate3d(-370px, 40px, 0);
  1609. }
  1610. }
  1611. @keyframes cursorMove7 {
  1612. 0% {
  1613. -webkit-transform: translate3d(-370px, 40px, 0);
  1614. transform: translate3d(-370px, 40px, 0);
  1615. }
  1616. 100% {
  1617. -webkit-transform: translate3d(-300px, 280px, 0);
  1618. transform: translate3d(-300px, 280px, 0);
  1619. }
  1620. }
  1621. @keyframes cursorMove8 {
  1622. 0% {
  1623. -webkit-transform: translate3d(-300px, 280px, 0);
  1624. transform: translate3d(-300px, 280px, 0);
  1625. }
  1626. 100% {
  1627. -webkit-transform: translate3d(150px, 360px, 0);
  1628. transform: translate3d(150px, 360px, 0);
  1629. }
  1630. }
  1631. /* Content move for desktop */
  1632. @keyframes contentMove {
  1633. 0% {
  1634. -webkit-transform: translate3d(0, 0, 0);
  1635. transform: translate3d(0, 0, 0);
  1636. }
  1637. 100% {
  1638. -webkit-transform: translate3d(0, -200px, 0);
  1639. transform: translate3d(0, -200px, 0);
  1640. }
  1641. }
  1642. @keyframes contentMove2 {
  1643. 0% {
  1644. -webkit-transform: translate3d(0, -200px, 0);
  1645. transform: translate3d(0, -200px, 0);
  1646. }
  1647. 100% {
  1648. -webkit-transform: translate3d(0, -580px, 0);
  1649. transform: translate3d(0, -580px, 0);
  1650. }
  1651. }
  1652. @keyframes contentMove3 {
  1653. 0% {
  1654. -webkit-transform: translate3d(0, -580px, 0);
  1655. transform: translate3d(0, -580px, 0);
  1656. }
  1657. 100% {
  1658. -webkit-transform: translate3d(0, -800px, 0);
  1659. transform: translate3d(0, -800px, 0);
  1660. }
  1661. }
  1662. @keyframes contentMove4 {
  1663. 0% {
  1664. -webkit-transform: translate3d(0, -800px, 0);
  1665. transform: translate3d(0, -800px, 0);
  1666. }
  1667. 100% {
  1668. -webkit-transform: translate3d(0, -910px, 0);
  1669. transform: translate3d(0, -910px, 0);
  1670. }
  1671. }
  1672. /* Cursor move for tablet */
  1673. @keyframes tabletCursorMove {
  1674. 0% {
  1675. -webkit-transform: translate3d(0, 0, 0);
  1676. transform: translate3d(0, 0, 0)
  1677. }
  1678. 100% {
  1679. -webkit-transform: translate3d(190px, -100px, 0);
  1680. transform: translate3d(190px, -100px, 0);
  1681. }
  1682. }
  1683. @keyframes tabletCursorMove2 {
  1684. 0% {
  1685. -webkit-transform: translate3d(200px, -100px, 0);
  1686. transform: translate3d(200px, -100px, 0);
  1687. }
  1688. 100% {
  1689. -webkit-transform: translate3d(100px, 90px, 0);
  1690. transform: translate3d(100px, 90px, 0);
  1691. }
  1692. }
  1693. @keyframes tabletCursorMove3 {
  1694. 0% {
  1695. -webkit-transform: translate3d(100px, 90px, 0);
  1696. transform: translate3d(100px, 90px, 0);
  1697. }
  1698. 100% {
  1699. -webkit-transform: translate3d(-300px, -60px, 0);
  1700. transform: translate3d(-300px, -60px, 0);
  1701. }
  1702. }
  1703. @keyframes tabletCursorMove4 {
  1704. 0% {
  1705. -webkit-transform: translate3d(-300px, -60px, 0);
  1706. transform: translate3d(-300px, -60px, 0);
  1707. }
  1708. 100% {
  1709. -webkit-transform: translate3d(-320px, -40px, 0);
  1710. transform: translate3d(-320px, -40px, 0);
  1711. }
  1712. }
  1713. @keyframes tabletCursorMove5 {
  1714. 0% {
  1715. -webkit-transform: translate3d(-320px, -40px, 0);
  1716. transform: translate3d(-320px, -40px, 0);
  1717. }
  1718. 100% {
  1719. -webkit-transform: translate3d(-320px, -100px, 0);
  1720. transform: translate3d(-320px, -100px, 0);
  1721. }
  1722. }
  1723. @keyframes tabletCursorMove6 {
  1724. 0% {
  1725. -webkit-transform: translate3d(-320px, -100px, 0);
  1726. transform: translate3d(-320px, -100px, 0);
  1727. }
  1728. 100% {
  1729. -webkit-transform: translate3d(-300px, 0px, 0);
  1730. transform: translate3d(-300px, 0px, 0);
  1731. }
  1732. }
  1733. @keyframes tabletCursorMove7 {
  1734. 0% {
  1735. -webkit-transform: translate3d(-300px, 30px, 0);
  1736. transform: translate3d(-300px, 30px, 0);
  1737. }
  1738. 100% {
  1739. -webkit-transform: translate3d(-300px, 60px, 0);
  1740. transform: translate3d(-300px, 60px, 0);
  1741. }
  1742. }
  1743. @keyframes tabletCursorMove8 {
  1744. 0% {
  1745. -webkit-transform: translate3d(-300px, 240px, 0);
  1746. transform: translate3d(-300px, 240px, 0);
  1747. }
  1748. 100% {
  1749. -webkit-transform: translate3d(100px, 350px, 0);
  1750. transform: translate3d(100px, 350px, 0);
  1751. }
  1752. }
  1753. /* Content move for tablet */
  1754. @keyframes tabletContentMove {
  1755. 0% {
  1756. -webkit-transform: translate3d(0, 0, 0);
  1757. transform: translate3d(0, 0, 0);
  1758. }
  1759. 100% {
  1760. -webkit-transform: translate3d(0, -400px, 0);
  1761. transform: translate3d(0, -400px, 0);
  1762. }
  1763. }
  1764. @keyframes tabletContentMove2 {
  1765. 0% {
  1766. -webkit-transform: translate3d(0, -400px, 0);
  1767. transform: translate3d(0, -400px, 0);
  1768. }
  1769. 100% {
  1770. -webkit-transform: translate3d(0, -720px, 0);
  1771. transform: translate3d(0, -720px, 0);
  1772. }
  1773. }
  1774. @keyframes tabletContentMove3 {
  1775. 0% {
  1776. -webkit-transform: translate3d(0, -720px, 0);
  1777. transform: translate3d(0, -720px, 0);
  1778. }
  1779. 100% {
  1780. -webkit-transform: translate3d(0, -900px, 0);
  1781. transform: translate3d(0, -900px, 0);
  1782. }
  1783. }
  1784. @keyframes tabletContentMove4 {
  1785. 0% {
  1786. -webkit-transform: translate3d(0, -900px, 0);
  1787. transform: translate3d(0, -900px, 0);
  1788. }
  1789. 100% {
  1790. -webkit-transform: translate3d(0, -1135px, 0);
  1791. transform: translate3d(0, -1135px, 0);
  1792. }
  1793. }
  1794. @keyframes tabletMenuBack {
  1795. 0% {
  1796. -webkit-transform: translate3d(0, -400px, 0);
  1797. transform: translate3d(0, -400px, 0);
  1798. }
  1799. 100% {
  1800. -webkit-transform: translate3d(0, 0, 0);
  1801. transform: translate3d(0, 0, 0);
  1802. }
  1803. }
  1804. /* Content move for tablet */
  1805. @keyframes mobileContentMove {
  1806. 0% {
  1807. -webkit-transform: translate3d(0, 0, 0);
  1808. transform: translate3d(0, 0, 0);
  1809. }
  1810. 100% {
  1811. -webkit-transform: translate3d(0, -150px, 0);
  1812. transform: translate3d(0, -150px, 0);
  1813. }
  1814. }
  1815. @keyframes mobileContentMove2 {
  1816. 0% {
  1817. -webkit-transform: translate3d(0, -150px, 0);
  1818. transform: translate3d(0, -150px, 0);
  1819. }
  1820. 100% {
  1821. -webkit-transform: translate3d(0, -450px, 0);
  1822. transform: translate3d(0, -450px, 0);
  1823. }
  1824. }
  1825. @keyframes mobileContentMove3 {
  1826. 0% {
  1827. -webkit-transform: translate3d(0, -450px, 0);
  1828. transform: translate3d(0, -450px, 0);
  1829. }
  1830. 100% {
  1831. -webkit-transform: translate3d(0, -1000px, 0);
  1832. transform: translate3d(0, -1000px, 0);
  1833. }
  1834. }
  1835. @keyframes mobileContentMove4 {
  1836. 0% {
  1837. -webkit-transform: translate3d(0, -1000px, 0);
  1838. transform: translate3d(0, -1000px, 0);
  1839. }
  1840. 100% {
  1841. -webkit-transform: translate3d(0, -2400px, 0);
  1842. transform: translate3d(0, -2400px, 0);
  1843. }
  1844. }
  1845. @keyframes mobileContentMove5 {
  1846. 0% {
  1847. -webkit-transform: translate3d(0, -2400px, 0);
  1848. transform: translate3d(0, -2400px, 0);
  1849. }
  1850. 100% {
  1851. -webkit-transform: translate3d(0, -2650px, 0);
  1852. transform: translate3d(0, -2650px, 0);
  1853. }
  1854. }
  1855. /* Cursor move for mobile */
  1856. @keyframes mobileCursorMove {
  1857. 0% {
  1858. -webkit-transform: translate3d(0, 0, 0);
  1859. transform: translate3d(0, 0, 0)
  1860. }
  1861. 100% {
  1862. -webkit-transform: translate3d(85px, 15px, 0);
  1863. transform: translate3d(85px, 15px, 0);
  1864. }
  1865. }
  1866. @keyframes mobileCursorMove2 {
  1867. 0% {
  1868. -webkit-transform: translate3d(85px, 15px, 0);
  1869. transform: translate3d(85px, 15px, 0);
  1870. }
  1871. 100% {
  1872. -webkit-transform: translate3d(20px, 150px, 0);
  1873. transform: translate3d(20px, 150px, 0);
  1874. }
  1875. }
  1876. @keyframes mobileCursorMove3 {
  1877. 0% {
  1878. -webkit-transform: translate3d(20px, 150px, 0);
  1879. transform: translate3d(20px, 150px, 0);
  1880. }
  1881. 100% {
  1882. -webkit-transform: translate3d(-40px, 115px, 0);
  1883. transform: translate3d(-40px, 115px, 0);
  1884. }
  1885. }
  1886. @keyframes mobileCursorMove4 {
  1887. 0% {
  1888. -webkit-transform: translate3d(-40px, 115px, 0);
  1889. transform: translate3d(-40px, 115px, 0);
  1890. }
  1891. 100% {
  1892. -webkit-transform: translate3d(-40px, 135px, 0);
  1893. transform: translate3d(-40px, 135px, 0);
  1894. }
  1895. }
  1896. @keyframes mobileCursorMove5 {
  1897. 0% {
  1898. -webkit-transform: translate3d(-40px, 135px, 0);
  1899. transform: translate3d(-40px, 135px, 0);
  1900. }
  1901. 100% {
  1902. -webkit-transform: translate3d(-60px, 0px, 0);
  1903. transform: translate3d(-60px, 0px, 0);
  1904. }
  1905. }
  1906. @keyframes mobileCursorMove6 {
  1907. 0% {
  1908. -webkit-transform: translate3d(-60px, 0px, 0);
  1909. transform: translate3d(-60px, 0px, 0);
  1910. }
  1911. 100% {
  1912. -webkit-transform: translate3d(20px, 120px, 0);
  1913. transform: translate3d(20px, 120px, 0);
  1914. }
  1915. }
  1916. @keyframes mobileCursorMove7 {
  1917. 0% {
  1918. -webkit-transform: translate3d(20px, 120px, 0);
  1919. transform: translate3d(20px, 120px, 0);
  1920. }
  1921. 100% {
  1922. -webkit-transform: translate3d(20px, 210px, 0);
  1923. transform: translate3d(20px, 210px, 0);
  1924. }
  1925. }