conschedule 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +154 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/config/conschedule_manifest.js +2 -0
  6. data/app/assets/fonts/icomoon.eot +0 -0
  7. data/app/assets/fonts/proxima_nova_100.eot +0 -0
  8. data/app/assets/fonts/proxima_nova_400.eot +0 -0
  9. data/app/assets/fonts/proxima_nova_700.eot +0 -0
  10. data/app/assets/images/conschedule/chosen-sprite-small.png +0 -0
  11. data/app/assets/images/conschedule/chosen-sprite.png +0 -0
  12. data/app/assets/images/conschedule/close.png +0 -0
  13. data/app/assets/images/conschedule/spinner-small.gif +0 -0
  14. data/app/assets/images/conschedule/spinner.gif +0 -0
  15. data/app/assets/javascripts/conschedule/application.js +22 -0
  16. data/app/assets/javascripts/conschedule/calendar.js +467 -0
  17. data/app/assets/javascripts/conschedule/date.js +104 -0
  18. data/app/assets/javascripts/conschedule/form.js +53 -0
  19. data/app/assets/javascripts/conschedule/home.js +149 -0
  20. data/app/assets/javascripts/conschedule/jquery-ui-datepicker.min.js +1674 -0
  21. data/app/assets/javascripts/conschedule/jquery.easing.min.js +44 -0
  22. data/app/assets/javascripts/conschedule/jquery.validate.js +1532 -0
  23. data/app/assets/javascripts/conschedule/js_time_zone.js +1433 -0
  24. data/app/assets/javascripts/conschedule/moment-timezone.js +1209 -0
  25. data/app/assets/javascripts/conschedule/moment.js +4195 -0
  26. data/app/assets/javascripts/conschedule/schedules.js +22 -0
  27. data/app/assets/javascripts/conschedule/time_zones_drop_down.js +609 -0
  28. data/app/assets/stylesheets/conschedule/application.css +4 -0
  29. data/app/assets/stylesheets/conschedule/common.css +816 -0
  30. data/app/assets/stylesheets/conschedule/home.css +2441 -0
  31. data/app/assets/stylesheets/conschedule/main.css +884 -0
  32. data/app/assets/stylesheets/conschedule/schedules.css +4 -0
  33. data/app/controllers/conschedule/application_controller.rb +49 -0
  34. data/app/controllers/conschedule/schedules_controller.rb +125 -0
  35. data/app/helpers/conschedule/application_helper.rb +15 -0
  36. data/app/helpers/conschedule/schedules_helper.rb +43 -0
  37. data/app/jobs/conschedule/application_job.rb +4 -0
  38. data/app/mailers/conschedule/schedules_mailer.rb +46 -0
  39. data/app/models/conschedule/application_record.rb +5 -0
  40. data/app/models/conschedule/schedule.rb +63 -0
  41. data/app/views/conschedule/schedules/_confirmation.html.erb +38 -0
  42. data/app/views/conschedule/schedules/_page_one.html.erb +75 -0
  43. data/app/views/conschedule/schedules/_page_three.html.erb +94 -0
  44. data/app/views/conschedule/schedules/_page_two.html.erb +22 -0
  45. data/app/views/conschedule/schedules/_schedules.html.erb +122 -0
  46. data/app/views/conschedule/schedules/create.js.erb +11 -0
  47. data/app/views/conschedule/schedules/index.html.erb +123 -0
  48. data/app/views/conschedule/schedules/index.js.erb +3 -0
  49. data/app/views/conschedule/schedules/new.html.erb +11 -0
  50. data/app/views/conschedule/schedules_mailer/send_cancel_email_owner.html.erb +61 -0
  51. data/app/views/conschedule/schedules_mailer/send_cancel_email_user.html.erb +29 -0
  52. data/app/views/conschedule/schedules_mailer/send_confirmation_email_owner.html.erb +77 -0
  53. data/app/views/conschedule/schedules_mailer/send_confirmation_email_user.html.erb +30 -0
  54. data/app/views/kaminari/custom_theme/_first_page.html.erb +3 -0
  55. data/app/views/kaminari/custom_theme/_gap.html.erb +1 -0
  56. data/app/views/kaminari/custom_theme/_last_page.html.erb +3 -0
  57. data/app/views/kaminari/custom_theme/_next_page.html.erb +1 -0
  58. data/app/views/kaminari/custom_theme/_page.html.erb +5 -0
  59. data/app/views/kaminari/custom_theme/_paginator.html.erb +23 -0
  60. data/app/views/kaminari/custom_theme/_prev_page.html.erb +1 -0
  61. data/app/views/layouts/conschedule/application.html.erb +14 -0
  62. data/app/views/layouts/conschedule/mailer.html.erb +11 -0
  63. data/app/views/layouts/conschedule/schedules.html.erb +14 -0
  64. data/config/initializers/assets.rb +11 -0
  65. data/config/routes.rb +11 -0
  66. data/db/migrate/20160812085505_create_conschedule_schedules.rb +27 -0
  67. data/lib/conschedule.rb +34 -0
  68. data/lib/conschedule/configuration.rb +25 -0
  69. data/lib/conschedule/engine.rb +5 -0
  70. data/lib/conschedule/gem_dependencies.rb +2 -0
  71. data/lib/conschedule/version.rb +3 -0
  72. data/lib/generators/conschedule/install_generator.rb +23 -0
  73. data/lib/generators/conschedule/views_generator.rb +45 -0
  74. data/lib/generators/templates/README +40 -0
  75. data/lib/generators/templates/initializer.rb +25 -0
  76. data/lib/tasks/conschedule_tasks.rake +4 -0
  77. metadata +182 -0
@@ -0,0 +1,2441 @@
1
+ html {
2
+ font-family: sans-serif;
3
+ -ms-text-size-adjust: 100%;
4
+ -webkit-text-size-adjust: 100%
5
+ }
6
+ body {
7
+ margin: 0
8
+ }
9
+ article, aside, details, figcaption, figure, footer, header, hgroup,
10
+ main, menu, nav, section, summary {
11
+ display: block
12
+ }
13
+ audio, canvas, progress, video {
14
+ display: inline-block;
15
+ vertical-align: baseline
16
+ }
17
+ audio:not([controls]) {
18
+ display: none;
19
+ height: 0
20
+ }
21
+ [hidden], template {
22
+ display: none
23
+ }
24
+ a {
25
+ background-color: transparent
26
+ }
27
+ a:active, a:hover {
28
+ outline: 0
29
+ }
30
+ abbr[title] {
31
+ border-bottom: 1px dotted
32
+ }
33
+ b, strong {
34
+ font-weight: bold
35
+ }
36
+ dfn {
37
+ font-style: italic
38
+ }
39
+ h1 {
40
+ font-size: 2em;
41
+ margin: 0.67em 0
42
+ }
43
+ mark {
44
+ background: #ff0;
45
+ color: #000
46
+ }
47
+ small {
48
+ font-size: 80%
49
+ }
50
+ sub, sup {
51
+ font-size: 75%;
52
+ line-height: 0;
53
+ position: relative;
54
+ vertical-align: baseline
55
+ }
56
+ sup {
57
+ top: -0.5em
58
+ }
59
+ sub {
60
+ bottom: -0.25em
61
+ }
62
+ img {
63
+ border: 0
64
+ }
65
+ svg:not(:root) {
66
+ overflow: hidden
67
+ }
68
+ figure {
69
+ margin: 1em 40px
70
+ }
71
+ hr {
72
+ box-sizing: content-box;
73
+ height: 0
74
+ }
75
+ pre {
76
+ overflow: auto
77
+ }
78
+ code, kbd, pre, samp {
79
+ font-family: monospace, monospace;
80
+ font-size: 1em
81
+ }
82
+ button, input, optgroup, select, textarea {
83
+ color: inherit;
84
+ font: inherit;
85
+ margin: 0
86
+ }
87
+ button {
88
+ overflow: visible
89
+ }
90
+ button, select {
91
+ text-transform: none
92
+ }
93
+ input[type="reset"], input[type="submit"] {
94
+ -webkit-appearance: button;
95
+ cursor: pointer
96
+ }
97
+ button[disabled], html input[disabled] {
98
+ cursor: default
99
+ }
100
+ button::-moz-focus-inner, input::-moz-focus-inner {
101
+ border: 0;
102
+ padding: 0
103
+ }
104
+ input {
105
+ line-height: normal
106
+ }
107
+ input[type="checkbox"], input[type="radio"] {
108
+ box-sizing: border-box;
109
+ padding: 0
110
+ }
111
+ input[type="number"]::-webkit-inner-spin-button,
112
+ input[type="number"]::-webkit-outer-spin-button {
113
+ height: auto
114
+ }
115
+ input[type="search"] {
116
+ -webkit-appearance: textfield;
117
+ box-sizing: content-box
118
+ }
119
+ input[type="search"]::-webkit-search-cancel-button,
120
+ input[type="search"]::-webkit-search-decoration {
121
+ -webkit-appearance: none
122
+ }
123
+ fieldset {
124
+ border: 1px solid #c0c0c0;
125
+ margin: 0 2px;
126
+ padding: 0.35em 0.625em 0.75em
127
+ }
128
+ legend {
129
+ border: 0;
130
+ padding: 0
131
+ }
132
+ textarea {
133
+ overflow: auto
134
+ }
135
+ optgroup {
136
+ font-weight: bold
137
+ }
138
+ table {
139
+ border-collapse: collapse;
140
+ border-spacing: 0
141
+ }
142
+ td, th {
143
+ padding: 0
144
+ }
145
+ .clearfix, .row, .dashboard .controls .scopes-row, .dashboard .controls .event-types-row {
146
+ *zoom: 1
147
+ }
148
+ .clearfix:after, .row:after, .dashboard .controls .scopes-row:after, .dashboard .controls .event-types-row:after {
149
+ content: ".";
150
+ display: block;
151
+ height: 0;
152
+ line-height: 0;
153
+ clear: both;
154
+ visibility: hidden
155
+ }
156
+ .last-col {
157
+ /*display: table-cell;*/
158
+ float: none;
159
+ width: auto;
160
+ _margin-right: -3px;
161
+ _left: -3px;
162
+ _position: relative;
163
+ *display: block;
164
+ *zoom: 1
165
+ }
166
+ @media only screen and (max-width: 800px) {
167
+ .row.adaptive>[class^="col"],
168
+ .dashboard .controls .adaptive.scopes-row>[class^="col"],
169
+ .dashboard .controls .adaptive.event-types-row>[class^="col"] {
170
+ width: 100%;
171
+ float: none;
172
+ padding: 0
173
+ }
174
+ }
175
+ @font-face {
176
+ font-family: 'RedactorFont';
177
+ font-weight: normal;
178
+ font-style: normal;
179
+ src: url(data:application/font-woff;base64,d09GRk9UVE8AABIoAAoAAAAAEeAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAADgEAAA4Bg0Rie09TLzIAAA74AAAAYAAAAGAIIvzVY21hcAAAD1gAAABMAAAATBpVzHZnYXNwAAAPpAAAAAgAAAAIAAAAEGhlYWQAAA%2BsAAAANgAAADYACVb9aGhlYQAAD%2BQAAAAkAAAAJAPhAgVobXR4AAAQCAAAAJAAAACQQQED3m1heHAAABCYAAAABgAAAAYAJFAAbmFtZQAAEKAAAAFmAAABZhHEcG1wb3N0AAASCAAAACAAAAAgAAMAAAEABAQAAQEBDVJlZGFjdG9yRm9udAABAgABADr4HAL4GwP4GAQeCgAZU%2F%2BLix4KABlT%2F4uLDAeKZviU%2BHQFHQAAAT8PHQAAAUQRHQAAAAkdAAAN%2BBIAJQEBDRkbHSAlKi80OT5DSE1SV1xhZmtwdXp%2FhImOk5idoqessba7wFJlZGFjdG9yRm9udFJlZGFjdG9yRm9udHUwdTF1MjB1RTYwMHVFNjAxdUU2MDJ1RTYwM3VFNjA0dUU2MDV1RTYwNnVFNjA3dUU2MDh1RTYwOXVFNjBBdUU2MEJ1RTYwQ3VFNjBEdUU2MEV1RTYwRnVFNjEwdUU2MTF1RTYxMnVFNjEzdUU2MTR1RTYxNXVFNjE2dUU2MTd1RTYxOHVFNjE5dUU2MUF1RTYxQnVFNjFDdUU2MUR1RTYxRXVFNjFGAAACAYkAIgAkAgABAAQABwAKAA0AQQCYAPEBSQH6Ai8CxwMhA98EGwTXBYEFkQW0BfEGLwagBxEHOgf0CLUJaQmsCfwKhAq5C0QLdAuiC9AMAQxo%2FJQO%2FJQO%2FJQO%2B5QOi7AVi%2FgB%2BJSLi%2FwB%2FJSLBfhv990V%2FEqLi%2Fu5%2BEqLi%2Fe5Bfu4%2B5QVi%2Fdv9yb7Avsm%2BwEFDvcm%2BAIV%2BAKLi0L8AouL1AWL%2BwIV%2BAKLi0L8AouL1AWL%2BwIV%2BAKLi0L8AouL1AX7JvdwFdSLi0JCi4vUBYv7AhXUi4tCQouL1AWL%2BwIV1IuLQkKLi9QFDviLsBVky0yq%2B0KWCIshBYuLQMb7LPcT9z33GsW4i4sIiyEF92Wr9wT7QV77Cgj7yfdpFYvIBYuLb3ImSOFBtnqLiwiLfIvXBe6F9yJ7nGSl0PsO6Ps2YwgO9wLUFfe4i4tn%2B7iLi68FysoVnHmngrGLsounlJydnJ2Up4uyCIv3SUyLi%2FtXBYt8hoCDg4ODgId8i32Lf4%2BDk4OTh5aLmgiL91dLi4v7SQWLZJRvnXkIDvfd%2BEoVrouL%2ByrWi4tr%2BwKLi%2FdKBbH7kxX3JS%2F7JS%2BL1fsDi4uw9wOLi9QF%2B3LTFfsl5%2Fcl54tC9wOLi2b7A4uLQQWXNhWTg499i3iLf4mBhoSGg4SHgYmOio6KjYiNiI6GjoQIpklri3i5BYuMio2KjYaZhZKEiwiBi4tDbouL90q1iwWfi5mHk4MIVEcVmYsFk4uRjY%2BPjo%2BNkYuUi5SJkoiOh4%2BFjYOLCH2Li1kFDve393oVRYuu9wyu%2BwwF%2B0r7DRXVi6LU7ouiQtWLJve6MIsm%2B7oFjGcV97iLi0L7uIuL1AUOi7AVi%2FgB%2BJSLi%2FwB%2FJSLBfdLrxX3JouL1Psmi4tCBYv3AhX3JouL1Psmi4tCBWb3SxX7AYuLQvcBi4vUBYv7AhX7AYuLQvcBi4vUBYv7AhX7AYuLQvcBi4vUBbD3cBWLQvcmi4vU%2ByaLBfe4ixX7AYuLQvcBi4vUBYv7AhX7AYuLQvcBi4vUBYv7AhX7AYuLQvcBi4vUBQ74lPdzFfss%2BxNAUIuLCIv1BftCgExsZEte9wr3BPdB92VrCIv1BYuLxV73PfsaCPxYLBWcsvcim%2B6RCIs%2Fi5oFi4u2nOHVJs5vpIuLCItOBfs2s%2FsOLqVGCA73zfe2FXNsgGiLY4tpk3Ccd513n4Gji6CLnJKZmpqakpyLn4uehZt%2BmH%2BZfJJ7i32LgIeChQiIiYmKiYuKi4mMioyKjoqPi5GLpJOknKOco6KcqJYIi6EFWXhlcnRrCPthixV0bH9oi2OLaZNwnXecd6CBoougi5ySmpqZmpKci5%2BLnoWbfph%2FmX2Seot%2Bi3%2BIgoQIiImJioqLiYuKjIqMiY6Kj4uRi6SUpJujnKOinKmWCIuhBVh4ZnJzawgOi%2FgCFfiUi4tC%2FJSLi9QF90v7AhX33YuLQvvdi4vUBYv7AhX33YuLQvvdi4vUBWZCFYv3S%2FsnL%2FcnMAUO9yb4AhX4AouLQvwCi4vUBYv7AhX4AouLQvwCi4vUBYv7AhX4AouLQvwCi4vUBfsh9hXPi4ufc4uL6HeLdYWLd6GRi0Jzi4t3Bav7JRWXl5KTjY6PkI2PjY%2BMj4yPi5CLlIiThJCFkYKOf4uHi4aKhoqGioaKhokIi3YFkI6QjZCNkIyPjI%2BLkIuPio6IjoiMh4uGi4iLiImIiYeJh4eHiIiDgX18CIB%2Bi3jPi4ufXosFjo%2BQkJGRCIuLBQ74AtQVcItyk3aYCIu%2FqYsFmIWZh5uLvYu0sIu5i7pisFmLe4t9h36FCG2Li78FoJikk6aL3IvMSYs6iztKSTqLCPtL90sV9yaLi0L7JouL1AVmuhV8i3yHfoUIbYuLcwWAfYR6i3iLeZJ5ln0Ii3SpiwWYhZqHmoubi5mPmJEIqYuLVwV2fnKDcIs6i0rNi9uL3MzN3Iumi6SDoH4Ii1dtiwV%2BkX2Pe4sIDov3lBX4lIuLQvyUi4vUBQ73m%2FftFWL7a0qLgFL3VYuWxEuLtPdry4uWxPtVi4BSzIsFDov4AhX4lIuLQvyUi4vUBfdL%2BwIV992Li0L73YuL1AWL%2BwIV992Li0L73YuL1AX7S0IVi%2FdL9ycv%2BycwBQ6LsBWL%2BAH4lIuL%2FAH8lIsF%2BG%2F33RX8SouL%2B7n4SouL97kF%2B0r7SxWvi7vqySyLQvwCi4vU9wL3JvcC%2ByYFDvhv%2BEsVi%2Ftw%2B2%2F3cPdviwVhYBWShIyChoUI%2Bwf7BwWFhoKMhJKEkoqUkJEI9wj3BwWQkJWKkYQI%2FCD8HxX3b4r7b%2Fdvi%2FtuBbW1FZKElYqQkAj3B%2FcHBZCQipWEkoSRgo2FhQj7BvsHBYWGjYGRhQgO97n3kxWL93D3b%2Ftv%2B2%2BKBbW3FYSSipSQkQj3B%2FcGBZGRlIqShJKEjIGGhgj7CPsHBYaGgYyFkgj7CPsJFftvjPdv%2B3CL928FYWEVhJKBjIaGCPsH%2BwcFhoaMgZKEkoSUipGRCPcG9wYFkZGJlIWSCA733bAVi%2FfdZ4uL%2B91Bi4v3JgVPi1q8i8iLx7y8x4sI9yeLi%2FwBZosFDvgm9yYV1Ysv%2ByUv9yXVi4v3J0GL5%2Fcl5%2FslQYuL%2BycF%2B3%2BEFYWCgoSBhoGGgIh%2Fi3WLeZF%2BmH6XhZ2Looujkp2blpqXopGriwiwi4uUBYuUiJKFj4SQgo1%2Fi3%2BLf4l%2FiH%2BIf4V%2BhAiLugWWkJeOl46XjZiMmIusi6KEmH6ZfZFyi2gIi%2FsMV4uLowWL1hV2iwV3i32IhIaDhoeCi36LgY6EkIWQhpOIlIuZi5aQkpaTlo%2Bai58Ii48FDvdC91kVVoum9wml%2BwkF%2Bx37ChXDi5zS1oudRMOLPvezR4s%2B%2B7MF%2BBPwFYuHBYt3h3uDgIOAf4V9i4GLg46GkYWRiJOLlIuYj5WTkJSQmY6giwihiwWt7RV9mXOSaYt8i36Kfol%2FiH6Hf4YIi1sFmJOYkJiPl46YjZmLl4uViJGHkoaOhIuCCIuCZYsFaYtyhXt%2Fe3%2BDeItyi3SReZl%2BmH6ehaOLmIuXjZWQlpCTk5KUCItzwouL9w8Fi6%2BEpX2ZCA7U95QV%2BAKLi2b8AouLsAX3U1oVloeUhZGEkYSOgouCi36GgYKEgoR%2FiHuLe4t6jnuRepB6lHqXCItKBZqEm4Wch5yIm4mci7OLqZOfm5%2BalKOLq4ujhZ9%2Fmn6bd5dwlAhvlgV3kX6ShZGFkIiTi5OLl4%2BUlJGTkZeOm4uai5mImoaZhpqEmYIIi8gFfJF8kHuPfI58jXuLaYtxg3h6d3uCdItui3WQeZd%2Bl32hf61%2BCKuABQ6L928Vr6n3S%2FsnZ277S%2FcmBYuLFfdL9yevbvtL%2BydnqAX4lIsVZ6n7S%2Fsnr273S%2FcmBYuLFftL9ydnbvdL%2ByevqAUOi2YVi%2FiU%2BJSLi%2FyU%2FJSLBfhv%2BHAV%2FEqLi%2FxL%2BEqLi%2FhLBUL7JhX7uIuL1Pe4i4tCBYv7AhX7uIuL1Pe4i4tCBYv7AhX7uIuL1Pe4i4tCBQ73jPdyFZ6LmYiUg5ODj36LeYt6h3%2BDhIOEfYd3iwhii4vstIsFi%2FcVFZuLloiShJKFjoKLfYt%2BiIGEhYSFgIh7iwhii4vYtIsFJvuqFfCLBbWLqJKemp2ZlKKLqoulhZ9%2Fmn%2BZeZRzjZ%2BNmpKVl5aXkJuLoIungqB5mHqZcJJoiwgmi4v73QUOsIsVi%2FhL%2BEqLi%2FxL%2FEqLBfeR%2BAIVR4s%2F%2B7nDi5vT1oucQ8KLQPe5BWlWFaX7DFeLpfcMBQ74UPeKFfso%2ByiHjwV9h3uNfJMIamupbXx8BWJiSYtitAh8mgVitIvNtLQI92v3awW0tM2LtGIImnwFtGKLSWJiCGb3EhVuqFyKbm4I%2B1n7WgVtbotcp26ob7qLqKkIsrEFg4%2BEkIWScKaGsJ%2BgCN3dBZuapIyifwj7EvsRsWb3GvcaBaiojLpuqAgOi%2FgCFfiUi4tC%2FJSLi9QF9yb7AhX4AouLQvwCi4vUBfcn%2BwIV92%2BLi0L7b4uL1AUOi%2FgCFfiUi4tC%2FJSLi9QFi%2FsCFfgBi4tC%2FAGLi9QFi%2FsCFfdwi4tC%2B3CLi9QFDov4AhX4k4uLQvyTi4vUBYv7AhX4k4uLQvyTi4vUBYv7AhX4lIuLQvyUi4vUBQ73AvgCFfe4i4tC%2B7iLi9QF%2BwL7AhX4lIuLQvyUi4vUBfcC%2BwIV97iLi0L7uIuL1AUO1LIVi9RCi4v3ufhLi4tB1IuL%2B7j8S4sF99333RX8AYuL%2B3D4AYuL93AF1UIVZouL%2B0v73YuLZvgCi4v3cAX7b0IV%2B0yL5%2FcB5%2FsBBfcBZhX7uYuLsPe5i4tmBWL3AhW0QkKLq9QFDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAOYfAeD%2F4P%2FgAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAOAAAAAoACAACAAIAAQAg5h%2F%2F%2Ff%2F%2FAAAAAAAg5gD%2F%2Ff%2F%2FAAH%2F4xoEAAMAAQAAAAAAAAAAAAAAAQAB%2F%2F8ADwABAAAAAQAAhlBJsl8PPPUACwIAAAAAAM91iyUAAAAAz3WLJf%2F%2F%2F9sCAAHbAAAACAACAAAAAAAAAAEAAAHg%2F%2BAAAAIA%2F%2F8AAAIAAAEAAAAAAAAAAAAAAAAAAAAkAAAAAAAAAAAAAAAAAQAAAAIAAAACAAAAAgAAAAIAAG4CAAAAAgAAbQIAAAACAAAJAgAASQIA%2F%2F8CAAAAAgAAAAIAAAACAACSAgAAAAIAAAACAAAlAgAAAAIAAG4CAAAlAgAAJQIAAEkCAAAAAgAAAAIAAJMCAAAlAgAAQgIAAAACAAAAAgAAAAIAAAACAAAAAABQAAAkAAAAAAAOAK4AAQAAAAAAAQAYAAAAAQAAAAAAAgAOAGoAAQAAAAAAAwAYAC4AAQAAAAAABAAYAHgAAQAAAAAABQAWABgAAQAAAAAABgAMAEYAAQAAAAAACgAoAJAAAwABBAkAAQAYAAAAAwABBAkAAgAOAGoAAwABBAkAAwAYAC4AAwABBAkABAAYAHgAAwABBAkABQAWABgAAwABBAkABgAYAFIAAwABBAkACgAoAJAAUgBlAGQAYQBjAHQAbwByAEYAbwBuAHQAVgBlAHIAcwBpAG8AbgAgADEALgAwAFIAZQBkAGEAYwB0AG8AcgBGAG8AbgB0UmVkYWN0b3JGb250AFIAZQBkAGEAYwB0AG8AcgBGAG8AbgB0AFIAZQBnAHUAbABhAHIAUgBlAGQAYQBjAHQAbwByAEYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%3D%3D) format("woff"), url(data:application/x-font-ttf;base64,AAEAAAALAIAAAwAwT1MvMggi%2FNUAAAC8AAAAYGNtYXAaVcx2AAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zm8dIFkAAAFwAAATSGhlYWQACVb9AAAUuAAAADZoaGVhA%2BECBQAAFPAAAAAkaG10eEEBA94AABUUAAAAkGxvY2FVlFE8AAAVpAAAAEptYXhwAC8AkgAAFfAAAAAgbmFtZRHEcG0AABYQAAABZnBvc3QAAwAAAAAXeAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmHwHg%2F%2BD%2F4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYf%2F%2F3%2F%2FwAAAAAAIOYA%2F%2F3%2F%2FwAB%2F%2BMaBAADAAEAAAAAAAAAAAAAAAEAAf%2F%2FAA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAwAAACUCAAGSAAQACQANAAA3EQURBQEFEQURATUXBwACAP4AAdv%2BSgG2%2FtySkiUBbgH%2BlAEBSgH%2B3AEBJv7%2F3G9sAAAGAAAASQIAAW4ABAAJAA4AEwAYAB0AABMhFSE1FSEVITUVIRUhNSczFSM1FTMVIzUVMxUjNZIBbv6SAW7%2BkgFu%2FpKSSUlJSUlJAW5JSW5JSW5JSdxJSW5JSW5JSQAAAAACAAAAJQH3AZIAFgAuAAAlLgMnBzIuAic%2BAyMXNh4CByUnMg4CBx4DIxcnHgMXNi4CBwH3Dik%2FXUABAR04Vjg%2BWDUYAQFNeEcZEv7MAQENHDMlHzIfEQEBASZUTDYHCSBIZj4lGCQaEARqFi5HLzJFKhJqDC1RZSzVPQoWIxkbJBQID0wCCQ4VDxo4KA8PAAACAG4AJQGSAZIABAAzAAA3IQchJzceAzMyPgI3PgMnNyMXDgMHDgMjIi4CJy4DNycjBx4DF24BJQH%2B3QFABRIUGg0QGBUQCAYKBgQBAUABAQEEBAQCCAgKBQYJCQcEAgUCAwEBPwEBAwcJCEkkJD8HCgYEBAYKBwcRFRkPtcMGCQkHAwMFAwEBAwUDAwcJCQbDtQ8ZFREHAAUAAP%2F%2FAgABtwAGAA4AFgBHAF8AAAEzFTMVIzUfAQc1IzUzNS8BNxUzFSMVFx4DFRwBDgEHDgMHMh4CFx4DHwEjJzwBJjQjLgMrARUjNTMyHgIXBzMyPgI3PgM1NC4CJy4DKwEVAUkjS24mkZFvb96RkW9vDAMFAwECAwICBQUGBAECAgIBAQICAgEbIBMBAQIEBQUCCh0qCAwKCQM3DgMFBQMCAQIBAQEBAgECAwQGAw4BtpYgtv9cXEolSUhcXEklSlUDCAoNBwQJBwcCAwUDAgEBAQIBAQMEBANCLgEBAQIGBwYCSLYBAwUDRAECAgECBAQGAwQFBQQBAgIBATIAAAAAAwBtAAABkgGTAAMADAARAAAlIzcXBzM3MxczAyMDFyEVITUBI0YjI7ZKF2MXSmVbZQEBJP7c5nh4eUlJASb%2B2iRJSQAKAAAAJQIAAZIABAAJAA4AEwAYAB0AIgAnACwAMQAANxEFEQU3FzUHFTU3NScVJwcVFzUVJxU3NRUHFRc1NxUXNQclBxUXNRUnFTc1FQcVFzUAAgD%2BALeSkpKSJW1tbW1tbSWSkgEkbW1tbW1tJQFuAf6UASUBSgFIbQFIAUq4AUgBSm8BSgFIbQFIAUrbSAFKAQEBSAFKbwFKAUhtAUgBSgAAAAIACQAlAgABkgAWAC4AACUOAxU1DgMHJj4CFzU0HgIXBT4DNxU1FD4CNy4DNRUmDgIXAgA5VTkcQVxAKA8RGEh3Thc2Vz%2F%2BPAY3S1UlECAxICYyHQw9Z0chCt8wRi8VAWsFDxsjGS1kUiwLaQETKUYxYBAUDwgDTRABCRMlGhoiFwkBPhAQJzkZAAAAAgBJAEkBtwFuAEcAjwAAAQ4DFRQeAhceAxc%2BAzc%2BAzU0LgInLgMHJg4CBwYiBiYHNAYmIicwLgE0NTQ%2BAjc%2BAzc1DgMHJw4DFRQeAhceAxc%2BAzc%2BAzU0LgInLgMHJg4CBwYiBiYVJgYmIjUiJjQmNTQ%2BAjc%2BAzc1DgMHATkJDQkEAwYKBgcOEBAJCA4NDAUGCAUDAwQHBQUKCgwGBQoICAMBAgIBAQEBAQEBAQMGCgYGDxITCxMhHBYJzQkNCQQDBwkHBg4QEQgIDg0MBgUIBQMCBQcFBAoLDAYFCQkIAwECAgEBAQEBAQEBAwcJBgcPERQLEyEcFwkBIgwYHBsQCxgUEgcICwgDAQECBggGBQ0MDwYIDA0KBgUIBAQBAQICBQECAgEBAQECAQQCBQEKEhQRCggQDAwDFwgQFBQNAQwYHBsQCxgUEgcICwgDAQECBggGBQ0MDwYIDA0KBgUIBAQBAQICBQECAgEBAQECAQQCBQEKEhQRCggQDAwDFwgQFBQNAAT%2F%2FwBJAgABbgAEAAkADgASAAATIRUhNRchFSE1FSEVITUHNQcXAAIA%2FgC3AUn%2BtwFJ%2Frclk5MBbklJbklJbklJSbdcWwAAAAUAAABJAgABbgAEAAkADgAaAG0AABMhFSE1FSEVITUVIRUhNSczNSM1IwcVNxUjFRc%2BAzc%2BAzc0PgE0NTQuAicuAyMiBioBByIOAiMVPgM3Mj4BMjM6AR4BFx4CFBUcAQYUBw4DBw4DDwEVMzUjPgM3MZIBbv6SAW7%2BkgFu%2FpKNRBgUFhYYIAUHBQMBAgICAQEBAQEDBAICBgcHBQEEAwQCAgMEBAICBAQDAgIDAwMCAgMDAwEBAgEBAQEBAgICAQQGCQULRC0BAwQEAgFuSUluSUluSUlrFF0GFAZJFJEFBwYEAQIDBAMBAgMDAwIDBwUFAgIEAgEBAQEBAhUBAgIBAQEBAQIBAQIDBAIBAgMCAQICAwMCAQUHCQYNExQBBAMFAgADAAAASQIAAW4ALAAxAGwAACUiLgInNTMeAzMyPgI1NC4CIyIOAgcjNT4DMzIeAhUUDgIjJzMVIzUnIg4CByMVDgMVFB4CFxUzHgMzMj4CNzMVDgMjIi4CNTQ%2BAjMyHgIXFSMuAyMBbgoUEhEIHgUKCwsGEyEZDg4ZIRMGCwsKBR4IERIUCh41KBcXKDUet5KSJQYLCwoFHgQHBQICBQcEHgUKCwsGBgsLCgUeCBESFAoeNSgXFyg1HgoUEhEIHgUKCwsGSQMGBwU0AgQDAQ0XHhESHhcNAQMEAjQFBwYDFyg1Hx41KBe3SUkvAQMEAhgFCw0OBwcNDQsGFwIEAwEBAwQCNAUHBgMXKDUeHzUoFwMGBwU0AgQDAQAAAAEAAAC3AgABAAAEAAATIRUhNQACAP4AAQBJSQABAJIASQGSAZIADAAAAQ8CFzcHNxc3DwEXAQcpQQvBC0ApQAvBC0EBWdYBOAE6AdgBOgE4AQAAAAQAAABJAgABbgAEAAkADgASAAATIRUhNRchFSE1FSEVITUHNRcHAAIA%2FgC3AUn%2BtwFJ%2Fre3k5MBbklJbklJbklJSbdcWwAAAAMAAAAlAgABkgAEAAkAEgAANxEFEQUBBREFEQc%2FARcVJTU3FwACAP4AAdv%2BSgG2tiQwPv6Sbm4lAW4B%2FpQBAUoB%2FtwBASa4AV5eSgFIk5MABAAlAAAB2wG3AAMAGgAeADUAAAEVJzMHHgIGDwEOAS4BJy4BNDY%2FAT4BHgEXARcnFTceATI2PwE%2BAS4BJy4CBg8BDgEeARcB29vbKgMDAQICcwIGBgYCAwMBAnQCBQYGAv5029sqAwYGBQJzAgEBAgMCBgYGAnICAgEDAgG33NwrAgYGBgJzAgEBAgMDBQYGAnMCAQECA%2F51AdvaKgMDAQJzAgUGBgMCAwECAnMCBQYGAgAABAAA%2F9sCAAHbAAMAGgAeADUAACU1Fwc3LgI2PwE%2BAR4BFx4BFAYPAQ4BIiYnBycXNQcuASIGDwEOAR4BFx4CNj8BPgEuAScBJdvbKgMDAQICcwIGBgYCAwMBAnQCBQYGAnTb2yoDBgYFAnMCAQECAwIGBgYCcgICAQMC%2F9zbASwCBgYGAnICAgEDAgMGBgUCcwIBAwN1AdzbKgMDAQJzAgUGBgMCAwECAnICBgYGAgABAG4AJQFuAZIAEgAAJREjESM1Ii4CNTQ%2BAjsBESMBSSRKFigeEREeKBaTJSUBSf63khEeKBcWKB4R%2FpMAAAAAAwAlAAEB3AG2AAoAVwB4AAAlMwcnMzUjNxcjFQcOAwcOAyMiLgInLgM1ND4CNz4DOwE1NC4CJy4DIyIOAgcOAwc1PgM3PgIyMzIeAhceAx0BIzU1IyIOAgcOAxUUHgIXHgMzMj4CNz4DPQEBkkpcXEpKXFxK6wIGBgcEAwgICQUIDw4LBQUHBQIDBQkGBQ8SFAwlAQMDAgMFBwgFBAoJCQQFCQkJBQQJCQkEBQkKCQUNFRENBQUIBQI0FQgMCggDAwUDAQECAwICBQUHAwUJCQcCAwUCApKRkZORkZMHBAYFBQECAwIBAgUHBQULDQ8JCRANCwQFBgUCCQMGBQQCAgICAQEBAgEBAwQFAy8CAwMCAQEBAQIFCAUGDhIXDXgYSwECAwICBgYIBQQGBgUCAgMCAQIEBgQECgsOBwQAAAAEACUASgHbAW4AAwAMAC0AegAANyM3FwczNzMXMwMjAyUVFA4CBw4DIyIuAicuAzU0PgI3PgM7ATcuAyMqAQ4BBw4DBxU%2BAzc%2BAzMyHgIXHgMdASMiDgIHDgMVFB4CFx4DMzI%2BAjc%2BAzcVMzU0LgInrjUbGok4EUsSOE1ETQF%2FAQMFAwMHCQoFBAYGBQIDAwIBAgMEAwMJCw0IFiIFDhIWDQYKCgoFBAoJCgQFCgoJBQUJCgoFBAkHBgIDAwMBJg0WEw8GBgkGAwIFCAUFDA4QCQUJCQgEBAcHBgI3AgUIBsV1dXZHRwEf%2FuFlBAcOCwsEBAYEAwICAwICBQYHAwUJBwUCAgMCAWIFCAYCAQEBAQMCBAIwAwUEAwIBAgEBAQIDAQIEBgYDCQMEBwQFCw4QCgkPDgsFBQcFAgEBAwICBQUHAxh7DhcTDwUAAAIASQBJAbcBkwAEAIEAABMhFSE1Fx4DFx4DFRQOAgcOAyMiLgInLgMnFR4DFx4DMzI%2BAjc%2BAzU0LgInLgMvAS4DJy4DNTQ%2BAjc%2BAzMyHgIXHgMXNS4DJy4DIyIOAgcOAxUUHgIXHgMfAUkBbv6SvwQIBgYCAgMDAQIDBQQDCAkLBgYNDAwGBg0NDQYGCwwNBgYNDAwHDxoXEggHCwgDAgUHBAUMDxIKHAcNCQcDAgMDAQIDBQMDCAkKBgYLCgsGBQsLCgYGCwwLBgYLDAsGDBcUEQcICwcDAgQHBAUMERUNIAEAJSUxAgMFBAMDBgYHAwUICAYDAgQDAQECAwMCBQcIBEEDBAUDAgECAQEDBgkGBQ8SFQwJEA8NBgYKCggDCwIFBQQDAgUFBgMFBwcFAwIDAwEBAgMCAgQGBgM9AgUDBAEBAgEBAwcJBgYPERMLCA8ODAQFCgoJBQsAAAQAAABJAgABbgAEAAkADgATAAA%2FARcHJxc3FwcnJScHFzcXJwcXNwAltiO4AbYluCMB%2FyO4JbYBuCO2Jdsdkh6TAZQekhwBHZIekwGUHpIcAAAAAAUAAP%2FbAgAB2wAEAAkADgATABgAABcRIREhASERIREHITUhFRUhNSEVFSE1IRUAAgD%2BAAHb%2FkoBtkn%2B3AEk%2FtwBJP7cASQlAgD%2BAAHc%2FkkBt5JJSW5JSW5JSQAAAwCTAEkBbQGSABcALwBbAAA3Mh4CFx4DFwYUDgEHDgMrATczNzIeAhceAhQXBhQOAQcOAysBNzMDMzI%2BAjc%2BAyc2LgInLgMnPgM3PgMnNi4CJy4DKwED%2BAcNCQkDBAMEAQEBBAQEAgkKDQcqASgBBQsIBwIDAwQBAQQCBAEICAsFKgEoZGQRGRgRCAYLBgQBAQMEBwQGCg8OCggMDQgFAwcDAwEBBAYLBgcQFBcOZAHeAQMEAwMICQwHBgsJCAIDBAMBYYECAgMDAgYHCQUFCQcGAgIEAgFN%2FuoDBQgGBQ4RFQsKEQ8NBgUJBgQBAQMFBwUECwwOCAsSDw0FBggFAv63AAADACUAAAHbAbcABAANABEAADcRIREhEyMDMzczFzMDBxcjNyUBtv5K%2FURMOBBLETdLIho0GgABt%2F5JAW7%2B20hIASU1eHgAAAACAEIAHwG8AZkAIQBLAAAlBycOAS4BJwcXBw4BIiYvAS4BNDY%2FAT4BMhYfAR4BFAYHJy4BIgYPAQ4BFBYXHgE%2BAT8BLgMnLgI2PwE%2BAhYXBxc3PgE0JicBvJQEBQsMCwYhHg8PJygnDw8PDw8P1w8nKCcPDw8QEA8lCxscHAvFCwwLCgsbHRsLJwMFBgUCCgwDBQhSBg8QEgl%2BJoYLCwoL9pQEAQECAwMgHg8PDw8PDxAmKCcP1w8QEA8PDycoJw9%2BCwoLC8YLGx0bCwoLAQsLJgIDBAUCChcXFQhSBgYBBAV9JYYLHBwbCwAAAAMAAABJAgABbgAEAAkADgAAEyEVITUXIRUhNRczFSM1AAIA%2FgCSAW7%2BkpPb2wFuSUluSUluSUkAAwAAAEkCAAFuAAQACQAOAAATIRUhNRUhFSE1FTMVIzUAAgD%2BAAFt%2FpPc3AFuSUluSUluSUkAAAADAAAASQIAAW4ABAAJAA4AABMhFSE1FSEVITUVIRUhNQAB%2F%2F4BAf%2F%2BAQIA%2FgABbklJbklJbklJAAMAAABJAgABbgAEAAkADgAAEyEHIScHIRchNxchByEnbgElAf7dAW0B%2FwH9%2FwFtASUB%2Ft0BAW5JSW5JSW5JSQAGAAAAJwIAAZUACAANABQAGAAdACEAADc1IxEhFTMRIQEhFSE1FyMVIRUhNQcjNxcXITUhFScXIzdJSQG3Sf5JAUn%2BkwFtSiX%2BtwFu27hcXG3%2B2wElKSlJICdJASVK%2FtwBSdzcSbcl3EltbSUlJW5JSQAAAAEAAAABAADCHXSvXw889QALAgAAAAAAz3WLJQAAAADPdYsl%2F%2F%2F%2F2wIAAdsAAAAIAAIAAAAAAAAAAQAAAeD%2F4AAAAgD%2F%2FwAAAgAAAQAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAABAAAAAgAAAAIAAAACAAAAAgAAbgIAAAACAABtAgAAAAIAAAkCAABJAgD%2F%2FwIAAAACAAAAAgAAAAIAAJICAAAAAgAAAAIAACUCAAAAAgAAbgIAACUCAAAlAgAASQIAAAACAAAAAgAAkwIAACUCAABCAgAAAAIAAAACAAAAAgAAAAIAAAAAAAAAAAoAFAAeAEAAcAC4AQQBhgGoAfoCQAMCAyYDuARGBFQEcASUBLwFFgVuBY4GLgbUB4IHrAfaCFwIgAj2CRIJLglKCWoJpAAAAAEAAAAkAJAACgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAYAAAAAQAAAAAAAgAOAGoAAQAAAAAAAwAYAC4AAQAAAAAABAAYAHgAAQAAAAAABQAWABgAAQAAAAAABgAMAEYAAQAAAAAACgAoAJAAAwABBAkAAQAYAAAAAwABBAkAAgAOAGoAAwABBAkAAwAYAC4AAwABBAkABAAYAHgAAwABBAkABQAWABgAAwABBAkABgAYAFIAAwABBAkACgAoAJAAUgBlAGQAYQBjAHQAbwByAEYAbwBuAHQAVgBlAHIAcwBpAG8AbgAgADEALgAwAFIAZQBkAGEAYwB0AG8AcgBGAG8AbgB0UmVkYWN0b3JGb250AFIAZQBkAGEAYwB0AG8AcgBGAG8AbgB0AFIAZQBnAHUAbABhAHIAUgBlAGQAYQBjAHQAbwByAEYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%3D%3D) format("truetype")
180
+ }
181
+ body {
182
+ font-size: 14px;
183
+ font-family: Proxima Nova, sans-serif;
184
+ line-height: 1.4;
185
+ color: #4D5055;
186
+ word-break: break-word
187
+ }
188
+ a, a:visited, a:link {
189
+ color: #00a2ff;
190
+ text-decoration: none;
191
+ cursor: pointer
192
+ }
193
+ a:hover, a:visited:hover, a:link:hover {
194
+ color: #66c7ff;
195
+ text-decoration: underline
196
+ }
197
+ a.disabled {
198
+ color: rgba(0, 0, 0, 0.34);
199
+ cursor: default
200
+ }
201
+ a.disabled.not-clickable {
202
+ pointer-events: none
203
+ }
204
+ a.disabled:hover {
205
+ color: rgba(0, 0, 0, 0.34);
206
+ text-decoration: none
207
+ }
208
+ h1, h2, h3, h4, h5, h6 {
209
+ margin: 0;
210
+ font-weight: normal
211
+ }
212
+ p {
213
+ margin: 0;
214
+ padding: 0
215
+ }
216
+ h1, .h1 {
217
+ font-size: 22px
218
+ }
219
+ h2, .h2 {
220
+ font-size: 20px
221
+ }
222
+ h3, .h3 {
223
+ font-size: 18px
224
+ }
225
+ h4, .h4 {
226
+ font-size: 16px
227
+ }
228
+ h5, .h5 {
229
+ font-size: 14px
230
+ }
231
+ h6 {
232
+ font-size: 12px;
233
+ font-weight: bold;
234
+ text-transform: uppercase;
235
+ color: #a8a8a8
236
+ }
237
+ strong, b {
238
+ font-weight: bold
239
+ }
240
+ em, i {
241
+ font-style: italic
242
+ }
243
+ .emphasis {
244
+ color: #393034
245
+ }
246
+ .muted {
247
+ color: rgba(0, 0, 0, 0.44)
248
+ }
249
+ .text-danger {
250
+ color: #e41600
251
+ }
252
+ ol, ul {
253
+ list-style: none;
254
+ margin: 0;
255
+ padding: 0
256
+ }
257
+ ol.initial, ul.initial {
258
+ text-align: left
259
+ }
260
+ ul.initial {
261
+ list-style: disc;
262
+ padding-left: 30px
263
+ }
264
+ ol.initial {
265
+ list-style: decimal;
266
+ padding-left: 21px
267
+ }
268
+ ol.initial li {
269
+ padding: 5px 10px
270
+ }
271
+ @media only screen and (max-width: 500px) {
272
+ h1.adaptive, .h1.adaptive {
273
+ font-size: 1.1rem
274
+ }
275
+ }
276
+ @media only screen and (max-width: 500px) {
277
+ h2.adaptive, .h2.adaptive {
278
+ font-size: 1rem
279
+ }
280
+ }
281
+ @media only screen and (max-width: 500px) {
282
+ h3.adaptive, .h3.adaptive {
283
+ font-size: 0.875rem
284
+ }
285
+ }
286
+ @media only screen and (max-width: 500px) {
287
+ h4.adaptive, .h4.adaptive {
288
+ font-size: 0.8rem
289
+ }
290
+ }
291
+ @media only screen and (max-width: 500px) {
292
+ h5.adaptive, .h5.adaptive {
293
+ font-size: 0.725rem
294
+ }
295
+ }
296
+ html {
297
+ -webkit-text-size-adjust: none;
298
+ -webkit-tap-highlight-color: transparent
299
+ }
300
+ html {
301
+ height: 100%
302
+ }
303
+ html.locked {
304
+ overflow: hidden
305
+ }
306
+ body {
307
+ height: 100%;
308
+ background: #fff
309
+ }
310
+ .locked body {
311
+ overflow: hidden
312
+ }
313
+ @media only screen and (max-width: 800px) {
314
+ body.dashboard .footer {
315
+ display: none
316
+ }
317
+ }
318
+ .wrapper {
319
+ margin-right: auto;
320
+ margin-left: auto;
321
+ padding-right: 20px;
322
+ padding-left: 20px;
323
+ max-width: 980px
324
+ }
325
+ .wrapper.narrow {
326
+ max-width: 750px
327
+ }
328
+ @media only screen and (max-width: 500px) {
329
+ .wrapper {
330
+ padding: 0 10px
331
+ }
332
+ }
333
+ hr {
334
+ height: 0;
335
+ border: 0;
336
+ border-top: 1px solid #dadada
337
+ }
338
+ .header {
339
+ background: #393034
340
+ }
341
+ .header .wrapper {
342
+ padding-right: 0;
343
+ padding-left: 0
344
+ }
345
+ .main-wrapper {
346
+ min-height: 100%;
347
+ height: auto !important;
348
+ height: 100%;
349
+ margin: 0 0 -39px
350
+ }
351
+ .body-content {
352
+ padding: 40px 0
353
+ }
354
+ .main-region {
355
+ padding: 0 0 20px
356
+ }
357
+ .main-region:empty {
358
+ padding: 0
359
+ }
360
+ .header {
361
+ background-color: #393034;
362
+ color: #fff
363
+ }
364
+ @media only screen and (max-width: 1039px) {
365
+ .header .wrapper {
366
+ max-width: 100%
367
+ }
368
+ }
369
+ @media only screen and (max-width: 800px) {
370
+ .header .wrapper {
371
+ position: relative
372
+ }
373
+ }
374
+ .header .logo {
375
+ padding: 12px 0 10px;
376
+ color: #fff;
377
+ font-size: 22px;
378
+ line-height: 22px
379
+ }
380
+ @media only screen and (max-width: 1039px) {
381
+ .header .logo {
382
+ padding-left: 30px
383
+ }
384
+ }
385
+ .header .logo a {
386
+ color: #fff;
387
+ text-decoration: none
388
+ }
389
+ .header .logo a:hover {
390
+ opacity: 0.5;
391
+ filter: alpha(opacity=50)
392
+ }
393
+ @media only screen and (max-width: 800px) {
394
+ .header .account ~ .logo {
395
+ display: none
396
+ }
397
+ }
398
+ .spinner {
399
+ text-align: center
400
+ }
401
+ .spinner>div {
402
+ display: inline-block;
403
+ width: 18px;
404
+ height: 18px;
405
+ background-color: #e1e1e1;
406
+ border-radius: 100%;
407
+ vertical-align: middle;
408
+ -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
409
+ animation: bouncedelay 1.4s infinite ease-in-out;
410
+ -webkit-animation-fill-mode: both;
411
+ animation-fill-mode: both
412
+ }
413
+ .spinner .bounce1 {
414
+ -webkit-animation-delay: -0.32s;
415
+ animation-delay: -0.32s
416
+ }
417
+ .spinner .bounce2 {
418
+ -webkit-animation-delay: -0.16s;
419
+ animation-delay: -0.16s
420
+ }
421
+ input[type="text"],
422
+ input[type="email"],
423
+ input[type="number"],
424
+ input[type="password"],
425
+ textarea {
426
+ width: 100%;
427
+ min-height: 46px;
428
+ box-sizing: border-box;
429
+ border: 1px solid #d0d0d0;
430
+ background: #fff;
431
+ padding: 11px 14px;
432
+ font-size: 16px;
433
+ word-break: normal;
434
+ outline: none;
435
+ -webkit-appearance: none;
436
+ border-radius: 0
437
+ }
438
+ input[type="text"]:-moz-placeholder,
439
+ input[type="email"]:-moz-placeholder,
440
+ input[type="number"]:-moz-placeholder,
441
+ input[type="password"]:-moz-placeholder,
442
+ textarea:-moz-placeholder {
443
+ color: #a8a8a8
444
+ }
445
+ input[type="text"]::-moz-placeholder,
446
+ input[type="email"]::-moz-placeholder,
447
+ input[type="number"]::-moz-placeholder,
448
+ input[type="password"]::-moz-placeholder,
449
+ textarea::-moz-placeholder {
450
+ color: #a8a8a8
451
+ }
452
+ input[type="text"]::-webkit-input-placeholder,
453
+ input[type="email"]::-webkit-input-placeholder,
454
+ input[type="number"]::-webkit-input-placeholder,
455
+ input[type="password"]::-webkit-input-placeholder,
456
+ textarea::-webkit-input-placeholder {
457
+ color: #a8a8a8
458
+ }
459
+ input[type="text"]:-ms-input-placeholder,
460
+ input[type="email"]:-ms-input-placeholder,
461
+ input[type="number"]:-ms-input-placeholder,
462
+ input[type="password"]:-ms-input-placeholder,
463
+ textarea:-ms-input-placeholder {
464
+ color: #a8a8a8
465
+ }
466
+ input[type="text"].error,
467
+ .field_with_errors input[type="text"],
468
+ input[type="email"].error,
469
+ .field_with_errors input[type="email"],
470
+ input[type="number"].error,
471
+ .field_with_errors input[type="number"],
472
+ input[type="password"].error,
473
+ .field_with_errors input[type="password"],
474
+ textarea.error,
475
+ .field_with_errors textarea {
476
+ border-color: #e41600;
477
+ background-color: rgba(227, 22, 0, 0.1)
478
+ }
479
+ input[type="text"].small,
480
+ input[type="email"].small,
481
+ input[type="number"].small,
482
+ input[type="password"].small,
483
+ textarea.small {
484
+ font-size: 14px;
485
+ padding: 14px 14px 13px
486
+ }
487
+ input[type="text"].bisymbol,
488
+ input[type="email"].bisymbol,
489
+ input[type="number"].bisymbol,
490
+ input[type="password"].bisymbol,
491
+ textarea.bisymbol {
492
+ width: 3.4em
493
+ }
494
+ input[type="text"].narrow,
495
+ input[type="email"].narrow,
496
+ input[type="number"].narrow,
497
+ input[type="password"].narrow,
498
+ textarea.narrow {
499
+ width: 5.2em
500
+ }
501
+ input[type="text"].not-narrow,
502
+ input[type="email"].not-narrow,
503
+ input[type="number"].not-narrow,
504
+ input[type="password"].not-narrow,
505
+ textarea.not-narrow {
506
+ min-width: 200px
507
+ }
508
+ input[type="text"].seminarrow,
509
+ input[type="email"].seminarrow,
510
+ input[type="number"].seminarrow,
511
+ input[type="password"].seminarrow,
512
+ textarea.seminarrow {
513
+ width: 140px;
514
+ width: 155px
515
+ }
516
+ input[type="text"].disabled,
517
+ input[type="text"][disabled],
518
+ input[type="email"].disabled,
519
+ input[type="email"][disabled],
520
+ input[type="number"].disabled,
521
+ input[type="number"][disabled],
522
+ input[type="password"].disabled,
523
+ input[type="password"][disabled],
524
+ textarea.disabled,
525
+ textarea[disabled] {
526
+ opacity: 1;
527
+ background: #f0f0f0;
528
+ -webkit-text-fill-color: #e1e1e1;
529
+ color: #e1e1e1
530
+ }
531
+ @media only screen and (max-width: 500px) {
532
+ input[type="text"],
533
+ input[type="email"],
534
+ input[type="number"],
535
+ input[type="password"],
536
+ textarea {
537
+ padding-left: 11px;
538
+ padding-right: 11px
539
+ }
540
+ }
541
+ input[type="text"]:focus,
542
+ input[type="email"]:focus,
543
+ input[type="number"]:focus,
544
+ input[type="password"]:focus,
545
+ textarea:focus {
546
+ border-color: #4db7fc
547
+ }
548
+ input[type="text"]::-ms-clear,
549
+ input[type="email"]::-ms-clear,
550
+ input[type="number"]::-ms-clear,
551
+ input[type="password"]::-ms-clear,
552
+ textarea::-ms-clear {
553
+ display: none
554
+ }
555
+ input[type=number]::-webkit-inner-spin-button,
556
+ input[type=number]::-webkit-outer-spin-button {
557
+ -webkit-appearance: none;
558
+ margin: 0
559
+ }
560
+ input[type=number] {
561
+ -moz-appearance: textfield
562
+ }
563
+ input[type="file"] {
564
+ width: 100%
565
+ }
566
+ textarea {
567
+ resize: vertical
568
+ }
569
+ textarea.widget-code {
570
+ resize: none;
571
+ border: 1px dashed #00a2ff;
572
+ font-size: 14px;
573
+ font-family: Courier, monospace
574
+ }
575
+ .input {
576
+ display: inline-block;
577
+ position: relative
578
+ }
579
+ .input .error-message {
580
+ position: absolute;
581
+ color: #e41600;
582
+ background: none;
583
+ font-size: 12px;
584
+ margin: 0;
585
+ padding: 2px 0
586
+ }
587
+ .marker {
588
+ display: block;
589
+ width: 30px;
590
+ height: 30px;
591
+ border-radius: 50%
592
+ }
593
+ .marker.small {
594
+ width: 25px;
595
+ height: 25px
596
+ }
597
+ button,
598
+ .button,
599
+ a.button,
600
+ a.button:visited,
601
+ a.button:link {
602
+ -webkit-appearance: none;
603
+ background-color: #00a2ff;
604
+ color: #fff;
605
+ font-weight: 100;
606
+ border: 1px solid #00a2ff;
607
+ text-align: center;
608
+ text-decoration: none;
609
+ line-height: 20px;
610
+ cursor: pointer;
611
+ outline: none;
612
+ padding: 12px;
613
+ display: -moz-inline-stack;
614
+ display: inline-block;
615
+ zoom: 1;
616
+ _overflow: hidden;
617
+ *display: inline;
618
+ -webkit-touch-callout: none;
619
+ -webkit-user-select: none;
620
+ -khtml-user-select: none;
621
+ -moz-user-select: none;
622
+ -ms-user-select: none;
623
+ user-select: none;
624
+ box-sizing: border-box
625
+ }
626
+ button i,
627
+ button [class^="icon-"],
628
+ button [class*=" icon-"],
629
+ .button i,
630
+ .button [class^="icon-"],
631
+ .button [class*=" icon-"],
632
+ a.button i,
633
+ a.button [class^="icon-"],
634
+ a.button [class*=" icon-"],
635
+ a.button:visited i,
636
+ a.button:visited [class^="icon-"],
637
+ a.button:visited [class*=" icon-"],
638
+ a.button:link i,
639
+ a.button:link [class^="icon-"],
640
+ a.button:link [class*=" icon-"] {
641
+ display: inline-block;
642
+ font-size: 24px;
643
+ min-width: 24px;
644
+ line-height: 8px;
645
+ height: 20px;
646
+ position: relative;
647
+ top: 7px;
648
+ text-align: right
649
+ }
650
+ button .spinner,
651
+ .button .spinner,
652
+ a.button .spinner,
653
+ a.button:visited .spinner,
654
+ a.button:link .spinner {
655
+ height: 0;
656
+ visibility: hidden
657
+ }
658
+ .no-touch button:hover,
659
+ .no-touch button.zeroclipboard-is-hover,
660
+ .no-touch .button:hover,
661
+ .no-touch .button.zeroclipboard-is-hover,
662
+ .no-touch a.button:hover,
663
+ .no-touch a.button.zeroclipboard-is-hover,
664
+ .no-touch a.button:visited:hover,
665
+ .no-touch a.button:visited.zeroclipboard-is-hover,
666
+ .no-touch a.button:link:hover,
667
+ .no-touch a.button:link.zeroclipboard-is-hover {
668
+ opacity: 0.6
669
+ }
670
+ button:active,
671
+ button .active,
672
+ .button:active,
673
+ .button .active,
674
+ a.button:active,
675
+ a.button .active,
676
+ a.button:visited:active,
677
+ a.button:visited .active,
678
+ a.button:link:active,
679
+ a.button:link .active {
680
+ opacity: 0.6
681
+ }
682
+ button.loading .label,
683
+ .button.loading .label,
684
+ a.button.loading .label,
685
+ a.button:visited.loading .label,
686
+ a.button:link.loading .label {
687
+ height: 0;
688
+ visibility: hidden
689
+ }
690
+ button.loading .spinner,
691
+ .button.loading .spinner,
692
+ a.button.loading .spinner,
693
+ a.button:visited.loading .spinner,
694
+ a.button:link.loading .spinner {
695
+ height: auto;
696
+ visibility: visible
697
+ }
698
+ button.loading .spinner>div,
699
+ .button.loading .spinner>div,
700
+ a.button.loading .spinner>div,
701
+ a.button:visited.loading .spinner>div,
702
+ a.button:link.loading .spinner>div {
703
+ background: #fff
704
+ }
705
+ button.small,
706
+ .button.small,
707
+ a.button.small,
708
+ a.button:visited.small,
709
+ a.button:link.small {
710
+ padding: 8px 13px
711
+ }
712
+ button.large,
713
+ .button.large,
714
+ a.button.large,
715
+ a.button:visited.large,
716
+ a.button:link.large {
717
+ padding: 23px 28px;
718
+ font-size: 20px;
719
+ font-size: 1.25rem
720
+ }
721
+ @media only screen and (max-width: 800px) {
722
+ button.wide-mobile,
723
+ .button.wide-mobile,
724
+ a.button.wide-mobile,
725
+ a.button:visited.wide-mobile,
726
+ a.button:link.wide-mobile {
727
+ width: 100%;
728
+ margin-bottom: 20px
729
+ }
730
+ }
731
+ @media only screen and (max-width: 800px) {
732
+ button.right-iconed,
733
+ .button.right-iconed,
734
+ a.button.right-iconed,
735
+ a.button:visited.right-iconed,
736
+ a.button:link.right-iconed {
737
+ text-align: left
738
+ }
739
+ button.right-iconed i,
740
+ .button.right-iconed i,
741
+ a.button.right-iconed i,
742
+ a.button:visited.right-iconed i,
743
+ a.button:link.right-iconed i {
744
+ float: right
745
+ }
746
+ }
747
+ @media only screen and (max-width: 800px) {
748
+ button.left-iconed,
749
+ .button.left-iconed,
750
+ a.button.left-iconed,
751
+ a.button:visited.left-iconed,
752
+ a.button:link.left-iconed {
753
+ text-align: right
754
+ }
755
+ button.left-iconed i,
756
+ .button.left-iconed i,
757
+ a.button.left-iconed i,
758
+ a.button:visited.left-iconed i,
759
+ a.button:link.left-iconed i {
760
+ float: left
761
+ }
762
+ }
763
+ button.disabled,
764
+ button[disabled],
765
+ button .action-button[disabled],
766
+ .button.disabled,
767
+ .button[disabled],
768
+ .button .action-button[disabled],
769
+ a.button.disabled,
770
+ a.button[disabled],
771
+ a.button .action-button[disabled],
772
+ a.button:visited.disabled,
773
+ a.button:visited[disabled],
774
+ a.button:visited .action-button[disabled],
775
+ a.button:link.disabled,
776
+ a.button:link[disabled],
777
+ a.button:link .action-button[disabled] {
778
+ background-color: #dbdbdb;
779
+ border-color: #dbdbdb;
780
+ -o-box-shadow: none;
781
+ box-shadow: none;
782
+ color: #aaa;
783
+ cursor: default
784
+ }
785
+ button.disabled:hover,
786
+ button[disabled]:hover,
787
+ button .action-button[disabled]:hover,
788
+ .button.disabled:hover,
789
+ .button[disabled]:hover,
790
+ .button .action-button[disabled]:hover,
791
+ a.button.disabled:hover,
792
+ a.button[disabled]:hover,
793
+ a.button .action-button[disabled]:hover,
794
+ a.button:visited.disabled:hover,
795
+ a.button:visited[disabled]:hover,
796
+ a.button:visited .action-button[disabled]:hover,
797
+ a.button:link.disabled:hover,
798
+ a.button:link[disabled]:hover,
799
+ a.button:link .action-button[disabled]:hover {
800
+ opacity: 1
801
+ }
802
+ button.danger,
803
+ .button.danger,
804
+ a.button.danger,
805
+ a.button:visited.danger,
806
+ a.button:link.danger {
807
+ background-color: #e41600;
808
+ border-color: #e41600
809
+ }
810
+ button.success,
811
+ .button.success,
812
+ a.button.success,
813
+ a.button:visited.success,
814
+ a.button:link.success {
815
+ background-color: #68c19a;
816
+ border-color: #68c19a
817
+ }
818
+ button.neutral,
819
+ .button.neutral,
820
+ a.button.neutral,
821
+ a.button:visited.neutral,
822
+ a.button:link.neutral {
823
+ background-color: #000;
824
+ border-color: #000
825
+ }
826
+ button.highlight,
827
+ .button.highlight,
828
+ a.button.highlight,
829
+ a.button:visited.highlight,
830
+ a.button:link.highlight {
831
+ background-color: #f77630;
832
+ border-color: #f77630
833
+ }
834
+ button.secondary,
835
+ .button.secondary,
836
+ a.button.secondary,
837
+ a.button:visited.secondary,
838
+ a.button:link.secondary {
839
+ border: 1px solid #108dff;
840
+ background: transparent;
841
+ color: #108dff
842
+ }
843
+ button.split,
844
+ .button.split,
845
+ a.button.split,
846
+ a.button:visited.split,
847
+ a.button:link.split {
848
+ position: relative;
849
+ border-width: 0;
850
+ padding-right: 50px;
851
+ padding-left: 50px;
852
+ -o-box-shadow: none;
853
+ box-shadow: none;
854
+ outline: none
855
+ }
856
+ button.split:before,
857
+ button.split:after,
858
+ .button.split:before,
859
+ .button.split:after,
860
+ a.button.split:before,
861
+ a.button.split:after,
862
+ a.button:visited.split:before,
863
+ a.button:visited.split:after,
864
+ a.button:link.split:before,
865
+ a.button:link.split:after {
866
+ position: absolute;
867
+ content: ""
868
+ }
869
+ button.split:before,
870
+ .button.split:before,
871
+ a.button.split:before,
872
+ a.button:visited.split:before,
873
+ a.button:link.split:before {
874
+ top: 50%;
875
+ right: 18px;
876
+ margin-top: -6px;
877
+ border-color: #fff transparent transparent;
878
+ border-width: 12px 6px;
879
+ border-style: solid
880
+ }
881
+ button.split:after,
882
+ .button.split:after,
883
+ a.button.split:after,
884
+ a.button:visited.split:after,
885
+ a.button:link.split:after {
886
+ top: 0;
887
+ right: 48px;
888
+ bottom: 0;
889
+ width: 1px;
890
+ background: rgba(255, 255, 255, 0.1)
891
+ }
892
+ button.hollow,
893
+ .button.hollow,
894
+ a.button.hollow,
895
+ a.button:visited.hollow,
896
+ a.button:link.hollow {
897
+ background-color: transparent;
898
+ border: 1px solid #b8b298;
899
+ color: #b8b298
900
+ }
901
+ button.hollow.disabled,
902
+ button.hollow[disabled],
903
+ .button.hollow.disabled,
904
+ .button.hollow[disabled],
905
+ a.button.hollow.disabled,
906
+ a.button.hollow[disabled],
907
+ a.button:visited.hollow.disabled,
908
+ a.button:visited.hollow[disabled],
909
+ a.button:link.hollow.disabled,
910
+ a.button:link.hollow[disabled] {
911
+ opacity: 0.4
912
+ }
913
+ button.hollow.base,
914
+ .button.hollow.base,
915
+ a.button.hollow.base,
916
+ a.button:visited.hollow.base,
917
+ a.button:link.hollow.base {
918
+ border-color: #00a2ff;
919
+ color: #00a2ff
920
+ }
921
+ button.hollow.danger,
922
+ .button.hollow.danger,
923
+ a.button.hollow.danger,
924
+ a.button:visited.hollow.danger,
925
+ a.button:link.hollow.danger {
926
+ border-color: #e41600;
927
+ color: #e41600
928
+ }
929
+ button.hollow.success,
930
+ .button.hollow.success,
931
+ a.button.hollow.success,
932
+ a.button:visited.hollow.success,
933
+ a.button:link.hollow.success {
934
+ border-color: #68c19a;
935
+ color: #68c19a
936
+ }
937
+ button.hollow.neutral,
938
+ button.hollow.active,
939
+ .button.hollow.neutral,
940
+ .button.hollow.active,
941
+ a.button.hollow.neutral,
942
+ a.button.hollow.active,
943
+ a.button:visited.hollow.neutral,
944
+ a.button:visited.hollow.active,
945
+ a.button:link.hollow.neutral,
946
+ a.button:link.hollow.active {
947
+ border-color: #000;
948
+ color: #000
949
+ }
950
+ button.hollow.highlight,
951
+ .button.hollow.highlight,
952
+ a.button.hollow.highlight,
953
+ a.button:visited.hollow.highlight,
954
+ a.button:link.hollow.highlight {
955
+ border-color: #f77630;
956
+ color: #f77630
957
+ }
958
+ button.hidden,
959
+ .button.hidden,
960
+ a.button.hidden,
961
+ a.button:visited.hidden,
962
+ a.button:link.hidden {
963
+ display: none
964
+ }
965
+ .ghost-action {
966
+ display: inline-block;
967
+ cursor: pointer;
968
+ padding: 4px 10px 3px 10px;
969
+ font-size: 11px;
970
+ color: #bbb;
971
+ border: 1px solid #bbb;
972
+ border-radius: 3px
973
+ }
974
+ .ghost-action:hover {
975
+ color: #a7a7a7;
976
+ border-color: #a7a7a7
977
+ }
978
+ a.action-button,
979
+ .action-button {
980
+ display: inline-block;
981
+ border: 1px solid #00a2ff;
982
+ background: transparent;
983
+ font-size: 16px;
984
+ line-height: 42px;
985
+ padding: 0px 15px 0 15px;
986
+ color: #00a2ff;
987
+ box-sizing: border-box;
988
+ cursor: pointer
989
+ }
990
+ a.action-button span,
991
+ .action-button span {
992
+ margin-left: 5px;
993
+ position: relative;
994
+ top: 1px
995
+ }
996
+ a.action-button i,
997
+ .action-button i {
998
+ text-align: center;
999
+ display: block;
1000
+ float: left;
1001
+ line-height: 42px;
1002
+ font-size: 24px;
1003
+ min-width: 24px
1004
+ }
1005
+ a.action-button:hover,
1006
+ .action-button:hover {
1007
+ text-decoration: none;
1008
+ color: #1aabff;
1009
+ border-color: #1aabff
1010
+ }
1011
+ a.action-button.secondary,
1012
+ .action-button.secondary {
1013
+ color: #a8a8a8;
1014
+ border-color: #a8a8a8
1015
+ }
1016
+ a.action-button.hidden,
1017
+ .action-button.hidden {
1018
+ display: none
1019
+ }
1020
+ .field {
1021
+ margin-bottom: 30px
1022
+ }
1023
+ .field.stand-alone {
1024
+ padding: 0 20px 30px
1025
+ }
1026
+ @media only screen and (min-width: 801px) {
1027
+ .field.stand-alone {
1028
+ width: 60%;
1029
+ padding-left: 30px
1030
+ }
1031
+ }
1032
+ .field>label {
1033
+ position: relative;
1034
+ display: inline-block;
1035
+ margin-bottom: 10px;
1036
+ color: #666a73;
1037
+ font-size: 14px;
1038
+ font-weight: bold;
1039
+ padding-right: 35px
1040
+ }
1041
+ .field>label.large {
1042
+ color: #a8a8a8;
1043
+ font-size: 18px;
1044
+ font-weight: normal
1045
+ }
1046
+ .field>label+small {
1047
+ color: #a8a8a8;
1048
+ float: right;
1049
+ line-height: 36px
1050
+ }
1051
+ .field .required {
1052
+ color: #00c19b
1053
+ }
1054
+ .field .prepend,
1055
+ .field .status,
1056
+ .field .input {
1057
+ line-height: 46px;
1058
+ float: left
1059
+ }
1060
+ .field .radio {
1061
+ float: left;
1062
+ padding: 0 5px
1063
+ }
1064
+ .field .prepend,
1065
+ .field .input {
1066
+ margin-right: 10px
1067
+ }
1068
+ .field .prepend {
1069
+ word-wrap: break-word
1070
+ }
1071
+ .field .status .pending:before,
1072
+ .field .status .failure:before,
1073
+ .field .status .success:before {
1074
+ top: 6px;
1075
+ margin-right: 10px
1076
+ }
1077
+ .field .status .pending:before {
1078
+ content: " ";
1079
+ top: 8px;
1080
+ width: 16px;
1081
+ height: 16px;
1082
+ padding: 5px;
1083
+ display: inline-block;
1084
+ position: relative;
1085
+ background: url(/assets/conschedule/spinner-small.gif) no-repeat center center #989496;
1086
+ border-radius: 20px
1087
+ }
1088
+ @media (-webkit-min-device-pixel-ratio: 2),
1089
+ (min-resolution: 192dpi) {
1090
+ .field .status .pending:before {
1091
+ background-image: url(/assets/conschedule/spinner.gif);
1092
+ background-size: 16px 16px
1093
+ }
1094
+ }
1095
+ .field .status .failure:before,
1096
+ .field .status .success:before {
1097
+ position: relative;
1098
+ line-height: 32px;
1099
+ font-family: "icomoon";
1100
+ font-size: 26px
1101
+ }
1102
+ .field .status .failure {
1103
+ color: #de1f1f
1104
+ }
1105
+ .field .status .failure:before {
1106
+ content: ""
1107
+ }
1108
+ .field .status .success {
1109
+ color: #00c19a
1110
+ }
1111
+ .field .status .success:before {
1112
+ content: ""
1113
+ }
1114
+ .field .action-field .input {
1115
+ position: relative;
1116
+ float: left;
1117
+ width: 60%;
1118
+ margin-right: 15px
1119
+ }
1120
+ .field .action-field .button {
1121
+ float: left
1122
+ }
1123
+ @media only screen and (max-width: 500px) {
1124
+ .field .action-field .input,
1125
+ .field .action-field .button {
1126
+ width: 100%;
1127
+ float: none
1128
+ }
1129
+ .field .action-field .input {
1130
+ margin-bottom: 10px
1131
+ }
1132
+ }
1133
+ .field .commutator {
1134
+ vertical-align: middle
1135
+ }
1136
+ .error-message {
1137
+ font-weight: normal
1138
+ }
1139
+ .decision {
1140
+ position: relative
1141
+ }
1142
+ .decision button,
1143
+ .decision .button {
1144
+ margin-right: 10px
1145
+ }
1146
+ .decision button:last-child,
1147
+ .decision button.mr-omitted,
1148
+ .decision .button:last-child,
1149
+ .decision .button.mr-omitted {
1150
+ margin-right: 0
1151
+ }
1152
+ @media only screen and (min-width: 801px) {
1153
+ .decision button.lock-right,
1154
+ .decision .button.lock-right {
1155
+ position: absolute;
1156
+ right: 0
1157
+ }
1158
+ .decision button.lock-left,
1159
+ .decision .button.lock-left {
1160
+ position: absolute;
1161
+ left: 0
1162
+ }
1163
+ }
1164
+ @media only screen and (max-width: 800px) {
1165
+ .decision button,
1166
+ .decision .button {
1167
+ width: 100%;
1168
+ margin: 0 0 10px
1169
+ }
1170
+ .decision button:last-child,
1171
+ .decision .button:last-child {
1172
+ margin-bottom: 0
1173
+ }
1174
+ }
1175
+ .publishers .redactor_toolbar {
1176
+ -o-box-shadow: none;
1177
+ box-shadow: none
1178
+ }
1179
+ .publishers .redactor_toolbar li:last-child {
1180
+ float: right
1181
+ }
1182
+ .publishers .redactor_toolbar li:last-child a.re-reset {
1183
+ font-family: Proxima Nova, sans-serif;
1184
+ color: #999;
1185
+ font-size: 12px;
1186
+ width: auto
1187
+ }
1188
+ .publishers .redactor_toolbar li:last-child a.re-reset:hover {
1189
+ color: #fff;
1190
+ text-decoration: none
1191
+ }
1192
+ .publishers .redactor_toolbar li:last-child a.re-reset:before {
1193
+ content: "Restore default"
1194
+ }
1195
+ .publishers .redactor_editor p {
1196
+ font: inherit
1197
+ }
1198
+ .close-overlay {
1199
+ position: absolute;
1200
+ top: 0;
1201
+ left: 0;
1202
+ right: 0;
1203
+ bottom: 0
1204
+ }
1205
+ .popup-overlay {
1206
+ position: fixed;
1207
+ top: 0;
1208
+ left: 0;
1209
+ right: 0;
1210
+ bottom: 0;
1211
+ overflow-y: auto;
1212
+ z-index: 21;
1213
+ background-color: #666;
1214
+ background-color: rgba(31, 31, 31, 0.1)
1215
+ }
1216
+ @media only screen and (max-width: small-phone-size) {
1217
+ .popup-overlay {
1218
+ position: static
1219
+ }
1220
+ }
1221
+ .popup {
1222
+ box-sizing: border-box;
1223
+ position: relative;
1224
+ width: 100%;
1225
+ max-width: 390px;
1226
+ background-color: #fff;
1227
+ border: 4px solid #979797;
1228
+ margin: 30px auto
1229
+ }
1230
+ .popup .tabs .tab {
1231
+ padding: 14px 4px;
1232
+ width: 33.3333%;
1233
+ text-align: center;
1234
+ font-size: 1em;
1235
+ box-shadow: inset #dadada 0 -1px
1236
+ }
1237
+ .popup .tabs .tab.active,
1238
+ .popup .tabs .tab.active:hover {
1239
+ font-weight: bold;
1240
+ box-shadow: inset #00a2ff 0 -3px
1241
+ }
1242
+ .popup .cover {
1243
+ text-align: center
1244
+ }
1245
+ .popup .cover img {
1246
+ max-width: 100%
1247
+ }
1248
+ .popup .popup-content,
1249
+ .popup .popup-content .inner-content {
1250
+ padding: 25px 28px 0 28px
1251
+ }
1252
+ .popup .popup-content.full-bleed {
1253
+ padding: 0
1254
+ }
1255
+ .popup label {
1256
+ display: block;
1257
+ margin-bottom: 5px;
1258
+ font-weight: bold
1259
+ }
1260
+ .popup .button i.icon-done {
1261
+ display: none
1262
+ }
1263
+ .popup .button.toggled {
1264
+ border-color: #00c19a;
1265
+ background: #00c19a
1266
+ }
1267
+ .popup .button.toggled i.icon-done {
1268
+ display: inline
1269
+ }
1270
+ .popup .button.toggled i.icon-link {
1271
+ display: none
1272
+ }
1273
+ .popup .copy-link {
1274
+ position: relative;
1275
+ cursor: pointer
1276
+ }
1277
+ .popup .copy-link .feedback {
1278
+ font-size: 14px
1279
+ }
1280
+ .popup .copy-link .feedback.initial {
1281
+ color: #00a2ff
1282
+ }
1283
+ .popup .copy-link .feedback.switched {
1284
+ color: #00c19a
1285
+ }
1286
+ .popup .invoice {
1287
+ margin-bottom: 30px;
1288
+ -webkit-transition: opacity 0.2s ease;
1289
+ transition: opacity 0.2s ease
1290
+ }
1291
+ .popup .transparent {
1292
+ opacity: 0
1293
+ }
1294
+ .popup .popup-buttons {
1295
+ overflow: hidden;
1296
+ box-sizing: border-box;
1297
+ padding: 0 28px 25px 28px;
1298
+ text-align: center
1299
+ }
1300
+ .popup .popup-buttons div[class^="col"] button,
1301
+ .popup .popup-buttons div[class^="col"] .button {
1302
+ width: 100%
1303
+ }
1304
+ .popup .popup-buttons .col1of2:first-child {
1305
+ padding-right: 5px
1306
+ }
1307
+ .popup .popup-buttons .col1of2:last-child {
1308
+ padding-left: 5px
1309
+ }
1310
+ .popup .popup-buttons .spinner {
1311
+ padding: 12px 0
1312
+ }
1313
+ .popup .popup-buttons button,
1314
+ .popup .popup-buttons .button,
1315
+ .popup .popup-buttons .spinner {
1316
+ width: auto
1317
+ }
1318
+ .popup .popup-buttons button.hidden,
1319
+ .popup .popup-buttons .button.hidden,
1320
+ .popup .popup-buttons .spinner.hidden {
1321
+ display: none
1322
+ }
1323
+ .popup .popup-buttons button.lonely,
1324
+ .popup .popup-buttons .button.lonely,
1325
+ .popup .popup-buttons .spinner.lonely {
1326
+ min-width: 140px;
1327
+ margin-left: 0
1328
+ }
1329
+ @media only screen and (max-width: 800px) {
1330
+ .popup .tabs {
1331
+ position: relative
1332
+ }
1333
+ }
1334
+ @media only screen and (max-width: 500px) {
1335
+ .popup {
1336
+ width: 100%;
1337
+ height: 100%;
1338
+ margin: 0;
1339
+ border: none
1340
+ }
1341
+ .popup .tabs {
1342
+ font-size: 14px
1343
+ }
1344
+ .popup .popup-content,
1345
+ .popup .popup-buttons {
1346
+ position: fixed;
1347
+ top: 0;
1348
+ left: 0;
1349
+ right: 0;
1350
+ bottom: 0;
1351
+ background-color: #fff;
1352
+ z-index: 2
1353
+ }
1354
+ .popup .popup-content,
1355
+ .popup .popup-content .inner-content,
1356
+ .popup .popup-buttons,
1357
+ .popup .popup-buttons .inner-content {
1358
+ padding: 25px 28px
1359
+ }
1360
+ .popup .popup-content {
1361
+ bottom: 84px;
1362
+ overflow: auto
1363
+ }
1364
+ .popup .popup-content.full-bleed {
1365
+ padding: 0
1366
+ }
1367
+ .popup .popup-buttons {
1368
+ top: auto;
1369
+ border-top: 1px solid #ddd
1370
+ }
1371
+ .popup .cover img {
1372
+ height: auto
1373
+ }
1374
+ }
1375
+ .tabs {
1376
+ background: #fff
1377
+ }
1378
+ .tabs .tab {
1379
+ float: left;
1380
+ box-sizing: border-box;
1381
+ padding: 0 20px 3px 20px;
1382
+ font-size: 18px;
1383
+ cursor: pointer
1384
+ }
1385
+ @media only screen and (min-width: 801px) {
1386
+ .tabs .tab {
1387
+ -webkit-transition: border 0.2s ease-in-out;
1388
+ transition: border 0.2s ease-in-out
1389
+ }
1390
+ }
1391
+ .tabs .tab:hover {
1392
+ box-shadow: inset rgba(16, 141, 255, 0.2) 0 -3px
1393
+ }
1394
+ .tabs .tab.active,
1395
+ .tabs .tab.active:hover {
1396
+ box-shadow: inset #108dff 0 -3px;
1397
+ cursor: default
1398
+ }
1399
+ @media only screen and (max-width: 800px) {
1400
+ .tabs {
1401
+ position: fixed;
1402
+ z-index: 2;
1403
+ bottom: 0;
1404
+ left: 0;
1405
+ width: 100%;
1406
+ box-shadow: inset #eef6fa 0 2px
1407
+ }
1408
+ .tabs .tab {
1409
+ width: 33.3333%;
1410
+ font-size: 14px;
1411
+ padding: 0;
1412
+ text-align: center;
1413
+ border-bottom: none
1414
+ }
1415
+ .tabs .tab.active,
1416
+ .tabs .tab.active:hover {
1417
+ box-shadow: inset #108dff 0 3px;
1418
+ border-bottom: none
1419
+ }
1420
+ .tabs .tab:hover {
1421
+ box-shadow: inset rgba(16, 141, 255, 0.2) 0 3px;
1422
+ border-bottom: none
1423
+ }
1424
+ }
1425
+ .options-dropdown {
1426
+ display: inline-block;
1427
+ border: 1px solid #d0d0d0;
1428
+ background-color: #f8f8f8;
1429
+ -o-box-shadow: rgba(208, 208, 208, 0.6) 0 2px 5px;
1430
+ box-shadow: rgba(208, 208, 208, 0.6) 0 2px 5px
1431
+ }
1432
+ .options-dropdown .group-title {
1433
+ margin-bottom: 15px;
1434
+ color: rgba(0, 0, 0, 0.34)
1435
+ }
1436
+ .options-dropdown li {
1437
+ margin-bottom: 15px
1438
+ }
1439
+ .options-dropdown li:last-child {
1440
+ margin-bottom: 0
1441
+ }
1442
+ .options-dropdown li .checkbox {
1443
+ line-height: 22px;
1444
+ top: 5px
1445
+ }
1446
+ .options-dropdown li .checkbox input[type=checkbox]+label {
1447
+ margin-right: 5px;
1448
+ padding-left: 30px;
1449
+ line-height: 22px
1450
+ }
1451
+ .options-dropdown li .checkbox input[type=checkbox]+label:before {
1452
+ height: 20px;
1453
+ width: 20px;
1454
+ font-size: 18px;
1455
+ line-height: 18px
1456
+ }
1457
+ .options-dropdown li .checkbox label {
1458
+ max-width: 297px;
1459
+ white-space: nowrap;
1460
+ overflow: hidden;
1461
+ text-overflow: ellipsis
1462
+ }
1463
+ .options-dropdown .scroller {
1464
+ max-height: 260px;
1465
+ padding: 20px 24px;
1466
+ overflow: auto;
1467
+ box-sizing: border-box
1468
+ }
1469
+ .options-dropdown .heading,
1470
+ .options-dropdown .decision {
1471
+ background-color: #fff;
1472
+ box-sizing: border-box;
1473
+ width: 100%;
1474
+ padding: 18px 20px 12px 20px
1475
+ }
1476
+ .options-dropdown .decision button,
1477
+ .options-dropdown .decision .button {
1478
+ width: 130px
1479
+ }
1480
+ .options-dropdown .empty {
1481
+ padding: 70px 0;
1482
+ text-align: center
1483
+ }
1484
+ .pagination li {
1485
+ display: inline-block
1486
+ }
1487
+ .pagination a,
1488
+ .pagination span {
1489
+ display: inline-block;
1490
+ box-sizing: border-box;
1491
+ text-align: center;
1492
+ padding: 4px;
1493
+ color: rgba(57, 48, 52, 0.2);
1494
+ border-bottom: rgba(57, 48, 52, 0.2) 1px solid;
1495
+ min-width: 20px
1496
+ }
1497
+ .pagination span {
1498
+ cursor: default
1499
+ }
1500
+ .pagination a {
1501
+ cursor: pointer
1502
+ }
1503
+ .pagination a:hover {
1504
+ color: rgba(57, 48, 52, 0.4);
1505
+ border-bottom: rgba(57, 48, 52, 0.4) 1px solid;
1506
+ text-decoration: none
1507
+ }
1508
+ .pagination span.current {
1509
+ color: #393034;
1510
+ border-bottom-color: #393034
1511
+ }
1512
+ .pagination span.current.prev,
1513
+ .pagination span.current.next {
1514
+ display: none
1515
+ }
1516
+ .pagination .space {
1517
+ display: inline-block;
1518
+ width: 20px
1519
+ }
1520
+ .pagination.subtle a,
1521
+ .pagination.subtle span,
1522
+ .pagination.subtle a:hover,
1523
+ .pagination.subtle a.active {
1524
+ line-height: 20px;
1525
+ padding: 0 4px;
1526
+ border-bottom: none
1527
+ }
1528
+ .row-menu .row,
1529
+ .row-menu .dashboard .controls .scopes-row,
1530
+ .dashboard .controls .row-menu .scopes-row,
1531
+ .row-menu .dashboard .controls .event-types-row,
1532
+ .dashboard .controls .row-menu .event-types-row {
1533
+ padding: 28px 0
1534
+ }
1535
+ .row-menu .row.no-icon,
1536
+ .row-menu .dashboard .controls .no-icon.scopes-row,
1537
+ .dashboard .controls .row-menu .no-icon.scopes-row,
1538
+ .row-menu .dashboard .controls .no-icon.event-types-row,
1539
+ .dashboard .controls .row-menu .no-icon.event-types-row {
1540
+ padding-left: 122px
1541
+ }
1542
+ @media only screen and (max-width: 800px) {
1543
+ .row-menu .row.no-icon,
1544
+ .row-menu .dashboard .controls .no-icon.scopes-row,
1545
+ .dashboard .controls .row-menu .no-icon.scopes-row,
1546
+ .row-menu .dashboard .controls .no-icon.event-types-row,
1547
+ .dashboard .controls .row-menu .no-icon.event-types-row {
1548
+ padding-left: 0
1549
+ }
1550
+ }
1551
+ .row-menu .row .button,
1552
+ .row-menu .dashboard .controls .scopes-row .button,
1553
+ .dashboard .controls .row-menu .scopes-row .button,
1554
+ .row-menu .dashboard .controls .event-types-row .button,
1555
+ .dashboard .controls .row-menu .event-types-row .button {
1556
+ float: right;
1557
+ min-width: 160px;
1558
+ margin-top: 20px;
1559
+ text-align: left
1560
+ }
1561
+ @media only screen and (max-width: 800px) {
1562
+ .row-menu .row .button,
1563
+ .row-menu .dashboard .controls .scopes-row .button,
1564
+ .dashboard .controls .row-menu .scopes-row .button,
1565
+ .row-menu .dashboard .controls .event-types-row .button,
1566
+ .dashboard .controls .row-menu .event-types-row .button {
1567
+ margin-top: 10px
1568
+ }
1569
+ }
1570
+ @media only screen and (max-width: 500px) {
1571
+ .row-menu .row .button,
1572
+ .row-menu .dashboard .controls .scopes-row .button,
1573
+ .dashboard .controls .row-menu .scopes-row .button,
1574
+ .row-menu .dashboard .controls .event-types-row .button,
1575
+ .dashboard .controls .row-menu .event-types-row .button {
1576
+ float: none;
1577
+ width: 100%
1578
+ }
1579
+ }
1580
+ .row-menu .row .button i,
1581
+ .row-menu .dashboard .controls .scopes-row .button i,
1582
+ .dashboard .controls .row-menu .scopes-row .button i,
1583
+ .row-menu .dashboard .controls .event-types-row .button i,
1584
+ .dashboard .controls .row-menu .event-types-row .button i {
1585
+ float: right
1586
+ }
1587
+ .subheader .select {
1588
+ display: inline-block;
1589
+ text-align: left
1590
+ }
1591
+ .subheader .select .chzn-container .chzn-single {
1592
+ border: none
1593
+ }
1594
+ .subheader .select .chzn-drop {
1595
+ border: 1px solid #d0d0d0;
1596
+ box-shadow: none
1597
+ }
1598
+ .select.error .chzn-single {
1599
+ border-color: #de1f1f
1600
+ }
1601
+ @media only screen and (max-width: 500px) {
1602
+ .subheader .select {
1603
+ width: 100%;
1604
+ position: static
1605
+ }
1606
+ .subheader .select .chzn-container-single {
1607
+ position: static
1608
+ }
1609
+ .subheader .chzn-drop {
1610
+ top: 165px;
1611
+ width: 100%
1612
+ }
1613
+ }
1614
+ @media only screen and (max-width: 320px) {
1615
+ .subheader .chzn-drop {
1616
+ top: 186px
1617
+ }
1618
+ }
1619
+ .checkbox {
1620
+ display: inline-block
1621
+ }
1622
+ .checkbox input[type=checkbox] {
1623
+ display: none
1624
+ }
1625
+ .checkbox input[type=checkbox]+label {
1626
+ font-style: normal;
1627
+ font-weight: normal;
1628
+ line-height: 36px;
1629
+ display: inline-block;
1630
+ cursor: pointer;
1631
+ position: relative;
1632
+ padding-left: 50px;
1633
+ word-wrap: break-word;
1634
+ -webkit-touch-callout: none;
1635
+ -khtml-user-select: none;
1636
+ -ms-user-select: none;
1637
+ -webkit-user-select: none;
1638
+ -moz-user-select: -moz- none;
1639
+ user-select: none
1640
+ }
1641
+ .checkbox input[type=checkbox]+label:before {
1642
+ font-family: "icomoon";
1643
+ position: absolute;
1644
+ left: 0;
1645
+ display: inline-block;
1646
+ content: "";
1647
+ width: 36px;
1648
+ height: 36px;
1649
+ border: 1px solid #d0d0d0;
1650
+ box-sizing: border-box;
1651
+ background-color: #fff
1652
+ }
1653
+ .checkbox input[type=checkbox]:checked+label:before {
1654
+ font-size: 24px;
1655
+ line-height: 36px;
1656
+ content: "";
1657
+ color: #118dff;
1658
+ text-align: center
1659
+ }
1660
+ .checkbox input[type=checkbox]:disabled+label:before {
1661
+ cursor: default;
1662
+ background: #eee;
1663
+ opacity: 0.7;
1664
+ color: #aaa
1665
+ }
1666
+ .checkbox.reversed input[type=checkbox]+label {
1667
+ padding-left: 0;
1668
+ padding-right: 48px;
1669
+ margin-right: 0
1670
+ }
1671
+ .checkbox.reversed input[type=checkbox]+label:before {
1672
+ left: auto;
1673
+ right: 0
1674
+ }
1675
+ .checkbox.small input[type=checkbox]+label {
1676
+ line-height: 24px;
1677
+ padding-left: 35px
1678
+ }
1679
+ .checkbox.small input[type=checkbox]+label:before {
1680
+ width: 20px;
1681
+ height: 20px
1682
+ }
1683
+ .checkbox.small input[type=checkbox]:checked+label:before {
1684
+ font-size: 16px;
1685
+ line-height: 20px
1686
+ }
1687
+ .checkbox.small.reversed input[type=checkbox]+label {
1688
+ padding-left: 0;
1689
+ padding-right: 38px
1690
+ }
1691
+ .date-list {
1692
+ list-style: none
1693
+ }
1694
+ .date-list .date {
1695
+ margin-bottom: 20px
1696
+ }
1697
+ .date-list .date .heading {
1698
+ padding: 10px 0
1699
+ }
1700
+ .event {
1701
+ position: relative;
1702
+ border: 1px solid #fff;
1703
+ border-top: 1px solid #eef6fa;
1704
+ -webkit-transition: border-color 0.8s ease;
1705
+ transition: border-color 0.8s ease
1706
+ }
1707
+ .event .title {
1708
+ position: relative;
1709
+ padding: 20px 25px;
1710
+ cursor: pointer
1711
+ }
1712
+ .event .title:hover {
1713
+ background: #fafcfe
1714
+ }
1715
+ .event .title a:hover {
1716
+ text-decoration: none
1717
+ }
1718
+ .event .toggle {
1719
+ position: absolute;
1720
+ top: 20px;
1721
+ right: 20px;
1722
+ color: #00a2ff
1723
+ }
1724
+ .event .toggle i {
1725
+ position: relative;
1726
+ top: 2px
1727
+ }
1728
+ .event .toggle .expand,
1729
+ .event .toggle .collapse {
1730
+ font-size: 14px
1731
+ }
1732
+ .event .toggle .collapse {
1733
+ display: none
1734
+ }
1735
+ .event .primary {
1736
+ padding-right: 65px
1737
+ }
1738
+ .event .duration {
1739
+ position: relative;
1740
+ float: left;
1741
+ width: 33.33%;
1742
+ padding: 0px 10px 0px 50px;
1743
+ box-sizing: border-box
1744
+ }
1745
+ .event .duration .locked-time,
1746
+ .event .duration .moved-time {
1747
+ margin-top: 2px
1748
+ }
1749
+ .event .duration.attention .time,
1750
+ .event .duration.attention .locked-time {
1751
+ color: red
1752
+ }
1753
+ .event .description {
1754
+ float: left;
1755
+ width: 66.66%;
1756
+ box-sizing: border-box
1757
+ }
1758
+ .event .marker {
1759
+ position: absolute;
1760
+ left: 0;
1761
+ top: -3px
1762
+ }
1763
+ .event .details {
1764
+ padding: 0 25px;
1765
+ display: none
1766
+ }
1767
+ .event .details .controls {
1768
+ width: 33.333%;
1769
+ float: left
1770
+ }
1771
+ .event .details .controls .action-button {
1772
+ display: block;
1773
+ max-width: 180px;
1774
+ margin: 0 0 5px 50px;
1775
+ color: #a8a8a8;
1776
+ border-color: #dadada
1777
+ }
1778
+ .event .details .controls .action-button i {
1779
+ font-size: 18px
1780
+ }
1781
+ .event .details .content {
1782
+ border-top: 1px solid #e2e2e2;
1783
+ width: 66.66%;
1784
+ float: right
1785
+ }
1786
+ .event .details .entry {
1787
+ margin-bottom: 20px
1788
+ }
1789
+ .event .details .entry label {
1790
+ text-transform: uppercase;
1791
+ font-size: 12px;
1792
+ line-height: 14px;
1793
+ font-weight: bold;
1794
+ margin-bottom: 5px
1795
+ }
1796
+ .event .details .timestamp {
1797
+ color: rgba(0, 0, 0, 0.44);
1798
+ font-style: italic;
1799
+ font-size: 12px;
1800
+ margin-bottom: 20px
1801
+ }
1802
+ .event .context-holder {
1803
+ position: absolute;
1804
+ top: 20px;
1805
+ right: 20px
1806
+ }
1807
+ .event.group .actions,
1808
+ .event.group .content {
1809
+ border-top: 2px solid #afafaf
1810
+ }
1811
+ .event.group .actions {
1812
+ box-sizing: border-box;
1813
+ padding: 13px 0
1814
+ }
1815
+ .event.group .actions span {
1816
+ cursor: pointer;
1817
+ color: #9b9b9b
1818
+ }
1819
+ .event.group .invitee-list {
1820
+ position: relative
1821
+ }
1822
+ .event.group .invitee {
1823
+ border-bottom: 1px solid #e2e2e2
1824
+ }
1825
+ .event.group .invitee .label {
1826
+ position: relative;
1827
+ padding: 20px 0;
1828
+ cursor: pointer
1829
+ }
1830
+ .event.group .invitee .label:hover {
1831
+ background: #fafcfe
1832
+ }
1833
+ .event.group .invitee .label .icon-angle-down {
1834
+ position: absolute;
1835
+ top: 20px;
1836
+ right: 10px;
1837
+ font-size: 24px;
1838
+ color: #bcbcbc
1839
+ }
1840
+ .event.group .invitee .name {
1841
+ color: #00a2ff
1842
+ }
1843
+ .event.group .invitee .info {
1844
+ display: none
1845
+ }
1846
+ .event.group .invitee.canceled .label {
1847
+ text-decoration: line-through
1848
+ }
1849
+ .event.group .invitee:last-child {
1850
+ border: none
1851
+ }
1852
+ .event.expanded {
1853
+ border-color: #d0d0d0
1854
+ }
1855
+ .event.expanded .toggle .collapse {
1856
+ display: inline
1857
+ }
1858
+ .event.expanded .toggle .expand {
1859
+ display: none
1860
+ }
1861
+ .event.cancelled .duration,
1862
+ .event.cancelled .primary,
1863
+ .event.cancelled .secondary {
1864
+ text-decoration: line-through
1865
+ }
1866
+ @media only screen and (max-width: 800px) {
1867
+ .event .details .controls .action-button {
1868
+ display: inline-block
1869
+ }
1870
+ .event .details .controls .label {
1871
+ display: none
1872
+ }
1873
+ }
1874
+ @media only screen and (max-width: 500px) {
1875
+ .event .title,
1876
+ .event .details {
1877
+ padding-left: 10px;
1878
+ padding-right: 10px
1879
+ }
1880
+ .event .duration,
1881
+ .event .description,
1882
+ .event .details .content,
1883
+ .event .details .controls {
1884
+ width: 100%;
1885
+ float: none
1886
+ }
1887
+ .event .duration {
1888
+ margin-bottom: 5px;
1889
+ position: relative;
1890
+ overflow: hidden;
1891
+ padding: 0
1892
+ }
1893
+ .event .duration .marker {
1894
+ position: static;
1895
+ display: inline-block;
1896
+ height: 14px;
1897
+ width: 14px;
1898
+ margin: 4px 0px 0px 10px
1899
+ }
1900
+ .event .details .controls .action-button {
1901
+ margin-left: 0
1902
+ }
1903
+ .event.group {
1904
+ -webkit-transition: none;
1905
+ transition: none
1906
+ }
1907
+ .event.group.expanded {
1908
+ position: fixed;
1909
+ top: 0;
1910
+ left: 0;
1911
+ z-index: 3;
1912
+ border: none;
1913
+ width: 100%;
1914
+ height: 100%;
1915
+ background: #fff;
1916
+ overflow-y: auto
1917
+ }
1918
+ .event.group.expanded .controls .action-button {
1919
+ margin: 0
1920
+ }
1921
+ .event.group.expanded .content {
1922
+ border-bottom: 2px solid #afafaf
1923
+ }
1924
+ .event.group.expanded .invitee-list {
1925
+ margin-bottom: 50px
1926
+ }
1927
+ .event.group.expanded .actions {
1928
+ position: fixed;
1929
+ -webkit-perspective: 1000;
1930
+ perspective: 1000;
1931
+ -webkit-backface-visibility: hidden;
1932
+ backface-visibility: hidden;
1933
+ bottom: 0;
1934
+ left: 0;
1935
+ width: 100%;
1936
+ background: #fff;
1937
+ padding: 13px 20px
1938
+ }
1939
+ .event.group.expanded .title,
1940
+ .event.group.expanded .details {
1941
+ padding-left: 20px;
1942
+ padding-right: 20px
1943
+ }
1944
+ }
1945
+ .daterangepicker {
1946
+ display: none;
1947
+ position: absolute;
1948
+ background: #f8f8f8;
1949
+ border: 1px solid #d0d0d0;
1950
+ box-shadow: 2px 2px 3px #f8f8f8;
1951
+ z-index: 3
1952
+ }
1953
+ .daterangepicker table {
1954
+ border-collapse: separate;
1955
+ border-spacing: 1px
1956
+ }
1957
+ .daterangepicker td,
1958
+ .daterangepicker th {
1959
+ text-align: center;
1960
+ width: 20px;
1961
+ height: 20px;
1962
+ line-height: 28px;
1963
+ white-space: nowrap;
1964
+ cursor: pointer
1965
+ }
1966
+ .daterangepicker td.week,
1967
+ .daterangepicker th.week {
1968
+ font-size: 80%;
1969
+ color: #ccc
1970
+ }
1971
+ .daterangepicker td.month,
1972
+ .daterangepicker th.month {
1973
+ color: #000
1974
+ }
1975
+ .daterangepicker th i {
1976
+ position: relative;
1977
+ top: 2px;
1978
+ font-size: 18px;
1979
+ color: #00a2ff
1980
+ }
1981
+ .daterangepicker .bookmarks ul {
1982
+ width: 100%;
1983
+ background: #fff;
1984
+ padding: 15px;
1985
+ box-sizing: border-box
1986
+ }
1987
+ .daterangepicker .bookmarks ul li {
1988
+ display: inline-block;
1989
+ margin-right: 15px;
1990
+ color: #00a2ff;
1991
+ cursor: pointer
1992
+ }
1993
+ .daterangepicker .bookmarks ul li.active {
1994
+ font-weight: bold
1995
+ }
1996
+ .daterangepicker .calendar {
1997
+ width: 50%;
1998
+ float: left;
1999
+ box-sizing: border-box
2000
+ }
2001
+ .daterangepicker .calendar thead {
2002
+ color: #9d9899
2003
+ }
2004
+ .daterangepicker .calendar th,
2005
+ .daterangepicker .calendar td {
2006
+ font-weight: normal;
2007
+ min-width: 30px
2008
+ }
2009
+ .daterangepicker .calendar th.available:hover,
2010
+ .daterangepicker .calendar td.available:hover {
2011
+ background: #eee
2012
+ }
2013
+ .daterangepicker .calendar td.off,
2014
+ .daterangepicker .calendar td.off.in-range,
2015
+ .daterangepicker .calendar td.off.start-date,
2016
+ .daterangepicker .calendar td.off.end-date {
2017
+ color: #a8a8a8
2018
+ }
2019
+ .daterangepicker .calendar td.in-range {
2020
+ background: #e2f2ff
2021
+ }
2022
+ .daterangepicker .calendar td.active,
2023
+ .daterangepicker .calendar td.active:hover {
2024
+ background-color: #00a2ff;
2025
+ color: #fff
2026
+ }
2027
+ .daterangepicker .calendar td.disabled {
2028
+ color: #a8a8a8
2029
+ }
2030
+ .daterangepicker .calendar.left {
2031
+ padding: 15px 7px 15px 15px
2032
+ }
2033
+ .daterangepicker .calendar.right {
2034
+ padding: 15px 15px 15px 7px
2035
+ }
2036
+ .daterangepicker .calendar-table {
2037
+ padding: 10px;
2038
+ background: #fff;
2039
+ box-shadow: 1px 2px 1px #f0f0f0, -1px 0px 1px #f0f0f0
2040
+ }
2041
+ .daterangepicker .daterangepicker-input {
2042
+ display: none
2043
+ }
2044
+ .daterangepicker .mobile-label {
2045
+ display: none
2046
+ }
2047
+ .daterangepicker .range-inputs {
2048
+ background: #fff;
2049
+ padding: 20px 0;
2050
+ text-align: center;
2051
+ }
2052
+ @media only screen and (max-width: 500px) {
2053
+ .daterangepicker {
2054
+ right: 0 !important
2055
+ }
2056
+ .daterangepicker .mobile-label {
2057
+ display: block;
2058
+ text-align: center;
2059
+ padding: 20px 0 10px 0
2060
+ }
2061
+ .daterangepicker .daterangepicker-input {
2062
+ margin-bottom: 40px;
2063
+ display: block
2064
+ }
2065
+ .daterangepicker .daterangepicker-input:after {
2066
+ display: block;
2067
+ text-align: center;
2068
+ color: #a8a8a8;
2069
+ font-size: 12px;
2070
+ margin-top: 3px
2071
+ }
2072
+ .daterangepicker .calendar.left .daterangepicker-input:after {
2073
+ content: "start"
2074
+ }
2075
+ .daterangepicker .calendar.right .daterangepicker-input:after {
2076
+ display: block;
2077
+ content: "end"
2078
+ }
2079
+ .daterangepicker .calendar-table {
2080
+ display: none
2081
+ }
2082
+ .daterangepicker .bookmarks ul li {
2083
+ position: relative;
2084
+ font-size: 18px;
2085
+ display: block;
2086
+ margin-bottom: 10px
2087
+ }
2088
+ .daterangepicker .bookmarks ul li:after {
2089
+ position: absolute;
2090
+ right: 0;
2091
+ font-weight: 100;
2092
+ font-family: "icomoon";
2093
+ content: "";
2094
+ color: #00a2ff
2095
+ }
2096
+ }
2097
+ .quick-menu {
2098
+ margin-bottom: 35px
2099
+ }
2100
+ .quick-menu .menu-item {
2101
+ position: relative;
2102
+ display: inline-block;
2103
+ margin-right: 30px
2104
+ }
2105
+ .quick-menu .menu-item .icon-angle-down,
2106
+ .quick-menu .menu-item .icon-angle-right {
2107
+ position: relative;
2108
+ top: 2px;
2109
+ display: inline-block;
2110
+ width: 14px;
2111
+ text-align: center
2112
+ }
2113
+ .quick-menu .menu-item .menu-label {
2114
+ display: inline-block;
2115
+ max-width: 130px;
2116
+ text-overflow: ellipsis;
2117
+ overflow: hidden;
2118
+ white-space: nowrap;
2119
+ vertical-align: bottom
2120
+ }
2121
+ .quick-menu .menu-item .avatar-element {
2122
+ position: relative;
2123
+ top: -2px;
2124
+ margin-right: 2px
2125
+ }
2126
+ .quick-menu .menu-item .context {
2127
+ right: auto;
2128
+ left: 0
2129
+ }
2130
+ .quick-menu .menu-item .context:before {
2131
+ right: auto;
2132
+ left: 16px
2133
+ }
2134
+ .subheader {
2135
+ *zoom: 1;
2136
+ padding: 30px 10px;
2137
+ background: #fff;
2138
+ border-bottom: 1px solid #eef6fa
2139
+ }
2140
+ .subheader:after {
2141
+ content: ".";
2142
+ display: block;
2143
+ height: 0;
2144
+ line-height: 0;
2145
+ clear: both;
2146
+ visibility: hidden
2147
+ }
2148
+ .subheader .title {
2149
+ float: left;
2150
+ width: 50%;
2151
+ text-align: center
2152
+ }
2153
+ .subheader .actions {
2154
+ float: left;
2155
+ width: 25%
2156
+ }
2157
+ .subheader .actions:last-child {
2158
+ text-align: right
2159
+ }
2160
+ .subheader .actions .commutator {
2161
+ vertical-align: middle;
2162
+ margin-left: 5px
2163
+ }
2164
+ .subheader .select {
2165
+ width: auto;
2166
+ max-width: 100%
2167
+ }
2168
+ .subheader .action-button {
2169
+ padding: 0px 15px 0 10px
2170
+ }
2171
+ @media only screen and (max-width: 800px) {
2172
+ .subheader {
2173
+ padding: 20px 0
2174
+ }
2175
+ .subheader .title {
2176
+ width: 80%
2177
+ }
2178
+ .subheader .actions {
2179
+ width: 10%
2180
+ }
2181
+ .subheader .actions .action-button {
2182
+ padding: 0 3px
2183
+ }
2184
+ .subheader .actions .action-button i {
2185
+ line-height: 30px
2186
+ }
2187
+ .subheader .actions .action-button span {
2188
+ display: none
2189
+ }
2190
+ .subheader .actions:first-child .action-button {
2191
+ border: none
2192
+ }
2193
+ .subheader .actions:first-child .action-button i {
2194
+ text-align: left
2195
+ }
2196
+ .subheader .actions.adaptive {
2197
+ float: none;
2198
+ width: 100%;
2199
+ clear: both;
2200
+ padding-top: 10px;
2201
+ text-align: center
2202
+ }
2203
+ .subheader .select .chzn-container-single .chzn-single {
2204
+ padding: 4px 10px
2205
+ }
2206
+ .subheader .select .chzn-container-single .chzn-single div b {
2207
+ padding: 7px 8px
2208
+ }
2209
+ }
2210
+ .subheader .date-range {
2211
+ min-height: 30px;
2212
+ padding: 0 63px;
2213
+ font-size: 24px;
2214
+ line-height: 30px;
2215
+ text-align: center
2216
+ }
2217
+ .subheader .nav-button {
2218
+ position: absolute;
2219
+ top: 50%;
2220
+ margin-top: -14px;
2221
+ height: 28px;
2222
+ width: 30px;
2223
+ font-size: 28px;
2224
+ color: #00a2ff;
2225
+ background-repeat: no-repeat;
2226
+ background-position: center center;
2227
+ background-size: 18px 15px;
2228
+ cursor: pointer;
2229
+ border-radius: 2px;
2230
+ -webkit-touch-callout: none;
2231
+ -khtml-user-select: none;
2232
+ -ms-user-select: none;
2233
+ -webkit-user-select: none;
2234
+ -moz-user-select: -moz- none;
2235
+ user-select: none
2236
+ }
2237
+ .subheader .nav-button.prev {
2238
+ left: 0
2239
+ }
2240
+ .subheader .nav-button.next {
2241
+ right: 0
2242
+ }
2243
+ .subheader .nav-button:hover {
2244
+ background-color: #f1f1f1
2245
+ }
2246
+ .dashboard .schedule.fetching {
2247
+ position: relative
2248
+ }
2249
+ .dashboard .controls {
2250
+ margin-bottom: 40px;
2251
+ padding-top: 20px
2252
+ }
2253
+ .dashboard .controls .wrapper {
2254
+ position: relative
2255
+ }
2256
+ .dashboard .controls .scopes-row {
2257
+ line-height: 38px;
2258
+ margin-bottom: 40px;
2259
+ box-shadow: inset 0 -2px #eef6fa
2260
+ }
2261
+ .dashboard .controls .filters-row {
2262
+ border-bottom: 1px solid #dedede
2263
+ }
2264
+ .dashboard .controls .ghost-action {
2265
+ padding: 3px 10px 2px 10px
2266
+ }
2267
+ .dashboard .controls .daterange {
2268
+ float: right;
2269
+ cursor: pointer
2270
+ }
2271
+ .dashboard .controls .daterange .icon-angle-down {
2272
+ position: relative;
2273
+ top: 3px;
2274
+ margin-left: 5px;
2275
+ color: #a8a8a8
2276
+ }
2277
+ .dashboard .pagination-summary {
2278
+ padding-bottom: 30px
2279
+ }
2280
+ @media only screen and (max-width: 800px) {
2281
+ .dashboard .controls {
2282
+ margin-bottom: 20px
2283
+ }
2284
+ .dashboard .controls .event-types-row>div:first-child {
2285
+ display: none
2286
+ }
2287
+ .dashboard .controls .event-types-row .filters-toggle {
2288
+ position: absolute;
2289
+ top: 10px;
2290
+ right: 20px
2291
+ }
2292
+ .dashboard .controls .event-types-row .filters-toggle .label {
2293
+ display: none
2294
+ }
2295
+ .dashboard .controls .daterange {
2296
+ float: left
2297
+ }
2298
+ .dashboard .controls .scopes-row {
2299
+ margin: 0
2300
+ }
2301
+ .dashboard .controls .filters-row {
2302
+ border: none
2303
+ }
2304
+ .dashboard .pagination-summary {
2305
+ text-align: center
2306
+ }
2307
+ }
2308
+ .dashboard .filters-toggle {
2309
+ cursor: pointer
2310
+ }
2311
+ .dashboard .filters-toggle i {
2312
+ position: relative;
2313
+ top: 2px;
2314
+ margin-left: 3px;
2315
+ color: #9d9d9d
2316
+ }
2317
+ .dashboard .filters-toggle.scope-team,
2318
+ .dashboard .filters-toggle.scope-organization {
2319
+ display: none
2320
+ }
2321
+ .dashboard .filters {
2322
+ padding-bottom: 10px
2323
+ }
2324
+ .dashboard .filters .annotation {
2325
+ margin-bottom: 20px;
2326
+ color: rgba(0, 0, 0, 0.34)
2327
+ }
2328
+ .dashboard .filters .filters-list {
2329
+ float: left
2330
+ }
2331
+ .dashboard .filters .export-link {
2332
+ display: inline-block;
2333
+ margin: 21px 25px 0 0;
2334
+ color: rgba(0, 0, 0, 0.34);
2335
+ font-size: 80%
2336
+ }
2337
+ .dashboard .filters .filter {
2338
+ position: relative;
2339
+ display: inline-block;
2340
+ margin-right: 25px
2341
+ }
2342
+ .dashboard .filters .filter .name {
2343
+ font-weight: bold;
2344
+ font-size: 80%;
2345
+ color: #a8a8a8;
2346
+ margin-bottom: 4px
2347
+ }
2348
+ .dashboard .filters .filter .label {
2349
+ color: #1e87f9;
2350
+ cursor: pointer
2351
+ }
2352
+ .dashboard .filters .filter .icon-angle-down {
2353
+ font-size: 16px;
2354
+ position: relative;
2355
+ top: 3px
2356
+ }
2357
+ .dashboard .filters .filter .options-dropdown {
2358
+ position: absolute;
2359
+ z-index: 10;
2360
+ top: 53px;
2361
+ left: 0;
2362
+ min-width: 340px
2363
+ }
2364
+ .dashboard .filters .filter .options-dropdown .deleted-toggle {
2365
+ padding-left: 20px;
2366
+ cursor: pointer;
2367
+ color: rgba(0, 0, 0, 0.34)
2368
+ }
2369
+ @media only screen and (max-width: 800px) {
2370
+ .dashboard .filters-toggle.scope-team,
2371
+ .dashboard .filters-toggle.scope-organization {
2372
+ display: block
2373
+ }
2374
+ .dashboard .filters {
2375
+ display: none;
2376
+ position: absolute;
2377
+ z-index: 3;
2378
+ left: 0;
2379
+ top: -6px;
2380
+ box-sizing: border-box;
2381
+ width: 100%;
2382
+ padding: 0;
2383
+ background: #fff;
2384
+ border: 1px solid #d0d0d0;
2385
+ box-shadow: 2px 2px 4px #f8f8f8
2386
+ }
2387
+ .dashboard .filters .annotation {
2388
+ display: none
2389
+ }
2390
+ .dashboard .filters .filters-list {
2391
+ float: none;
2392
+ border-bottom: 1px solid #f5f9fb;
2393
+ padding-bottom: 10px;
2394
+ margin-bottom: 10px
2395
+ }
2396
+ .dashboard .filters .filter,
2397
+ .dashboard .filters a.export-link,
2398
+ .dashboard .filters .ghost-action {
2399
+ display: block;
2400
+ padding: 10px;
2401
+ font-size: 18px;
2402
+ line-height: 1.5rem;
2403
+ margin: 0;
2404
+ border: none
2405
+ }
2406
+ .dashboard .filters .filter .label,
2407
+ .dashboard .filters a.export-link {
2408
+ color: #1e87f9
2409
+ }
2410
+ .dashboard .filters .filter .label:after {
2411
+ content: "+";
2412
+ float: right;
2413
+ font-size: 24px
2414
+ }
2415
+ .dashboard .filters .filter .label .icon-angle-down {
2416
+ display: none
2417
+ }
2418
+ .dashboard .filters .ghost-action {
2419
+ color: rgba(0, 0, 0, 0.34)
2420
+ }
2421
+ .dashboard .filters .filter .options-dropdown {
2422
+ position: fixed;
2423
+ top: 0;
2424
+ left: 0;
2425
+ width: 100%;
2426
+ height: 100%
2427
+ }
2428
+ .dashboard .filters .filter .options-dropdown .decision {
2429
+ width: 100%;
2430
+ position: fixed;
2431
+ bottom: 0
2432
+ }
2433
+ }
2434
+ body.deletion .body-content {
2435
+ background-color: white
2436
+ }
2437
+ @media only screen and (max-width: 800px) {
2438
+ .hidden-phone {
2439
+ display: none !important
2440
+ }
2441
+ }