style.css 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  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, arial, verdana;
  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. /* .history-modal {
  139. height: 80vh;
  140. }
  141. .history-modal .modal-content{
  142. height: 80vh;
  143. }
  144. .history-modal .modal-conten .modal-terms {
  145. height: 90%;
  146. overflow: scroll;
  147. } */
  148. .historyList-item {
  149. padding: 1rem;
  150. display: block;
  151. width: 80%;
  152. margin: 1rem auto;
  153. border: 1px solid rgb(177, 177, 177);
  154. border-radius: 10px;
  155. text-align: center;
  156. }
  157. .historyList-link {
  158. text-decoration: none;
  159. color: rgb(73, 73, 73);
  160. }
  161. .historyList-link:hover {
  162. color: rgb(124, 124, 124);
  163. }
  164. .content {
  165. width: calc(100% - 250px);
  166. }
  167. /*form styles*/
  168. #msform {
  169. max-width: 1000px;
  170. min-width: 370px;
  171. margin: 50px auto;
  172. margin-bottom: 20px;
  173. text-align: center;
  174. position: relative;
  175. }
  176. #msform fieldset {
  177. background: white;
  178. border: 0 none;
  179. border-radius: 3px;
  180. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  181. padding: 20px 30px;
  182. box-sizing: border-box;
  183. width: 80%;
  184. margin: 3rem 10%;
  185. /*stacking fieldsets above each other*/
  186. position: relative;
  187. }
  188. /*Hide all except first fieldset*/
  189. /*inputs*/
  190. #msform input[type="text"], #msform textarea, #msform input[type="email"] {
  191. padding: 15px;
  192. border: 1px solid #ccc;
  193. border-radius: 3px;
  194. margin-bottom: 16px;
  195. width: 100%;
  196. box-sizing: border-box;
  197. font-family: montserrat;
  198. color: #2C3E50;
  199. font-size: 14px;
  200. }
  201. /*buttons*/
  202. #msform .action-button {
  203. width: 100px;
  204. background: #1C7CE0;
  205. font-weight: bold;
  206. color: white;
  207. border: 0 none;
  208. border-radius: 1px;
  209. cursor: pointer;
  210. padding: 10px 5px;
  211. margin: 10px auto;
  212. display: block;
  213. }
  214. #msform .action-button:hover, #msform .action-button:focus {
  215. box-shadow: 0 0 0 2px white, 0 0 0 3px #1C7CE0;
  216. }
  217. /*headings*/
  218. .fs-title {
  219. font-size: 15px;
  220. text-transform: uppercase;
  221. color: #2C3E50;
  222. margin-bottom: 10px;
  223. }
  224. .fs-subtitle {
  225. display: inline-block;
  226. font-weight: normal;
  227. font-size: 18px;
  228. color: #666;
  229. margin-bottom: 20px;
  230. padding-bottom: 3px;
  231. border-bottom: 2px solid #1C7CE0;
  232. }
  233. .fs-label {
  234. display: block;
  235. text-align: left;
  236. margin-bottom: 8px;
  237. }
  238. .fs-label > i {
  239. margin-right: 3px;
  240. }
  241. /*progressbar*/
  242. #progressbar {
  243. margin-bottom: 30px;
  244. overflow: hidden;
  245. /*CSS counters to number the steps*/
  246. counter-reset: step;
  247. }
  248. #progressbar li {
  249. list-style-type: none;
  250. color: black;
  251. text-transform: uppercase;
  252. font-size: 12px;
  253. width: 33.33%;
  254. float: left;
  255. position: relative;
  256. }
  257. #progressbar li:before {
  258. content: counter(step);
  259. counter-increment: step;
  260. width: 20px;
  261. line-height: 20px;
  262. display: block;
  263. font-size: 12px;
  264. color: #333;
  265. background: white;
  266. border-radius: 3px;
  267. margin: 0 auto 5px auto;
  268. }
  269. /*progressbar connectors*/
  270. #progressbar li:after {
  271. content: '';
  272. width: 100%;
  273. height: 2px;
  274. background: white;
  275. position: absolute;
  276. left: -50%;
  277. top: 9px;
  278. z-index: -1; /*put it behind the numbers*/
  279. }
  280. #progressbar li:first-child:after {
  281. /*connector not needed before the first step*/
  282. content: none;
  283. }
  284. /*marking active/completed steps green*/
  285. /*The number of the step and the connector before it = green*/
  286. #progressbar li.active:before, #progressbar li.active:after{
  287. background: #27AE60;
  288. color: white;
  289. }
  290. p.error-text {
  291. bottom: -23px;
  292. left: 24px;
  293. color: rgba(255, 0, 0, .7);
  294. font-size: .8em;
  295. }
  296. #term-error {
  297. color: rgba(255, 0, 0, .7);
  298. font-size: .8em;
  299. bottom: -23px;
  300. left: 24px;
  301. }
  302. select {
  303. padding: 15px;
  304. border: 1px solid #ccc;
  305. border-radius: 3px;
  306. margin-bottom: 10px;
  307. width: 100%;
  308. box-sizing: border-box;
  309. font-family: montserrat;
  310. color: #2C3E50;
  311. font-size: 13px;
  312. background-color: transparent;
  313. }
  314. .pl-0 {
  315. padding-left: 0;
  316. }
  317. .terms {
  318. font-size: .9rem;
  319. width: 95%;
  320. min-width: 250px;
  321. height: auto;
  322. overflow: scroll;
  323. margin-bottom: 1rem;
  324. margin-left: auto;
  325. margin-right: auto;
  326. border: 1px solid rgb(163, 163, 163);
  327. line-height: 1.5rem;
  328. }
  329. .term-link a {
  330. text-decoration: none;
  331. color: black;
  332. }
  333. .h2 {
  334. text-align: center;
  335. font-size: 1.2rem;
  336. font-weight: 500;
  337. margin-top: 2rem;
  338. }
  339. .left_align {
  340. font-size: 18px;
  341. text-align: left;
  342. }
  343. #overlay {
  344. position: fixed; /* Sit on top of the page content */
  345. display: none;
  346. width: 100%;
  347. height: 100%;
  348. top: 0;
  349. left: 0;
  350. right: 0;
  351. bottom: 0;
  352. background-color: rgba(0,0,0,0.5);
  353. z-index: 2;
  354. cursor: pointer;
  355. }
  356. .thankyou {
  357. margin: auto;
  358. min-width: 350px;
  359. height: 250px;
  360. margin-top: 190px;
  361. background: #fff;
  362. padding: 15px 20px;
  363. line-height: 25px;
  364. border-radius: 4px;
  365. text-align: center;
  366. }
  367. .thankyou input {
  368. margin-top: 40px;
  369. }
  370. .thankyou h3 {
  371. font-size: 2rem;
  372. font-weight: 700;
  373. color: #21ba45;
  374. line-height: 2.5rem;
  375. margin-bottom: 1.5rem;
  376. }
  377. .check_button {
  378. display: none;
  379. }
  380. .fs-label-type {
  381. background: transparent;
  382. padding: 5px;
  383. border: 1px solid black;
  384. border-radius: 5px;
  385. display: inline-block;
  386. }
  387. .check_button:checked + .fs-label-type{
  388. background-color: #27AE60;
  389. color: white;
  390. padding: 5px;
  391. border: 1px solid #27AE60;
  392. border-radius: 5px;
  393. }
  394. input[type="checkbox"] {
  395. display: none;
  396. }
  397. #checker1, #checker2 {
  398. display: inline;
  399. }
  400. .fs-label-info {
  401. background: transparent;
  402. padding: 5px;
  403. border: 1px solid black;
  404. border-radius: 5px;
  405. display: inline-block;
  406. margin-bottom: 8px;
  407. }
  408. input[type="radio"] {
  409. display: none;
  410. }
  411. input[type="radio"]:checked + .fs-label-info {
  412. background-color: #27AE60;
  413. color: white;
  414. padding: 5px;
  415. border: 1px solid #27AE60;
  416. border-radius: 5px;
  417. }
  418. input[type="checkbox"]:checked + .fs-label-info {
  419. background-color: #27AE60;
  420. color: white;
  421. padding: 5px;
  422. border: 1px solid #27AE60;
  423. border-radius: 5px;
  424. }
  425. .btn-exit {
  426. padding: .5rem .75rem;
  427. background-color: transparent;
  428. border: 1px solid black;
  429. margin-top: .3rem;
  430. }
  431. .btn-term-exit {
  432. padding: .5rem .75rem;
  433. background-color: transparent;
  434. border: 1px solid black;
  435. margin-top: .3rem;
  436. display: block;
  437. margin-left: auto;
  438. margin-right: auto;
  439. margin-bottom: 2rem;
  440. }
  441. footer {
  442. padding: 2rem;
  443. padding-top: .5rem;
  444. }
  445. .footer {
  446. display: flex;
  447. justify-content: center;
  448. }
  449. .img_fr {
  450. width: 80%;
  451. max-width: 850px;
  452. min-width: 300px;
  453. height: 60px;
  454. object-fit: contain;
  455. object-position: center;
  456. }
  457. .img_fr img {
  458. width: 100%;
  459. height: 90%;
  460. }
  461. #msform #userid, #msform #area {
  462. height: 0;
  463. padding: 0;
  464. margin: 0;
  465. border: none;
  466. }