style.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  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. @media screen and (min-width: 1025px) {
  48. .navbar .menu-bar {
  49. display: none;
  50. }
  51. }
  52. @media screen and (max-width: 767px) {
  53. .navbar-des {
  54. display: none;
  55. }
  56. }
  57. /* .imf {
  58. position: fixed;
  59. top: 0;
  60. left: 50%;
  61. transform: translateX(-50%);
  62. z-index: 3;
  63. } */
  64. .img_banner {
  65. background-image: url("images/banner_top1.jpg");
  66. background-repeat: no-repeat;
  67. background-size: contain;
  68. background-position: center;
  69. width: 100%;
  70. height: 65px;
  71. }
  72. /*form styles*/
  73. .img_logo {
  74. display: inline-block;
  75. margin: 0 auto;
  76. margin-bottom: 10px;
  77. }
  78. .title__block {
  79. display: -webkit-box;
  80. display: -ms-flexbox;
  81. display: flex;
  82. -webkit-box-pack: center;
  83. -ms-flex-pack: center;
  84. justify-content: center;
  85. -webkit-box-align: center;
  86. -ms-flex-align: center;
  87. align-items: center;
  88. margin: 0px auto;
  89. }
  90. .sub-logo {
  91. display: inline-block;
  92. font-weight: 700;
  93. font-size: 1.4rem;
  94. color: white;
  95. }
  96. .slogan {
  97. display: block;
  98. font-weight: 700;
  99. font-size: 1.2rem;
  100. color: white;
  101. }
  102. .notice_card {
  103. -webkit-box-sizing: border-box;
  104. box-sizing: border-box;
  105. width: 80%;
  106. margin: 0 10%;
  107. margin-bottom: 1.5rem;
  108. background: white;
  109. border: 0 none;
  110. border-radius: 3px;
  111. -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  112. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  113. padding: 10px 20px;
  114. line-height: 1.5rem;
  115. }
  116. #myProgress {
  117. width: 100%;
  118. background-color: #ddd;
  119. }
  120. #myBar {
  121. width: 10%;
  122. height: 30px;
  123. background-color: #1c7ce0;
  124. text-align: center;
  125. line-height: 30px;
  126. color: white;
  127. }
  128. .go_title {
  129. color: white;
  130. font-family: "Montserrat", sans-serif;
  131. padding: 1rem;
  132. }
  133. .nav-list {
  134. color: white;
  135. margin-top: 1.5rem;
  136. }
  137. .nav-list-item {
  138. font-size: 1.2rem;
  139. cursor: pointer;
  140. position: relative;
  141. }
  142. .nav-list-item::after {
  143. content: " ";
  144. position: absolute;
  145. width: 100%;
  146. height: 100%;
  147. left: 0;
  148. top: 0;
  149. border-bottom: 1px solid white;
  150. opacity: 0;
  151. -webkit-transition: all 0.4s;
  152. transition: all 0.4s;
  153. }
  154. .nav-list-item:hover::after {
  155. opacity: 1;
  156. }
  157. .loader {
  158. position: absolute;
  159. top: 30%;
  160. left: 45%;
  161. }
  162. .imgfr {
  163. width: 90px;
  164. height: 90px;
  165. border-radius: 50%;
  166. overflow: hidden;
  167. margin: 1rem auto 0 auto;
  168. cursor: pointer;
  169. }
  170. .card-title {
  171. font-family: "Montserrat", sans-serif;
  172. font-size: 1rem;
  173. }
  174. .strong {
  175. font-weight: 600;
  176. }
  177. .card {
  178. border: none;
  179. position: relative;
  180. }
  181. .card.active {
  182. border: 1px solid gray;
  183. }
  184. .card.active::before {
  185. position: absolute;
  186. content: "✓";
  187. bottom: 0;
  188. right: 5px;
  189. }
  190. .zoomin {
  191. display: none;
  192. position: absolute;
  193. bottom: 0;
  194. left: 0;
  195. }
  196. .script_err {
  197. display: none;
  198. }
  199. /* .history-modal {
  200. height: 80vh;
  201. }
  202. .history-modal .modal-content{
  203. height: 80vh;
  204. }
  205. .history-modal .modal-conten .modal-terms {
  206. height: 90%;
  207. overflow: scroll;
  208. } */
  209. .input-sec {
  210. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  211. -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  212. }
  213. .input-sec .remove-btn {
  214. position: absolute;
  215. right: .2rem;
  216. bottom: .2rem;
  217. font-size: .8rem;
  218. padding: .2rem;
  219. background-color: #cacaca;
  220. }
  221. .upload-cta.box-active {
  222. height: 80px;
  223. width: 80px;
  224. background-size: cover !important;
  225. background-repeat: no-repeat;
  226. border-radius: 1rem;
  227. }
  228. .history {
  229. height: 75vh;
  230. overflow: scroll;
  231. }
  232. .historyList-item {
  233. padding: 1rem;
  234. display: block;
  235. width: 80%;
  236. margin: 1rem auto;
  237. border-radius: 10px;
  238. display: -webkit-box;
  239. display: -ms-flexbox;
  240. display: flex;
  241. font-size: 0.9rem;
  242. -webkit-box-shadow: 1px 1px 4px 1px #cfcfcf;
  243. box-shadow: 1px 1px 4px 1px #cfcfcf;
  244. background-color: white;
  245. }
  246. .historyList-link {
  247. text-decoration: none;
  248. color: #494949;
  249. }
  250. .historyList-link:hover {
  251. color: #7c7c7c;
  252. }
  253. .listimg__fr {
  254. width: 50px;
  255. height: 50px;
  256. border-radius: 50%;
  257. overflow: hidden;
  258. margin: auto 0.5rem;
  259. }
  260. .listimg__fr img {
  261. width: 100%;
  262. height: 100%;
  263. }
  264. .content {
  265. width: calc(100% - 250px);
  266. }
  267. /*form styles*/
  268. #msform {
  269. max-width: 1000px;
  270. min-width: 370px;
  271. margin: 50px auto;
  272. margin-bottom: 20px;
  273. text-align: center;
  274. position: relative;
  275. }
  276. #msform fieldset {
  277. background: white;
  278. border: 0 none;
  279. border-radius: 3px;
  280. -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  281. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  282. padding: 20px 30px;
  283. -webkit-box-sizing: border-box;
  284. box-sizing: border-box;
  285. width: 80%;
  286. margin: 3rem 10%;
  287. /*stacking fieldsets above each other*/
  288. position: relative;
  289. }
  290. @media screen and (max-width: 767px) {
  291. #msform fieldset {
  292. width: 90%;
  293. margin: 3rem auto;
  294. padding: 10px 15px;
  295. }
  296. }
  297. /*Hide all except first fieldset*/
  298. /*inputs*/
  299. #msform input[type="text"],
  300. #msform textarea,
  301. #msform input[type="email"] {
  302. padding: 15px;
  303. border: 1px solid #ccc;
  304. border-radius: 3px;
  305. margin-bottom: 16px;
  306. width: 100%;
  307. -webkit-box-sizing: border-box;
  308. box-sizing: border-box;
  309. font-family: montserrat;
  310. color: #2c3e50;
  311. font-size: 14px;
  312. }
  313. #msform input[type="text"],
  314. #msform textarea,
  315. #msform input[type="email"] {
  316. padding: 15px;
  317. border: 1px solid #ccc;
  318. border-radius: 3px;
  319. margin-bottom: 16px;
  320. width: 100%;
  321. -webkit-box-sizing: border-box;
  322. box-sizing: border-box;
  323. font-family: montserrat;
  324. color: #2c3e50;
  325. font-size: 14px;
  326. }
  327. #msform .img-inputTest input[type="text"],
  328. #msform .img-inputTest textarea,
  329. #msform .img-inputTest input[type="email"] {
  330. width: 80%;
  331. }
  332. /*buttons*/
  333. #msform .action-button {
  334. width: 100px;
  335. background: #1c7ce0;
  336. font-weight: bold;
  337. color: white;
  338. border: 0 none;
  339. border-radius: 1px;
  340. cursor: pointer;
  341. padding: 10px 5px;
  342. margin: 10px auto;
  343. display: block;
  344. }
  345. #msform .action-button:hover,
  346. #msform .action-button:focus {
  347. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  348. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  349. }
  350. #msform .next[disabled] {
  351. background-color: grey;
  352. }
  353. #msform .sender[disabled] {
  354. background-color: grey;
  355. }
  356. .draft-btn {
  357. padding: 10px 5px;
  358. background-color: #d1d1d1;
  359. display: inline-block;
  360. position: absolute;
  361. left: 1rem;
  362. bottom: 1rem;
  363. font-size: 1rem;
  364. -webkit-transition: all 0.3s;
  365. transition: all 0.3s;
  366. cursor: pointer;
  367. }
  368. .draft-btn:hover {
  369. background-color: #aaaaaa;
  370. }
  371. /*headings*/
  372. .fs-title {
  373. font-size: 15px;
  374. text-transform: uppercase;
  375. color: #2c3e50;
  376. margin-bottom: 10px;
  377. }
  378. .fs-subtitle {
  379. display: inline-block;
  380. font-weight: normal;
  381. font-size: 18px;
  382. color: #666;
  383. margin-bottom: 20px;
  384. padding-bottom: 3px;
  385. border-bottom: 2px solid #1c7ce0;
  386. margin-left: 2rem;
  387. margin-right: 2rem;
  388. }
  389. .fs-label {
  390. display: block;
  391. text-align: left;
  392. margin-bottom: 8px;
  393. }
  394. .fs-label > i {
  395. margin-right: 3px;
  396. }
  397. /*progressbar*/
  398. #progressbar {
  399. margin-bottom: 30px;
  400. overflow: hidden;
  401. /*CSS counters to number the steps*/
  402. counter-reset: step;
  403. }
  404. #progressbar li {
  405. list-style-type: none;
  406. color: black;
  407. text-transform: uppercase;
  408. font-size: 12px;
  409. width: 33.33%;
  410. float: left;
  411. position: relative;
  412. }
  413. #progressbar li:before {
  414. content: counter(step);
  415. counter-increment: step;
  416. width: 20px;
  417. line-height: 20px;
  418. display: block;
  419. font-size: 12px;
  420. color: #333;
  421. background: white;
  422. border-radius: 3px;
  423. margin: 0 auto 5px auto;
  424. }
  425. /*progressbar connectors*/
  426. #progressbar li:after {
  427. content: "";
  428. width: 100%;
  429. height: 2px;
  430. background: white;
  431. position: absolute;
  432. left: -50%;
  433. top: 9px;
  434. z-index: -1;
  435. /*put it behind the numbers*/
  436. }
  437. #progressbar li:first-child:after {
  438. /*connector not needed before the first step*/
  439. content: none;
  440. }
  441. /*marking active/completed steps green*/
  442. /*The number of the step and the connector before it = green*/
  443. #progressbar li.active:before,
  444. #progressbar li.active:after {
  445. background: #27ae60;
  446. color: white;
  447. }
  448. p.error-text {
  449. bottom: -23px;
  450. left: 24px;
  451. color: rgba(255, 0, 0, 0.7);
  452. font-size: 0.8em;
  453. margin-bottom: 0;
  454. }
  455. #term-error {
  456. color: rgba(255, 0, 0, 0.7);
  457. font-size: 0.8em;
  458. bottom: -23px;
  459. left: 24px;
  460. }
  461. select {
  462. padding: 15px;
  463. border: 1px solid #ccc;
  464. border-radius: 3px;
  465. margin-bottom: 10px;
  466. width: 100%;
  467. -webkit-box-sizing: border-box;
  468. box-sizing: border-box;
  469. font-family: montserrat;
  470. color: #2c3e50;
  471. font-size: 13px;
  472. background-color: transparent;
  473. }
  474. .pl-0 {
  475. padding-left: 0;
  476. }
  477. .terms {
  478. font-size: 0.9rem;
  479. width: 95%;
  480. min-width: 250px;
  481. height: auto;
  482. overflow: scroll;
  483. margin-bottom: 1rem;
  484. margin-left: auto;
  485. margin-right: auto;
  486. border: 1px solid #a3a3a3;
  487. line-height: 1.5rem;
  488. }
  489. .term-link a {
  490. text-decoration: none;
  491. color: black;
  492. }
  493. .h2 {
  494. text-align: center;
  495. font-size: 1.2rem;
  496. font-weight: 500;
  497. margin-top: 2rem;
  498. }
  499. .left_align {
  500. font-size: 18px;
  501. text-align: left;
  502. }
  503. #overlay {
  504. position: fixed;
  505. /* Sit on top of the page content */
  506. display: none;
  507. width: 100%;
  508. height: 100%;
  509. top: 0;
  510. left: 0;
  511. right: 0;
  512. bottom: 0;
  513. background-color: rgba(0, 0, 0, 0.5);
  514. z-index: 2;
  515. cursor: pointer;
  516. }
  517. .thankyou {
  518. margin: auto;
  519. min-width: 350px;
  520. height: 250px;
  521. margin-top: 190px;
  522. background: #fff;
  523. padding: 15px 20px;
  524. line-height: 25px;
  525. border-radius: 4px;
  526. text-align: center;
  527. }
  528. .thankyou input {
  529. margin-top: 40px;
  530. }
  531. .thankyou h3 {
  532. font-size: 2rem;
  533. font-weight: 700;
  534. color: #21ba45;
  535. line-height: 2.5rem;
  536. margin-bottom: 1.5rem;
  537. }
  538. .check_button {
  539. display: none;
  540. }
  541. .fs-label-type {
  542. background: transparent;
  543. padding: 5px;
  544. border: 1px solid black;
  545. border-radius: 5px;
  546. display: inline-block;
  547. }
  548. .check_button:checked + .fs-label-type {
  549. background-color: #27ae60;
  550. color: white;
  551. padding: 5px;
  552. border: 1px solid #27ae60;
  553. border-radius: 5px;
  554. }
  555. #checker1,
  556. #checker2 {
  557. display: inline;
  558. }
  559. .fs-label-info {
  560. background: transparent;
  561. padding: 5px;
  562. border: 1px solid black;
  563. border-radius: 5px;
  564. display: inline-block;
  565. margin-bottom: 8px;
  566. }
  567. input[type="radio"] {
  568. display: none;
  569. }
  570. input[type="radio"]:checked + .fs-label-info {
  571. background-color: #27ae60;
  572. color: white;
  573. padding: 5px;
  574. border: 1px solid #27ae60;
  575. border-radius: 5px;
  576. }
  577. input[type="checkbox"]:checked + .fs-label-info {
  578. background-color: #27ae60;
  579. color: white;
  580. padding: 5px;
  581. border: 1px solid #27ae60;
  582. border-radius: 5px;
  583. }
  584. .btn-exit {
  585. padding: 0.5rem 0.75rem;
  586. background-color: transparent;
  587. border: 1px solid black;
  588. margin-top: 0.3rem;
  589. }
  590. .btn-term-exit {
  591. padding: 0.5rem 0.75rem;
  592. background-color: transparent;
  593. border: 1px solid black;
  594. margin-top: 0.3rem;
  595. display: block;
  596. margin-left: auto;
  597. margin-right: auto;
  598. margin-bottom: 2rem;
  599. }
  600. footer {
  601. padding: 2rem;
  602. padding-top: 0.5rem;
  603. }
  604. .footer {
  605. display: -webkit-box;
  606. display: -ms-flexbox;
  607. display: flex;
  608. -webkit-box-pack: center;
  609. -ms-flex-pack: center;
  610. justify-content: center;
  611. }
  612. .img_fr {
  613. width: 80%;
  614. max-width: 850px;
  615. min-width: 300px;
  616. height: 60px;
  617. -o-object-fit: contain;
  618. object-fit: contain;
  619. -o-object-position: center;
  620. object-position: center;
  621. }
  622. .img_fr img {
  623. width: 100%;
  624. height: 90%;
  625. }
  626. #msform #userid,
  627. #msform #area {
  628. height: 0;
  629. padding: 0;
  630. margin: 0;
  631. border: none;
  632. }
  633. #msform input[type="text"].error {
  634. border-color: red;
  635. }
  636. .modal-header {
  637. border-bottom: none;
  638. }
  639. .btn-dismiss {
  640. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  641. background: linear-gradient(90deg, #0162c8, #55e7fc);
  642. font-weight: bold;
  643. color: white;
  644. border: 0 none;
  645. border-radius: 20px;
  646. cursor: pointer;
  647. padding: 10px 35px;
  648. margin: 10px auto;
  649. display: block;
  650. }
  651. #avatarmega .modal-content {
  652. background-color: transparent;
  653. border: none;
  654. }
  655. #avatarmega .modal-title {
  656. color: white;
  657. }
  658. #avatarmega .modal-header {
  659. position: absolute;
  660. top: -0.5rem;
  661. right: 1.5rem;
  662. }
  663. .linker__box {
  664. padding: 0.5rem 1rem;
  665. border-radius: 1rem;
  666. -webkit-box-shadow: 1px 1px 5px 1px #c9c9c9;
  667. box-shadow: 1px 1px 5px 1px #c9c9c9;
  668. width: -webkit-max-content;
  669. width: -moz-max-content;
  670. width: max-content;
  671. margin: 0 auto;
  672. display: none;
  673. }
  674. .linker__box p {
  675. margin-bottom: 0;
  676. color: gray;
  677. }
  678. .linker__box i {
  679. color: gray;
  680. position: relative;
  681. }
  682. .linker__box i::after {
  683. position: absolute;
  684. content: " ";
  685. right: -5px;
  686. top: -10%;
  687. border-right: 2px solid #a3a3a3;
  688. width: 1px;
  689. height: 120%;
  690. }
  691. .item_imgfr {
  692. width: 15%;
  693. height: 50px;
  694. border-radius: 50%;
  695. overflow: hidden;
  696. margin: auto 0.5rem;
  697. }
  698. .item_imgfr img {
  699. height: 100%;
  700. width: 100%;
  701. }
  702. .content-box {
  703. width: 75%;
  704. }
  705. .box-title {
  706. margin-bottom: 0.2rem;
  707. cursor: pointer;
  708. }
  709. .box-title:hover {
  710. color: grey;
  711. text-decoration: underline;
  712. }
  713. .box-link {
  714. cursor: pointer;
  715. }
  716. .img_uploader {
  717. display: none;
  718. }
  719. #msform input[type="text"].imgsrc {
  720. width: 80%;
  721. }
  722. .upload-btn {
  723. display: inline-block;
  724. width: 6rem;
  725. background-color: #75a7dd;
  726. color: white;
  727. padding: 0.4rem 0.5rem;
  728. font-size: 0.9rem;
  729. border-radius: 3px;
  730. -webkit-transition: all 0.3s;
  731. transition: all 0.3s;
  732. cursor: pointer;
  733. }
  734. #msform .input-sec {
  735. position: relative;
  736. }
  737. #msform .img-inputTest .upload-btn {
  738. display: inline-block;
  739. position: absolute;
  740. left: 0;
  741. top: 0;
  742. width: 20%;
  743. height: 100%;
  744. background-color: #75a7dd;
  745. background-position: center;
  746. background-size: cover;
  747. background-image: url(../img/upload_img.png);
  748. color: white;
  749. padding: 0.4rem 0.5rem;
  750. font-size: 0.9rem;
  751. -webkit-transition: all 0.3s;
  752. transition: all 0.3s;
  753. cursor: pointer;
  754. border-radius: 0;
  755. }
  756. .upload-btn img {
  757. width: 30px;
  758. height: 30px;
  759. }
  760. .upload-btn:hover {
  761. background-color: #3b86d6;
  762. }
  763. .add,
  764. .add-subline,
  765. .addimg,
  766. .addsec {
  767. cursor: pointer;
  768. display: inline-block;
  769. width: 2rem;
  770. height: 2rem;
  771. background-color: #67abf3;
  772. font-size: 1.2rem;
  773. color: white;
  774. border-radius: 50%;
  775. -webkit-transition: all 0.3s;
  776. transition: all 0.3s;
  777. }
  778. .add:hover,
  779. .add-subline:hover,
  780. .addimg:hover,
  781. .addsec:hover {
  782. background-color: #398ee9;
  783. }
  784. body {
  785. font-family: "Lato", sans-serif;
  786. }
  787. #mySidenav::-webkit-scrollbar-track {
  788. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  789. border-radius: 10px;
  790. background-color: #f5f5f5;
  791. }
  792. #mySidenav::-webkit-scrollbar {
  793. width: 12px;
  794. background-color: #f5f5f5;
  795. display: none;
  796. }
  797. #mySidenav::-webkit-scrollbar:hover {
  798. display: block;
  799. }
  800. #mySidenav::-webkit-scrollbar-thumb {
  801. border-radius: 10px;
  802. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  803. background-color: #aaa;
  804. }
  805. .sidenav a {
  806. text-decoration: none;
  807. font-size: 25px;
  808. color: #818181;
  809. display: block;
  810. -webkit-transition: 0.3s;
  811. transition: 0.3s;
  812. }
  813. .sidenav a:hover {
  814. color: #f1f1f1;
  815. }
  816. .sidenav .closebtn {
  817. position: absolute;
  818. top: 0;
  819. right: 25px;
  820. font-size: 36px;
  821. margin-left: 50px;
  822. }
  823. @media screen and (max-width: 576px) {
  824. #msform input[type="text"].imgsrc,
  825. #msform input[type="text"].txtsrc,
  826. #msform input[type="text"].subsrc {
  827. width: 100%;
  828. }
  829. #msform .input-sec > input[type="text"]:nth-of-type(1) {
  830. margin-top: 77%;
  831. }
  832. #msform .input_eng .input-sec > input[type="text"]:nth-of-type(1) {
  833. margin-top: 80%;
  834. }
  835. #msform .input-sec .upload-btn {
  836. width: 100%;
  837. height: 60%;
  838. }
  839. #msform .input_eng .input-sec .upload-btn {
  840. height: 45%;
  841. }
  842. }
  843. .container-login {
  844. width: 100vw;
  845. height: 100vh;
  846. display: -ms-grid;
  847. display: grid;
  848. -ms-grid-columns: (1fr)[2];
  849. grid-template-columns: repeat(2, 1fr);
  850. grid-gap: 7rem;
  851. padding: 0rem;
  852. }
  853. .navbar-nav button {
  854. background: white;
  855. border: none;
  856. outline: none;
  857. }
  858. .img-wave {
  859. position: fixed;
  860. bottom: 0;
  861. left: 0;
  862. height: 100%;
  863. z-index: -1;
  864. }
  865. .img-wave-profile {
  866. height: 80%;
  867. }
  868. .row-img {
  869. position: relative;
  870. display: -webkit-box;
  871. display: -ms-flexbox;
  872. display: flex;
  873. -webkit-box-pack: center;
  874. -ms-flex-pack: center;
  875. justify-content: center;
  876. -webkit-box-align: center;
  877. -ms-flex-align: center;
  878. align-items: center;
  879. background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(16, 68, 142, 0.7)), to(rgba(16, 68, 142, 0.7)));
  880. background-image: linear-gradient(to right bottom, rgba(16, 68, 142, 0.7), rgba(16, 68, 142, 0.7));
  881. background-size: cover;
  882. background-position: center;
  883. overflow: hidden;
  884. }
  885. .row-img .video {
  886. height: 100%;
  887. z-index: -1;
  888. position: absolute;
  889. left: -10%;
  890. top: 0;
  891. }
  892. .row-img .row-img-box {
  893. color: white;
  894. }
  895. .row-img .row-img-txt {
  896. position: absolute;
  897. bottom: 2rem;
  898. color: white;
  899. left: 2rem;
  900. font-size: 1.3rem;
  901. }
  902. .row-login {
  903. display: -webkit-box;
  904. display: -ms-flexbox;
  905. display: flex;
  906. -webkit-box-pack: start;
  907. -ms-flex-pack: start;
  908. justify-content: flex-start;
  909. -webkit-box-align: center;
  910. -ms-flex-align: center;
  911. align-items: center;
  912. text-align: center;
  913. position: relative;
  914. }
  915. @media screen and (max-width: 767px) {
  916. .row-login {
  917. -webkit-box-align: start;
  918. -ms-flex-align: start;
  919. align-items: start;
  920. margin-top: 50px;
  921. }
  922. }
  923. .row-login .title {
  924. position: relative;
  925. color: #052859;
  926. }
  927. .row-login .title::after {
  928. position: absolute;
  929. content: "";
  930. left: 45%;
  931. top: 20%;
  932. width: 10%;
  933. height: 100%;
  934. border-bottom: 4px solid #052859;
  935. }
  936. .row-login .login-top {
  937. position: absolute;
  938. right: 1rem;
  939. top: 1rem;
  940. }
  941. .row-login .login-top .navbar-nav {
  942. -webkit-box-orient: horizontal;
  943. -webkit-box-direction: normal;
  944. -ms-flex-direction: row;
  945. flex-direction: row;
  946. }
  947. .row-login .login-top .navbar-nav .nav-item {
  948. margin: 0 0.5rem;
  949. }
  950. .row-login .login-top .navbar-nav .nav-item a {
  951. color: black;
  952. }
  953. .btn-deleteSec {
  954. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  955. background: linear-gradient(90deg, #0162c8, #55e7fc);
  956. color: white;
  957. border: none;
  958. outline: none;
  959. }
  960. .btn-deleteSec:hover {
  961. color: white;
  962. }
  963. .login-content {
  964. width: 80%;
  965. min-width: 350px;
  966. -webkit-box-shadow: 0 0 12px 5px #dddddd;
  967. box-shadow: 0 0 12px 5px #dddddd;
  968. padding: 1.5rem;
  969. border-radius: 2rem;
  970. }
  971. .link_privacy {
  972. color: black;
  973. }
  974. .login-content img {
  975. height: 80px;
  976. }
  977. .row-img img {
  978. width: 450px;
  979. }
  980. .login-content .form-floating input {
  981. border: none;
  982. border-bottom: 2px solid #d9d9d9;
  983. border-radius: 0;
  984. }
  985. .login-content .form-floating input:focus {
  986. -webkit-box-shadow: none;
  987. box-shadow: none;
  988. }
  989. .login-content #btn_login {
  990. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  991. background: linear-gradient(90deg, #0162c8, #55e7fc);
  992. font-weight: bold;
  993. color: white;
  994. border: 0 none;
  995. border-radius: 40px;
  996. cursor: pointer;
  997. padding: 10px 50px;
  998. margin: 10px auto;
  999. display: block;
  1000. }
  1001. .login-content #btn_login:hover {
  1002. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  1003. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  1004. }
  1005. .login-content .btn-register {
  1006. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1007. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1008. font-weight: bold;
  1009. color: white;
  1010. border: 0 none;
  1011. border-radius: 40px;
  1012. cursor: pointer;
  1013. padding: 10px 50px;
  1014. margin: 10px auto;
  1015. display: block;
  1016. }
  1017. .login-content .btn-register:hover {
  1018. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  1019. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  1020. }
  1021. .login-content .nav-tabs {
  1022. border-bottom: none;
  1023. }
  1024. .login-content .nav {
  1025. -webkit-box-orient: vertical;
  1026. -webkit-box-direction: normal;
  1027. -ms-flex-direction: column;
  1028. flex-direction: column;
  1029. -webkit-box-align: center;
  1030. -ms-flex-align: center;
  1031. align-items: center;
  1032. }
  1033. .login-content .nav-tabs .nav-link {
  1034. color: grey;
  1035. }
  1036. .login-content .nav-tabs .nav-link.active {
  1037. border-color: #fff;
  1038. text-transform: uppercase;
  1039. color: black;
  1040. }
  1041. .navbar .btn-gocreate {
  1042. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1043. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1044. color: white;
  1045. border: 0 none;
  1046. border-radius: 40px;
  1047. cursor: pointer;
  1048. padding: 10px 50px;
  1049. }
  1050. .container-bg {
  1051. position: absolute;
  1052. width: 600px;
  1053. height: 400px;
  1054. right: 0;
  1055. bottom: 0;
  1056. z-index: -1;
  1057. }
  1058. .container-profile .card-profile {
  1059. margin-top: 4rem;
  1060. border-radius: 10px;
  1061. padding: 2rem;
  1062. text-align: center;
  1063. -webkit-box-shadow: 0px 0px 20px 1px #b4b4b4;
  1064. box-shadow: 0px 0px 20px 1px #b4b4b4;
  1065. }
  1066. .container-profile .card-profile img {
  1067. width: 120px;
  1068. margin: 1rem auto;
  1069. }
  1070. .card-profile-txt {
  1071. color: #6d6d6d;
  1072. font-size: 1.2rem;
  1073. font-weight: 500;
  1074. }
  1075. .card-profile-cnt {
  1076. font-size: 1.5rem;
  1077. font-weight: 700;
  1078. }
  1079. @media screen and (max-width: 900px) {
  1080. .container-login {
  1081. -ms-grid-columns: 1fr;
  1082. grid-template-columns: 1fr;
  1083. }
  1084. .row-img {
  1085. display: none;
  1086. }
  1087. .img-wave {
  1088. display: none;
  1089. }
  1090. .row-login {
  1091. -webkit-box-pack: center;
  1092. -ms-flex-pack: center;
  1093. justify-content: center;
  1094. }
  1095. .container-bg {
  1096. width: 400px;
  1097. height: 300px;
  1098. right: 0;
  1099. bottom: 0;
  1100. }
  1101. }
  1102. .psd_visible,
  1103. .psd_invisible {
  1104. right: 0.5rem;
  1105. top: 50%;
  1106. -webkit-transform: translateY(-50%);
  1107. transform: translateY(-50%);
  1108. }
  1109. .register__policies {
  1110. font-size: 12px;
  1111. color: gray;
  1112. }
  1113. @media screen and (max-height: 450px) {
  1114. .sidenav {
  1115. padding-top: 15px;
  1116. }
  1117. .sidenav a {
  1118. font-size: 18px;
  1119. }
  1120. }
  1121. /* Pricing */
  1122. @media screen and (max-width: 767px) {
  1123. #pricing-nav {
  1124. display: none;
  1125. }
  1126. }
  1127. .pricingTable {
  1128. background: #fff;
  1129. font-family: "Open Sans", sans-serif;
  1130. text-align: center;
  1131. padding: 30px 15px 15px;
  1132. border-radius: 25px;
  1133. overflow: hidden;
  1134. position: relative;
  1135. z-index: 1;
  1136. }
  1137. .pricingTable:before,
  1138. .pricingTable:after {
  1139. content: "";
  1140. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1141. height: 170px;
  1142. width: 150%;
  1143. outline: 5px solid #fff;
  1144. outline-offset: -10px;
  1145. opacity: 0.9;
  1146. -webkit-transform: translateX(-50%) rotate(7deg);
  1147. transform: translateX(-50%) rotate(7deg);
  1148. position: absolute;
  1149. left: 50%;
  1150. top: -65px;
  1151. z-index: -1;
  1152. }
  1153. .pricingTable:after {
  1154. height: 250px;
  1155. -webkit-transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1156. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1157. top: auto;
  1158. bottom: -150px;
  1159. }
  1160. .pricingTable .pricingTable-header {
  1161. color: #fff;
  1162. margin: 0 0 75px;
  1163. }
  1164. .pricingTable .title {
  1165. font-size: 40px;
  1166. font-weight: 700;
  1167. text-transform: uppercase;
  1168. letter-spacing: 1px;
  1169. margin: 0;
  1170. }
  1171. @media screen and (max-width: 767px) {
  1172. .pricingTable .title {
  1173. font-size: 30px;
  1174. }
  1175. }
  1176. .pricingTable .pricing-content {
  1177. text-align: left;
  1178. padding: 0;
  1179. margin: 0 0 10px;
  1180. display: inline-block;
  1181. }
  1182. .pricingTable .pricing-content li {
  1183. color: #333;
  1184. font-size: 17px;
  1185. font-weight: 500;
  1186. line-height: 22px;
  1187. text-transform: uppercase;
  1188. padding: 0 40px 0 0;
  1189. margin: 0 0 15px;
  1190. list-style-position: inside;
  1191. position: relative;
  1192. }
  1193. .pricingTable .pricing-content li:after {
  1194. content: "\f00c";
  1195. color: #e58e26;
  1196. font-family: "Font Awesome 5 Free";
  1197. font-size: 18px;
  1198. font-weight: 900;
  1199. position: absolute;
  1200. top: 0;
  1201. right: 0;
  1202. }
  1203. .pricingTable .pricing-content li.disable:after {
  1204. content: "\f00d";
  1205. }
  1206. .pricingTable .price-value {
  1207. margin: 0 0 15px;
  1208. }
  1209. .pricingTable .price-title {
  1210. color: #c70039;
  1211. font-size: 30px;
  1212. text-align: left;
  1213. text-transform: uppercase;
  1214. line-height: 30px;
  1215. width: calc(100% - 130px);
  1216. padding: 15px 0 0;
  1217. display: inline-block;
  1218. }
  1219. .pricingTable .price-title b {
  1220. display: block;
  1221. }
  1222. .pricingTable .price-amount {
  1223. color: #3f64fa;
  1224. background: #fff;
  1225. font-size: 30px;
  1226. font-weight: 700;
  1227. line-height: 30px;
  1228. width: 120px;
  1229. height: 120px;
  1230. padding: 33px 10px 10px;
  1231. display: inline-block;
  1232. vertical-align: top;
  1233. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1234. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1235. position: relative;
  1236. z-index: 1;
  1237. }
  1238. .pricingTable .price-amount:before,
  1239. .pricingTable .price-amount:after {
  1240. content: "";
  1241. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1242. width: calc(100% - 12px);
  1243. height: calc(100% - 12px);
  1244. -webkit-transform: translateX(-50%) translateY(-50%);
  1245. transform: translateX(-50%) translateY(-50%);
  1246. position: absolute;
  1247. top: 50%;
  1248. left: 50%;
  1249. z-index: -1;
  1250. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1251. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1252. }
  1253. .pricingTable .price-amount:after {
  1254. background: #fff;
  1255. width: calc(100% - 16px);
  1256. height: calc(100% - 16px);
  1257. }
  1258. .pricingTable .price-amount .duration {
  1259. font-size: 16px;
  1260. font-weight: 600;
  1261. text-transform: capitalize;
  1262. display: block;
  1263. }
  1264. .pricingTable .pricingTable-signup a {
  1265. color: #fff;
  1266. font-size: 20px;
  1267. font-weight: 700;
  1268. letter-spacing: 2px;
  1269. text-transform: uppercase;
  1270. padding: 10px 20px;
  1271. border: 2px solid #fff;
  1272. border-radius: 50px;
  1273. display: inline-block;
  1274. -webkit-transition: all 0.3s;
  1275. transition: all 0.3s;
  1276. }
  1277. .pricingTable .pricingTable-signup a:hover {
  1278. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1279. -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1280. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1281. }
  1282. .pricingTable.green:before,
  1283. .pricingTable.green:after,
  1284. .pricingTable.green .price-amount:before {
  1285. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1286. }
  1287. .pricingTable.green .price-amount {
  1288. color: #109739;
  1289. }
  1290. .pricingTable.pink:before,
  1291. .pricingTable.pink:after,
  1292. .pricingTable.pink .price-amount:before {
  1293. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1294. }
  1295. .pricingTable.pink .price-amount {
  1296. color: #ed2e96;
  1297. }
  1298. @media only screen and (max-width: 990px) {
  1299. .pricingTable {
  1300. margin: 0 0 40px;
  1301. }
  1302. }
  1303. @media screen and (max-width: 767px) {
  1304. .profile-bgimg {
  1305. width: 100%;
  1306. height: 300px;
  1307. -o-object-fit: cover;
  1308. object-fit: cover;
  1309. display: none;
  1310. }
  1311. }
  1312. @media screen and (min-width: 1025px) {
  1313. .profile-bgimg-m {
  1314. display: none;
  1315. }
  1316. }
  1317. .navbar {
  1318. background: none !important;
  1319. }
  1320. .arrowdoup {
  1321. -webkit-transform: rotate(180deg);
  1322. transform: rotate(180deg);
  1323. }
  1324. .arrowdown {
  1325. cursor: pointer;
  1326. }
  1327. .userprofile {
  1328. position: relative;
  1329. top: -80px;
  1330. z-index: 20;
  1331. }
  1332. @media screen and (max-width: 767px) {
  1333. .userprofile {
  1334. top: 10px;
  1335. z-index: 0;
  1336. }
  1337. }
  1338. .userprofile .userprofile-content {
  1339. width: 83vw;
  1340. }
  1341. @media screen and (max-width: 767px) {
  1342. .userprofile .userprofile-content {
  1343. width: 95vw;
  1344. }
  1345. }
  1346. .userprofile .userprofile-content .user-information .information {
  1347. width: 50%;
  1348. margin: 0 auto;
  1349. }
  1350. @media screen and (max-width: 767px) {
  1351. .userprofile .userprofile-content .user-information .information {
  1352. width: 100%;
  1353. }
  1354. }
  1355. .userprofile .userprofile-content .user-information .information h1 {
  1356. color: #707070;
  1357. font-size: 56px;
  1358. }
  1359. .userprofile .userprofile-content .user-information .information .share {
  1360. font-size: 16px;
  1361. }
  1362. @media screen and (max-width: 767px) {
  1363. .userprofile .userprofile-content .user-information .information .share .facebook {
  1364. left: 15px;
  1365. top: 1px;
  1366. }
  1367. }
  1368. .userprofile .userprofile-content .user-information .information .share a {
  1369. text-decoration: none;
  1370. color: #183790;
  1371. }
  1372. .userprofile .userprofile-content .user-information .card {
  1373. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1374. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1375. border-radius: 15px;
  1376. }
  1377. .userprofile .userprofile-content .user-information .check-history {
  1378. cursor: pointer;
  1379. }
  1380. .userprofile .userprofile-content .user-information .historical-record th {
  1381. border-bottom: none !important;
  1382. color: #183790;
  1383. font-weight: 900;
  1384. }
  1385. .userprofile .userprofile-content .user-information .historical-record td {
  1386. font-size: 15px;
  1387. }
  1388. .userprofile .userprofile-content .user-information .draft {
  1389. color: #183790;
  1390. font-weight: 900;
  1391. }
  1392. .userprofile .userprofile-content .user-information .draft-table th {
  1393. border-bottom: none !important;
  1394. color: #183790;
  1395. font-weight: 900;
  1396. }
  1397. .userprofile .userprofile-content .user-information .draft-table .draft-content-icon {
  1398. cursor: pointer;
  1399. }
  1400. .userprofile .userprofile-content .user-information .share .form-control:hover,
  1401. .userprofile .userprofile-content .user-information .share .form-control:focus,
  1402. .userprofile .userprofile-content .user-information .share .form-control:active {
  1403. outline: none !important;
  1404. -webkit-box-shadow: none;
  1405. box-shadow: none;
  1406. }
  1407. .userprofile .userprofile-content .user-information .share .btn:hover,
  1408. .userprofile .userprofile-content .user-information .share .btn:focus,
  1409. .userprofile .userprofile-content .user-information .share .btn:active {
  1410. outline: none !important;
  1411. -webkit-box-shadow: none;
  1412. box-shadow: none;
  1413. }
  1414. .draft-table th {
  1415. border-bottom: none !important;
  1416. color: #183790;
  1417. font-weight: 900;
  1418. }
  1419. .draft-table .draft-content-icon {
  1420. cursor: pointer;
  1421. }
  1422. #draftModal .draft-table {
  1423. font-size: .9rem;
  1424. }
  1425. .sidenav {
  1426. width: 250px;
  1427. position: fixed;
  1428. height: 100%;
  1429. z-index: 50;
  1430. top: 0;
  1431. overflow-x: hidden;
  1432. -webkit-transition: 0.5s;
  1433. transition: 0.5s;
  1434. text-align: center;
  1435. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  1436. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1437. }
  1438. @media screen and (min-width: 1025px) {
  1439. .sidenav {
  1440. left: 0;
  1441. }
  1442. }
  1443. @media screen and (max-width: 767px) {
  1444. .sidenav {
  1445. display: none;
  1446. right: 0px;
  1447. }
  1448. }
  1449. @media screen and (min-width: 1025px) {
  1450. .sidenav .sidenav-content .close-btn {
  1451. display: none;
  1452. }
  1453. }
  1454. @media screen and (min-width: 1025px) {
  1455. .sidenav .sidenav-content .Mobile-nav {
  1456. display: none;
  1457. }
  1458. }
  1459. @media screen and (max-width: 767px) {
  1460. .sidenav .sidenav-content .choozmologo {
  1461. margin-top: 10px;
  1462. }
  1463. }
  1464. .sidenav .sidenav-content .reply {
  1465. margin-left: 70px;
  1466. }
  1467. @media screen and (min-width: 1025px) {
  1468. .sidenav .sidenav-content .reply {
  1469. display: none;
  1470. }
  1471. }
  1472. .sidenav hr {
  1473. background: #fff;
  1474. opacity: 1 !important;
  1475. height: 1px;
  1476. width: 85%;
  1477. margin: 15px auto;
  1478. }
  1479. .sidenav .sidebar {
  1480. width: 80%;
  1481. margin: 0 auto;
  1482. }
  1483. .sidenav .user {
  1484. -o-object-fit: cover;
  1485. object-fit: cover;
  1486. width: 8vw;
  1487. }
  1488. @media screen and (max-width: 767px) {
  1489. .sidenav .user {
  1490. width: 20vw;
  1491. }
  1492. }
  1493. .sidenav .user-name {
  1494. font-size: 1.5rem;
  1495. }
  1496. .sidenav .navbar-nav {
  1497. -webkit-box-orient: horizontal;
  1498. -webkit-box-direction: normal;
  1499. -ms-flex-direction: row;
  1500. flex-direction: row;
  1501. }
  1502. .sidenav .navbar-nav .btn-gocreate {
  1503. font-size: 1.7vmin;
  1504. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1505. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1506. color: white;
  1507. border: 0 none;
  1508. border-radius: 10px;
  1509. cursor: pointer;
  1510. margin: 10px 3px;
  1511. display: inline;
  1512. }
  1513. @media screen and (max-width: 767px) {
  1514. .sidenav .navbar-nav .btn-gocreate {
  1515. font-size: 3.5vmin;
  1516. }
  1517. }
  1518. .sidenav .navbar-nav .active {
  1519. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1520. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1521. }
  1522. .sidenav a {
  1523. text-decoration: none;
  1524. font-size: 32px;
  1525. color: #f1f1f1;
  1526. display: block;
  1527. -webkit-transition: 0.3s;
  1528. transition: 0.3s;
  1529. }
  1530. .sidenav a:hover {
  1531. color: #818181;
  1532. }
  1533. .sidenav .sidenav .closebtn {
  1534. position: absolute;
  1535. top: 0;
  1536. right: 25px;
  1537. font-size: 36px;
  1538. margin-left: 50px;
  1539. }
  1540. .sidenav .nav-list {
  1541. color: white;
  1542. list-style: none;
  1543. text-align: center;
  1544. }
  1545. .sidenav .nav-list .nav-list-item {
  1546. font-size: 18px;
  1547. cursor: pointer;
  1548. position: relative;
  1549. }
  1550. .sidenav .nav-list .nav-list-item::after {
  1551. content: " ";
  1552. position: absolute;
  1553. width: 50%;
  1554. height: 100%;
  1555. left: 25%;
  1556. top: 5px;
  1557. border-bottom: 1px solid white;
  1558. opacity: 0;
  1559. -webkit-transition: all 0.4s;
  1560. transition: all 0.4s;
  1561. }
  1562. .sidenav .nav-list .nav-list-item:hover::after {
  1563. opacity: 1;
  1564. }
  1565. .sidenav .right-text {
  1566. padding-top: 150px;
  1567. color: #fff;
  1568. }
  1569. @media screen and (max-width: 767px) {
  1570. .sidenav .right-text {
  1571. padding-top: 50px;
  1572. }
  1573. }
  1574. .sidenav .right-text a {
  1575. font-size: 16px;
  1576. display: inline;
  1577. margin: 2px;
  1578. }
  1579. .sidenav .right-text a img {
  1580. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1581. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1582. }
  1583. @media only screen and (max-width: 1280px) {
  1584. .sidenav .right-text p {
  1585. font-size: 16px;
  1586. }
  1587. }
  1588. .index-banner {
  1589. width: 85vw;
  1590. margin: 0 auto;
  1591. margin-top: 50px;
  1592. }
  1593. @media screen and (max-width: 767px) {
  1594. .index-banner {
  1595. margin-top: 30px;
  1596. width: 100vw;
  1597. }
  1598. }
  1599. .index-banner .PC-img {
  1600. width: 100%;
  1601. }
  1602. @media screen and (max-width: 767px) {
  1603. .index-banner .PC-img {
  1604. margin-top: 30px;
  1605. width: 100vw;
  1606. }
  1607. }
  1608. .index-banner h1 {
  1609. font-size: 48px;
  1610. }
  1611. @media screen and (max-width: 767px) {
  1612. .index-banner h1 {
  1613. font-size: 36px;
  1614. text-align: center;
  1615. }
  1616. }
  1617. .index-banner p {
  1618. margin-top: 30px;
  1619. font-size: 24px;
  1620. width: 30vw;
  1621. }
  1622. @media screen and (max-width: 767px) {
  1623. .index-banner p {
  1624. width: 90vw;
  1625. font-size: 18px;
  1626. text-align: center;
  1627. margin: 0 auto;
  1628. }
  1629. }
  1630. .index-banner .index-CTA {
  1631. margin-top: 50px;
  1632. }
  1633. @media screen and (max-width: 767px) {
  1634. .index-banner .index-CTA {
  1635. margin-top: 30px;
  1636. text-align: center;
  1637. }
  1638. }
  1639. .index-banner .index-CTA .CTA-btnA {
  1640. margin-right: 10px;
  1641. }
  1642. .CTA-btnA {
  1643. text-decoration: none;
  1644. border-radius: 30px;
  1645. border: none;
  1646. padding: 10px;
  1647. background: #fff;
  1648. width: 200px;
  1649. color: #ea5413;
  1650. font-size: 24px;
  1651. }
  1652. @media screen and (max-width: 767px) {
  1653. .CTA-btnA {
  1654. margin: 10px;
  1655. }
  1656. }
  1657. .CTA-btnB {
  1658. text-decoration: none;
  1659. border-radius: 30px;
  1660. border: none;
  1661. padding: 10px;
  1662. background: #ea5413;
  1663. width: 200px;
  1664. color: #fff;
  1665. font-size: 24px;
  1666. }
  1667. @media screen and (max-width: 767px) {
  1668. .CTA-btnB {
  1669. margin: 10px;
  1670. }
  1671. }
  1672. .index-sec02 {
  1673. background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #d4daec), color-stop(80%, #fff));
  1674. background: linear-gradient(to top, #d4daec 80%, #fff 80% 100%);
  1675. padding-bottom: 50px;
  1676. }
  1677. @media screen and (max-width: 767px) {
  1678. .index-sec02 {
  1679. background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #d4daec), color-stop(30%, #fff));
  1680. background: linear-gradient(to top, #d4daec 30%, #fff 30% 100%);
  1681. padding-bottom: 10px;
  1682. }
  1683. }
  1684. .index-sec02 .make-video {
  1685. width: 90vw;
  1686. margin: 0 auto;
  1687. }
  1688. .index-sec02 .make-video .makeVideo-text {
  1689. margin-top: 150px;
  1690. }
  1691. .index-sec02 .make-video .makeVideo-text h1 {
  1692. font-size: 48px;
  1693. color: #2a3863;
  1694. }
  1695. @media screen and (max-width: 767px) {
  1696. .index-sec02 .make-video .makeVideo-text h1 {
  1697. font-size: 36px;
  1698. text-align: center;
  1699. }
  1700. }
  1701. .index-sec02 .make-video .makeVideo-text p {
  1702. margin-top: 30px;
  1703. font-size: 24px;
  1704. color: #2a3863;
  1705. }
  1706. @media screen and (max-width: 767px) {
  1707. .index-sec02 .make-video .makeVideo-text p {
  1708. font-size: 18px;
  1709. text-align: center;
  1710. }
  1711. }
  1712. .sec-usecase {
  1713. margin-top: 100px;
  1714. margin-bottom: 100px;
  1715. }
  1716. .sec-usecase h1 {
  1717. text-align: center;
  1718. font-weight: 900;
  1719. font-size: 2rem;
  1720. color: #2a3863;
  1721. }
  1722. .sec-usecase hr {
  1723. width: 7vw;
  1724. height: 6px;
  1725. background: #2a3863;
  1726. opacity: 1 !important;
  1727. margin: 0 auto;
  1728. }
  1729. @media screen and (max-width: 767px) {
  1730. .sec-usecase hr {
  1731. width: 15vw;
  1732. }
  1733. }
  1734. .sec-usecase .usecase-block {
  1735. border: none;
  1736. position: relative;
  1737. background-color: transparent;
  1738. z-index: 1;
  1739. margin-top: 30px;
  1740. }
  1741. @media screen and (max-width: 767px) {
  1742. .sec-usecase .usecase-block {
  1743. margin-top: 15px;
  1744. }
  1745. }
  1746. .sec-usecase .usecase-block::after {
  1747. position: absolute;
  1748. bottom: 1rem;
  1749. left: 5%;
  1750. width: 90%;
  1751. height: 10rem;
  1752. background-color: #d4daec;
  1753. content: " ";
  1754. z-index: -1;
  1755. border-radius: 2rem;
  1756. margin-left: auto;
  1757. margin-right: auto;
  1758. }
  1759. @media screen and (max-width: 1281px) {
  1760. .sec-usecase .usecase-block::after {
  1761. bottom: 0rem;
  1762. }
  1763. }
  1764. @media screen and (max-width: 767px) {
  1765. .sec-usecase .usecase-block::after {
  1766. height: 7rem;
  1767. bottom: 3rem;
  1768. }
  1769. }
  1770. .sec-usecase .usecase-block .usecase-imgfr {
  1771. width: 80%;
  1772. margin: 0 auto;
  1773. height: 40vh;
  1774. background-position: center center;
  1775. background-size: contain;
  1776. background-repeat: no-repeat;
  1777. }
  1778. @media screen and (max-width: 767px) {
  1779. .sec-usecase .usecase-block .usecase-imgfr {
  1780. width: 80%;
  1781. }
  1782. }
  1783. .sec-usecase .usecase-block .usecase-sub {
  1784. background-color: transparent;
  1785. color: #193179;
  1786. position: relative;
  1787. bottom: 25px;
  1788. font-size: 1rem;
  1789. font-weight: 900;
  1790. }
  1791. @media screen and (max-width: 1281px) {
  1792. .sec-usecase .usecase-block .usecase-sub {
  1793. bottom: 5px;
  1794. }
  1795. }
  1796. @media screen and (max-width: 767px) {
  1797. .sec-usecase .usecase-block .usecase-sub {
  1798. bottom: 50px;
  1799. }
  1800. }
  1801. .sec-usecase .usecase-block .usecase-sub i {
  1802. color: #193179;
  1803. }
  1804. .indxe-CTA {
  1805. background: #f0f0f0;
  1806. }
  1807. .indxe-CTA h2 {
  1808. color: #ea5413;
  1809. }
  1810. .indxe-CTA .CTA-btnB {
  1811. text-decoration: none;
  1812. border-radius: 30px;
  1813. border: none;
  1814. padding: 10px;
  1815. background: #ea5413;
  1816. width: 200px;
  1817. color: #fff;
  1818. font-size: 24px;
  1819. }
  1820. .price-int {
  1821. padding: 8vw 0px;
  1822. }
  1823. @media screen and (max-width: 767px) {
  1824. .price-int {
  1825. padding: 20vw 0px;
  1826. }
  1827. }
  1828. .price-int .price-content {
  1829. width: 80vw;
  1830. }
  1831. @media screen and (max-width: 767px) {
  1832. .price-int .price-content {
  1833. width: 90vw;
  1834. }
  1835. }
  1836. .price-int .price-content .CTA-btnB {
  1837. margin-top: 30px;
  1838. }
  1839. .price-int .price-content hr {
  1840. width: 7vw;
  1841. height: 6px;
  1842. background: #2a3863;
  1843. opacity: 1 !important;
  1844. margin: 0 auto;
  1845. }
  1846. @media screen and (max-width: 767px) {
  1847. .price-int .price-content hr {
  1848. width: 15vw;
  1849. }
  1850. }
  1851. .price-int .price-content h1 {
  1852. text-align: center;
  1853. font-weight: 900;
  1854. font-size: 2rem;
  1855. color: #2a3863;
  1856. }
  1857. .price-int .price-content .price-content-1 .price-item {
  1858. margin-top: 50px;
  1859. }
  1860. @media screen and (max-width: 767px) {
  1861. .price-int .price-content .price-content-1 .price-item {
  1862. margin-top: 30px;
  1863. }
  1864. }
  1865. .price-int .price-content .price-content-1 img {
  1866. width: 128px;
  1867. }
  1868. @media screen and (max-width: 767px) {
  1869. .price-int .price-content .price-content-1 img {
  1870. width: 100px;
  1871. }
  1872. }
  1873. .price-int .price-content .price-content-1 h2 {
  1874. margin-top: 15px;
  1875. font-weight: 600;
  1876. font-size: 1.3rem;
  1877. color: #ea5413;
  1878. }
  1879. @media screen and (max-width: 767px) {
  1880. .price-int .price-content .price-content-1 h2 {
  1881. text-align: left;
  1882. font-size: 5.5vmin;
  1883. }
  1884. }
  1885. .price-int .price-content .price-content-1 ul {
  1886. text-align: left;
  1887. color: #ea5413;
  1888. }
  1889. .price-int .price-content .price-content-1 ul li {
  1890. list-style-type: disc;
  1891. }
  1892. @media screen and (max-width: 767px) {
  1893. .price-int .price-content .price-content-1 ul li {
  1894. font-size: 4vmin;
  1895. }
  1896. }
  1897. .price-int .price-content .price-content-1 .price-text {
  1898. padding-left: 80px;
  1899. }
  1900. @media screen and (max-width: 767px) {
  1901. .price-int .price-content .price-content-1 .price-text {
  1902. padding-left: 0px;
  1903. }
  1904. }
  1905. .price-int .price-content .get-started {
  1906. border: none;
  1907. border-radius: 3rem;
  1908. padding: 1rem 2.5rem;
  1909. background: linear-gradient(20deg, #ea5413, #920783);
  1910. color: #fff;
  1911. font-size: 1.2rem;
  1912. font-weight: 900;
  1913. }
  1914. .price-int .price-content p {
  1915. font-size: 24px;
  1916. }
  1917. @media screen and (min-width: 1025px) {
  1918. .register_btn {
  1919. display: none;
  1920. }
  1921. }
  1922. @media screen and (max-width: 767px) {
  1923. .register_text {
  1924. display: none;
  1925. }
  1926. }
  1927. .footer {
  1928. background-color: #f0f0f0;
  1929. padding: 3rem;
  1930. padding-left: 13rem;
  1931. }
  1932. @media screen and (max-width: 767px) {
  1933. .footer {
  1934. padding: 0.5rem;
  1935. text-align: center;
  1936. padding-top: 3rem;
  1937. padding-left: 0;
  1938. }
  1939. }
  1940. .footer h5 {
  1941. font-size: 16px;
  1942. font-weight: 700;
  1943. color: #555555;
  1944. }
  1945. .footer .row {
  1946. display: -webkit-box;
  1947. display: -ms-flexbox;
  1948. display: flex;
  1949. -webkit-box-align: center;
  1950. -ms-flex-align: center;
  1951. align-items: center;
  1952. }
  1953. .footer .footer-aigirl {
  1954. font-weight: 600;
  1955. font-size: 1.5rem;
  1956. margin-top: 1rem;
  1957. margin-bottom: 2.5rem;
  1958. color: #555555;
  1959. }
  1960. @media screen and (max-width: 767px) {
  1961. .footer .footer-aigirl {
  1962. font-size: 1.3rem;
  1963. margin-bottom: 2rem;
  1964. }
  1965. }
  1966. .footer .footer-follow {
  1967. font-size: 1rem;
  1968. margin-bottom: 1rem;
  1969. }
  1970. @media screen and (max-width: 767px) {
  1971. .footer-socials {
  1972. margin-bottom: 2rem;
  1973. }
  1974. }
  1975. .footer .footer-socials a {
  1976. margin-right: 5px;
  1977. }
  1978. @media screen and (max-width: 767px) {
  1979. .footer .footer-socials a {
  1980. margin-right: 10px;
  1981. }
  1982. }
  1983. @media screen and (max-width: 767px) {
  1984. .footer-contacts {
  1985. font-size: 14px;
  1986. }
  1987. }
  1988. .menu-box {
  1989. width: 40vw;
  1990. right: 0px;
  1991. position: fixed;
  1992. z-index: 20;
  1993. overflow: hidden;
  1994. display: none;
  1995. top: 0px;
  1996. }
  1997. @media screen and (min-width: 1025px) {
  1998. .menu-box {
  1999. display: none;
  2000. }
  2001. }
  2002. .menu-box .menu-box2 {
  2003. padding-bottom: 5vw;
  2004. position: relative;
  2005. width: 40vw;
  2006. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  2007. background: linear-gradient(to bottom, #1c7ce0, #150051);
  2008. z-index: 7;
  2009. text-align: center;
  2010. }
  2011. .menu-box .menu-box2 a {
  2012. display: inline-block;
  2013. text-decoration: none;
  2014. color: #fff;
  2015. font-size: 18px;
  2016. text-align: center;
  2017. }
  2018. /*# sourceMappingURL=style.css.map */