styleMV.css 21 KB

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