style.css 8.9 KB

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