style.css 6.2 KB

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