style.scss 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
  5. /*basic reset*/
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. $moblie: 767px;
  11. $desktop: 1025px;
  12. html {
  13. min-height: 100%;
  14. height: auto;
  15. /*Image only BG fallback*/
  16. /*background = gradient + image pattern combo*/
  17. /* background:
  18. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  19. }
  20. body {
  21. font-family: "Montserrat", sans-serif;
  22. background-color: white;
  23. font-size: 1.05rem;
  24. }
  25. .ml {
  26. margin-left: 10px;
  27. }
  28. .mr {
  29. margin-right: 10px;
  30. }
  31. .mb {
  32. margin-bottom: 12px;
  33. }
  34. .top {
  35. margin-top: 20px;
  36. position: sticky;
  37. top: 0;
  38. left: 50%;
  39. z-index: 20;
  40. background-color: inherit;
  41. }
  42. .copy {
  43. cursor: pointer;
  44. }
  45. .navbar {
  46. background-color: white;
  47. }
  48. /* .imf {
  49. position: fixed;
  50. top: 0;
  51. left: 50%;
  52. transform: translateX(-50%);
  53. z-index: 3;
  54. } */
  55. .img_banner {
  56. background-image: url("images/banner_top1.jpg");
  57. background-repeat: no-repeat;
  58. background-size: contain;
  59. background-position: center;
  60. width: 100%;
  61. height: 65px;
  62. }
  63. /*form styles*/
  64. .img_logo {
  65. display: inline-block;
  66. margin: 0 auto;
  67. margin-bottom: 10px;
  68. }
  69. .title__block {
  70. display: flex;
  71. justify-content: center;
  72. align-items: center;
  73. margin: 0px auto;
  74. }
  75. .sub-logo {
  76. display: inline-block;
  77. font-weight: 700;
  78. font-size: 1.4rem;
  79. color: white;
  80. }
  81. .slogan {
  82. display: block;
  83. font-weight: 700;
  84. font-size: 1.2rem;
  85. color: white;
  86. }
  87. .notice_card {
  88. box-sizing: border-box;
  89. width: 80%;
  90. margin: 0 10%;
  91. margin-bottom: 1.5rem;
  92. background: white;
  93. border: 0 none;
  94. border-radius: 3px;
  95. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  96. padding: 10px 20px;
  97. line-height: 1.5rem;
  98. }
  99. #myProgress {
  100. width: 100%;
  101. background-color: #ddd;
  102. }
  103. #myBar {
  104. width: 10%;
  105. height: 30px;
  106. background-color: #1c7ce0;
  107. text-align: center;
  108. line-height: 30px;
  109. color: white;
  110. }
  111. .go_title {
  112. color: white;
  113. font-family: "Montserrat", sans-serif;
  114. padding: 1rem;
  115. }
  116. .nav-list {
  117. color: white;
  118. margin-top: 1.5rem;
  119. }
  120. .nav-list-item {
  121. font-size: 1.2rem;
  122. cursor: pointer;
  123. position: relative;
  124. }
  125. .nav-list-item::after {
  126. content: " ";
  127. position: absolute;
  128. width: 100%;
  129. height: 100%;
  130. left: 0;
  131. top: 0;
  132. border-bottom: 1px solid white;
  133. opacity: 0;
  134. transition: all 0.4s;
  135. }
  136. .nav-list-item:hover::after {
  137. opacity: 1;
  138. }
  139. .loader {
  140. position: absolute;
  141. top: 30%;
  142. left: 45%;
  143. }
  144. .imgfr {
  145. width: 90px;
  146. height: 90px;
  147. border-radius: 50%;
  148. overflow: hidden;
  149. margin: 1rem auto 0 auto;
  150. }
  151. .card-title {
  152. font-family: "Montserrat", sans-serif;
  153. font-size: 1rem;
  154. }
  155. .strong {
  156. font-weight: 600;
  157. }
  158. .card {
  159. border: none;
  160. position: relative;
  161. }
  162. .card.active {
  163. border: 1px solid gray;
  164. }
  165. .card.active::before {
  166. position: absolute;
  167. content: "✓";
  168. bottom: 0;
  169. right: 5px;
  170. }
  171. .zoomin {
  172. display: none;
  173. position: absolute;
  174. bottom: 0;
  175. left: 0;
  176. }
  177. .script_err {
  178. display: none;
  179. }
  180. /* .history-modal {
  181. height: 80vh;
  182. }
  183. .history-modal .modal-content{
  184. height: 80vh;
  185. }
  186. .history-modal .modal-conten .modal-terms {
  187. height: 90%;
  188. overflow: scroll;
  189. } */
  190. .history {
  191. height: 75vh;
  192. overflow: scroll;
  193. }
  194. .historyList-item {
  195. padding: 1rem;
  196. display: block;
  197. width: 80%;
  198. margin: 1rem auto;
  199. border-radius: 10px;
  200. display: flex;
  201. font-size: 0.9rem;
  202. box-shadow: 1px 1px 4px 1px rgb(207, 207, 207);
  203. background-color: white;
  204. }
  205. .historyList-link {
  206. text-decoration: none;
  207. color: rgb(73, 73, 73);
  208. }
  209. .historyList-link:hover {
  210. color: rgb(124, 124, 124);
  211. }
  212. .listimg__fr {
  213. width: 50px;
  214. height: 50px;
  215. border-radius: 50%;
  216. overflow: hidden;
  217. margin: auto .5rem;
  218. }
  219. .listimg__fr img {
  220. width: 100%;
  221. height: 100%;
  222. }
  223. .content {
  224. width: calc(100% - 250px);
  225. }
  226. /*form styles*/
  227. #msform {
  228. max-width: 1000px;
  229. min-width: 370px;
  230. margin: 50px auto;
  231. margin-bottom: 20px;
  232. text-align: center;
  233. position: relative;
  234. }
  235. #msform fieldset {
  236. background: white;
  237. border: 0 none;
  238. border-radius: 3px;
  239. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  240. padding: 20px 30px;
  241. box-sizing: border-box;
  242. width: 80%;
  243. margin: 3rem 10%;
  244. /*stacking fieldsets above each other*/
  245. position: relative;
  246. @media screen and(max-width:$moblie) {
  247. width: 90%;
  248. margin: 3rem auto;
  249. padding: 10px 15px;
  250. }
  251. }
  252. /*Hide all except first fieldset*/
  253. /*inputs*/
  254. #msform input[type="text"],
  255. #msform textarea,
  256. #msform input[type="email"] {
  257. padding: 15px;
  258. border: 1px solid #ccc;
  259. border-radius: 3px;
  260. margin-bottom: 16px;
  261. width: 100%;
  262. box-sizing: border-box;
  263. font-family: montserrat;
  264. color: #2c3e50;
  265. font-size: 14px;
  266. }
  267. /*buttons*/
  268. #msform .action-button {
  269. width: 100px;
  270. background: #1c7ce0;
  271. font-weight: bold;
  272. color: white;
  273. border: 0 none;
  274. border-radius: 1px;
  275. cursor: pointer;
  276. padding: 10px 5px;
  277. margin: 10px auto;
  278. display: block;
  279. }
  280. #msform .action-button:hover,
  281. #msform .action-button:focus {
  282. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  283. }
  284. #msform .next[disabled] {
  285. background-color: grey;
  286. }
  287. .draft-btn {
  288. padding: 10px 5px;
  289. background-color: rgb(209, 209, 209);
  290. display: inline-block;
  291. position: absolute;
  292. left: 1rem;
  293. bottom: 1rem;
  294. font-size: 1rem;
  295. transition: all .3s;
  296. cursor: pointer;
  297. &:hover {
  298. background-color: rgb(170, 170, 170);
  299. }
  300. }
  301. /*headings*/
  302. .fs-title {
  303. font-size: 15px;
  304. text-transform: uppercase;
  305. color: #2c3e50;
  306. margin-bottom: 10px;
  307. }
  308. .fs-subtitle {
  309. display: inline-block;
  310. font-weight: normal;
  311. font-size: 18px;
  312. color: #666;
  313. margin-bottom: 20px;
  314. padding-bottom: 3px;
  315. border-bottom: 2px solid #1c7ce0;
  316. margin-left: 2rem;
  317. margin-right: 2rem;
  318. }
  319. .fs-label {
  320. display: block;
  321. text-align: left;
  322. margin-bottom: 8px;
  323. }
  324. .fs-label > i {
  325. margin-right: 3px;
  326. }
  327. /*progressbar*/
  328. #progressbar {
  329. margin-bottom: 30px;
  330. overflow: hidden;
  331. /*CSS counters to number the steps*/
  332. counter-reset: step;
  333. }
  334. #progressbar li {
  335. list-style-type: none;
  336. color: black;
  337. text-transform: uppercase;
  338. font-size: 12px;
  339. width: 33.33%;
  340. float: left;
  341. position: relative;
  342. }
  343. #progressbar li:before {
  344. content: counter(step);
  345. counter-increment: step;
  346. width: 20px;
  347. line-height: 20px;
  348. display: block;
  349. font-size: 12px;
  350. color: #333;
  351. background: white;
  352. border-radius: 3px;
  353. margin: 0 auto 5px auto;
  354. }
  355. /*progressbar connectors*/
  356. #progressbar li:after {
  357. content: "";
  358. width: 100%;
  359. height: 2px;
  360. background: white;
  361. position: absolute;
  362. left: -50%;
  363. top: 9px;
  364. z-index: -1; /*put it behind the numbers*/
  365. }
  366. #progressbar li:first-child:after {
  367. /*connector not needed before the first step*/
  368. content: none;
  369. }
  370. /*marking active/completed steps green*/
  371. /*The number of the step and the connector before it = green*/
  372. #progressbar li.active:before,
  373. #progressbar li.active:after {
  374. background: #27ae60;
  375. color: white;
  376. }
  377. p.error-text {
  378. bottom: -23px;
  379. left: 24px;
  380. color: rgba(255, 0, 0, 0.7);
  381. font-size: 0.8em;
  382. margin-bottom: 0;
  383. }
  384. #term-error {
  385. color: rgba(255, 0, 0, 0.7);
  386. font-size: 0.8em;
  387. bottom: -23px;
  388. left: 24px;
  389. }
  390. select {
  391. padding: 15px;
  392. border: 1px solid #ccc;
  393. border-radius: 3px;
  394. margin-bottom: 10px;
  395. width: 100%;
  396. box-sizing: border-box;
  397. font-family: montserrat;
  398. color: #2c3e50;
  399. font-size: 13px;
  400. background-color: transparent;
  401. }
  402. .pl-0 {
  403. padding-left: 0;
  404. }
  405. .terms {
  406. font-size: 0.9rem;
  407. width: 95%;
  408. min-width: 250px;
  409. height: auto;
  410. overflow: scroll;
  411. margin-bottom: 1rem;
  412. margin-left: auto;
  413. margin-right: auto;
  414. border: 1px solid rgb(163, 163, 163);
  415. line-height: 1.5rem;
  416. }
  417. .term-link a {
  418. text-decoration: none;
  419. color: black;
  420. }
  421. .h2 {
  422. text-align: center;
  423. font-size: 1.2rem;
  424. font-weight: 500;
  425. margin-top: 2rem;
  426. }
  427. .left_align {
  428. font-size: 18px;
  429. text-align: left;
  430. }
  431. #overlay {
  432. position: fixed; /* Sit on top of the page content */
  433. display: none;
  434. width: 100%;
  435. height: 100%;
  436. top: 0;
  437. left: 0;
  438. right: 0;
  439. bottom: 0;
  440. background-color: rgba(0, 0, 0, 0.5);
  441. z-index: 2;
  442. cursor: pointer;
  443. }
  444. .thankyou {
  445. margin: auto;
  446. min-width: 350px;
  447. height: 250px;
  448. margin-top: 190px;
  449. background: #fff;
  450. padding: 15px 20px;
  451. line-height: 25px;
  452. border-radius: 4px;
  453. text-align: center;
  454. }
  455. .thankyou input {
  456. margin-top: 40px;
  457. }
  458. .thankyou h3 {
  459. font-size: 2rem;
  460. font-weight: 700;
  461. color: #21ba45;
  462. line-height: 2.5rem;
  463. margin-bottom: 1.5rem;
  464. }
  465. .check_button {
  466. display: none;
  467. }
  468. .fs-label-type {
  469. background: transparent;
  470. padding: 5px;
  471. border: 1px solid black;
  472. border-radius: 5px;
  473. display: inline-block;
  474. }
  475. .check_button:checked + .fs-label-type {
  476. background-color: #27ae60;
  477. color: white;
  478. padding: 5px;
  479. border: 1px solid #27ae60;
  480. border-radius: 5px;
  481. }
  482. #checker1,
  483. #checker2 {
  484. display: inline;
  485. }
  486. .fs-label-info {
  487. background: transparent;
  488. padding: 5px;
  489. border: 1px solid black;
  490. border-radius: 5px;
  491. display: inline-block;
  492. margin-bottom: 8px;
  493. }
  494. input[type="radio"] {
  495. display: none;
  496. }
  497. input[type="radio"]:checked + .fs-label-info {
  498. background-color: #27ae60;
  499. color: white;
  500. padding: 5px;
  501. border: 1px solid #27ae60;
  502. border-radius: 5px;
  503. }
  504. input[type="checkbox"]:checked + .fs-label-info {
  505. background-color: #27ae60;
  506. color: white;
  507. padding: 5px;
  508. border: 1px solid #27ae60;
  509. border-radius: 5px;
  510. }
  511. .btn-exit {
  512. padding: 0.5rem 0.75rem;
  513. background-color: transparent;
  514. border: 1px solid black;
  515. margin-top: 0.3rem;
  516. }
  517. .btn-term-exit {
  518. padding: 0.5rem 0.75rem;
  519. background-color: transparent;
  520. border: 1px solid black;
  521. margin-top: 0.3rem;
  522. display: block;
  523. margin-left: auto;
  524. margin-right: auto;
  525. margin-bottom: 2rem;
  526. }
  527. footer {
  528. padding: 2rem;
  529. padding-top: 0.5rem;
  530. }
  531. .footer {
  532. display: flex;
  533. justify-content: center;
  534. }
  535. .img_fr {
  536. width: 80%;
  537. max-width: 850px;
  538. min-width: 300px;
  539. height: 60px;
  540. object-fit: contain;
  541. object-position: center;
  542. }
  543. .img_fr img {
  544. width: 100%;
  545. height: 90%;
  546. }
  547. #msform #userid,
  548. #msform #area {
  549. height: 0;
  550. padding: 0;
  551. margin: 0;
  552. border: none;
  553. }
  554. #msform input[type="text"].error {
  555. border-color: red;
  556. }
  557. .modal-header {
  558. border-bottom: none;
  559. }
  560. .btn-dismiss {
  561. background: linear-gradient(90deg, #0162c8, #55e7fc);
  562. font-weight: bold;
  563. color: white;
  564. border: 0 none;
  565. border-radius: 20px;
  566. cursor: pointer;
  567. padding: 10px 35px;
  568. margin: 10px auto;
  569. display: block;
  570. }
  571. #avatarmega .modal-content {
  572. background-color: transparent;
  573. border: none;
  574. }
  575. #avatarmega .modal-title {
  576. color: white;
  577. }
  578. #avatarmega .modal-header {
  579. position: absolute;
  580. top: -0.5rem;
  581. right: 1.5rem;
  582. }
  583. .linker__box {
  584. padding: 0.5rem 1rem;
  585. border-radius: 1rem;
  586. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  587. width: max-content;
  588. margin: 0 auto;
  589. display: none;
  590. }
  591. .linker__box p {
  592. margin-bottom: 0;
  593. color: gray;
  594. }
  595. .linker__box i {
  596. color: gray;
  597. position: relative;
  598. }
  599. .linker__box i::after {
  600. position: absolute;
  601. content: " ";
  602. right: -5px;
  603. top: -10%;
  604. border-right: 2px solid rgb(163, 163, 163);
  605. width: 1px;
  606. height: 120%;
  607. }
  608. .item_imgfr {
  609. width: 15%;
  610. height: 50px;
  611. border-radius: 50%;
  612. overflow: hidden;
  613. margin: auto 0.5rem;
  614. }
  615. .item_imgfr img {
  616. height: 100%;
  617. width: 100%;
  618. }
  619. .content-box {
  620. width: 75%;
  621. }
  622. .box-title {
  623. margin-bottom: 0.2rem;
  624. cursor: pointer;
  625. }
  626. .box-title:hover {
  627. color: grey;
  628. text-decoration: underline;
  629. }
  630. .box-link {
  631. cursor: pointer;
  632. }
  633. .img_uploader {
  634. display: none;
  635. }
  636. #msform input[type="text"].imgsrc {
  637. width: calc(100% - 8rem);
  638. margin-right: 5px;
  639. @media screen and(max-width:$moblie) {
  640. margin-right: 15px;
  641. }
  642. }
  643. .upload-btn {
  644. display: inline-block;
  645. width: 6rem;
  646. background-color: #75a7dd;
  647. color: white;
  648. padding: 0.4rem 0.5rem;
  649. font-size: 0.9rem;
  650. border-radius: 3px;
  651. transition: all 0.3s;
  652. cursor: pointer;
  653. }
  654. .upload-btn img {
  655. width: 30px;
  656. height: 30px;
  657. }
  658. .upload-btn:hover {
  659. background-color: #3b86d6;
  660. }
  661. .add,
  662. .add-subline,
  663. .addimg {
  664. cursor: pointer;
  665. display: inline-block;
  666. width: 2rem;
  667. height: 2rem;
  668. background-color: #67abf3;
  669. font-size: 1.2rem;
  670. color: white;
  671. border-radius: 50%;
  672. transition: all 0.3s;
  673. }
  674. .add:hover,
  675. .add-subline:hover,
  676. .addimg:hover {
  677. background-color: #398ee9;
  678. }
  679. body {
  680. font-family: "Lato", sans-serif;
  681. }
  682. .sidenav {
  683. height: 100%;
  684. width: 250px;
  685. position: fixed;
  686. z-index: 1;
  687. top: 0;
  688. left: 0;
  689. background: linear-gradient(to bottom, #1c7ce0, #150051);
  690. overflow-x: hidden;
  691. transition: 0.5s;
  692. }
  693. .sidenav a {
  694. text-decoration: none;
  695. font-size: 25px;
  696. color: #818181;
  697. display: block;
  698. transition: 0.3s;
  699. }
  700. .sidenav a:hover {
  701. color: #f1f1f1;
  702. }
  703. .sidenav .closebtn {
  704. position: absolute;
  705. top: 0;
  706. right: 25px;
  707. font-size: 36px;
  708. margin-left: 50px;
  709. }
  710. .container-login {
  711. width: 100vw;
  712. height: 100vh;
  713. display: grid;
  714. grid-template-columns: repeat(2, 1fr);
  715. grid-gap: 7rem;
  716. padding: 0rem;
  717. }
  718. .navbar-nav button {
  719. background: white;
  720. border: none;
  721. outline: none;
  722. }
  723. .img-wave {
  724. position: fixed;
  725. bottom: 0;
  726. left: 0;
  727. height: 100%;
  728. z-index: -1;
  729. }
  730. .img-wave-profile {
  731. height: 80%;
  732. }
  733. .row-img {
  734. position: relative;
  735. display: flex;
  736. justify-content: center;
  737. align-items: center;
  738. background-image: linear-gradient(to right bottom, rgba(#10448e, 0.7), rgba(#10448e, 0.7));
  739. background-size: cover;
  740. background-position: center;
  741. overflow: hidden;
  742. .video {
  743. height: 100%;
  744. z-index: -1;
  745. position: absolute;
  746. left: -10%;
  747. top: 0;
  748. }
  749. .row-img-box {
  750. color: white;
  751. }
  752. .row-img-txt {
  753. position: absolute;
  754. bottom: 2rem;
  755. color: white;
  756. left: 2rem;
  757. font-size: 1.3rem;
  758. }
  759. }
  760. .row-login {
  761. display: flex;
  762. justify-content: flex-start;
  763. align-items: center;
  764. text-align: center;
  765. position: relative;
  766. .title {
  767. position: relative;
  768. color: #052859;
  769. &::after {
  770. position: absolute;
  771. content: "";
  772. left: 45%;
  773. top: 20%;
  774. width: 10%;
  775. height: 100%;
  776. border-bottom: 4px solid #052859;
  777. }
  778. }
  779. .login-top {
  780. position: absolute;
  781. right: 1rem;
  782. top: 1rem;
  783. .navbar-nav {
  784. flex-direction: row;
  785. .nav-item {
  786. margin: 0 0.5rem;
  787. a {
  788. color: black;
  789. }
  790. }
  791. }
  792. }
  793. }
  794. .login-content {
  795. width: 80%;
  796. min-width: 350px;
  797. box-shadow: 0 0 12px 5px rgb(221, 221, 221);
  798. padding: 1.5rem;
  799. border-radius: 2rem;
  800. }
  801. .link_privacy {
  802. color: black;
  803. }
  804. .login-content img {
  805. height: 80px;
  806. }
  807. .row-img img {
  808. width: 450px;
  809. }
  810. .login-content .form-floating input {
  811. border: none;
  812. border-bottom: 2px solid #d9d9d9;
  813. border-radius: 0;
  814. }
  815. .login-content .form-floating input:focus {
  816. box-shadow: none;
  817. }
  818. .login-content #btn_login {
  819. background: linear-gradient(90deg, #0162c8, #55e7fc);
  820. font-weight: bold;
  821. color: white;
  822. border: 0 none;
  823. border-radius: 40px;
  824. cursor: pointer;
  825. padding: 10px 50px;
  826. margin: 10px auto;
  827. display: block;
  828. }
  829. .login-content #btn_login:hover {
  830. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  831. }
  832. .login-content .btn-register {
  833. background: linear-gradient(90deg, #0162c8, #55e7fc);
  834. font-weight: bold;
  835. color: white;
  836. border: 0 none;
  837. border-radius: 40px;
  838. cursor: pointer;
  839. padding: 10px 50px;
  840. margin: 10px auto;
  841. display: block;
  842. }
  843. .login-content .btn-register:hover {
  844. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  845. }
  846. .login-content .nav-tabs {
  847. border-bottom: none;
  848. }
  849. .login-content .nav {
  850. flex-direction: column;
  851. align-items: center;
  852. }
  853. .login-content .nav-tabs .nav-link {
  854. color: grey;
  855. }
  856. .login-content .nav-tabs .nav-link.active {
  857. border-color: #fff;
  858. text-transform: uppercase;
  859. color: black;
  860. }
  861. .navbar .btn-gocreate {
  862. background: linear-gradient(90deg, #0162c8, #55e7fc);
  863. color: white;
  864. border: 0 none;
  865. border-radius: 40px;
  866. cursor: pointer;
  867. padding: 10px 50px;
  868. }
  869. .container-bg {
  870. position: absolute;
  871. width: 600px;
  872. height: 400px;
  873. right: 0;
  874. bottom: 0;
  875. z-index: -1;
  876. }
  877. .container-profile .card-profile {
  878. margin-top: 4rem;
  879. border-radius: 10px;
  880. padding: 2rem;
  881. text-align: center;
  882. box-shadow: 0px 0px 20px 1px rgb(180, 180, 180);
  883. }
  884. .container-profile .card-profile img {
  885. width: 120px;
  886. margin: 1rem auto;
  887. }
  888. .card-profile-txt {
  889. color: rgb(109, 109, 109);
  890. font-size: 1.2rem;
  891. font-weight: 500;
  892. }
  893. .card-profile-cnt {
  894. font-size: 1.5rem;
  895. font-weight: 700;
  896. }
  897. @media screen and (max-width: 900px) {
  898. .container-login {
  899. grid-template-columns: 1fr;
  900. }
  901. .row-img {
  902. display: none;
  903. }
  904. .img-wave {
  905. display: none;
  906. }
  907. .row-login {
  908. justify-content: center;
  909. }
  910. .container-bg {
  911. width: 400px;
  912. height: 300px;
  913. right: 0;
  914. bottom: 0;
  915. }
  916. }
  917. @media screen and (max-height: 450px) {
  918. .sidenav {
  919. padding-top: 15px;
  920. }
  921. .sidenav a {
  922. font-size: 18px;
  923. }
  924. }
  925. /* Pricing */
  926. .pricingTable {
  927. background: #fff;
  928. font-family: "Open Sans", sans-serif;
  929. text-align: center;
  930. padding: 30px 15px 15px;
  931. border-radius: 25px;
  932. overflow: hidden;
  933. position: relative;
  934. z-index: 1;
  935. }
  936. .pricingTable:before,
  937. .pricingTable:after {
  938. content: "";
  939. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  940. height: 170px;
  941. width: 150%;
  942. outline: 5px solid #fff;
  943. outline-offset: -10px;
  944. opacity: 0.9;
  945. transform: translateX(-50%) rotate(7deg);
  946. position: absolute;
  947. left: 50%;
  948. top: -65px;
  949. z-index: -1;
  950. }
  951. .pricingTable:after {
  952. height: 250px;
  953. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  954. top: auto;
  955. bottom: -150px;
  956. }
  957. .pricingTable .pricingTable-header {
  958. color: #fff;
  959. margin: 0 0 75px;
  960. }
  961. .pricingTable .title {
  962. font-size: 40px;
  963. font-weight: 700;
  964. text-transform: uppercase;
  965. letter-spacing: 1px;
  966. margin: 0;
  967. @media screen and(max-width:767px) {
  968. font-size: 30px;
  969. }
  970. }
  971. .pricingTable .pricing-content {
  972. text-align: left;
  973. padding: 0;
  974. margin: 0 0 10px;
  975. display: inline-block;
  976. }
  977. .pricingTable .pricing-content li {
  978. color: #333;
  979. font-size: 17px;
  980. font-weight: 500;
  981. line-height: 22px;
  982. text-transform: uppercase;
  983. padding: 0 40px 0 0;
  984. margin: 0 0 15px;
  985. list-style-position: inside;
  986. position: relative;
  987. }
  988. .pricingTable .pricing-content li:after {
  989. content: "\f00c";
  990. color: #e58e26;
  991. font-family: "Font Awesome 5 Free";
  992. font-size: 18px;
  993. font-weight: 900;
  994. position: absolute;
  995. top: 0;
  996. right: 0;
  997. }
  998. .pricingTable .pricing-content li.disable:after {
  999. content: "\f00d";
  1000. }
  1001. .pricingTable .price-value {
  1002. margin: 0 0 15px;
  1003. }
  1004. .pricingTable .price-title {
  1005. color: #c70039;
  1006. font-size: 30px;
  1007. text-align: left;
  1008. text-transform: uppercase;
  1009. line-height: 30px;
  1010. width: calc(100% - 130px);
  1011. padding: 15px 0 0;
  1012. display: inline-block;
  1013. }
  1014. .pricingTable .price-title b {
  1015. display: block;
  1016. }
  1017. .pricingTable .price-amount {
  1018. color: #3f64fa;
  1019. background: #fff;
  1020. font-size: 30px;
  1021. font-weight: 700;
  1022. line-height: 30px;
  1023. width: 120px;
  1024. height: 120px;
  1025. padding: 33px 10px 10px;
  1026. display: inline-block;
  1027. vertical-align: top;
  1028. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1029. position: relative;
  1030. z-index: 1;
  1031. }
  1032. .pricingTable .price-amount:before,
  1033. .pricingTable .price-amount:after {
  1034. content: "";
  1035. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1036. width: calc(100% - 12px);
  1037. height: calc(100% - 12px);
  1038. transform: translateX(-50%) translateY(-50%);
  1039. position: absolute;
  1040. top: 50%;
  1041. left: 50%;
  1042. z-index: -1;
  1043. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1044. }
  1045. .pricingTable .price-amount:after {
  1046. background: #fff;
  1047. width: calc(100% - 16px);
  1048. height: calc(100% - 16px);
  1049. }
  1050. .pricingTable .price-amount .duration {
  1051. font-size: 16px;
  1052. font-weight: 600;
  1053. text-transform: capitalize;
  1054. display: block;
  1055. }
  1056. .pricingTable .pricingTable-signup a {
  1057. color: #fff;
  1058. font-size: 20px;
  1059. font-weight: 700;
  1060. letter-spacing: 2px;
  1061. text-transform: uppercase;
  1062. padding: 10px 20px;
  1063. border: 2px solid #fff;
  1064. border-radius: 50px;
  1065. display: inline-block;
  1066. transition: all 0.3s;
  1067. }
  1068. .pricingTable .pricingTable-signup a:hover {
  1069. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1070. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1071. }
  1072. .pricingTable.green:before,
  1073. .pricingTable.green:after,
  1074. .pricingTable.green .price-amount:before {
  1075. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1076. }
  1077. .pricingTable.green .price-amount {
  1078. color: #109739;
  1079. }
  1080. .pricingTable.pink:before,
  1081. .pricingTable.pink:after,
  1082. .pricingTable.pink .price-amount:before {
  1083. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1084. }
  1085. .pricingTable.pink .price-amount {
  1086. color: #ed2e96;
  1087. }
  1088. @media only screen and (max-width: 990px) {
  1089. .pricingTable {
  1090. margin: 0 0 40px;
  1091. }
  1092. }
  1093. // new user_profile
  1094. .profile-bgimg{
  1095. @media screen and(max-width:$moblie) {
  1096. width: 100%;
  1097. height: 300px;
  1098. object-fit: cover;
  1099. display: none;
  1100. }
  1101. }
  1102. .profile-bgimg-m{
  1103. @media screen and(min-width:$desktop) {
  1104. display: none;
  1105. }
  1106. }
  1107. .navbar {
  1108. background: none !important;
  1109. }
  1110. .arrowdoup{
  1111. transform: rotate(180deg);
  1112. }
  1113. .arrowdown {
  1114. cursor: pointer;
  1115. }
  1116. .userprofile {
  1117. position: relative;
  1118. top: -80px;
  1119. z-index: 20;
  1120. @media screen and(max-width:$moblie) {
  1121. top:10px;
  1122. z-index: 0;
  1123. }
  1124. .userprofile-content {
  1125. width: 83vw;
  1126. @media screen and(max-width:$moblie) {
  1127. width: 95vw;
  1128. }
  1129. .user-information {
  1130. .information {
  1131. width: 50%;
  1132. margin: 0 auto;
  1133. @media screen and(max-width:$moblie) {
  1134. width: 100%;
  1135. }
  1136. h1{
  1137. color:#707070;
  1138. font-size: 56px;
  1139. }
  1140. .share{
  1141. font-size: 16px;
  1142. .facebook{
  1143. @media screen and(max-width:$moblie) {
  1144. left:15px;
  1145. top:1px;
  1146. }
  1147. }
  1148. a{
  1149. text-decoration: none;
  1150. color:#183790;
  1151. }
  1152. }
  1153. }
  1154. .card{
  1155. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1156. border-radius: 15px;
  1157. }
  1158. .check-history{
  1159. cursor: pointer;
  1160. }
  1161. .historical-record{
  1162. th{
  1163. border-bottom: none !important;
  1164. color:#183790;
  1165. font-weight: 900;
  1166. }
  1167. td{
  1168. font-size: 15px;
  1169. }
  1170. }
  1171. .draft {
  1172. color:#183790;
  1173. font-weight: 900;
  1174. }
  1175. .draft-table {
  1176. th {
  1177. border-bottom: none !important;
  1178. color:#183790;
  1179. font-weight: 900;
  1180. }
  1181. .draft-content {
  1182. &-icon {
  1183. cursor: pointer;
  1184. }
  1185. }
  1186. }
  1187. }
  1188. }
  1189. }
  1190. // 側邊欄選單
  1191. .sidenav {
  1192. width: 250px;
  1193. // position: fixed;
  1194. height: 100%;
  1195. z-index: 50;
  1196. top: 0;
  1197. left: 0;
  1198. overflow-x: hidden;
  1199. transition: 0.5s;
  1200. text-align: center;
  1201. @media screen and(max-width:767px) {
  1202. display: none;
  1203. }
  1204. .sidenav-content{
  1205. @media only screen and (min-width: 1439px) {
  1206. transform: scale(1);
  1207. }
  1208. @media only screen and (max-width: 1280px) {
  1209. margin-top: -50px;
  1210. transform: scale(0.85);
  1211. }
  1212. .choozmologo{
  1213. @media screen and(max-width:$moblie) {
  1214. margin-top: 10px;
  1215. }
  1216. }
  1217. .reply{
  1218. margin-left: 70px;
  1219. @media screen and(min-width:$desktop) {
  1220. display: none;
  1221. }
  1222. }
  1223. }
  1224. hr {
  1225. background: #fff;
  1226. opacity: 1 !important;
  1227. height: 1px;
  1228. width: 85%;
  1229. margin: 15px auto;
  1230. }
  1231. .sidebar {
  1232. width: 80%;
  1233. margin: 0 auto;
  1234. }
  1235. .user {
  1236. object-fit: cover;
  1237. width: 8vw;
  1238. @media screen and(max-width:767px) {
  1239. width: 30vw;
  1240. }
  1241. }
  1242. .user-name {
  1243. font-size: 1.5rem;
  1244. }
  1245. .navbar-nav {
  1246. flex-direction: row;
  1247. .btn-gocreate {
  1248. font-size: 1.7vmin;
  1249. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1250. // background:#31426C;
  1251. color: white;
  1252. border: 0 none;
  1253. border-radius: 10px;
  1254. cursor: pointer;
  1255. margin: 10px 3px;
  1256. display: inline;
  1257. @media screen and(max-width:$moblie) {
  1258. font-size: 3.5vmin;
  1259. }
  1260. }
  1261. .active {
  1262. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1263. }
  1264. }
  1265. a {
  1266. text-decoration: none;
  1267. font-size: 32px;
  1268. color: #f1f1f1;
  1269. display: block;
  1270. transition: 0.3s;
  1271. &:hover {
  1272. color: #818181;
  1273. }
  1274. }
  1275. .sidenav .closebtn {
  1276. position: absolute;
  1277. top: 0;
  1278. right: 25px;
  1279. font-size: 36px;
  1280. margin-left: 50px;
  1281. }
  1282. .nav-list {
  1283. color: white;
  1284. list-style: none;
  1285. text-align: center;
  1286. .nav-list-item {
  1287. font-size: 18px;
  1288. cursor: pointer;
  1289. position: relative;
  1290. }
  1291. .nav-list-item::after {
  1292. content: " ";
  1293. position: absolute;
  1294. width: 50%;
  1295. height: 100%;
  1296. left: 25%;
  1297. top: 5px;
  1298. border-bottom: 1px solid white;
  1299. opacity: 0;
  1300. transition: all 0.4s;
  1301. }
  1302. .nav-list-item:hover::after {
  1303. opacity: 1;
  1304. }
  1305. }
  1306. .right-text {
  1307. position: absolute;
  1308. bottom: 0;
  1309. left: 0;
  1310. color: #fff;
  1311. @media only screen and (max-width: 1280px) {
  1312. left: 10px;
  1313. }
  1314. a {
  1315. font-size: 16px;
  1316. display: inline;
  1317. margin: 2px;
  1318. img {
  1319. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1320. }
  1321. }
  1322. p{
  1323. @media only screen and (max-width: 1280px) {
  1324. font-size: 16px;
  1325. }
  1326. }
  1327. }
  1328. }
  1329. // 首頁價格介紹
  1330. .price-int {
  1331. padding-bottom: 10vw;
  1332. .price-content {
  1333. width: 80vw;
  1334. @media screen and(max-width:767px) {
  1335. width: 90vw;
  1336. }
  1337. h1 {
  1338. text-align: center;
  1339. font-weight: 900;
  1340. font-size: 2rem;
  1341. }
  1342. .price-content-1 {
  1343. margin-top: 50px;
  1344. h2 {
  1345. margin-top: 15px;
  1346. font-weight: 600;
  1347. font-size: 1.3rem;
  1348. @media screen and(max-width:767px) {
  1349. font-size: 5.5vmin;
  1350. }
  1351. }
  1352. ul {
  1353. text-align: left;
  1354. li {
  1355. list-style-type: disc;
  1356. @media screen and(max-width:767px) {
  1357. font-size: 4.5vmin;
  1358. }
  1359. }
  1360. }
  1361. .price-text{
  1362. padding-left: 80px;
  1363. }
  1364. }
  1365. .get-started{
  1366. border:none;
  1367. border-radius: 3rem;
  1368. padding: 1rem 2.5rem;
  1369. background: linear-gradient(20deg, #EA5413, #920783);
  1370. color:#fff;
  1371. font-size: 1.2rem;
  1372. font-weight: 900;
  1373. }
  1374. p{
  1375. font-size: 24px;
  1376. }
  1377. }
  1378. }
  1379. // 頁尾
  1380. .footer {
  1381. background-color: #F0F0F0;
  1382. padding:3rem;
  1383. padding-left: 13rem;
  1384. @media screen and(max-width:767px) {
  1385. padding: 0.5rem;
  1386. text-align: center;
  1387. padding-top: 3rem;
  1388. padding-left:0;
  1389. }
  1390. h5{
  1391. font-size: 16px;
  1392. font-weight: 700;
  1393. color:#555555;
  1394. }
  1395. }
  1396. .footer .row{
  1397. display: flex;
  1398. align-items: center;
  1399. }
  1400. .footer .footer-aigirl {
  1401. font-weight: 600;
  1402. font-size: 1.5rem;
  1403. margin-top: 1rem;
  1404. margin-bottom: 2.5rem;
  1405. color:#555555;
  1406. @media screen and(max-width:767px) {
  1407. font-size: 1.3rem;
  1408. margin-bottom: 2rem;
  1409. }
  1410. }
  1411. .footer .footer-follow {
  1412. font-size: 1rem;
  1413. margin-bottom: 1rem;
  1414. }
  1415. .footer-socials{
  1416. @media screen and(max-width:767px) {
  1417. margin-bottom: 2rem;
  1418. }
  1419. }
  1420. .footer .footer-socials a{
  1421. margin-right: 5px;
  1422. @media screen and(max-width:767px) {
  1423. margin-right: 10px;
  1424. }
  1425. }
  1426. .footer-contacts{
  1427. @media screen and(max-width:767px) {
  1428. font-size: 14px;
  1429. }
  1430. }