style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. /*basic reset*/
  5. * {margin: 0; padding: 0;}
  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: sticky;
  31. top: 0;
  32. left: 50%;
  33. z-index: 20;
  34. background-color: inherit;
  35. }
  36. .navbar {
  37. background-color: white;
  38. }
  39. /* .imf {
  40. position: fixed;
  41. top: 0;
  42. left: 50%;
  43. transform: translateX(-50%);
  44. z-index: 3;
  45. } */
  46. .img_banner {
  47. background-image: url('images/banner_top1.jpg');
  48. background-repeat: no-repeat;
  49. background-size: contain;
  50. background-position: center;
  51. width: 100%;
  52. height: 65px;
  53. }
  54. /*form styles*/
  55. .img_logo {
  56. display: inline-block;
  57. margin: 0 auto;
  58. margin-bottom: 10px;
  59. }
  60. .title__block {
  61. display: flex;
  62. justify-content: center;
  63. align-items: center;
  64. margin: 0px auto;
  65. }
  66. .sub-logo {
  67. display: inline-block;
  68. font-weight: 700;
  69. font-size: 1.4rem;
  70. color: white;
  71. }
  72. .slogan {
  73. display: block;
  74. font-weight: 700;
  75. font-size: 1.2rem;
  76. color: white;
  77. }
  78. .notice_card {
  79. box-sizing: border-box;
  80. width: 80%;
  81. margin: 0 10%;
  82. margin-bottom: 1.5rem;
  83. background: white;
  84. border: 0 none;
  85. border-radius: 3px;
  86. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  87. padding: 10px 20px;
  88. line-height: 1.5rem;
  89. }
  90. #myProgress {
  91. width: 100%;
  92. background-color: #ddd;
  93. }
  94. #myBar {
  95. width: 10%;
  96. height: 30px;
  97. background-color: #1C7CE0;
  98. text-align: center;
  99. line-height: 30px;
  100. color: white;
  101. }
  102. .go_title {
  103. color: white;
  104. font-family: 'Montserrat', sans-serif;
  105. padding: 1rem;
  106. }
  107. .nav-list {
  108. color: white;
  109. margin-top: 3rem;
  110. }
  111. .nav-list-item {
  112. font-size: 1.2rem;
  113. cursor: pointer;
  114. position: relative;
  115. }
  116. .nav-list-item::after {
  117. content: " ";
  118. position: absolute;
  119. width: 100%;
  120. height: 100%;
  121. left: 0;
  122. top: 0;
  123. border-bottom: 1px solid white;
  124. opacity: 0;
  125. transition: all .4s;
  126. }
  127. .nav-list-item:hover::after {
  128. opacity: 1;
  129. }
  130. .right-text {
  131. position: absolute;
  132. bottom: 0rem;
  133. }
  134. .loader {
  135. position: absolute;
  136. top: 30%;
  137. left: 45%;
  138. }
  139. .imgfr {
  140. width:90px;
  141. height: 90px;
  142. border-radius: 50%;
  143. overflow: hidden;
  144. margin: 1rem auto 0 auto;
  145. }
  146. .card-title {
  147. font-family: 'Montserrat', sans-serif;
  148. }
  149. .strong {
  150. font-weight: 600;
  151. }
  152. .card {
  153. border: none;
  154. position: relative;
  155. }
  156. .card.active {
  157. border: 1px solid gray;
  158. }
  159. .card.active::before {
  160. position: absolute;
  161. content: "✓";
  162. bottom: 0;
  163. right: 5px;
  164. }
  165. .zoomin {
  166. display: none;
  167. position: absolute;
  168. bottom: 0;
  169. left: 0;
  170. }
  171. .script_err {
  172. display: none;
  173. }
  174. /* .history-modal {
  175. height: 80vh;
  176. }
  177. .history-modal .modal-content{
  178. height: 80vh;
  179. }
  180. .history-modal .modal-conten .modal-terms {
  181. height: 90%;
  182. overflow: scroll;
  183. } */
  184. .historyList-item {
  185. padding: 1rem;
  186. display: block;
  187. width: 80%;
  188. margin: 1rem auto;
  189. border: 1px solid rgb(177, 177, 177);
  190. border-radius: 10px;
  191. display: flex;
  192. font-size: .9rem;
  193. }
  194. .historyList-link {
  195. text-decoration: none;
  196. color: rgb(73, 73, 73);
  197. }
  198. .historyList-link:hover {
  199. color: rgb(124, 124, 124);
  200. }
  201. .content {
  202. width: calc(100% - 250px);
  203. }
  204. /*form styles*/
  205. #msform {
  206. max-width: 1000px;
  207. min-width: 370px;
  208. margin: 50px auto;
  209. margin-bottom: 20px;
  210. text-align: center;
  211. position: relative;
  212. }
  213. #msform fieldset {
  214. background: white;
  215. border: 0 none;
  216. border-radius: 3px;
  217. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  218. padding: 20px 30px;
  219. box-sizing: border-box;
  220. width: 80%;
  221. margin: 3rem 10%;
  222. /*stacking fieldsets above each other*/
  223. position: relative;
  224. }
  225. /*Hide all except first fieldset*/
  226. /*inputs*/
  227. #msform input[type="text"], #msform textarea, #msform input[type="email"] {
  228. padding: 15px;
  229. border: 1px solid #ccc;
  230. border-radius: 3px;
  231. margin-bottom: 16px;
  232. width: 100%;
  233. box-sizing: border-box;
  234. font-family: montserrat;
  235. color: #2C3E50;
  236. font-size: 14px;
  237. }
  238. /*buttons*/
  239. #msform .action-button {
  240. width: 100px;
  241. background: #1C7CE0;
  242. font-weight: bold;
  243. color: white;
  244. border: 0 none;
  245. border-radius: 1px;
  246. cursor: pointer;
  247. padding: 10px 5px;
  248. margin: 10px auto;
  249. display: block;
  250. }
  251. #msform .action-button:hover, #msform .action-button:focus {
  252. box-shadow: 0 0 0 2px white, 0 0 0 3px #1C7CE0;
  253. }
  254. #msform .next[disabled] {
  255. background-color: grey;
  256. }
  257. /*headings*/
  258. .fs-title {
  259. font-size: 15px;
  260. text-transform: uppercase;
  261. color: #2C3E50;
  262. margin-bottom: 10px;
  263. }
  264. .fs-subtitle {
  265. display: inline-block;
  266. font-weight: normal;
  267. font-size: 18px;
  268. color: #666;
  269. margin-bottom: 20px;
  270. padding-bottom: 3px;
  271. border-bottom: 2px solid #1C7CE0;
  272. margin-left: 2rem;
  273. margin-right: 2rem;
  274. }
  275. .fs-label {
  276. display: block;
  277. text-align: left;
  278. margin-bottom: 8px;
  279. }
  280. .fs-label > i {
  281. margin-right: 3px;
  282. }
  283. /*progressbar*/
  284. #progressbar {
  285. margin-bottom: 30px;
  286. overflow: hidden;
  287. /*CSS counters to number the steps*/
  288. counter-reset: step;
  289. }
  290. #progressbar li {
  291. list-style-type: none;
  292. color: black;
  293. text-transform: uppercase;
  294. font-size: 12px;
  295. width: 33.33%;
  296. float: left;
  297. position: relative;
  298. }
  299. #progressbar li:before {
  300. content: counter(step);
  301. counter-increment: step;
  302. width: 20px;
  303. line-height: 20px;
  304. display: block;
  305. font-size: 12px;
  306. color: #333;
  307. background: white;
  308. border-radius: 3px;
  309. margin: 0 auto 5px auto;
  310. }
  311. /*progressbar connectors*/
  312. #progressbar li:after {
  313. content: '';
  314. width: 100%;
  315. height: 2px;
  316. background: white;
  317. position: absolute;
  318. left: -50%;
  319. top: 9px;
  320. z-index: -1; /*put it behind the numbers*/
  321. }
  322. #progressbar li:first-child:after {
  323. /*connector not needed before the first step*/
  324. content: none;
  325. }
  326. /*marking active/completed steps green*/
  327. /*The number of the step and the connector before it = green*/
  328. #progressbar li.active:before, #progressbar li.active:after{
  329. background: #27AE60;
  330. color: white;
  331. }
  332. p.error-text {
  333. bottom: -23px;
  334. left: 24px;
  335. color: rgba(255, 0, 0, .7);
  336. font-size: .8em;
  337. margin-bottom: 0;
  338. }
  339. #term-error {
  340. color: rgba(255, 0, 0, .7);
  341. font-size: .8em;
  342. bottom: -23px;
  343. left: 24px;
  344. }
  345. select {
  346. padding: 15px;
  347. border: 1px solid #ccc;
  348. border-radius: 3px;
  349. margin-bottom: 10px;
  350. width: 100%;
  351. box-sizing: border-box;
  352. font-family: montserrat;
  353. color: #2C3E50;
  354. font-size: 13px;
  355. background-color: transparent;
  356. }
  357. .pl-0 {
  358. padding-left: 0;
  359. }
  360. .terms {
  361. font-size: .9rem;
  362. width: 95%;
  363. min-width: 250px;
  364. height: auto;
  365. overflow: scroll;
  366. margin-bottom: 1rem;
  367. margin-left: auto;
  368. margin-right: auto;
  369. border: 1px solid rgb(163, 163, 163);
  370. line-height: 1.5rem;
  371. }
  372. .term-link a {
  373. text-decoration: none;
  374. color: black;
  375. }
  376. .h2 {
  377. text-align: center;
  378. font-size: 1.2rem;
  379. font-weight: 500;
  380. margin-top: 2rem;
  381. }
  382. .left_align {
  383. font-size: 18px;
  384. text-align: left;
  385. }
  386. #overlay {
  387. position: fixed; /* Sit on top of the page content */
  388. display: none;
  389. width: 100%;
  390. height: 100%;
  391. top: 0;
  392. left: 0;
  393. right: 0;
  394. bottom: 0;
  395. background-color: rgba(0,0,0,0.5);
  396. z-index: 2;
  397. cursor: pointer;
  398. }
  399. .thankyou {
  400. margin: auto;
  401. min-width: 350px;
  402. height: 250px;
  403. margin-top: 190px;
  404. background: #fff;
  405. padding: 15px 20px;
  406. line-height: 25px;
  407. border-radius: 4px;
  408. text-align: center;
  409. }
  410. .thankyou input {
  411. margin-top: 40px;
  412. }
  413. .thankyou h3 {
  414. font-size: 2rem;
  415. font-weight: 700;
  416. color: #21ba45;
  417. line-height: 2.5rem;
  418. margin-bottom: 1.5rem;
  419. }
  420. .check_button {
  421. display: none;
  422. }
  423. .fs-label-type {
  424. background: transparent;
  425. padding: 5px;
  426. border: 1px solid black;
  427. border-radius: 5px;
  428. display: inline-block;
  429. }
  430. .check_button:checked + .fs-label-type{
  431. background-color: #27AE60;
  432. color: white;
  433. padding: 5px;
  434. border: 1px solid #27AE60;
  435. border-radius: 5px;
  436. }
  437. input[type="checkbox"] {
  438. display: none;
  439. }
  440. #checker1, #checker2 {
  441. display: inline;
  442. }
  443. .fs-label-info {
  444. background: transparent;
  445. padding: 5px;
  446. border: 1px solid black;
  447. border-radius: 5px;
  448. display: inline-block;
  449. margin-bottom: 8px;
  450. }
  451. input[type="radio"] {
  452. display: none;
  453. }
  454. input[type="radio"]:checked + .fs-label-info {
  455. background-color: #27AE60;
  456. color: white;
  457. padding: 5px;
  458. border: 1px solid #27AE60;
  459. border-radius: 5px;
  460. }
  461. input[type="checkbox"]:checked + .fs-label-info {
  462. background-color: #27AE60;
  463. color: white;
  464. padding: 5px;
  465. border: 1px solid #27AE60;
  466. border-radius: 5px;
  467. }
  468. .btn-exit {
  469. padding: .5rem .75rem;
  470. background-color: transparent;
  471. border: 1px solid black;
  472. margin-top: .3rem;
  473. }
  474. .btn-term-exit {
  475. padding: .5rem .75rem;
  476. background-color: transparent;
  477. border: 1px solid black;
  478. margin-top: .3rem;
  479. display: block;
  480. margin-left: auto;
  481. margin-right: auto;
  482. margin-bottom: 2rem;
  483. }
  484. footer {
  485. padding: 2rem;
  486. padding-top: .5rem;
  487. }
  488. .footer {
  489. display: flex;
  490. justify-content: center;
  491. }
  492. .img_fr {
  493. width: 80%;
  494. max-width: 850px;
  495. min-width: 300px;
  496. height: 60px;
  497. object-fit: contain;
  498. object-position: center;
  499. }
  500. .img_fr img {
  501. width: 100%;
  502. height: 90%;
  503. }
  504. #msform #userid, #msform #area {
  505. height: 0;
  506. padding: 0;
  507. margin: 0;
  508. border: none;
  509. }
  510. #msform input[type="text"].error {
  511. border-color: red;
  512. }
  513. .modal-header {
  514. border-bottom: none;
  515. }
  516. #avatarmega .modal-content {
  517. background-color: transparent;
  518. border: none;
  519. }
  520. #avatarmega .modal-title {
  521. color: white;
  522. }
  523. #avatarmega .btn-close {
  524. background: none;
  525. }
  526. #avatarmega .modal-header {
  527. position: absolute;
  528. top: -1.5rem;
  529. right: 1rem;
  530. }
  531. .linker__box {
  532. padding: .5rem 1rem;
  533. border-radius: 1rem;
  534. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  535. width: max-content;
  536. margin: 0 auto;
  537. display: none;
  538. }
  539. .linker__box p {
  540. margin-bottom: 0;
  541. color: gray;
  542. }
  543. .linker__box i {
  544. color: gray;
  545. position: relative;
  546. }
  547. .linker__box i::after {
  548. position: absolute;
  549. content: " ";
  550. right: -5px;
  551. top: -10%;
  552. border-right: 2px solid rgb(163, 163, 163);
  553. width: 1px;
  554. height: 120%;
  555. }
  556. .item_imgfr {
  557. width: 15%;
  558. height: 50px;
  559. border-radius: 50%;
  560. overflow: hidden;
  561. margin: auto .5rem;
  562. }
  563. .item_imgfr img {
  564. height: 100%;
  565. width: 100%;
  566. }
  567. .content-box {
  568. width: 75%;
  569. }
  570. .box-title {
  571. margin-bottom: .2rem;
  572. cursor: pointer;
  573. }
  574. .box-title:hover {
  575. color: grey;
  576. text-decoration: underline;
  577. }
  578. .box-link {
  579. cursor: pointer;
  580. }
  581. .img_uploader {
  582. display: none;
  583. }
  584. #msform input[type="text"].imgsrc {
  585. width: calc(100% - 8rem);
  586. margin-right: 5px;
  587. }
  588. .upload-btn {
  589. display: inline-block;
  590. width: 6rem;
  591. background-color: #75a7dd;
  592. color: white;
  593. padding: .4rem .5rem;
  594. font-size: .9rem;
  595. border-radius: 3px;
  596. transition: all .3s;
  597. cursor: pointer;
  598. }
  599. .upload-btn img{
  600. width: 30px;
  601. height: 30px;
  602. }
  603. .upload-btn:hover {
  604. background-color: #3b86d6;
  605. }
  606. .add, .addimg {
  607. cursor: pointer;
  608. display: inline-block;
  609. width: 2rem;
  610. height: 2rem;
  611. background-color: #67abf3;
  612. font-size: 1.2rem;
  613. color: white;
  614. border-radius: 50%;
  615. transition: all .3s;
  616. }
  617. .add:hover, .addimg:hover {
  618. background-color: #398ee9;
  619. }