style.css 29 KB

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