style.css 28 KB

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