style.css 8.6 KB

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