style.css 25 KB

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