style.css 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680
  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. .btn-dismiss {
  580. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  581. background: linear-gradient(90deg, #0162c8, #55e7fc);
  582. font-weight: bold;
  583. color: white;
  584. border: 0 none;
  585. border-radius: 20px;
  586. cursor: pointer;
  587. padding: 10px 35px;
  588. margin: 10px auto;
  589. display: block;
  590. }
  591. #avatarmega .modal-content {
  592. background-color: transparent;
  593. border: none;
  594. }
  595. #avatarmega .modal-title {
  596. color: white;
  597. }
  598. #avatarmega .modal-header {
  599. position: absolute;
  600. top: -0.5rem;
  601. right: 1.5rem;
  602. }
  603. .linker__box {
  604. padding: 0.5rem 1rem;
  605. border-radius: 1rem;
  606. -webkit-box-shadow: 1px 1px 5px 1px #c9c9c9;
  607. box-shadow: 1px 1px 5px 1px #c9c9c9;
  608. width: -webkit-max-content;
  609. width: -moz-max-content;
  610. width: max-content;
  611. margin: 0 auto;
  612. display: none;
  613. }
  614. .linker__box p {
  615. margin-bottom: 0;
  616. color: gray;
  617. }
  618. .linker__box i {
  619. color: gray;
  620. position: relative;
  621. }
  622. .linker__box i::after {
  623. position: absolute;
  624. content: " ";
  625. right: -5px;
  626. top: -10%;
  627. border-right: 2px solid #a3a3a3;
  628. width: 1px;
  629. height: 120%;
  630. }
  631. .item_imgfr {
  632. width: 15%;
  633. height: 50px;
  634. border-radius: 50%;
  635. overflow: hidden;
  636. margin: auto 0.5rem;
  637. }
  638. .item_imgfr img {
  639. height: 100%;
  640. width: 100%;
  641. }
  642. .content-box {
  643. width: 75%;
  644. }
  645. .box-title {
  646. margin-bottom: 0.2rem;
  647. cursor: pointer;
  648. }
  649. .box-title:hover {
  650. color: grey;
  651. text-decoration: underline;
  652. }
  653. .box-link {
  654. cursor: pointer;
  655. }
  656. .img_uploader {
  657. display: none;
  658. }
  659. #msform input[type="text"].imgsrc {
  660. width: calc(100% - 8rem);
  661. margin-right: 5px;
  662. }
  663. .upload-btn {
  664. display: inline-block;
  665. width: 6rem;
  666. background-color: #75a7dd;
  667. color: white;
  668. padding: 0.4rem 0.5rem;
  669. font-size: 0.9rem;
  670. border-radius: 3px;
  671. -webkit-transition: all 0.3s;
  672. transition: all 0.3s;
  673. cursor: pointer;
  674. }
  675. .upload-btn img {
  676. width: 30px;
  677. height: 30px;
  678. }
  679. .upload-btn:hover {
  680. background-color: #3b86d6;
  681. }
  682. .add,
  683. .add-subline,
  684. .addimg {
  685. cursor: pointer;
  686. display: inline-block;
  687. width: 2rem;
  688. height: 2rem;
  689. background-color: #67abf3;
  690. font-size: 1.2rem;
  691. color: white;
  692. border-radius: 50%;
  693. -webkit-transition: all 0.3s;
  694. transition: all 0.3s;
  695. }
  696. .add:hover,
  697. .add-subline:hover,
  698. .addimg:hover {
  699. background-color: #398ee9;
  700. }
  701. body {
  702. font-family: "Lato", sans-serif;
  703. }
  704. .sidenav {
  705. height: 100%;
  706. width: 250px;
  707. position: fixed;
  708. z-index: 1;
  709. top: 0;
  710. left: 0;
  711. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  712. background: linear-gradient(to bottom, #1c7ce0, #150051);
  713. overflow-x: hidden;
  714. -webkit-transition: 0.5s;
  715. transition: 0.5s;
  716. }
  717. .sidenav a {
  718. text-decoration: none;
  719. font-size: 25px;
  720. color: #818181;
  721. display: block;
  722. -webkit-transition: 0.3s;
  723. transition: 0.3s;
  724. }
  725. .sidenav a:hover {
  726. color: #f1f1f1;
  727. }
  728. .sidenav .closebtn {
  729. position: absolute;
  730. top: 0;
  731. right: 25px;
  732. font-size: 36px;
  733. margin-left: 50px;
  734. }
  735. .container-login {
  736. width: 100vw;
  737. height: 100vh;
  738. display: -ms-grid;
  739. display: grid;
  740. -ms-grid-columns: (1fr)[2];
  741. grid-template-columns: repeat(2, 1fr);
  742. grid-gap: 7rem;
  743. padding: 0rem;
  744. }
  745. .navbar-nav button {
  746. background: white;
  747. border: none;
  748. outline: none;
  749. }
  750. .img-wave {
  751. position: fixed;
  752. bottom: 0;
  753. left: 0;
  754. height: 100%;
  755. z-index: -1;
  756. }
  757. .img-wave-profile {
  758. height: 80%;
  759. }
  760. .row-img {
  761. position: relative;
  762. display: -webkit-box;
  763. display: -ms-flexbox;
  764. display: flex;
  765. -webkit-box-pack: center;
  766. -ms-flex-pack: center;
  767. justify-content: center;
  768. -webkit-box-align: center;
  769. -ms-flex-align: center;
  770. align-items: center;
  771. background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(16, 68, 142, 0.7)), to(rgba(16, 68, 142, 0.7)));
  772. background-image: linear-gradient(to right bottom, rgba(16, 68, 142, 0.7), rgba(16, 68, 142, 0.7));
  773. background-size: cover;
  774. background-position: center;
  775. overflow: hidden;
  776. }
  777. .row-img .video {
  778. height: 100%;
  779. z-index: -1;
  780. position: absolute;
  781. left: -10%;
  782. top: 0;
  783. }
  784. .row-img .row-img-box {
  785. color: white;
  786. }
  787. .row-img .row-img-txt {
  788. position: absolute;
  789. bottom: 2rem;
  790. color: white;
  791. left: 2rem;
  792. font-size: 1.3rem;
  793. }
  794. .row-login {
  795. display: -webkit-box;
  796. display: -ms-flexbox;
  797. display: flex;
  798. -webkit-box-pack: start;
  799. -ms-flex-pack: start;
  800. justify-content: flex-start;
  801. -webkit-box-align: center;
  802. -ms-flex-align: center;
  803. align-items: center;
  804. text-align: center;
  805. position: relative;
  806. }
  807. .row-login .title {
  808. position: relative;
  809. color: #052859;
  810. }
  811. .row-login .title::after {
  812. position: absolute;
  813. content: "";
  814. left: 45%;
  815. top: 20%;
  816. width: 10%;
  817. height: 100%;
  818. border-bottom: 4px solid #052859;
  819. }
  820. .row-login .login-top {
  821. position: absolute;
  822. right: 1rem;
  823. top: 1rem;
  824. }
  825. .row-login .login-top .navbar-nav {
  826. -webkit-box-orient: horizontal;
  827. -webkit-box-direction: normal;
  828. -ms-flex-direction: row;
  829. flex-direction: row;
  830. }
  831. .row-login .login-top .navbar-nav .nav-item {
  832. margin: 0 0.5rem;
  833. }
  834. .row-login .login-top .navbar-nav .nav-item a {
  835. color: black;
  836. }
  837. .login-content {
  838. width: 80%;
  839. min-width: 350px;
  840. -webkit-box-shadow: 0 0 12px 5px #dddddd;
  841. box-shadow: 0 0 12px 5px #dddddd;
  842. padding: 1.5rem;
  843. border-radius: 2rem;
  844. }
  845. .link_privacy {
  846. color: black;
  847. }
  848. .login-content img {
  849. height: 80px;
  850. }
  851. .row-img img {
  852. width: 450px;
  853. }
  854. .login-content .form-floating input {
  855. border: none;
  856. border-bottom: 2px solid #d9d9d9;
  857. border-radius: 0;
  858. }
  859. .login-content .form-floating input:focus {
  860. -webkit-box-shadow: none;
  861. box-shadow: none;
  862. }
  863. .login-content #btn_login {
  864. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  865. background: linear-gradient(90deg, #0162c8, #55e7fc);
  866. font-weight: bold;
  867. color: white;
  868. border: 0 none;
  869. border-radius: 40px;
  870. cursor: pointer;
  871. padding: 10px 50px;
  872. margin: 10px auto;
  873. display: block;
  874. }
  875. .login-content #btn_login:hover {
  876. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  877. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  878. }
  879. .login-content .btn-register {
  880. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  881. background: linear-gradient(90deg, #0162c8, #55e7fc);
  882. font-weight: bold;
  883. color: white;
  884. border: 0 none;
  885. border-radius: 40px;
  886. cursor: pointer;
  887. padding: 10px 50px;
  888. margin: 10px auto;
  889. display: block;
  890. }
  891. .login-content .btn-register:hover {
  892. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  893. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  894. }
  895. .login-content .nav-tabs {
  896. border-bottom: none;
  897. }
  898. .login-content .nav {
  899. -webkit-box-orient: vertical;
  900. -webkit-box-direction: normal;
  901. -ms-flex-direction: column;
  902. flex-direction: column;
  903. -webkit-box-align: center;
  904. -ms-flex-align: center;
  905. align-items: center;
  906. }
  907. .login-content .nav-tabs .nav-link {
  908. color: grey;
  909. }
  910. .login-content .nav-tabs .nav-link.active {
  911. border-color: #fff;
  912. text-transform: uppercase;
  913. color: black;
  914. }
  915. .navbar .btn-gocreate {
  916. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  917. background: linear-gradient(90deg, #0162c8, #55e7fc);
  918. color: white;
  919. border: 0 none;
  920. border-radius: 40px;
  921. cursor: pointer;
  922. padding: 10px 50px;
  923. }
  924. .container-bg {
  925. position: absolute;
  926. width: 600px;
  927. height: 400px;
  928. right: 0;
  929. bottom: 0;
  930. z-index: -1;
  931. }
  932. .container-profile .card-profile {
  933. margin-top: 4rem;
  934. border-radius: 10px;
  935. padding: 2rem;
  936. text-align: center;
  937. -webkit-box-shadow: 0px 0px 20px 1px #b4b4b4;
  938. box-shadow: 0px 0px 20px 1px #b4b4b4;
  939. }
  940. .container-profile .card-profile img {
  941. width: 120px;
  942. margin: 1rem auto;
  943. }
  944. .card-profile-txt {
  945. color: #6d6d6d;
  946. font-size: 1.2rem;
  947. font-weight: 500;
  948. }
  949. .card-profile-cnt {
  950. font-size: 1.5rem;
  951. font-weight: 700;
  952. }
  953. @media screen and (max-width: 900px) {
  954. .container-login {
  955. -ms-grid-columns: 1fr;
  956. grid-template-columns: 1fr;
  957. }
  958. .row-img {
  959. display: none;
  960. }
  961. .img-wave {
  962. display: none;
  963. }
  964. .row-login {
  965. -webkit-box-pack: center;
  966. -ms-flex-pack: center;
  967. justify-content: center;
  968. }
  969. .container-bg {
  970. width: 400px;
  971. height: 300px;
  972. right: 0;
  973. bottom: 0;
  974. }
  975. }
  976. @media screen and (max-height: 450px) {
  977. .sidenav {
  978. padding-top: 15px;
  979. }
  980. .sidenav a {
  981. font-size: 18px;
  982. }
  983. }
  984. /* Pricing */
  985. .pricingTable {
  986. background: #fff;
  987. font-family: "Open Sans", sans-serif;
  988. text-align: center;
  989. padding: 30px 15px 15px;
  990. border-radius: 25px;
  991. overflow: hidden;
  992. position: relative;
  993. z-index: 1;
  994. }
  995. .pricingTable:before,
  996. .pricingTable:after {
  997. content: "";
  998. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  999. height: 170px;
  1000. width: 150%;
  1001. outline: 5px solid #fff;
  1002. outline-offset: -10px;
  1003. opacity: 0.9;
  1004. -webkit-transform: translateX(-50%) rotate(7deg);
  1005. transform: translateX(-50%) rotate(7deg);
  1006. position: absolute;
  1007. left: 50%;
  1008. top: -65px;
  1009. z-index: -1;
  1010. }
  1011. .pricingTable:after {
  1012. height: 250px;
  1013. -webkit-transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1014. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1015. top: auto;
  1016. bottom: -150px;
  1017. }
  1018. .pricingTable .pricingTable-header {
  1019. color: #fff;
  1020. margin: 0 0 75px;
  1021. }
  1022. .pricingTable .title {
  1023. font-size: 40px;
  1024. font-weight: 700;
  1025. text-transform: uppercase;
  1026. letter-spacing: 1px;
  1027. margin: 0;
  1028. }
  1029. @media screen and (max-width: 767px) {
  1030. .pricingTable .title {
  1031. font-size: 30px;
  1032. }
  1033. }
  1034. .pricingTable .pricing-content {
  1035. text-align: left;
  1036. padding: 0;
  1037. margin: 0 0 10px;
  1038. display: inline-block;
  1039. }
  1040. .pricingTable .pricing-content li {
  1041. color: #333;
  1042. font-size: 17px;
  1043. font-weight: 500;
  1044. line-height: 22px;
  1045. text-transform: uppercase;
  1046. padding: 0 40px 0 0;
  1047. margin: 0 0 15px;
  1048. list-style-position: inside;
  1049. position: relative;
  1050. }
  1051. .pricingTable .pricing-content li:after {
  1052. content: "\f00c";
  1053. color: #e58e26;
  1054. font-family: "Font Awesome 5 Free";
  1055. font-size: 18px;
  1056. font-weight: 900;
  1057. position: absolute;
  1058. top: 0;
  1059. right: 0;
  1060. }
  1061. .pricingTable .pricing-content li.disable:after {
  1062. content: "\f00d";
  1063. }
  1064. .pricingTable .price-value {
  1065. margin: 0 0 15px;
  1066. }
  1067. .pricingTable .price-title {
  1068. color: #c70039;
  1069. font-size: 30px;
  1070. text-align: left;
  1071. text-transform: uppercase;
  1072. line-height: 30px;
  1073. width: calc(100% - 130px);
  1074. padding: 15px 0 0;
  1075. display: inline-block;
  1076. }
  1077. .pricingTable .price-title b {
  1078. display: block;
  1079. }
  1080. .pricingTable .price-amount {
  1081. color: #3f64fa;
  1082. background: #fff;
  1083. font-size: 30px;
  1084. font-weight: 700;
  1085. line-height: 30px;
  1086. width: 120px;
  1087. height: 120px;
  1088. padding: 33px 10px 10px;
  1089. display: inline-block;
  1090. vertical-align: top;
  1091. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1092. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1093. position: relative;
  1094. z-index: 1;
  1095. }
  1096. .pricingTable .price-amount:before,
  1097. .pricingTable .price-amount:after {
  1098. content: "";
  1099. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1100. width: calc(100% - 12px);
  1101. height: calc(100% - 12px);
  1102. -webkit-transform: translateX(-50%) translateY(-50%);
  1103. transform: translateX(-50%) translateY(-50%);
  1104. position: absolute;
  1105. top: 50%;
  1106. left: 50%;
  1107. z-index: -1;
  1108. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1109. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1110. }
  1111. .pricingTable .price-amount:after {
  1112. background: #fff;
  1113. width: calc(100% - 16px);
  1114. height: calc(100% - 16px);
  1115. }
  1116. .pricingTable .price-amount .duration {
  1117. font-size: 16px;
  1118. font-weight: 600;
  1119. text-transform: capitalize;
  1120. display: block;
  1121. }
  1122. .pricingTable .pricingTable-signup a {
  1123. color: #fff;
  1124. font-size: 20px;
  1125. font-weight: 700;
  1126. letter-spacing: 2px;
  1127. text-transform: uppercase;
  1128. padding: 10px 20px;
  1129. border: 2px solid #fff;
  1130. border-radius: 50px;
  1131. display: inline-block;
  1132. -webkit-transition: all 0.3s;
  1133. transition: all 0.3s;
  1134. }
  1135. .pricingTable .pricingTable-signup a:hover {
  1136. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1137. -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1138. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1139. }
  1140. .pricingTable.green:before,
  1141. .pricingTable.green:after,
  1142. .pricingTable.green .price-amount:before {
  1143. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1144. }
  1145. .pricingTable.green .price-amount {
  1146. color: #109739;
  1147. }
  1148. .pricingTable.pink:before,
  1149. .pricingTable.pink:after,
  1150. .pricingTable.pink .price-amount:before {
  1151. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1152. }
  1153. .pricingTable.pink .price-amount {
  1154. color: #ed2e96;
  1155. }
  1156. @media only screen and (max-width: 990px) {
  1157. .pricingTable {
  1158. margin: 0 0 40px;
  1159. }
  1160. }
  1161. .navbar {
  1162. background: none !important;
  1163. }
  1164. .arrowdoup {
  1165. -webkit-transform: rotate(180deg);
  1166. transform: rotate(180deg);
  1167. }
  1168. .arrowdown {
  1169. cursor: pointer;
  1170. }
  1171. .userprofile {
  1172. position: relative;
  1173. top: -80px;
  1174. z-index: 20;
  1175. }
  1176. .userprofile .userprofile-content {
  1177. width: 83vw;
  1178. }
  1179. .userprofile .userprofile-content .user-information .information {
  1180. width: 50%;
  1181. margin: 0 auto;
  1182. }
  1183. .userprofile .userprofile-content .user-information .information h1 {
  1184. color: #707070;
  1185. font-size: 56px;
  1186. }
  1187. .userprofile .userprofile-content .user-information .information .share {
  1188. font-size: 16px;
  1189. }
  1190. .userprofile .userprofile-content .user-information .information .share a {
  1191. text-decoration: none;
  1192. color: #183790;
  1193. }
  1194. .userprofile .userprofile-content .user-information .card {
  1195. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1196. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1197. border-radius: 15px;
  1198. }
  1199. .userprofile .userprofile-content .user-information .check-history {
  1200. cursor: pointer;
  1201. }
  1202. .userprofile .userprofile-content .user-information .historical-record th {
  1203. border-bottom: none !important;
  1204. color: #183790;
  1205. font-weight: 900;
  1206. }
  1207. .userprofile .userprofile-content .user-information .historical-record td {
  1208. font-size: 15px;
  1209. }
  1210. .userprofile .userprofile-content .user-information .draft {
  1211. color: #183790;
  1212. font-weight: 900;
  1213. }
  1214. .userprofile .userprofile-content .user-information .draft-table th {
  1215. border-bottom: none !important;
  1216. color: #183790;
  1217. font-weight: 900;
  1218. }
  1219. .userprofile .userprofile-content .user-information .draft-table .draft-content-icon {
  1220. cursor: pointer;
  1221. }
  1222. .sidenav {
  1223. height: 100%;
  1224. width: 250px;
  1225. position: fixed;
  1226. z-index: 50;
  1227. top: 0;
  1228. left: 0;
  1229. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  1230. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1231. overflow-x: hidden;
  1232. -webkit-transition: 0.5s;
  1233. transition: 0.5s;
  1234. text-align: center;
  1235. }
  1236. .sidenav hr {
  1237. background: #fff;
  1238. opacity: 1 !important;
  1239. height: 1px;
  1240. width: 85%;
  1241. margin: 15px auto;
  1242. }
  1243. .sidenav .sidebar {
  1244. width: 80%;
  1245. margin: 0 auto;
  1246. }
  1247. .sidenav .user {
  1248. -o-object-fit: cover;
  1249. object-fit: cover;
  1250. width: 100px;
  1251. }
  1252. .sidenav .user-name {
  1253. font-size: 1.5rem;
  1254. }
  1255. .sidenav .navbar-nav {
  1256. -webkit-box-orient: horizontal;
  1257. -webkit-box-direction: normal;
  1258. -ms-flex-direction: row;
  1259. flex-direction: row;
  1260. }
  1261. .sidenav .navbar-nav .btn-gocreate {
  1262. font-size: 14px;
  1263. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1264. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1265. color: white;
  1266. border: 0 none;
  1267. border-radius: 10px;
  1268. cursor: pointer;
  1269. margin: 10px 3px;
  1270. display: inline;
  1271. }
  1272. .sidenav .navbar-nav .active {
  1273. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1274. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1275. }
  1276. .sidenav a {
  1277. text-decoration: none;
  1278. font-size: 32px;
  1279. color: #f1f1f1;
  1280. display: block;
  1281. -webkit-transition: 0.3s;
  1282. transition: 0.3s;
  1283. }
  1284. .sidenav a:hover {
  1285. color: #818181;
  1286. }
  1287. .sidenav .sidenav .closebtn {
  1288. position: absolute;
  1289. top: 0;
  1290. right: 25px;
  1291. font-size: 36px;
  1292. margin-left: 50px;
  1293. }
  1294. .sidenav .nav-list {
  1295. color: white;
  1296. list-style: none;
  1297. text-align: center;
  1298. }
  1299. .sidenav .nav-list .nav-list-item {
  1300. font-size: 1.2rem;
  1301. cursor: pointer;
  1302. position: relative;
  1303. }
  1304. .sidenav .nav-list .nav-list-item::after {
  1305. content: " ";
  1306. position: absolute;
  1307. width: 50%;
  1308. height: 100%;
  1309. left: 25%;
  1310. top: 5px;
  1311. border-bottom: 1px solid white;
  1312. opacity: 0;
  1313. -webkit-transition: all 0.4s;
  1314. transition: all 0.4s;
  1315. }
  1316. .sidenav .nav-list .nav-list-item:hover::after {
  1317. opacity: 1;
  1318. }
  1319. .sidenav .right-text {
  1320. position: absolute;
  1321. bottom: 0;
  1322. left: 0;
  1323. color: #fff;
  1324. }
  1325. .sidenav .right-text a {
  1326. font-size: 18px;
  1327. display: inline;
  1328. margin: 2px;
  1329. }
  1330. .sidenav .right-text a img {
  1331. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1332. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1333. }
  1334. .price-int {
  1335. padding-bottom: 10vw;
  1336. }
  1337. .price-int .price-content {
  1338. width: 80vw;
  1339. }
  1340. @media screen and (max-width: 767px) {
  1341. .price-int .price-content {
  1342. width: 90vw;
  1343. }
  1344. }
  1345. .price-int .price-content h1 {
  1346. text-align: center;
  1347. font-weight: 900;
  1348. font-size: 2rem;
  1349. }
  1350. .price-int .price-content .price-content-1 {
  1351. margin-top: 50px;
  1352. }
  1353. .price-int .price-content .price-content-1 h2 {
  1354. margin-top: 15px;
  1355. font-weight: 600;
  1356. font-size: 1.3rem;
  1357. }
  1358. @media screen and (max-width: 767px) {
  1359. .price-int .price-content .price-content-1 h2 {
  1360. font-size: 5.5vmin;
  1361. }
  1362. }
  1363. .price-int .price-content .price-content-1 ul {
  1364. text-align: left;
  1365. }
  1366. .price-int .price-content .price-content-1 ul li {
  1367. list-style-type: disc;
  1368. }
  1369. @media screen and (max-width: 767px) {
  1370. .price-int .price-content .price-content-1 ul li {
  1371. font-size: 4.5vmin;
  1372. }
  1373. }
  1374. .price-int .price-content .price-content-1 .price-text {
  1375. padding-left: 80px;
  1376. }
  1377. .price-int .price-content .get-started {
  1378. border: none;
  1379. border-radius: 3rem;
  1380. padding: 1rem 2.5rem;
  1381. background: linear-gradient(20deg, #EA5413, #920783);
  1382. color: #fff;
  1383. font-size: 1.2rem;
  1384. font-weight: 900;
  1385. }
  1386. .price-int .price-content p {
  1387. font-size: 24px;
  1388. }
  1389. .footer {
  1390. background-color: #F0F0F0;
  1391. padding: 3rem;
  1392. padding-left: 13rem;
  1393. }
  1394. @media screen and (max-width: 767px) {
  1395. .footer {
  1396. padding: 0.5rem;
  1397. text-align: center;
  1398. padding-top: 3rem;
  1399. padding-left: 0;
  1400. }
  1401. }
  1402. .footer h5 {
  1403. font-size: 16px;
  1404. font-weight: 700;
  1405. color: #555555;
  1406. }
  1407. .footer .row {
  1408. display: -webkit-box;
  1409. display: -ms-flexbox;
  1410. display: flex;
  1411. -webkit-box-align: center;
  1412. -ms-flex-align: center;
  1413. align-items: center;
  1414. }
  1415. .footer .footer-aigirl {
  1416. font-weight: 600;
  1417. font-size: 1.5rem;
  1418. margin-top: 1rem;
  1419. margin-bottom: 2.5rem;
  1420. color: #555555;
  1421. }
  1422. @media screen and (max-width: 767px) {
  1423. .footer .footer-aigirl {
  1424. font-size: 1.3rem;
  1425. margin-bottom: 2rem;
  1426. }
  1427. }
  1428. .footer .footer-follow {
  1429. font-size: 1rem;
  1430. margin-bottom: 1rem;
  1431. }
  1432. @media screen and (max-width: 767px) {
  1433. .footer-socials {
  1434. margin-bottom: 2rem;
  1435. }
  1436. }
  1437. .footer .footer-socials a {
  1438. margin-right: 5px;
  1439. }
  1440. @media screen and (max-width: 767px) {
  1441. .footer .footer-socials a {
  1442. margin-right: 10px;
  1443. }
  1444. }
  1445. @media screen and (max-width: 767px) {
  1446. .footer-contacts {
  1447. font-size: 14px;
  1448. }
  1449. }
  1450. /*# sourceMappingURL=style.css.map */