style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. /*basic reset*/
  5. * {margin: 0; padding: 0;}
  6. html {
  7. min-height: 100%;
  8. height: auto;
  9. /*Image only BG fallback*/
  10. /*background = gradient + image pattern combo*/
  11. /* background:
  12. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  13. }
  14. body {
  15. font-family: 'Montserrat', sans-serif;
  16. background-color: white;
  17. font-size: 1.05rem;
  18. }
  19. .ml {
  20. margin-left: 10px;
  21. }
  22. .mr {
  23. margin-right: 10px;
  24. }
  25. .mb {
  26. margin-bottom: 12px;
  27. }
  28. .top {
  29. margin-top: 20px;
  30. position: sticky;
  31. top: 0;
  32. left: 50%;
  33. z-index: 20;
  34. background-color: inherit;
  35. }
  36. .navbar {
  37. background-color: white;
  38. }
  39. /* .imf {
  40. position: fixed;
  41. top: 0;
  42. left: 50%;
  43. transform: translateX(-50%);
  44. z-index: 3;
  45. } */
  46. /*form styles*/
  47. #myProgress {
  48. width: 100%;
  49. background-color: #ddd;
  50. }
  51. #myBar {
  52. width: 10%;
  53. height: 30px;
  54. background-color: #1C7CE0;
  55. text-align: center;
  56. line-height: 30px;
  57. color: white;
  58. }
  59. .go_title {
  60. color: white;
  61. font-family: 'Montserrat', sans-serif;
  62. padding: 1rem;
  63. }
  64. .nav-list {
  65. color: white;
  66. margin-top: 3rem;
  67. }
  68. .nav-list-item {
  69. font-size: 1.2rem;
  70. cursor: pointer;
  71. position: relative;
  72. }
  73. .nav-list-item::after {
  74. content: " ";
  75. position: absolute;
  76. width: 100%;
  77. height: 100%;
  78. left: 0;
  79. top: 0;
  80. border-bottom: 1px solid white;
  81. opacity: 0;
  82. transition: all .4s;
  83. }
  84. .nav-list-item:hover::after {
  85. opacity: 1;
  86. }
  87. .right-text {
  88. position: absolute;
  89. bottom: 0rem;
  90. }
  91. .loader {
  92. position: absolute;
  93. top: 30%;
  94. left: 45%;
  95. }
  96. .imgfr {
  97. width:90px;
  98. height: 90px;
  99. border-radius: 50%;
  100. overflow: hidden;
  101. margin: 1rem auto 0 auto;
  102. }
  103. .card-title {
  104. font-family: 'Montserrat', sans-serif;
  105. }
  106. .strong {
  107. font-weight: 600;
  108. }
  109. .card {
  110. border: none;
  111. position: relative;
  112. }
  113. .card.active {
  114. border: 1px solid gray;
  115. }
  116. .card.active::before {
  117. position: absolute;
  118. content: "✓";
  119. bottom: 0;
  120. right: 5px;
  121. }
  122. .zoomin {
  123. display: none;
  124. position: absolute;
  125. bottom: 0;
  126. left: 0;
  127. }
  128. .script_err {
  129. display: none;
  130. }
  131. /* .history-modal {
  132. height: 80vh;
  133. }
  134. .history-modal .modal-content{
  135. height: 80vh;
  136. }
  137. .history-modal .modal-conten .modal-terms {
  138. height: 90%;
  139. overflow: scroll;
  140. } */
  141. .historyList-item {
  142. padding: 1rem;
  143. display: block;
  144. width: 80%;
  145. margin: 1rem auto;
  146. border: 1px solid rgb(177, 177, 177);
  147. border-radius: 10px;
  148. display: flex;
  149. font-size: .9rem;
  150. }
  151. .historyList-link {
  152. text-decoration: none;
  153. color: rgb(73, 73, 73);
  154. }
  155. .historyList-link:hover {
  156. color: rgb(124, 124, 124);
  157. }
  158. .content {
  159. width: calc(100% - 250px);
  160. }
  161. /*form styles*/
  162. #msform {
  163. max-width: 1000px;
  164. min-width: 370px;
  165. margin: 50px auto;
  166. margin-bottom: 20px;
  167. text-align: center;
  168. position: relative;
  169. }
  170. #msform fieldset {
  171. background: white;
  172. border: 0 none;
  173. border-radius: 3px;
  174. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
  175. padding: 20px 30px;
  176. box-sizing: border-box;
  177. width: 80%;
  178. margin: 3rem 10%;
  179. /*stacking fieldsets above each other*/
  180. position: relative;
  181. }
  182. /*Hide all except first fieldset*/
  183. /*inputs*/
  184. #msform input[type="text"], #msform textarea, #msform input[type="email"] {
  185. padding: 15px;
  186. border: 1px solid #ccc;
  187. border-radius: 3px;
  188. margin-bottom: 16px;
  189. width: 100%;
  190. box-sizing: border-box;
  191. font-family: montserrat;
  192. color: #2C3E50;
  193. font-size: 14px;
  194. }
  195. /*buttons*/
  196. #msform .action-button {
  197. background: linear-gradient(90deg, #0162c8, #55e7fc);
  198. font-weight: bold;
  199. color: white;
  200. border: 0 none;
  201. border-radius: 40px;
  202. cursor: pointer;
  203. padding: 10px 50px;
  204. margin: 10px auto;
  205. display: block;
  206. overflow: hidden;
  207. position: relative;
  208. }
  209. #msform .action-button:hover, #msform .action-button:focus {
  210. box-shadow: 0 0 0 2px white, 0 0 0 3px #1C7CE0;
  211. }
  212. #msform .next[disabled] {
  213. background: grey;
  214. }
  215. .ripples {
  216. position: absolute;
  217. background: #fff;
  218. left: 50%;
  219. top: 50%;
  220. transform: translate(-50%, -50%);
  221. pointer-events: none;
  222. border-radius: 50%;
  223. animation: aniRipple 1s linear infinite;
  224. }
  225. /*headings*/
  226. .fs-title {
  227. font-size: 15px;
  228. text-transform: uppercase;
  229. color: #2C3E50;
  230. margin-bottom: 10px;
  231. }
  232. .fs-subtitle {
  233. display: inline-block;
  234. font-weight: normal;
  235. font-size: 18px;
  236. color: #666;
  237. margin-bottom: 20px;
  238. padding-bottom: 3px;
  239. border-bottom: 2px solid #1C7CE0;
  240. margin-left: 2rem;
  241. margin-right: 2rem;
  242. }
  243. .fs-label {
  244. display: block;
  245. text-align: left;
  246. margin-bottom: 8px;
  247. }
  248. .fs-label > i {
  249. margin-right: 3px;
  250. }
  251. /*progressbar*/
  252. #progressbar {
  253. margin-bottom: 30px;
  254. overflow: hidden;
  255. /*CSS counters to number the steps*/
  256. counter-reset: step;
  257. }
  258. #progressbar li {
  259. list-style-type: none;
  260. color: black;
  261. text-transform: uppercase;
  262. font-size: 12px;
  263. width: 33.33%;
  264. float: left;
  265. position: relative;
  266. }
  267. #progressbar li:before {
  268. content: counter(step);
  269. counter-increment: step;
  270. width: 20px;
  271. line-height: 20px;
  272. display: block;
  273. font-size: 12px;
  274. color: #333;
  275. background: white;
  276. border-radius: 3px;
  277. margin: 0 auto 5px auto;
  278. }
  279. /*progressbar connectors*/
  280. #progressbar li:after {
  281. content: '';
  282. width: 100%;
  283. height: 2px;
  284. background: white;
  285. position: absolute;
  286. left: -50%;
  287. top: 9px;
  288. z-index: -1; /*put it behind the numbers*/
  289. }
  290. #progressbar li:first-child:after {
  291. /*connector not needed before the first step*/
  292. content: none;
  293. }
  294. /*marking active/completed steps green*/
  295. /*The number of the step and the connector before it = green*/
  296. #progressbar li.active:before, #progressbar li.active:after{
  297. background: #27AE60;
  298. color: white;
  299. }
  300. p.error-text {
  301. bottom: -23px;
  302. left: 24px;
  303. color: rgba(255, 0, 0, .7);
  304. font-size: .8em;
  305. margin-bottom: 0;
  306. }
  307. #term-error {
  308. color: rgba(255, 0, 0, .7);
  309. font-size: .8em;
  310. bottom: -23px;
  311. left: 24px;
  312. }
  313. select {
  314. padding: 15px;
  315. border: 1px solid #ccc;
  316. border-radius: 3px;
  317. margin-bottom: 10px;
  318. width: 100%;
  319. box-sizing: border-box;
  320. font-family: montserrat;
  321. color: #2C3E50;
  322. font-size: 13px;
  323. background-color: transparent;
  324. }
  325. .pl-0 {
  326. padding-left: 0;
  327. }
  328. .terms {
  329. font-size: .9rem;
  330. width: 95%;
  331. min-width: 250px;
  332. height: auto;
  333. overflow: scroll;
  334. margin-bottom: 1rem;
  335. margin-left: auto;
  336. margin-right: auto;
  337. border: 1px solid rgb(163, 163, 163);
  338. line-height: 1.5rem;
  339. }
  340. .term-link a {
  341. text-decoration: none;
  342. color: black;
  343. }
  344. .h2 {
  345. text-align: center;
  346. font-size: 1.2rem;
  347. font-weight: 500;
  348. margin-top: 2rem;
  349. }
  350. .left_align {
  351. font-size: 18px;
  352. text-align: left;
  353. }
  354. #overlay {
  355. position: fixed; /* Sit on top of the page content */
  356. display: none;
  357. width: 100%;
  358. height: 100%;
  359. top: 0;
  360. left: 0;
  361. right: 0;
  362. bottom: 0;
  363. background-color: rgba(0,0,0,0.5);
  364. z-index: 2;
  365. cursor: pointer;
  366. }
  367. .thankyou {
  368. margin: auto;
  369. min-width: 350px;
  370. height: 250px;
  371. margin-top: 190px;
  372. background: #fff;
  373. padding: 15px 20px;
  374. line-height: 25px;
  375. border-radius: 4px;
  376. text-align: center;
  377. }
  378. .thankyou input {
  379. margin-top: 40px;
  380. }
  381. .thankyou h3 {
  382. font-size: 2rem;
  383. font-weight: 700;
  384. color: #21ba45;
  385. line-height: 2.5rem;
  386. margin-bottom: 1.5rem;
  387. }
  388. .check_button {
  389. display: none;
  390. }
  391. .fs-label-type {
  392. background: transparent;
  393. padding: 5px;
  394. border: 1px solid black;
  395. border-radius: 5px;
  396. display: inline-block;
  397. }
  398. .check_button:checked + .fs-label-type{
  399. background-color: #27AE60;
  400. color: white;
  401. padding: 5px;
  402. border: 1px solid #27AE60;
  403. border-radius: 5px;
  404. }
  405. input[type="checkbox"] {
  406. display: none;
  407. }
  408. #checker1, #checker2 {
  409. display: inline;
  410. }
  411. .fs-label-info {
  412. background: transparent;
  413. padding: 5px;
  414. border: 1px solid black;
  415. border-radius: 5px;
  416. display: inline-block;
  417. margin-bottom: 8px;
  418. }
  419. input[type="radio"] {
  420. display: none;
  421. }
  422. input[type="radio"]:checked + .fs-label-info {
  423. background-color: #27AE60;
  424. color: white;
  425. padding: 5px;
  426. border: 1px solid #27AE60;
  427. border-radius: 5px;
  428. }
  429. input[type="checkbox"]:checked + .fs-label-info {
  430. background-color: #27AE60;
  431. color: white;
  432. padding: 5px;
  433. border: 1px solid #27AE60;
  434. border-radius: 5px;
  435. }
  436. .btn-exit {
  437. padding: .5rem .75rem;
  438. background-color: transparent;
  439. border: 1px solid black;
  440. margin-top: .3rem;
  441. }
  442. .btn-term-exit {
  443. padding: .5rem .75rem;
  444. background-color: transparent;
  445. border: 1px solid black;
  446. margin-top: .3rem;
  447. display: block;
  448. margin-left: auto;
  449. margin-right: auto;
  450. margin-bottom: 2rem;
  451. }
  452. footer {
  453. padding: 2rem;
  454. padding-top: .5rem;
  455. }
  456. .footer {
  457. display: flex;
  458. justify-content: center;
  459. }
  460. .img_fr {
  461. width: 80%;
  462. max-width: 850px;
  463. min-width: 300px;
  464. height: 60px;
  465. object-fit: contain;
  466. object-position: center;
  467. }
  468. .img_fr img {
  469. width: 100%;
  470. height: 90%;
  471. }
  472. #msform #userid, #msform #area {
  473. height: 0;
  474. padding: 0;
  475. margin: 0;
  476. border: none;
  477. }
  478. #msform input[type="text"].error {
  479. border-color: red;
  480. }
  481. .modal-header {
  482. border-bottom: none;
  483. }
  484. #avatarmega .modal-content {
  485. background-color: transparent;
  486. border: none;
  487. }
  488. #avatarmega .modal-title {
  489. color: white;
  490. }
  491. #avatarmega .btn-close {
  492. background: none;
  493. }
  494. #avatarmega .modal-header {
  495. position: absolute;
  496. top: -2.5rem;
  497. right: 1rem;
  498. }
  499. .linker__box {
  500. padding: .5rem 1rem;
  501. border-radius: 1rem;
  502. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  503. width: max-content;
  504. margin: 0 auto;
  505. display: none;
  506. }
  507. .linker__box p {
  508. margin-bottom: 0;
  509. color: gray;
  510. }
  511. .linker__box i {
  512. color: gray;
  513. position: relative;
  514. }
  515. .linker__box i::after {
  516. position: absolute;
  517. content: " ";
  518. right: -5px;
  519. top: -10%;
  520. border-right: 2px solid rgb(163, 163, 163);
  521. width: 1px;
  522. height: 120%;
  523. }
  524. .item_imgfr {
  525. width: 15%;
  526. height: 50px;
  527. border-radius: 50%;
  528. overflow: hidden;
  529. margin: auto .5rem;
  530. }
  531. .item_imgfr img {
  532. height: 100%;
  533. width: 100%;
  534. }
  535. .content-box {
  536. width: 75%;
  537. }
  538. .box-title {
  539. margin-bottom: .2rem;
  540. cursor: pointer;
  541. }
  542. .box-title:hover {
  543. color: grey;
  544. text-decoration: underline;
  545. }
  546. .box-link {
  547. cursor: pointer;
  548. }
  549. .img_uploader {
  550. display: none;
  551. }
  552. #msform input[type="text"].imgsrc {
  553. width: calc(100% - 7rem);
  554. margin-right: 5px;
  555. }
  556. .upload-btn {
  557. display: inline-block;
  558. width: 6rem;
  559. background-color: #75a7dd;
  560. color: white;
  561. padding: .4rem .5rem;
  562. font-size: .9rem;
  563. border-radius: 3px;
  564. transition: all .3s;
  565. cursor: pointer;
  566. }
  567. .upload-btn img{
  568. width: 30px;
  569. height: 30px;
  570. }
  571. .upload-btn:hover {
  572. background-color: #3b86d6;
  573. }
  574. .listimg__fr {
  575. width: 50px;
  576. height: 50px;
  577. border-radius: 50%;
  578. overflow: hidden;
  579. margin: auto .5rem;
  580. }
  581. .listimg__fr img {
  582. width: 100%;
  583. height: 100%;
  584. }
  585. .historyList-item {
  586. border: none;
  587. box-shadow: 1px 1px 4px 1px rgb(207, 207, 207);
  588. padding: .5rem;
  589. color: black;
  590. text-decoration: none;
  591. cursor: pointer;
  592. }
  593. .historyList-item:hover {
  594. color: black;
  595. }
  596. .vertical-align {
  597. vertical-align: middle;
  598. }
  599. .loading {
  600. width:100%;
  601. height:100%;
  602. opacity:0.8;
  603. background-color:white;
  604. z-index:10000;
  605. display:none;
  606. position:fixed;
  607. top:0;
  608. left:0;
  609. background-color: rgba(#e1e1e1, 0.8);
  610. background-image: url("img/Spinner-1s-181px.gif");
  611. background-repeat: no-repeat;
  612. background-position: 50% 50%;
  613. }
  614. .edit-btn {
  615. color: black;
  616. }
  617. .owl-theme .owl-nav {
  618. display: none;
  619. }
  620. .add, .addimg {
  621. cursor: pointer;
  622. display: inline-block;
  623. width: 2rem;
  624. height: 2rem;
  625. background: linear-gradient(90deg, #0162c8, #55e7fc);
  626. font-size: 1.2rem;
  627. color: white;
  628. border-radius: 50%;
  629. transition: all .3s;
  630. }
  631. .add:hover, .addimg:hover {
  632. background-color: #398ee9;
  633. }
  634. .step-li {
  635. cursor: pointer;
  636. padding: .5rem 0;
  637. }
  638. .step {
  639. padding-left: 3.5rem;
  640. margin-top: 3rem;
  641. }
  642. .step .step-li a{
  643. display: inline-block;
  644. font-size: 1.2rem;
  645. color: white;
  646. position: relative;
  647. padding-left: 10px;
  648. }
  649. .step a:hover::after {
  650. width: 300%;
  651. }
  652. .step a::after {
  653. position: absolute;
  654. content: " ";
  655. bottom: 0;
  656. left: 0;
  657. width: 0%;
  658. height: 100%;
  659. background: transparent;
  660. border-bottom: 1px solid white;
  661. transition: all .4s;
  662. }
  663. .step-li.active a::after {
  664. width: 300%;
  665. }
  666. .step .step-li a:hover{
  667. color: white;
  668. }
  669. .step i {
  670. color: white;
  671. display: inline-block;
  672. padding: .6rem;
  673. border: 1px solid white;
  674. border-radius: 50%;
  675. }
  676. .step-li.active i {
  677. color: black;
  678. background-color: white;
  679. }
  680. .aniScale {
  681. animation: aniScale 1.2s 1;
  682. }
  683. @media (max-width: 768px) {
  684. #msform {
  685. margin-top: 150px;
  686. }
  687. .content {
  688. width: 100%;
  689. }
  690. .navbar {
  691. background: linear-gradient(90deg, #0162c8, #55e7fc);
  692. position: fixed !important;
  693. top: 0;
  694. right: 0;
  695. left: 0;
  696. z-index: 1030;
  697. }
  698. .navbar-brand {
  699. color: white;
  700. }
  701. .navbar-nav {
  702. padding: .5rem 0;
  703. }
  704. .navbar-nav .nav-item {
  705. color: white;
  706. padding: .5rem 1rem;
  707. cursor: pointer;
  708. }
  709. .navbar-nav .nav-item .nav-link {
  710. color: white;
  711. }
  712. #msform fieldset {
  713. width: 95%;
  714. margin: 2rem 2.5%;
  715. padding: 10px 15px;
  716. }
  717. #msform input[type="text"].imgsrc {
  718. width: calc(100% - 6rem);
  719. }
  720. .upload-btn {
  721. width: 5rem;
  722. padding: .3rem .3rem;
  723. }
  724. .menu-line {
  725. display: inline-block;
  726. width: 2rem;
  727. height: 2px;
  728. background-color: white;
  729. position: relative;
  730. box-shadow: 1px 1px 5px 1px rgb(192, 192, 192);
  731. margin-bottom: 5px;
  732. }
  733. .menu-line::before {
  734. position: absolute;
  735. content: '';
  736. left: 0;
  737. top: -10px;
  738. width: 2rem;
  739. height: 2px;
  740. background-color: white;
  741. box-shadow: 1px 1px 5px 1px rgb(192, 192, 192);
  742. }
  743. .menu-line::after {
  744. position: absolute;
  745. content: '';
  746. left: 0;
  747. top: 10px;
  748. width: 2rem;
  749. height: 2px;
  750. background-color: white;
  751. box-shadow: 1px 1px 5px 1px rgb(192, 192, 192);
  752. }
  753. .menu-close {
  754. display: none;
  755. }
  756. .navbar-brand:hover {
  757. color: white;
  758. }
  759. .navbar-toggler:focus {
  760. box-shadow: none;
  761. }
  762. .historyList-item {
  763. width: 97%;
  764. }
  765. .item_imgfr {
  766. width: 17%;
  767. }
  768. .linker__box {
  769. width: 95%;
  770. margin: 0 2.5%;
  771. }
  772. .step__box {
  773. width: 100%;
  774. position: fixed;
  775. z-index: 20;
  776. background: linear-gradient(180deg, white 90%, transparent);
  777. top: 56px;
  778. }
  779. .step {
  780. padding-left: 0;
  781. overflow: hidden;
  782. margin: 0rem auto;
  783. }
  784. .step-li {
  785. list-style-type: none;
  786. color: black;
  787. text-transform: uppercase;
  788. width: 25%;
  789. float: left;
  790. position: relative;
  791. display: flex;
  792. flex-direction: column;
  793. align-items: center;
  794. }
  795. .step-li:after {
  796. content: '';
  797. width: 100%;
  798. height: 2px;
  799. background: #2fb9ce;
  800. position: absolute;
  801. left: -50%;
  802. top: 30%;
  803. z-index: -1; /*put it behind the numbers*/
  804. }
  805. .step-li:first-child:after {
  806. /*connector not needed before the first step*/
  807. content: none;
  808. }
  809. .step .step-li a {
  810. font-size: 12px;
  811. padding-left: 0;
  812. color: black;
  813. }
  814. .step .step-li a:hover {
  815. color: black;
  816. }
  817. .step-li i {
  818. color: #2fb9ce;
  819. font-size: 1.1rem;
  820. border: 1px solid #2fb9ce;
  821. margin-bottom: 5px;
  822. background: white;
  823. }
  824. .step-li.active i {
  825. background: #2fb9ce;
  826. color: white;
  827. }
  828. #avatarmega .modal-imgfr {
  829. width: 100%;
  830. }
  831. #avatarmega .modal-imgfr img {
  832. width: 100%;
  833. }
  834. }
  835. @keyframes aniRipple {
  836. 0% {
  837. width: 0px;
  838. height: 0px;
  839. opacity: .5;
  840. }
  841. 100% {
  842. width: 180px;
  843. height: 180px;
  844. opacity: 0;
  845. }
  846. }
  847. @keyframes aniScale {
  848. 0% {
  849. transform: scale(1);
  850. }
  851. 50% {
  852. transform: scale(1.05);
  853. }
  854. 100% {
  855. transform: scale(1);
  856. }
  857. }