styleMV.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335
  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. #msform input[type="text"].txtsrc,
  607. #msform input[type="text"].subsrc {
  608. width: 80%;
  609. }
  610. .upload-btn {
  611. display: inline-block;
  612. position: absolute;
  613. left: 0;
  614. top: 0;
  615. width: 20%;
  616. height: 100%;
  617. background-color: #75a7dd;
  618. background-position: center;
  619. background-size: cover;
  620. background-image: url(./img/upload_img.png);
  621. color: white;
  622. padding: 0.4rem 0.5rem;
  623. font-size: 0.9rem;
  624. -webkit-transition: all 0.3s;
  625. transition: all 0.3s;
  626. cursor: pointer;
  627. }
  628. .upload-btn img {
  629. width: 30px;
  630. height: 30px;
  631. }
  632. .upload-btn:hover {
  633. background-color: #3b86d6;
  634. }
  635. .add,
  636. .add-subline,
  637. .addsec,
  638. .addimg {
  639. cursor: pointer;
  640. display: inline-block;
  641. width: 2rem;
  642. height: 2rem;
  643. background-color: #67abf3;
  644. font-size: 1.2rem;
  645. color: white;
  646. border-radius: 50%;
  647. -webkit-transition: all 0.3s;
  648. transition: all 0.3s;
  649. }
  650. .add:hover,
  651. .add-subline:hover,
  652. .addsec:hover,
  653. .addimg:hover {
  654. background-color: #398ee9;
  655. }
  656. body {
  657. font-family: "Lato", sans-serif;
  658. }
  659. .sidenav {
  660. height: 100%;
  661. width: 250px;
  662. position: fixed;
  663. z-index: 1;
  664. top: 0;
  665. left: 0;
  666. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  667. background: linear-gradient(to bottom, #1c7ce0, #150051);
  668. overflow-x: hidden;
  669. -webkit-transition: 0.5s;
  670. transition: 0.5s;
  671. }
  672. .sidenav a {
  673. text-decoration: none;
  674. font-size: 25px;
  675. color: #818181;
  676. display: block;
  677. -webkit-transition: 0.3s;
  678. transition: 0.3s;
  679. }
  680. .sidenav a:hover {
  681. color: #f1f1f1;
  682. }
  683. .sidenav .closebtn {
  684. position: absolute;
  685. top: 0;
  686. right: 25px;
  687. font-size: 36px;
  688. margin-left: 50px;
  689. }
  690. .navbar-nav button {
  691. background: white;
  692. border: none;
  693. outline: none;
  694. }
  695. .img-wave {
  696. position: fixed;
  697. bottom: 0;
  698. left: 0;
  699. height: 100%;
  700. z-index: -1;
  701. }
  702. .img-wave-profile {
  703. height: 80%;
  704. }
  705. .row-img {
  706. position: relative;
  707. display: -webkit-box;
  708. display: -ms-flexbox;
  709. display: flex;
  710. -webkit-box-pack: center;
  711. -ms-flex-pack: center;
  712. justify-content: center;
  713. -webkit-box-align: center;
  714. -ms-flex-align: center;
  715. align-items: center;
  716. background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(16, 68, 142, 0.7)), to(rgba(16, 68, 142, 0.7)));
  717. background-image: linear-gradient(to right bottom, rgba(16, 68, 142, 0.7), rgba(16, 68, 142, 0.7));
  718. background-size: cover;
  719. background-position: center;
  720. overflow: hidden;
  721. }
  722. .row-img .video {
  723. height: 100%;
  724. z-index: -1;
  725. position: absolute;
  726. left: -10%;
  727. top: 0;
  728. }
  729. .row-img .row-img-box {
  730. color: white;
  731. }
  732. .row-img .row-img-txt {
  733. position: absolute;
  734. bottom: 2rem;
  735. color: white;
  736. left: 2rem;
  737. font-size: 1.3rem;
  738. }
  739. .row-login {
  740. display: -webkit-box;
  741. display: -ms-flexbox;
  742. display: flex;
  743. -webkit-box-pack: start;
  744. -ms-flex-pack: start;
  745. justify-content: flex-start;
  746. -webkit-box-align: center;
  747. -ms-flex-align: center;
  748. align-items: center;
  749. text-align: center;
  750. position: relative;
  751. }
  752. .row-login .title {
  753. position: relative;
  754. color: #052859;
  755. }
  756. .row-login .title::after {
  757. position: absolute;
  758. content: "";
  759. left: 45%;
  760. top: 20%;
  761. width: 10%;
  762. height: 100%;
  763. border-bottom: 4px solid #052859;
  764. }
  765. .row-login .login-top {
  766. position: absolute;
  767. right: 1rem;
  768. top: 1rem;
  769. }
  770. .row-login .login-top .navbar-nav {
  771. -webkit-box-orient: horizontal;
  772. -webkit-box-direction: normal;
  773. -ms-flex-direction: row;
  774. flex-direction: row;
  775. }
  776. .row-login .login-top .navbar-nav .nav-item {
  777. margin: 0 0.5rem;
  778. }
  779. .row-login .login-top .navbar-nav .nav-item a {
  780. color: black;
  781. }
  782. .navbar .btn-gocreate {
  783. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  784. background: linear-gradient(90deg, #0162c8, #55e7fc);
  785. color: white;
  786. border: 0 none;
  787. border-radius: 40px;
  788. cursor: pointer;
  789. padding: 10px 50px;
  790. }
  791. .container-bg {
  792. position: absolute;
  793. width: 600px;
  794. height: 400px;
  795. right: 0;
  796. bottom: 0;
  797. z-index: -1;
  798. }
  799. .container-profile .card-profile {
  800. margin-top: 4rem;
  801. border-radius: 10px;
  802. padding: 2rem;
  803. text-align: center;
  804. -webkit-box-shadow: 0px 0px 20px 1px #b4b4b4;
  805. box-shadow: 0px 0px 20px 1px #b4b4b4;
  806. }
  807. .container-profile .card-profile img {
  808. width: 120px;
  809. margin: 1rem auto;
  810. }
  811. .card-profile-txt {
  812. color: #6d6d6d;
  813. font-size: 1.2rem;
  814. font-weight: 500;
  815. }
  816. .card-profile-cnt {
  817. font-size: 1.5rem;
  818. font-weight: 700;
  819. }
  820. @media screen and (max-width: 900px) {
  821. .container-login {
  822. -ms-grid-columns: 1fr;
  823. grid-template-columns: 1fr;
  824. }
  825. .row-img {
  826. display: none;
  827. }
  828. .img-wave {
  829. display: none;
  830. }
  831. .row-login {
  832. -webkit-box-pack: center;
  833. -ms-flex-pack: center;
  834. justify-content: center;
  835. }
  836. .container-bg {
  837. width: 400px;
  838. height: 300px;
  839. right: 0;
  840. bottom: 0;
  841. }
  842. }
  843. @media screen and (max-height: 450px) {
  844. .sidenav {
  845. padding-top: 15px;
  846. }
  847. .sidenav a {
  848. font-size: 18px;
  849. }
  850. }
  851. @media screen and (max-width: 767px) {
  852. .profile-bgimg {
  853. width: 100%;
  854. height: 300px;
  855. -o-object-fit: cover;
  856. object-fit: cover;
  857. display: none;
  858. }
  859. }
  860. @media screen and (min-width: 1025px) {
  861. .profile-bgimg-m {
  862. display: none;
  863. }
  864. }
  865. .navbar {
  866. background: none !important;
  867. }
  868. .arrowdoup {
  869. -webkit-transform: rotate(180deg);
  870. transform: rotate(180deg);
  871. }
  872. .arrowdown {
  873. cursor: pointer;
  874. }
  875. .userprofile {
  876. position: relative;
  877. top: -80px;
  878. z-index: 20;
  879. }
  880. @media screen and (max-width: 767px) {
  881. .userprofile {
  882. top: 10px;
  883. z-index: 0;
  884. }
  885. }
  886. .userprofile .userprofile-content {
  887. width: 83vw;
  888. }
  889. @media screen and (max-width: 767px) {
  890. .userprofile .userprofile-content {
  891. width: 95vw;
  892. }
  893. }
  894. .userprofile .userprofile-content .user-information .information {
  895. width: 50%;
  896. margin: 0 auto;
  897. }
  898. .sidenav {
  899. width: 250px;
  900. height: 100%;
  901. z-index: 50;
  902. top: 0;
  903. left: 0;
  904. overflow-x: hidden;
  905. -webkit-transition: 0.5s;
  906. transition: 0.5s;
  907. text-align: center;
  908. }
  909. @media screen and (max-width: 767px) {
  910. .sidenav {
  911. display: none;
  912. right: 0;
  913. }
  914. .content {
  915. width: 100%;
  916. }
  917. }
  918. @media only screen and (min-width: 1439px) {
  919. .sidenav .sidenav-content {
  920. -webkit-transform: scale(1);
  921. transform: scale(1);
  922. }
  923. }
  924. @media only screen and (max-width: 1280px) {
  925. .sidenav .sidenav-content {
  926. margin-top: -50px;
  927. -webkit-transform: scale(0.85);
  928. transform: scale(0.85);
  929. }
  930. }
  931. @media screen and (max-width: 767px) {
  932. .sidenav .sidenav-content .choozmologo {
  933. margin-top: 10px;
  934. }
  935. }
  936. @media screen and (min-width: 767px) {
  937. .navbar-collapse {
  938. display: none !important;
  939. color: white;
  940. }
  941. }
  942. .sidenav .sidenav-content .reply {
  943. margin-left: 70px;
  944. }
  945. @media screen and (min-width: 1025px) {
  946. .sidenav .sidenav-content .reply {
  947. display: none;
  948. }
  949. }
  950. .sidenav hr {
  951. background: #fff;
  952. opacity: 1 !important;
  953. height: 1px;
  954. width: 85%;
  955. margin: 15px auto;
  956. }
  957. .sidenav .sidebar {
  958. width: 80%;
  959. margin: 0 auto;
  960. }
  961. .sidenav .user {
  962. -o-object-fit: cover;
  963. object-fit: cover;
  964. width: 8vw;
  965. }
  966. @media screen and (max-width: 767px) {
  967. .sidenav .user {
  968. width: 30vw;
  969. }
  970. }
  971. .sidenav .user-name {
  972. font-size: 1.5rem;
  973. }
  974. .sidenav .navbar-nav {
  975. -webkit-box-orient: horizontal;
  976. -webkit-box-direction: normal;
  977. -ms-flex-direction: row;
  978. flex-direction: row;
  979. }
  980. .sidenav .navbar-nav .btn-gocreate {
  981. font-size: 1.7vmin;
  982. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  983. background: linear-gradient(90deg, #0162c8, #55e7fc);
  984. color: white;
  985. border: 0 none;
  986. border-radius: 10px;
  987. cursor: pointer;
  988. margin: 10px 3px;
  989. display: inline;
  990. }
  991. @media screen and (max-width: 767px) {
  992. .sidenav .navbar-nav .btn-gocreate {
  993. font-size: 3.5vmin;
  994. }
  995. }
  996. .sidenav .navbar-nav .active {
  997. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  998. background: linear-gradient(90deg, #0162c8, #55e7fc);
  999. }
  1000. .sidenav a {
  1001. text-decoration: none;
  1002. font-size: 32px;
  1003. color: #f1f1f1;
  1004. display: block;
  1005. -webkit-transition: 0.3s;
  1006. transition: 0.3s;
  1007. }
  1008. .sidenav a:hover {
  1009. color: #818181;
  1010. }
  1011. .sidenav .sidenav .closebtn {
  1012. position: absolute;
  1013. top: 0;
  1014. right: 25px;
  1015. font-size: 36px;
  1016. margin-left: 50px;
  1017. }
  1018. .sidenav .nav-list {
  1019. color: white;
  1020. list-style: none;
  1021. text-align: center;
  1022. }
  1023. .sidenav .nav-list .nav-list-item {
  1024. font-size: 18px;
  1025. cursor: pointer;
  1026. position: relative;
  1027. }
  1028. .sidenav .nav-list .nav-list-item::after {
  1029. content: " ";
  1030. position: absolute;
  1031. width: 50%;
  1032. height: 100%;
  1033. left: 25%;
  1034. top: 5px;
  1035. border-bottom: 1px solid white;
  1036. opacity: 0;
  1037. -webkit-transition: all 0.4s;
  1038. transition: all 0.4s;
  1039. }
  1040. .sidenav .nav-list .nav-list-item:hover::after {
  1041. opacity: 1;
  1042. }
  1043. .sidenav .right-text {
  1044. position: absolute;
  1045. bottom: 0;
  1046. left: 0;
  1047. color: #fff;
  1048. }
  1049. @media only screen and (max-width: 1280px) {
  1050. .sidenav .right-text {
  1051. left: 10px;
  1052. }
  1053. }
  1054. .sidenav .right-text a {
  1055. font-size: 16px;
  1056. display: inline;
  1057. margin: 2px;
  1058. }
  1059. .sidenav .right-text a img {
  1060. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1061. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1062. }
  1063. @media only screen and (max-width: 1280px) {
  1064. .sidenav .right-text p {
  1065. font-size: 16px;
  1066. }
  1067. }
  1068. .footer {
  1069. background-color: #F0F0F0;
  1070. padding: 3rem;
  1071. padding-left: 13rem;
  1072. }
  1073. @media screen and (max-width: 767px) {
  1074. .footer {
  1075. padding: 0.5rem;
  1076. text-align: center;
  1077. padding-top: 3rem;
  1078. padding-left: 0;
  1079. }
  1080. }
  1081. .footer h5 {
  1082. font-size: 16px;
  1083. font-weight: 700;
  1084. color: #555555;
  1085. }
  1086. .footer .row {
  1087. display: -webkit-box;
  1088. display: -ms-flexbox;
  1089. display: flex;
  1090. -webkit-box-align: center;
  1091. -ms-flex-align: center;
  1092. align-items: center;
  1093. }
  1094. .footer .footer-aigirl {
  1095. font-weight: 600;
  1096. font-size: 1.5rem;
  1097. margin-top: 1rem;
  1098. margin-bottom: 2.5rem;
  1099. color: #555555;
  1100. }
  1101. @media screen and (max-width: 767px) {
  1102. .footer .footer-aigirl {
  1103. font-size: 1.3rem;
  1104. margin-bottom: 2rem;
  1105. }
  1106. }
  1107. .footer .footer-follow {
  1108. font-size: 1rem;
  1109. margin-bottom: 1rem;
  1110. }
  1111. @media screen and (max-width: 767px) {
  1112. .footer-socials {
  1113. margin-bottom: 2rem;
  1114. }
  1115. }
  1116. .footer .footer-socials a {
  1117. margin-right: 5px;
  1118. }
  1119. @media screen and (max-width: 767px) {
  1120. .footer .footer-socials a {
  1121. margin-right: 10px;
  1122. }
  1123. }
  1124. @media screen and (max-width: 767px) {
  1125. .footer-contacts {
  1126. font-size: 14px;
  1127. }
  1128. }
  1129. @media screen and (max-width: 576px) {
  1130. #msform input[type="text"].imgsrc,
  1131. #msform input[type="text"].txtsrc,
  1132. #msform input[type="text"].subsrc {
  1133. width: 100%;
  1134. }
  1135. #msform .input-sec>input[type="text"]:nth-of-type(1) {
  1136. margin-top: 77%;
  1137. }
  1138. #msform .input_eng .input-sec>input[type="text"]:nth-of-type(1) {
  1139. margin-top: 90%;
  1140. }
  1141. .upload-btn {
  1142. width: 100%;
  1143. height: 60%;
  1144. }
  1145. .input_eng .upload-btn {
  1146. height: 50%;
  1147. }
  1148. }
  1149. .home-btn {
  1150. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  1151. }
  1152. /*# sourceMappingURL=style.css.map */