style.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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_top.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. /*form styles*/
  90. #msform {
  91. min-width: 370px;
  92. max-width: 1000px;
  93. margin: 50px auto;
  94. margin-bottom: 20px;
  95. text-align: center;
  96. position: relative;
  97. }
  98. #msform fieldset {
  99. background: white;
  100. border: 0 none;
  101. border-radius: 3px;
  102. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  103. padding: 20px 30px;
  104. box-sizing: border-box;
  105. width: 80%;
  106. margin: 0 10%;
  107. /*stacking fieldsets above each other*/
  108. position: relative;
  109. }
  110. /*Hide all except first fieldset*/
  111. #msform fieldset:not(:first-of-type) {
  112. display: none;
  113. }
  114. /*inputs*/
  115. #msform input[type="text"], #msform textarea, #msform input[type="email"] {
  116. padding: 15px;
  117. border: 1px solid #ccc;
  118. border-radius: 3px;
  119. margin-bottom: 16px;
  120. width: 100%;
  121. box-sizing: border-box;
  122. font-family: montserrat;
  123. color: #2C3E50;
  124. font-size: 14px;
  125. }
  126. /*buttons*/
  127. #msform .action-button {
  128. width: 100px;
  129. background: #27AE60;
  130. font-weight: bold;
  131. color: white;
  132. border: 0 none;
  133. border-radius: 1px;
  134. cursor: pointer;
  135. padding: 10px 5px;
  136. margin: 10px auto;
  137. display: inline-block;
  138. }
  139. #msform .action-button:hover, #msform .action-button:focus {
  140. box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
  141. }
  142. /*headings*/
  143. .fs-title {
  144. font-size: 15px;
  145. text-transform: uppercase;
  146. color: #2C3E50;
  147. margin-bottom: 10px;
  148. }
  149. .fs-subtitle {
  150. display: inline-block;
  151. font-weight: normal;
  152. font-size: 13px;
  153. color: #666;
  154. margin-bottom: 20px;
  155. padding-bottom: 3px;
  156. border-bottom: 2px solid #27AE60;
  157. }
  158. .fs-label {
  159. display: block;
  160. text-align: left;
  161. margin-bottom: 8px;
  162. }
  163. .fs-label > i {
  164. margin-right: 3px;
  165. }
  166. /*progressbar*/
  167. #progressbar {
  168. margin-bottom: 30px;
  169. overflow: hidden;
  170. /*CSS counters to number the steps*/
  171. counter-reset: step;
  172. }
  173. #progressbar li {
  174. list-style-type: none;
  175. color: black;
  176. text-transform: uppercase;
  177. font-size: 12px;
  178. width: 33.33%;
  179. float: left;
  180. position: relative;
  181. }
  182. #progressbar li:before {
  183. content: counter(step);
  184. counter-increment: step;
  185. width: 20px;
  186. line-height: 20px;
  187. display: block;
  188. font-size: 12px;
  189. color: #333;
  190. background: white;
  191. border-radius: 3px;
  192. margin: 0 auto 5px auto;
  193. }
  194. /*progressbar connectors*/
  195. #progressbar li:after {
  196. content: '';
  197. width: 100%;
  198. height: 2px;
  199. background: white;
  200. position: absolute;
  201. left: -50%;
  202. top: 9px;
  203. z-index: -1; /*put it behind the numbers*/
  204. }
  205. #progressbar li:first-child:after {
  206. /*connector not needed before the first step*/
  207. content: none;
  208. }
  209. /*marking active/completed steps green*/
  210. /*The number of the step and the connector before it = green*/
  211. #progressbar li.active:before, #progressbar li.active:after{
  212. background: #27AE60;
  213. color: white;
  214. }
  215. p.error-text {
  216. bottom: -23px;
  217. left: 24px;
  218. color: rgba(255, 0, 0, .7);
  219. font-size: .8em;
  220. }
  221. #term-error {
  222. color: rgba(255, 0, 0, .7);
  223. font-size: .8em;
  224. bottom: -23px;
  225. left: 24px;
  226. }
  227. select {
  228. padding: 15px;
  229. border: 1px solid #ccc;
  230. border-radius: 3px;
  231. margin-bottom: 10px;
  232. width: 100%;
  233. box-sizing: border-box;
  234. font-family: montserrat;
  235. color: #2C3E50;
  236. font-size: 13px;
  237. background-color: transparent;
  238. }
  239. .terms {
  240. font-size: .9rem;
  241. width: 90%;
  242. min-width: 250px;
  243. height: 90px;
  244. overflow: scroll;
  245. margin-bottom: 1rem;
  246. margin-left: auto;
  247. margin-right: auto;
  248. border: 1px solid rgb(163, 163, 163);
  249. }
  250. .left_align {
  251. font-size: 18px;
  252. text-align: left;
  253. }
  254. #overlay {
  255. position: fixed; /* Sit on top of the page content */
  256. display: none;
  257. width: 100%;
  258. height: 100%;
  259. top: 0;
  260. left: 0;
  261. right: 0;
  262. bottom: 0;
  263. background-color: rgba(0,0,0,0.5);
  264. z-index: 2;
  265. cursor: pointer;
  266. }
  267. .thankyou {
  268. margin: auto;
  269. min-width: 350px;
  270. height: 250px;
  271. margin-top: 190px;
  272. background: #fff;
  273. padding: 15px 20px;
  274. line-height: 25px;
  275. border-radius: 4px;
  276. text-align: center;
  277. }
  278. .thankyou input {
  279. margin-top: 40px;
  280. }
  281. .thankyou h3 {
  282. font-size: 2rem;
  283. font-weight: 700;
  284. color: #21ba45;
  285. line-height: 2.5rem;
  286. margin-bottom: 1.5rem;
  287. }
  288. .check_button {
  289. display: none;
  290. }
  291. .fs-label-type {
  292. background: transparent;
  293. padding: 5px;
  294. border: 1px solid black;
  295. border-radius: 5px;
  296. display: inline-block;
  297. }
  298. .check_button:checked + .fs-label-type{
  299. background-color: #27AE60;
  300. color: white;
  301. padding: 5px;
  302. border: 1px solid #27AE60;
  303. border-radius: 5px;
  304. }
  305. input[type="checkbox"] {
  306. display: none;
  307. }
  308. #checker1, #checker2 {
  309. display: inline;
  310. }
  311. .fs-label-info {
  312. background: transparent;
  313. padding: 5px;
  314. border: 1px solid black;
  315. border-radius: 5px;
  316. display: inline-block;
  317. margin-bottom: 8px;
  318. }
  319. input[type="checkbox"]:checked + .fs-label-info {
  320. background-color: #27AE60;
  321. color: white;
  322. padding: 5px;
  323. border: 1px solid #27AE60;
  324. border-radius: 5px;
  325. }
  326. .btn-exit {
  327. padding: .5rem .75rem;
  328. background-color: transparent;
  329. border: 1px solid black;
  330. margin-top: .3rem;
  331. }
  332. footer {
  333. padding: 2rem;
  334. padding-top: .5rem;
  335. }
  336. .footer {
  337. display: flex;
  338. justify-content: center;
  339. }
  340. .img_fr {
  341. width: 80%;
  342. max-width: 850px;
  343. min-width: 300px;
  344. height: 60px;
  345. object-fit: contain;
  346. object-position: center;
  347. }
  348. .img_fr img {
  349. width: 100%;
  350. height: 90%;
  351. }