Version Description
- Added Feedback Form for innofit theme.
Download this release
Release Info
Developer | spicethemes |
Plugin | Spice Box |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- inc/css/custom-one.css +1 -32
- inc/css/innofit-custom-one.css +57 -0
- inc/css/innofit-custom-two.css +839 -0
- inc/css/innofit-formCss.css +210 -0
- inc/innofit-feedback-pop-up-form.php +112 -0
- inc/js/innofit-custom.js +9 -0
- readme.txt +5 -2
- spicebox.php +14 -2
inc/css/custom-one.css
CHANGED
@@ -25,36 +25,5 @@
|
|
25 |
.form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{
|
26 |
color: Black;
|
27 |
}
|
28 |
-
|
29 |
-
cursor: default;
|
30 |
-
}
|
31 |
-
|
32 |
-
@media (max-width: 768px){
|
33 |
-
.jotform-form{
|
34 |
-
height: 100%;
|
35 |
-
width: 100%;
|
36 |
-
position: absolute;
|
37 |
-
z-index: 1;
|
38 |
-
overflow: auto;
|
39 |
-
}
|
40 |
-
}
|
41 |
-
|
42 |
-
|
43 |
-
.jotform-form input[type=radio] {
|
44 |
-
-webkit-appearance: unset;
|
45 |
-
}
|
46 |
-
|
47 |
-
@media screen and (max-width: 782px){
|
48 |
-
input[type=radio] {
|
49 |
-
height: 15px !important;
|
50 |
-
width: 10px !important;
|
51 |
-
|
52 |
-
}input[type=radio]:checked:before {
|
53 |
-
width: 5px !important;
|
54 |
-
height: 5px !important;
|
55 |
-
margin: 4px !important;
|
56 |
-
border-radius: 50% !important;
|
57 |
-
}}
|
58 |
-
|
59 |
-
|
60 |
|
25 |
.form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{
|
26 |
color: Black;
|
27 |
}
|
28 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
inc/css/innofit-custom-one.css
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.form-label-left{
|
2 |
+
width:150px;
|
3 |
+
}
|
4 |
+
.form-line{
|
5 |
+
padding-top:12px;
|
6 |
+
padding-bottom:12px;
|
7 |
+
}
|
8 |
+
.form-label-right{
|
9 |
+
width:150px;
|
10 |
+
}
|
11 |
+
body, html{
|
12 |
+
margin:0;
|
13 |
+
padding:0;
|
14 |
+
background:#fff;
|
15 |
+
}
|
16 |
+
|
17 |
+
.form-all{
|
18 |
+
margin:0px auto;
|
19 |
+
padding-top:20px;
|
20 |
+
width:690px;
|
21 |
+
color:#555 !important;
|
22 |
+
font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
|
23 |
+
font-size:14px;
|
24 |
+
}
|
25 |
+
.form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{
|
26 |
+
color: Black;
|
27 |
+
}
|
28 |
+
.jotform-form label{
|
29 |
+
cursor: default;
|
30 |
+
}
|
31 |
+
|
32 |
+
@media (max-width: 768px){
|
33 |
+
.jotform-form{
|
34 |
+
height: 100%;
|
35 |
+
width: 100%;
|
36 |
+
position: absolute;
|
37 |
+
z-index: 1;
|
38 |
+
overflow: auto;
|
39 |
+
}
|
40 |
+
}
|
41 |
+
|
42 |
+
|
43 |
+
.jotform-form input[type=radio] {
|
44 |
+
-webkit-appearance: unset;
|
45 |
+
}
|
46 |
+
|
47 |
+
@media screen and (max-width: 782px){
|
48 |
+
input[type=radio] {
|
49 |
+
height: 15px !important;
|
50 |
+
width: 10px !important;
|
51 |
+
|
52 |
+
}input[type=radio]:checked:before {
|
53 |
+
width: 5px !important;
|
54 |
+
height: 5px !important;
|
55 |
+
margin: 4px !important;
|
56 |
+
border-radius: 50% !important;
|
57 |
+
}}
|
inc/css/innofit-custom-two.css
ADDED
@@ -0,0 +1,839 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import "//www.jotform.com/themes/css/buttons/form-submit-button-light.css";
|
2 |
+
.form-all:after {
|
3 |
+
content: "";
|
4 |
+
display: table;
|
5 |
+
clear: both;
|
6 |
+
}
|
7 |
+
.form-all {
|
8 |
+
font-family: "Lucida Grande", sans-serif;
|
9 |
+
}
|
10 |
+
.form-all {
|
11 |
+
width: 690px;
|
12 |
+
}
|
13 |
+
.form-label-left,
|
14 |
+
.form-label-right {
|
15 |
+
width: 150px;
|
16 |
+
}
|
17 |
+
.form-label {
|
18 |
+
white-space: normal;
|
19 |
+
}
|
20 |
+
.form-label.form-label-auto {
|
21 |
+
display: block;
|
22 |
+
float: none;
|
23 |
+
text-align: left;
|
24 |
+
}
|
25 |
+
.form-label-left {
|
26 |
+
display: inline-block;
|
27 |
+
white-space: normal;
|
28 |
+
float: left;
|
29 |
+
text-align: left;
|
30 |
+
}
|
31 |
+
.form-label-right {
|
32 |
+
display: inline-block;
|
33 |
+
white-space: normal;
|
34 |
+
float: left;
|
35 |
+
text-align: right;
|
36 |
+
}
|
37 |
+
.form-label-top {
|
38 |
+
white-space: normal;
|
39 |
+
display: block;
|
40 |
+
float: none;
|
41 |
+
text-align: left;
|
42 |
+
}
|
43 |
+
.form-radio-item label:before {
|
44 |
+
top: 0;
|
45 |
+
}
|
46 |
+
.form-all {
|
47 |
+
font-size: 14px;
|
48 |
+
}
|
49 |
+
.form-label {
|
50 |
+
font-weight: bold;
|
51 |
+
}
|
52 |
+
.form-checkbox-item label,
|
53 |
+
.form-radio-item label {
|
54 |
+
font-weight: normal;
|
55 |
+
}
|
56 |
+
.supernova {
|
57 |
+
background-color: #ffffff;
|
58 |
+
background-color: rgba(0, 0, 0, 0.32);
|
59 |
+
}
|
60 |
+
.supernova body {
|
61 |
+
background-color: transparent;
|
62 |
+
}
|
63 |
+
/*
|
64 |
+
@width30: (unit(@formWidth, px) + 60px);
|
65 |
+
@width60: (unit(@formWidth, px)+ 120px);
|
66 |
+
@width90: (unit(@formWidth, px)+ 180px);
|
67 |
+
*/
|
68 |
+
/* | */
|
69 |
+
@media screen and (min-width: 480px) {
|
70 |
+
.supernova .form-all {
|
71 |
+
border: 1px solid rgba(0, 0, 0, 0.32);
|
72 |
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
|
73 |
+
-moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
|
74 |
+
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
|
75 |
+
}
|
76 |
+
}
|
77 |
+
/* | */
|
78 |
+
/* | */
|
79 |
+
@media screen and (max-width: 480px) {
|
80 |
+
.jotform-form .form-all {
|
81 |
+
margin: 0;
|
82 |
+
width: 100%;
|
83 |
+
}
|
84 |
+
}
|
85 |
+
/* | */
|
86 |
+
/* | */
|
87 |
+
@media screen and (min-width: 480px) and (max-width: 767px) {
|
88 |
+
.jotform-form .form-all {
|
89 |
+
margin: 0;
|
90 |
+
width: 100%;
|
91 |
+
}
|
92 |
+
}
|
93 |
+
/* | */
|
94 |
+
/* | */
|
95 |
+
@media screen and (min-width: 480px) and (max-width: 689px) {
|
96 |
+
.jotform-form .form-all {
|
97 |
+
margin: 0;
|
98 |
+
width: 100%;
|
99 |
+
}
|
100 |
+
}
|
101 |
+
/* | */
|
102 |
+
/* | */
|
103 |
+
@media screen and (min-width: 768px) {
|
104 |
+
.jotform-form {
|
105 |
+
padding: 60px 0;
|
106 |
+
}
|
107 |
+
}
|
108 |
+
/* | */
|
109 |
+
/* | */
|
110 |
+
@media screen and (max-width: 689px) {
|
111 |
+
.jotform-form .form-all {
|
112 |
+
margin: 0;
|
113 |
+
width: 100%;
|
114 |
+
}
|
115 |
+
}
|
116 |
+
/* | */
|
117 |
+
.supernova .form-all,
|
118 |
+
.form-all {
|
119 |
+
background-color: #ffffff;
|
120 |
+
border: 1px solid transparent;
|
121 |
+
}
|
122 |
+
.form-header-group {
|
123 |
+
border-color: #e6e6e6;
|
124 |
+
}
|
125 |
+
.form-matrix-table tr {
|
126 |
+
border-color: #e6e6e6;
|
127 |
+
}
|
128 |
+
.form-matrix-table tr:nth-child(2n) {
|
129 |
+
background-color: #f2f2f2;
|
130 |
+
}
|
131 |
+
.form-all {
|
132 |
+
color: #555555;
|
133 |
+
}
|
134 |
+
.form-header-group .form-header {
|
135 |
+
color: #555555;
|
136 |
+
}
|
137 |
+
.form-header-group .form-subHeader {
|
138 |
+
color: #6f6f6f;
|
139 |
+
}
|
140 |
+
.form-sub-label {
|
141 |
+
color: #6f6f6f;
|
142 |
+
}
|
143 |
+
.form-label-top,
|
144 |
+
.form-label-left,
|
145 |
+
.form-label-right,
|
146 |
+
.form-html {
|
147 |
+
color: #555555;
|
148 |
+
}
|
149 |
+
.form-checkbox-item label,
|
150 |
+
.form-radio-item label {
|
151 |
+
color: #6f6f6f;
|
152 |
+
}
|
153 |
+
.form-line.form-line-active {
|
154 |
+
-webkit-transition-property: all;
|
155 |
+
-moz-transition-property: all;
|
156 |
+
-ms-transition-property: all;
|
157 |
+
-o-transition-property: all;
|
158 |
+
transition-property: all;
|
159 |
+
-webkit-transition-duration: 0.3s;
|
160 |
+
-moz-transition-duration: 0.3s;
|
161 |
+
-ms-transition-duration: 0.3s;
|
162 |
+
-o-transition-duration: 0.3s;
|
163 |
+
transition-duration: 0.3s;
|
164 |
+
-webkit-transition-timing-function: ease;
|
165 |
+
-moz-transition-timing-function: ease;
|
166 |
+
-ms-transition-timing-function: ease;
|
167 |
+
-o-transition-timing-function: ease;
|
168 |
+
transition-timing-function: ease;
|
169 |
+
background-color: #ffffe0;
|
170 |
+
}
|
171 |
+
/* omer */
|
172 |
+
.form-radio-item,
|
173 |
+
.form-checkbox-item {
|
174 |
+
padding-bottom: 0px !important;
|
175 |
+
}
|
176 |
+
.form-radio-item:last-child,
|
177 |
+
.form-checkbox-item:last-child {
|
178 |
+
padding-bottom: 0;
|
179 |
+
}
|
180 |
+
/* omer */
|
181 |
+
.form-single-column .form-checkbox-item,
|
182 |
+
.form-single-column .form-radio-item {
|
183 |
+
width: 100%;
|
184 |
+
}
|
185 |
+
.form-checkbox-item .editor-container div,
|
186 |
+
.form-radio-item .editor-container div {
|
187 |
+
position: relative;
|
188 |
+
}
|
189 |
+
.form-checkbox-item .editor-container div:before,
|
190 |
+
.form-radio-item .editor-container div:before {
|
191 |
+
display: inline-block;
|
192 |
+
vertical-align: middle;
|
193 |
+
-moz-box-sizing: border-box;
|
194 |
+
-webkit-box-sizing: border-box;
|
195 |
+
box-sizing: border-box;
|
196 |
+
left: 0;
|
197 |
+
width: 18px;
|
198 |
+
height: 18px;
|
199 |
+
}
|
200 |
+
.supernova {
|
201 |
+
height: 100%;
|
202 |
+
background-repeat: no-repeat;
|
203 |
+
background-attachment: scroll;
|
204 |
+
background-position: center top;
|
205 |
+
background-repeat: repeat;
|
206 |
+
}
|
207 |
+
.supernova {
|
208 |
+
background-image: none;
|
209 |
+
}
|
210 |
+
#stage {
|
211 |
+
background-image: none;
|
212 |
+
}
|
213 |
+
/* | */
|
214 |
+
.form-all {
|
215 |
+
background-repeat: no-repeat;
|
216 |
+
background-attachment: scroll;
|
217 |
+
background-position: center top;
|
218 |
+
background-repeat: repeat;
|
219 |
+
}
|
220 |
+
.form-header-group {
|
221 |
+
background-repeat: no-repeat;
|
222 |
+
background-attachment: scroll;
|
223 |
+
background-position: center top;
|
224 |
+
}
|
225 |
+
.form-line {
|
226 |
+
margin-top: 12px;
|
227 |
+
margin-bottom: 12px;
|
228 |
+
}
|
229 |
+
.form-line {
|
230 |
+
padding: 12px 36px;
|
231 |
+
}
|
232 |
+
.form-all .form-textbox,
|
233 |
+
.form-all .form-radio-other-input,
|
234 |
+
.form-all .form-checkbox-other-input,
|
235 |
+
.form-all .form-captcha input,
|
236 |
+
.form-all .form-spinner input,
|
237 |
+
.form-all .form-pagebreak-back,
|
238 |
+
.form-all .form-pagebreak-next,
|
239 |
+
.form-all .qq-upload-button,
|
240 |
+
.form-all .form-error-message {
|
241 |
+
-webkit-border-radius: 6px;
|
242 |
+
-moz-border-radius: 6px;
|
243 |
+
border-radius: 6px;
|
244 |
+
}
|
245 |
+
.form-all .form-sub-label {
|
246 |
+
margin-left: 3px;
|
247 |
+
}
|
248 |
+
.form-all .form-textarea {
|
249 |
+
-webkit-border-radius: 6px;
|
250 |
+
-moz-border-radius: 6px;
|
251 |
+
border-radius: 6px;
|
252 |
+
}
|
253 |
+
.form-all .qq-upload-button,
|
254 |
+
.form-all .form-submit-button,
|
255 |
+
.form-all .form-submit-reset,
|
256 |
+
.form-all .form-submit-print {
|
257 |
+
width: 80px;
|
258 |
+
font-size: 1em;
|
259 |
+
padding: 9px 15px;
|
260 |
+
font-family: "Lucida Grande", sans-serif;
|
261 |
+
font-size: 14px;
|
262 |
+
font-weight: normal;
|
263 |
+
}
|
264 |
+
.form-all .form-pagebreak-back,
|
265 |
+
.form-all .form-pagebreak-next {
|
266 |
+
font-size: 1em;
|
267 |
+
padding: 9px 15px;
|
268 |
+
font-family: "Lucida Grande", sans-serif;
|
269 |
+
font-size: 14px;
|
270 |
+
font-weight: normal;
|
271 |
+
}
|
272 |
+
/*
|
273 |
+
& when ( @buttonFontType = google ) {
|
274 |
+
@import (css) "@{buttonFontLink}";
|
275 |
+
}
|
276 |
+
*/
|
277 |
+
h2.form-header {
|
278 |
+
line-height: 1.618em;
|
279 |
+
font-size: 1.714em;
|
280 |
+
}
|
281 |
+
h2 ~ .form-subHeader {
|
282 |
+
line-height: 1.5em;
|
283 |
+
font-size: 1.071em;
|
284 |
+
}
|
285 |
+
.form-header-group {
|
286 |
+
text-align: left;
|
287 |
+
}
|
288 |
+
/*.form-dropdown,
|
289 |
+
.form-radio-item,
|
290 |
+
.form-checkbox-item,
|
291 |
+
.form-radio-other-input,
|
292 |
+
.form-checkbox-other-input,*/
|
293 |
+
.form-captcha input,
|
294 |
+
.form-spinner input,
|
295 |
+
.form-error-message {
|
296 |
+
padding: 4px 3px 2px 3px;
|
297 |
+
}
|
298 |
+
.form-header-group {
|
299 |
+
font-family: "Lucida Grande", sans-serif;
|
300 |
+
}
|
301 |
+
.form-section {
|
302 |
+
padding: 0px 0px 0px 0px;
|
303 |
+
}
|
304 |
+
.form-header-group {
|
305 |
+
margin: 12px 36px 12px 36px;
|
306 |
+
}
|
307 |
+
.form-header-group {
|
308 |
+
padding: 24px 0px 24px 0px;
|
309 |
+
}
|
310 |
+
.form-textbox,
|
311 |
+
.form-textarea {
|
312 |
+
padding: 4px 3px 2px 3px;
|
313 |
+
}
|
314 |
+
.form-textbox,
|
315 |
+
.form-textarea,
|
316 |
+
.form-radio-other-input,
|
317 |
+
.form-checkbox-other-input,
|
318 |
+
.form-captcha input,
|
319 |
+
.form-spinner input {
|
320 |
+
background-color: #ffffff;
|
321 |
+
}
|
322 |
+
.form-textbox {
|
323 |
+
height: 30px;
|
324 |
+
}
|
325 |
+
.form-textarea {
|
326 |
+
height: 100px;
|
327 |
+
}
|
328 |
+
.form-textbox,
|
329 |
+
.form-textarea {
|
330 |
+
width: 100%;
|
331 |
+
max-width: 400px;
|
332 |
+
-moz-box-sizing: border-box;
|
333 |
+
-webkit-box-sizing: border-box;
|
334 |
+
box-sizing: border-box;
|
335 |
+
}
|
336 |
+
[data-type="control_textbox"] .form-input,
|
337 |
+
[data-type="control_textarea"] .form-input,
|
338 |
+
[data-type="control_fullname"] .form-input,
|
339 |
+
[data-type="control_phone"] .form-input,
|
340 |
+
[data-type="control_datetime"] .form-input,
|
341 |
+
[data-type="control_address"] .form-input,
|
342 |
+
[data-type="control_email"] .form-input,
|
343 |
+
[data-type="control_passwordbox"] .form-input,
|
344 |
+
[data-type="control_autocomp"] .form-input,
|
345 |
+
[data-type="control_textbox"] .form-input-wide,
|
346 |
+
[data-type="control_textarea"] .form-input-wide,
|
347 |
+
[data-type="control_fullname"] .form-input-wide,
|
348 |
+
[data-type="control_phone"] .form-input-wide,
|
349 |
+
[data-type="control_datetime"] .form-input-wide,
|
350 |
+
[data-type="control_address"] .form-input-wide,
|
351 |
+
[data-type="control_email"] .form-input-wide,
|
352 |
+
[data-type="control_passwordbox"] .form-input-wide,
|
353 |
+
[data-type="control_autocomp"] .form-input-wide {
|
354 |
+
width: 100%;
|
355 |
+
max-width: 400px;
|
356 |
+
}
|
357 |
+
[data-type="control_fullname"] .form-sub-label-container {
|
358 |
+
-moz-box-sizing: border-box;
|
359 |
+
-webkit-box-sizing: border-box;
|
360 |
+
box-sizing: border-box;
|
361 |
+
width: 48%;
|
362 |
+
margin-right: 0;
|
363 |
+
float: left;
|
364 |
+
}
|
365 |
+
[data-type="control_fullname"] .form-sub-label-container:first-child {
|
366 |
+
margin-right: 4%;
|
367 |
+
}
|
368 |
+
[data-type="control_phone"] .form-sub-label-container {
|
369 |
+
width: 62.5%;
|
370 |
+
margin-left: 2.5%;
|
371 |
+
margin-right: 0;
|
372 |
+
float: left;
|
373 |
+
position: relative;
|
374 |
+
}
|
375 |
+
[data-type="control_phone"] .form-sub-label-container:first-child {
|
376 |
+
width: 32.5%;
|
377 |
+
margin-right: 2.5%;
|
378 |
+
margin-left: 0;
|
379 |
+
}
|
380 |
+
[data-type="control_phone"] .form-sub-label-container:first-child [data-component=areaCode] {
|
381 |
+
width: 93%;
|
382 |
+
float: left;
|
383 |
+
}
|
384 |
+
[data-type="control_phone"] .form-sub-label-container:first-child [data-component=areaCode] ~ .form-sub-label {
|
385 |
+
display: inline-block;
|
386 |
+
}
|
387 |
+
[data-type="control_phone"] .form-sub-label-container:first-child .phone-separate {
|
388 |
+
position: absolute;
|
389 |
+
top: 0;
|
390 |
+
right: -16%;
|
391 |
+
width: 24%;
|
392 |
+
text-align: center;
|
393 |
+
text-indent: -4px;
|
394 |
+
}
|
395 |
+
[data-type="control_phone"] .form-sub-label-container .date-separate {
|
396 |
+
visibility: hidden;
|
397 |
+
}
|
398 |
+
.form-matrix-table {
|
399 |
+
width: 100%;
|
400 |
+
max-width: 400px;
|
401 |
+
}
|
402 |
+
.form-address-table {
|
403 |
+
width: 100%;
|
404 |
+
max-width: 400px;
|
405 |
+
}
|
406 |
+
.form-address-table td .form-dropdown {
|
407 |
+
width: 100%;
|
408 |
+
}
|
409 |
+
.form-address-table td .form-sub-label-container {
|
410 |
+
width: 96%;
|
411 |
+
}
|
412 |
+
.form-address-table td:last-child .form-sub-label-container {
|
413 |
+
margin-left: 4%;
|
414 |
+
}
|
415 |
+
.form-address-table td[colspan="2"] .form-sub-label-container {
|
416 |
+
width: 100%;
|
417 |
+
margin: 0;
|
418 |
+
}
|
419 |
+
[data-type="control_dropdown"] .form-input,
|
420 |
+
[data-type="control_dropdown"] .form-input-wide {
|
421 |
+
width: 150px;
|
422 |
+
}
|
423 |
+
.form-buttons-wrapper {
|
424 |
+
margin-left: 0 !important;
|
425 |
+
text-align: left;
|
426 |
+
}
|
427 |
+
.form-label {
|
428 |
+
font-family: "Lucida Grande", sans-serif;
|
429 |
+
}
|
430 |
+
li[data-type="control_image"] div {
|
431 |
+
text-align: left;
|
432 |
+
}
|
433 |
+
li[data-type="control_image"] img {
|
434 |
+
border: none;
|
435 |
+
border-width: 0px !important;
|
436 |
+
border-style: solid !important;
|
437 |
+
border-color: false !important;
|
438 |
+
}
|
439 |
+
.form-line-column {
|
440 |
+
width: auto;
|
441 |
+
}
|
442 |
+
.form-line-error {
|
443 |
+
overflow: hidden;
|
444 |
+
-webkit-transition-property: none;
|
445 |
+
-moz-transition-property: none;
|
446 |
+
-ms-transition-property: none;
|
447 |
+
-o-transition-property: none;
|
448 |
+
transition-property: none;
|
449 |
+
-webkit-transition-duration: 0.3s;
|
450 |
+
-moz-transition-duration: 0.3s;
|
451 |
+
-ms-transition-duration: 0.3s;
|
452 |
+
-o-transition-duration: 0.3s;
|
453 |
+
transition-duration: 0.3s;
|
454 |
+
-webkit-transition-timing-function: ease;
|
455 |
+
-moz-transition-timing-function: ease;
|
456 |
+
-ms-transition-timing-function: ease;
|
457 |
+
-o-transition-timing-function: ease;
|
458 |
+
transition-timing-function: ease;
|
459 |
+
background-color: #fff4f4;
|
460 |
+
}
|
461 |
+
.form-line-error .form-error-message {
|
462 |
+
background-color: #ff3200;
|
463 |
+
clear: both;
|
464 |
+
float: none;
|
465 |
+
}
|
466 |
+
.form-line-error .form-error-message .form-error-arrow {
|
467 |
+
border-bottom-color: #ff3200;
|
468 |
+
}
|
469 |
+
.form-line-error input:not(#coupon-input),
|
470 |
+
.form-line-error textarea,
|
471 |
+
.form-line-error .form-validation-error {
|
472 |
+
border: 1px solid #ff3200;
|
473 |
+
-webkit-box-shadow: 0 0 3px #ff3200;
|
474 |
+
-moz-box-shadow: 0 0 3px #ff3200;
|
475 |
+
box-shadow: 0 0 3px #ff3200;
|
476 |
+
}
|
477 |
+
.form-all {
|
478 |
+
position: relative;
|
479 |
+
}
|
480 |
+
.form-all:before {
|
481 |
+
content: "";
|
482 |
+
background-image: url("https://www.jotform.com/uploads/webriti/form_files/logo-1.5d0c7f0e4f2840.99535272.png");
|
483 |
+
display: inline-block;
|
484 |
+
height: 49px;
|
485 |
+
position: absolute;
|
486 |
+
background-size: 191px 49px;
|
487 |
+
background-repeat: no-repeat;
|
488 |
+
width: 100%;
|
489 |
+
}
|
490 |
+
.form-all {
|
491 |
+
margin-top: 59px !important;
|
492 |
+
}
|
493 |
+
.form-all:before {
|
494 |
+
top: -59px;
|
495 |
+
background-position: top center;
|
496 |
+
}
|
497 |
+
.ie-8 .form-all {
|
498 |
+
margin-top: auto;
|
499 |
+
margin-top: initial;
|
500 |
+
}
|
501 |
+
.ie-8 .form-all:before {
|
502 |
+
display: none;
|
503 |
+
}
|
504 |
+
[data-type="control_clear"] {
|
505 |
+
display: none;
|
506 |
+
}
|
507 |
+
/* | */
|
508 |
+
@media screen and (max-width: 480px), screen and (max-device-width: 767px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) {
|
509 |
+
.testOne {
|
510 |
+
letter-spacing: 0;
|
511 |
+
}
|
512 |
+
.form-all {
|
513 |
+
border: 0;
|
514 |
+
max-width: initial;
|
515 |
+
}
|
516 |
+
.form-sub-label-container {
|
517 |
+
width: 100%;
|
518 |
+
margin: 0;
|
519 |
+
margin-right: 0;
|
520 |
+
float: left;
|
521 |
+
-moz-box-sizing: border-box;
|
522 |
+
-webkit-box-sizing: border-box;
|
523 |
+
box-sizing: border-box;
|
524 |
+
}
|
525 |
+
span.form-sub-label-container + span.form-sub-label-container {
|
526 |
+
margin-right: 0;
|
527 |
+
}
|
528 |
+
.form-sub-label {
|
529 |
+
white-space: normal;
|
530 |
+
}
|
531 |
+
.form-address-table td,
|
532 |
+
.form-address-table th {
|
533 |
+
padding: 0 1px 10px;
|
534 |
+
}
|
535 |
+
.form-submit-button,
|
536 |
+
.form-submit-print,
|
537 |
+
.form-submit-reset {
|
538 |
+
width: 100%;
|
539 |
+
margin-left: 0!important;
|
540 |
+
}
|
541 |
+
div[id*=at_] {
|
542 |
+
font-size: 14px;
|
543 |
+
font-weight: 700;
|
544 |
+
height: 8px;
|
545 |
+
margin-top: 6px;
|
546 |
+
}
|
547 |
+
.showAutoCalendar {
|
548 |
+
width: 20px;
|
549 |
+
}
|
550 |
+
img.form-image {
|
551 |
+
max-width: 100%;
|
552 |
+
height: auto;
|
553 |
+
}
|
554 |
+
.form-matrix-row-headers {
|
555 |
+
width: 100%;
|
556 |
+
word-break: break-all;
|
557 |
+
min-width: 40px;
|
558 |
+
}
|
559 |
+
.form-collapse-table,
|
560 |
+
.form-header-group {
|
561 |
+
margin: 0;
|
562 |
+
}
|
563 |
+
.form-collapse-table {
|
564 |
+
height: 100%;
|
565 |
+
display: inline-block;
|
566 |
+
width: 100%;
|
567 |
+
}
|
568 |
+
.form-collapse-hidden {
|
569 |
+
display: none !important;
|
570 |
+
}
|
571 |
+
.form-input {
|
572 |
+
width: 100%;
|
573 |
+
}
|
574 |
+
.form-label {
|
575 |
+
width: 100% !important;
|
576 |
+
}
|
577 |
+
.form-label-left,
|
578 |
+
.form-label-right {
|
579 |
+
display: block;
|
580 |
+
float: none;
|
581 |
+
text-align: left;
|
582 |
+
width: auto!important;
|
583 |
+
}
|
584 |
+
.form-line,
|
585 |
+
.form-line.form-line-column {
|
586 |
+
padding: 2% 5%;
|
587 |
+
-moz-box-sizing: border-box;
|
588 |
+
-webkit-box-sizing: border-box;
|
589 |
+
box-sizing: border-box;
|
590 |
+
}
|
591 |
+
input[type=text],
|
592 |
+
input[type=email],
|
593 |
+
input[type=tel],
|
594 |
+
textarea {
|
595 |
+
width: 100%;
|
596 |
+
-moz-box-sizing: border-box;
|
597 |
+
-webkit-box-sizing: border-box;
|
598 |
+
box-sizing: border-box;
|
599 |
+
max-width: initial !important;
|
600 |
+
}
|
601 |
+
.form-radio-other-input,
|
602 |
+
.form-checkbox-other-input {
|
603 |
+
max-width: 55% !important;
|
604 |
+
}
|
605 |
+
.form-dropdown,
|
606 |
+
.form-textarea,
|
607 |
+
.form-textbox {
|
608 |
+
width: 100%!important;
|
609 |
+
-moz-box-sizing: border-box;
|
610 |
+
-webkit-box-sizing: border-box;
|
611 |
+
box-sizing: border-box;
|
612 |
+
}
|
613 |
+
.form-input,
|
614 |
+
.form-input-wide,
|
615 |
+
.form-textarea,
|
616 |
+
.form-textbox,
|
617 |
+
.form-dropdown {
|
618 |
+
max-width: initial!important;
|
619 |
+
}
|
620 |
+
.form-checkbox-item:not(#foo),
|
621 |
+
.form-radio-item:not(#foo) {
|
622 |
+
width: 100%;
|
623 |
+
}
|
624 |
+
.form-address-city,
|
625 |
+
.form-address-line,
|
626 |
+
.form-address-postal,
|
627 |
+
.form-address-state,
|
628 |
+
.form-address-table,
|
629 |
+
.form-address-table .form-sub-label-container,
|
630 |
+
.form-address-table select,
|
631 |
+
.form-input {
|
632 |
+
width: 100%;
|
633 |
+
}
|
634 |
+
div.form-header-group {
|
635 |
+
padding: 24px 0px !important;
|
636 |
+
margin: 0 12px 2% !important;
|
637 |
+
margin-left: 5%!important;
|
638 |
+
margin-right: 5%!important;
|
639 |
+
-moz-box-sizing: border-box;
|
640 |
+
-webkit-box-sizing: border-box;
|
641 |
+
box-sizing: border-box;
|
642 |
+
}
|
643 |
+
div.form-header-group.hasImage img {
|
644 |
+
max-width: 100%;
|
645 |
+
}
|
646 |
+
[data-type="control_button"] {
|
647 |
+
margin-bottom: 0 !important;
|
648 |
+
}
|
649 |
+
[data-type=control_fullname] .form-sub-label-container {
|
650 |
+
width: 48%;
|
651 |
+
}
|
652 |
+
[data-type=control_fullname] .form-sub-label-container:first-child {
|
653 |
+
margin-right: 4%;
|
654 |
+
}
|
655 |
+
[data-type=control_phone] .form-sub-label-container {
|
656 |
+
width: 65%;
|
657 |
+
margin-right: 0;
|
658 |
+
margin-left: 0;
|
659 |
+
float: left;
|
660 |
+
}
|
661 |
+
[data-type=control_phone] .form-sub-label-container:first-child {
|
662 |
+
width: 31%;
|
663 |
+
margin-right: 4%;
|
664 |
+
}
|
665 |
+
[data-type=control_datetime] .allowTime-container {
|
666 |
+
width: 100%;
|
667 |
+
}
|
668 |
+
[data-type=control_datetime] .form-sub-label-container:first-child {
|
669 |
+
width: 10%!important;
|
670 |
+
margin-left: 0;
|
671 |
+
margin-right: 0;
|
672 |
+
}
|
673 |
+
[data-type=control_datetime] .form-sub-label-container + .form-sub-label-container {
|
674 |
+
width: 24%!important;
|
675 |
+
margin-left: 6%;
|
676 |
+
margin-right: 0;
|
677 |
+
}
|
678 |
+
[data-type=control_datetime] span + span + span > span:first-child {
|
679 |
+
display: block;
|
680 |
+
width: 100% !important;
|
681 |
+
}
|
682 |
+
[data-type=control_birthdate] .form-sub-label-container,
|
683 |
+
[data-type=control_time] .form-sub-label-container {
|
684 |
+
width: 27.3%!important;
|
685 |
+
margin-right: 6% !important;
|
686 |
+
}
|
687 |
+
[data-type=control_time] .form-sub-label-container:last-child {
|
688 |
+
width: 33.3%!important;
|
689 |
+
margin-right: 0 !important;
|
690 |
+
}
|
691 |
+
.form-pagebreak-back-container,
|
692 |
+
.form-pagebreak-next-container {
|
693 |
+
min-height: 1px;
|
694 |
+
width: 50% !important;
|
695 |
+
}
|
696 |
+
.form-pagebreak-back,
|
697 |
+
.form-pagebreak-next,
|
698 |
+
.form-product-item.hover-product-item {
|
699 |
+
width: 100%;
|
700 |
+
}
|
701 |
+
.form-pagebreak-back-container {
|
702 |
+
padding: 0;
|
703 |
+
text-align: right;
|
704 |
+
}
|
705 |
+
.form-pagebreak-next-container {
|
706 |
+
padding: 0;
|
707 |
+
text-align: left;
|
708 |
+
}
|
709 |
+
.form-pagebreak {
|
710 |
+
margin: 0 auto;
|
711 |
+
}
|
712 |
+
.form-buttons-wrapper {
|
713 |
+
margin: 0!important;
|
714 |
+
margin-left: 0!important;
|
715 |
+
}
|
716 |
+
.form-buttons-wrapper button {
|
717 |
+
width: 100%;
|
718 |
+
}
|
719 |
+
.form-buttons-wrapper .form-submit-print {
|
720 |
+
margin: 0 !important;
|
721 |
+
}
|
722 |
+
table {
|
723 |
+
width: 100%!important;
|
724 |
+
max-width: initial!important;
|
725 |
+
}
|
726 |
+
table td + td {
|
727 |
+
padding-left: 3%;
|
728 |
+
}
|
729 |
+
.form-checkbox-item,
|
730 |
+
.form-radio-item {
|
731 |
+
white-space: normal!important;
|
732 |
+
}
|
733 |
+
.form-checkbox-item input,
|
734 |
+
.form-radio-item input {
|
735 |
+
width: auto;
|
736 |
+
}
|
737 |
+
.form-collapse-table {
|
738 |
+
margin: 0 5%;
|
739 |
+
display: block;
|
740 |
+
zoom: 1;
|
741 |
+
width: auto;
|
742 |
+
}
|
743 |
+
.form-collapse-table:before,
|
744 |
+
.form-collapse-table:after {
|
745 |
+
display: table;
|
746 |
+
content: '';
|
747 |
+
line-height: 0;
|
748 |
+
}
|
749 |
+
.form-collapse-table:after {
|
750 |
+
clear: both;
|
751 |
+
}
|
752 |
+
.fb-like-box {
|
753 |
+
width: 98% !important;
|
754 |
+
}
|
755 |
+
.form-error-message {
|
756 |
+
clear: both;
|
757 |
+
bottom: -10px;
|
758 |
+
}
|
759 |
+
.date-separate,
|
760 |
+
.phone-separate {
|
761 |
+
display: none;
|
762 |
+
}
|
763 |
+
.custom-field-frame,
|
764 |
+
.direct-embed-widgets,
|
765 |
+
.signature-pad-wrapper {
|
766 |
+
width: 100% !important;
|
767 |
+
}
|
768 |
+
}
|
769 |
+
/* | */
|
770 |
+
|
771 |
+
/*__INSPECT_SEPERATOR__*/
|
772 |
+
#91673332832458 div.form-all {
|
773 |
+
background-color : #353839;
|
774 |
+
margin-bottom : 0px;
|
775 |
+
padding-bottom : 0px;
|
776 |
+
}
|
777 |
+
|
778 |
+
.form-radio-other-input.form-textbox {
|
779 |
+
width : 400px;
|
780 |
+
height : 60px;
|
781 |
+
}
|
782 |
+
|
783 |
+
#id_2 {
|
784 |
+
background-color : #eaeaea;
|
785 |
+
width : 50%;
|
786 |
+
margin-bottom : 0px;
|
787 |
+
}
|
788 |
+
|
789 |
+
.form-submit-button {
|
790 |
+
width : 100%;
|
791 |
+
}
|
792 |
+
|
793 |
+
#text_5 {
|
794 |
+
float : right;
|
795 |
+
}
|
796 |
+
|
797 |
+
#id_5 {
|
798 |
+
float : right;
|
799 |
+
width : 50%;
|
800 |
+
background-color : #eaeaea;
|
801 |
+
height : 84px;
|
802 |
+
margin-bottom : 0px;
|
803 |
+
}
|
804 |
+
|
805 |
+
.form-html {
|
806 |
+
vertical-align : center;
|
807 |
+
}
|
808 |
+
|
809 |
+
#id_3 {
|
810 |
+
padding-top : 0px;
|
811 |
+
}
|
812 |
+
|
813 |
+
.form-section.page-section {
|
814 |
+
|
815 |
+
}
|
816 |
+
|
817 |
+
#id_4 {
|
818 |
+
padding-bottom : 0px;
|
819 |
+
}
|
820 |
+
|
821 |
+
.form-radio-item label {
|
822 |
+
|
823 |
+
}
|
824 |
+
|
825 |
+
.form-radio-item {
|
826 |
+
line-height : 25px;
|
827 |
+
}
|
828 |
+
|
829 |
+
#input_2 {
|
830 |
+
width : 80%;
|
831 |
+
}
|
832 |
+
.form-radio, .form-checkbox
|
833 |
+
{
|
834 |
+
margin-top: 4px !important;
|
835 |
+
}
|
836 |
+
#id_2
|
837 |
+
{
|
838 |
+
float: none !important;
|
839 |
+
}
|
inc/css/innofit-formCss.css
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.form-all{list-style:none;list-style-position:outside;margin:0px;font-family:Verdana;font-size:12px}.form-line .form-radio-item:not(#foo) .form-radio-other + label , .form-line .form-checkbox-item .form-checkbox-other+label{width:auto}.form-line .form-radio-item .form-radio-other.form-textbox + label, .form-line .form-checkbox-item .form-checkbox-other.form-textbox+label{display:none !important}.form-line .form-radio-item:not(#foo) .form-radio-other-input.form-textbox:not([style*="margin-left: 26px"] ), .form-line .form-checkbox-item:not(#foo) .form-checkbox-other-input.form-textbox:not([style*="margin-left: 26px"] ){margin-left:0px}.form-line .form-radio-item .form-radio-other.form-textbox + label:not([style="display:block"]), .form-line .form-checkbox-item .form-checkbox-other.form-textbox+label:not([style="display:block"]){display:none}.form-captcha{border:1px
|
2 |
+
solid #ccc;background:#f5f5f5;padding:6px;width:152px;-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px;border-radius:4px 4px 4px 4px}.underlined{text-decoration:underline}#payment_total{display:inline-block}.form-payment-label{color:#999;display:block;font-size:9px}.form-payment-subtotal,.form-payment-shipping,.form-payment-tax{font-size:0.9em;max-width:325px;overflow:visible}.form-payment-tax.form-payment-label>span:nth-child(1){width:100%;max-width:225px !important;float:left;display:inline-block;word-wrap:break-word}.form-payment-tax.form-payment-label:after{content:"";display:table;clear:both}.form-payment-shipping.form-payment-label>span:nth-child(1){width:100%;max-width:225px !important;float:left;display:inline-block;word-wrap:break-word}.form-payment-shipping.form-payment-label:after{content:"";display:table;clear:both}.form-payment-divider{display:block;border-bottom:1px solid lightgrey;max-width:325px}.form-payment-total,.form-payment-discount{max-width:325px;display:block;overflow:visible;margin:10px
|
3 |
+
0}.complete-payment-prompt{display:block;background:#F3F7FC;padding:12px
|
4 |
+
18px;font-size:13px;border-radius:3px;color:#525764;border:1px
|
5 |
+
solid #e6edf5}.complete-payment-prompt
|
6 |
+
b{color:#1BB266}.form-payment-total{max-width:unset !important;overflow:hidden}.form-payment-total #total-text{line-height:29px}.form-payment-total .form-payment-price{float:right;padding:5px
|
7 |
+
12px 6px 12px;border-radius:3px;position:relative}.form-payment-total .form-payment-price.ready{background-color:#1BB266;color:#fff;padding:5px
|
8 |
+
26px 6px 12px}.form-payment-total .form-payment-price.ready:after{content:'';display:block;top:6px;right:5px;position:absolute;border-radius:50%;background-position:center center;background-repeat:no-repeat;background-size:10px;width:16px;height:16px;background-color:#fff;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDQ0Mi41MzMgNDQyLjUzMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDQyLjUzMyA0NDIuNTMzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+PGc+Cgk8cGF0aCBkPSJNNDM0LjUzOSw5OC40OTlsLTM4LjgyOC0zOC44MjhjLTUuMzI0LTUuMzI4LTExLjc5OS03Ljk5My0xOS40MS03Ljk5M2MtNy42MTgsMC0xNC4wOTMsMi42NjUtMTkuNDE3LDcuOTkzTDE2OS41OSwyNDcuMjQ4ICAgbC04My45MzktODQuMjI1Yy01LjMzLTUuMzMtMTEuODAxLTcuOTkyLTE5LjQxMi03Ljk5MmMtNy42MTYsMC0xNC4wODcsMi42NjItMTkuNDE3LDcuOTkyTDcuOTk0LDIwMS44NTIgICBDMi42NjQsMjA3LjE4MSwwLDIxMy42NTQsMCwyMjEuMjY5YzAsNy42MDksMi42NjQsMTQuMDg4LDcuOTk0LDE5LjQxNmwxMDMuMzUxLDEwMy4zNDlsMzguODMxLDM4LjgyOCAgIGM1LjMyNyw1LjMzMiwxMS44LDcuOTk0LDE5LjQxNCw3Ljk5NGM3LjYxMSwwLDE0LjA4NC0yLjY2OSwxOS40MTQtNy45OTRsMzguODMtMzguODI4TDQzNC41MzksMTM3LjMzICAgYzUuMzI1LTUuMzMsNy45OTQtMTEuODAyLDcuOTk0LTE5LjQxN0M0NDIuNTM3LDExMC4zMDIsNDM5Ljg2NCwxMDMuODI5LDQzNC41MzksOTguNDk5eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMUJCMjY2IiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgo8L2c+PC9nPiA8L3N2Zz4=)}.form-payment-discount{font-size:10px}.form-payment-price{float:right}.form-product-custom_quantity{width:30px;padding-left:4px}#coupon-message{font-size:10px;font-weight:normal;white-space:normal}.form-captcha:hover{border:1px
|
9 |
+
solid #aaa}.form-captcha-image{border:1px
|
10 |
+
solid #aaa;-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px;border-radius:4px 4px 4px 4px}.form-collapse-table{height:58px;border:1px
|
11 |
+
solid #ccc;background:#f5f5f5 url(/images/soft-grad.png) repeat-x;position:relative}.question-wrapper
|
12 |
+
div.payment_alert{background-size:32px;padding:16px
|
13 |
+
16px 16px 72px;background-repeat:no-repeat;background-position:left 20px top 19px;border-radius:4px;font-size:12px;margin-bottom:8px;border:0;max-width:100%;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;transition:all 1s ease-in-out}.question-wrapper
|
14 |
+
div.payment_alert.wizard{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuNCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAzNy43IDM0IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNy43IDM0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzY3ODNBMDt9Cgkuc3Qxe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxnPgoJPHBhdGggY2xhc3M9InN0MCIgZD0iTTMxLjYsMzRINi4xQzMuOCwzNCwyLDMyLjEsMiwyOS44VjQuMkMyLDEuOSwzLjgsMCw2LjEsMGgyNS40YzIuMywwLDQuMiwxLjksNC4yLDQuMnYyNS43CgkJQzM1LjcsMzIuMSwzMy45LDM0LDMxLjYsMzR6Ii8+CjwvZz4KPHBvbHlnb24gY2xhc3M9InN0MSIgcG9pbnRzPSIxMi43LDE0LjkgOS43LDE3LjkgNy45LDE1LjggNi44LDE2LjggOS42LDE5LjkgMTMuNywxNS45ICIvPgo8cG9seWdvbiBjbGFzcz0ic3QxIiBwb2ludHM9IjEyLjcsNy4yIDkuNywxMC4yIDcuOSw4LjEgNi44LDkgOS42LDEyLjIgMTMuNyw4LjIgIi8+CjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xMC45LDI2LjVIOWMtMC40LDAtMC43LTAuMy0wLjctMC43di0yQzguMiwyMy40LDguNiwyMyw5LDIzaDJjMC40LDAsMC43LDAuMywwLjcsMC43djIKCUMxMS43LDI2LjEsMTEuMywyNi41LDEwLjksMjYuNXoiLz4KPGc+Cgk8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjkuMiwxMS40aC0xMWMtMC41LDAtMC44LTAuNC0wLjgtMC44VjguOGMwLTAuNSwwLjQtMC44LDAuOC0wLjhoMTFDMjkuNiw4LDMwLDguMywzMCw4Ljh2MS44CgkJQzMwLDExLjEsMjkuNiwxMS40LDI5LjIsMTEuNHoiLz4KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yOS4yLDE4LjloLTExYy0wLjUsMC0wLjgtMC40LTAuOC0wLjh2LTEuOGMwLTAuNSwwLjQtMC44LDAuOC0wLjhoMTFjMC41LDAsMC44LDAuNCwwLjgsMC44djEuOAoJCUMzMCwxOC42LDI5LjYsMTguOSwyOS4yLDE4Ljl6Ii8+Cgk8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjkuMiwyNi41aC0xMWMtMC41LDAtMC44LTAuNC0wLjgtMC44di0xLjhjMC0wLjUsMC40LTAuOCwwLjgtMC44aDExYzAuNSwwLDAuOCwwLjQsMC44LDAuOHYxLjgKCQlDMzAsMjYuMSwyOS42LDI2LjUsMjkuMiwyNi41eiIvPgo8L2c+Cjwvc3ZnPgo=');background-color:#F3F7FC;color:#7D8CAA}.question-wrapper
|
15 |
+
div.payment_alert.low{background-image:url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNy43MSAzMy45OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM2NzgzYTA7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mbG93PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xNC41NSwyLjQ4LjY3LDI2LjUyQTUsNSwwLDAsMCw1LDM0SDMyLjczQTUsNSwwLDAsMCwzNywyNi41MmwtMTMuODgtMjRBNSw1LDAsMCwwLDE0LjU1LDIuNDhaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTcuMjYsMjZhMS41MiwxLjUyLDAsMCwxLC40Mi0xLjEsMS42MiwxLjYyLDAsMCwxLDEuMTctLjQzLDEuNTksMS41OSwwLDAsMSwxLjE3LjQzLDEuNiwxLjYsMCwwLDEsMCwyLjE2LDEuNjEsMS42MSwwLDAsMS0xLjE5LjQyLDEuNTksMS41OSwwLDAsMS0xLjE4LS40MkExLjQ2LDEuNDYsMCwwLDEsMTcuMjYsMjZaTTIwLDIyLjM4SDE3LjZsLS4yNi0xMS45MWgzWiIvPjwvc3ZnPg==);background-color:#F3F7FC;color:#7D8CAA}.question-wrapper
|
16 |
+
div.payment_alert.mid{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuNCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAzNy43IDM0IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNy43IDM0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZCQjAzQjt9Cgkuc3Qxe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNC42LDIuNWwtMTMuOSwyNGMtMS40LDIuNC0wLjUsNS41LDEuOSw2LjhDMy4zLDMzLjgsNC4xLDM0LDUsMzRoMjcuN2MyLjgsMCw1LTIuMyw0LjktNS4xCgljMC0wLjgtMC4yLTEuNy0wLjctMi40bC0xMy45LTI0Yy0xLjQtMi40LTQuNS0zLjItNi45LTEuN0MxNS42LDEuMiwxNSwxLjgsMTQuNiwyLjV6Ii8+CjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNy4zLDI2YzAtMC40LDAuMS0wLjgsMC40LTEuMWMwLjMtMC4zLDAuNy0wLjQsMS4yLTAuNGMwLjQsMCwwLjksMC4xLDEuMiwwLjRjMC42LDAuNiwwLjYsMS41LDAsMi4yCgljLTAuMywwLjMtMC44LDAuNC0xLjIsMC40Yy0wLjQsMC0wLjktMC4xLTEuMi0wLjRDMTcuNCwyNi44LDE3LjIsMjYuNCwxNy4zLDI2eiBNMjAsMjIuNGgtMi40bC0wLjMtMTEuOWgzTDIwLDIyLjR6Ii8+Cjwvc3ZnPgo=');background-color:#FCF0E5;color:#C69C6D}.question-wrapper
|
17 |
+
div.payment_alert.high{background-image:url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNy43MSAzMy45OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNlMjljOWM7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mbG93MjwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTQuNTUsMi40OC42NywyNi41MkE1LDUsMCwwLDAsNSwzNEgzMi43M0E1LDUsMCwwLDAsMzcsMjYuNTJsLTEzLjg4LTI0QTUsNSwwLDAsMCwxNC41NSwyLjQ4WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE3LjI2LDI2YTEuNTIsMS41MiwwLDAsMSwuNDItMS4xLDEuNjIsMS42MiwwLDAsMSwxLjE3LS40MywxLjU5LDEuNTksMCwwLDEsMS4xNy40MywxLjYsMS42LDAsMCwxLDAsMi4xNiwxLjYxLDEuNjEsMCwwLDEtMS4xOS40MiwxLjU5LDEuNTksMCwwLDEtMS4xOC0uNDJBMS40NiwxLjQ2LDAsMCwxLDE3LjI2LDI2Wk0yMCwyMi4zOEgxNy42bC0uMjYtMTEuOTFoM1oiLz48L3N2Zz4=);background-color:#fff0f0;color:#a06d6d}.question-wrapper div.payment_alert.high
|
18 |
+
a{color:#bb1d1d;font-weight:bold;text-decoration:underline}.question-wrapper div.payment_alert.mid
|
19 |
+
a{color:#CC821F;font-weight:bold;text-decoration:underline}.question-wrapper div.payment_alert
|
20 |
+
a{color:#1DBB72;font-weight:bold}.question-wrapper div.payment_alert
|
21 |
+
ul{margin:0;padding:0
|
22 |
+
0 4px 0;min-height:auto}.question-wrapper div.payment_alert ul
|
23 |
+
li{margin-left:16px;line-height:18px}@media screen and (max-width: 480px){.question-wrapper
|
24 |
+
div.payment_alert{padding:12px
|
25 |
+
12px 12px 46px;background-position:left 12px top 12px;background-size:20px}}.form-list{padding:3px;border:1px
|
26 |
+
solid #CCC;-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.2) inset;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.2) inset;box-shadow:0 1px 1px rgba(0, 0, 0, 0.2) inset}.form-list
|
27 |
+
option{padding:2px}.form-list option:nth-child(2n+1){background:#f5f5f5}.form-textarea{font-family:"Lucida Grande",Verdana;white-space:pre-wrap}.form-textarea-limit{}.form-textarea-limit>span{display:inline-block}.form-textarea-limit
|
28 |
+
textarea{overflow:auto}.form-textarea-limit textarea:focus{outline:none !important}.form-textarea-limit-indicator{color:#666;font-size:9px;margin-top: -1px;padding:2px;text-align:right}.form-textarea-limit-indicator-error{color:red}.nicEdit-main{background-color:white}.form-line-column .nicEdit-main{white-space:normal}.form-line-column .form-sub-label{white-space:normal}.form-datetime-validation-error{background:#FAA;color:#fff}li[data-type="control_datetime"] input.form-textbox{padding:3px
|
29 |
+
3px 4px 30px;margin:0}@media screen and (max-width: 600px){li[data-type="control_datetime"] input.form-textbox{padding:3px
|
30 |
+
3px 4px 20px}li[data-type="control_datetime"] input.form-textbox[type="tel"]{padding:3px
|
31 |
+
3px 4px 10px}}li[data-type="control_datetime"] .form-input-wide{position:relative}li.form-line-column+li[data-type="control_head"]{display:inline-block;width:100%}li[data-type="control_datetime"] .form-input-wide .form-sub-label-container:nth-child(2) img{vertical-align:unset !important;display:block;position:absolute;left:5px;top:4px;margin:0
|
32 |
+
!important}.form-collapse-mid{text-shadow:0px 2px 0px #fff;float:left;font-size:18px;margin:16px
|
33 |
+
45px 16px 20px}.form-product-item{display:inline-block;padding:5px
|
34 |
+
5px 5px 10px;position:relative;overflow:hidden;overflow-y:auto}.form-product-item
|
35 |
+
img{display:block;position:static;margin:0
|
36 |
+
12px 0 0;float:left;-moz-border-radius:3px 3px;-webkit-border-radius:3px 3px;border-radius:3px 3px}.form-product-custom_price{text-align:right;width:70px;border:1px
|
37 |
+
solid gray;margin:0
|
38 |
+
2px;padding:2px
|
39 |
+
4px}.hover-product-item:hover{background:#f5f5f5;color:#000}.form-product-item label, .form-product-item .form-radio, .form-product-item .form-checkbox{cursor:pointer}.form-special-subtotal{display:block;font-size:10px;margin:5px
|
40 |
+
0 12px 8px;height:12px;float:left}.form-product-image,.form-product-image-with-options{margin:5px;margin-left:10px}.form-product-image-with-options{position:absolute;top:15px;-moz-border-radius:5px 5px;-webkit-border-radius:5px 5px;border-radius:5px 5px}.form-radio,.form-checkbox{vertical-align:middle;margin-right:10px;padding:0px}.form-radio-item,.form-checkbox-item{margin-top:5px;float:left;display:inline-flex;display: -webkit-inline-flex;display: -ms-inline-flexbox}.form-single-column .form-radio-item ,.form-single-column .form-checkbox-item{display:flex;align-items:flex-start}.form-multiple-column .form-radio-item, .form-multiple-column .form-checkbox-item{display:inline-flex;display: -webkit-inline-flex;display: -ms-inline-flexbox}.form-multiple-column[data-columncount="2"] .form-radio-item,
|
41 |
+
.form-multiple-column[data-columncount="2"] .form-checkbox-item{width:50%}.form-multiple-column[data-columncount="3"] .form-radio-item,
|
42 |
+
.form-multiple-column[data-columncount="3"] .form-checkbox-item{width:33%}.form-multiple-column[data-columncount="4"] .form-radio-item,
|
43 |
+
.form-multiple-column[data-columncount="4"] .form-checkbox-item{width:25%}.form-multiple-column[data-columncount="5"] .form-radio-item,
|
44 |
+
.form-multiple-column[data-columncount="5"] .form-checkbox-item{width:20%}.form-radio-item br, .form-checkbox-item
|
45 |
+
br{clear:left}.form-submit-button,.form-submit-reset,.form-submit-print,.form-screen-button{margin:0px;overflow:visible;padding:1px
|
46 |
+
6px;width:auto}.form-submit-button::-moz-focus-inner,.form-submit-reset::-moz-focus-inner{border:0px;padding:1px
|
47 |
+
6px}.form-submit-button.conditionallyDisabled{opacity:0.4;cursor:default;pointer-events:none}.form-button-red{border:1px
|
48 |
+
solid red}.form-button-magenta{border:1px
|
49 |
+
solid magenta}.form-screen-message{width:260px;height:100px}.form-screen-button
|
50 |
+
div{background-image:url("/images/photo.png");background-position:center;background-repeat:no-repeat;height:50px;width:50px}.form-screen-button{position:absolute;top:1px;margin:0px;margin-left:10px;padding:0px;background:#fdc000;background: -moz-linear-gradient(top, #fdc000 0%, #fe8900 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdc000), color-stop(100%,#fe8900));background: -webkit-linear-gradient(top, #fdc000 0%,#fe8900 100%);background: -o-linear-gradient(top, #fdc000 0%,#fe8900 100%);background: -ms-linear-gradient(top, #fdc000 0%,#fe8900 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdc000', endColorstr='#fe8900',GradientType=0 );background:linear-gradient(top, #fdc000 0%,#fe8900 100%);-moz-box-shadow:0 1px 0 rgba(255, 255, 255, .6), 0 1px 0 rgba(255,255,255,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, .6), 0 1px 0 rgba(255,255,255,.6) inset;box-shadow:0 1px 0 rgba(255, 255, 255, .6), 0 1px 0 rgba(255,255,255,.6) inset;border:1px
|
51 |
+
solid #ae5d00;border-radius:5px}.form-screen-button:hover{background:#fcc932;background: -moz-linear-gradient(top, #fcc932 0%, #fc9e32 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcc932), color-stop(100%,#fc9e32));background: -webkit-linear-gradient(top, #fcc932 0%,#fc9e32 100%);background: -o-linear-gradient(top, #fcc932 0%,#fc9e32 100%);background: -ms-linear-gradient(top, #fcc932 0%,#fc9e32 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcc932', endColorstr='#fc9e32',GradientType=0 );background:linear-gradient(top, #fcc932 0%,#fc9e32 100%);border:1px
|
52 |
+
solid #ae5d00}.form-screen-button:active{background:#fe8900;background: -moz-linear-gradient(top, #fe8900 0%, #fdc000 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fe8900), color-stop(100%,#fdc000));background: -webkit-linear-gradient(top, #fe8900 0%,#fdc000 100%);background: -o-linear-gradient(top, #fe8900 0%,#fdc000 100%);background: -ms-linear-gradient(top, #fe8900 0%,#fdc000 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe8900', endColorstr='#fdc000',GradientType=0 );background:linear-gradient(top, #fe8900 0%,#fdc000 100%);border:1px
|
53 |
+
solid #C56600;-moz-box-shadow:0 1px 0 rgba(255, 255, 255, .6), 0 -1px 0 rgba(255,255,255,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, .6), 0 -1px 0 rgba(255,255,255,.6) inset;box-shadow:0 1px 0 rgba(255, 255, 255, .6), 0 -1px 0 rgba(255,255,255,.6) inset}.form-screenshot-plate{background:url("/images/noises/defaultdesktop.png") repeat scroll 0 0 transparent;border:2px
|
54 |
+
solid #545454;border-radius:3px 3px 3px 3px;box-shadow:0 0 5px rgba(0, 0, 0, 0.7) inset;margin:10px
|
55 |
+
0;text-align:center}.form-screenshot-img{box-shadow:0 0 5px rgba(0, 0, 0, 0.7);margin:14px
|
56 |
+
0;display:inline-block}.form-screenshot-img
|
57 |
+
img{}.form-submit-print::-moz-focus-inner{padding:0px
|
58 |
+
6px}.form-submit-print{padding:1px
|
59 |
+
6px}.form-submit-print
|
60 |
+
img{margin-left: -14px;margin-right:3px;margin-top: -3px}.form-submit-print{margin-bottom: -4px;margin-top: -6px;margin-left: -6px;margin-right:5px}.form-submit-button-img{border:none !important;margin:0
|
61 |
+
!important;padding:0
|
62 |
+
!important;background:none !important;cursor:pointer !important;max-width:100%}.icon-encrypt~.form-submit-reset{margin-left:32px}.form-collapse-right{position:absolute;right:0px;height:58px;width:40px}.form-collapse-right-show{background:url(/images/arrow-open.png) no-repeat center}.form-collapse-right-hide{background:url(/images/arrow-closed.png) no-repeat center}.form-collapse-hidden{display:none}.form-grading-item{margin-bottom:3px}.form-header{margin:0px}.form-footer{margin:0px;text-align:center;font-size:9px;color:#999;font-weight:300}.form-subHeader{border-top:1px solid #ccc;font-style:italic}.form-header-group{background:#f5f5f5;border-bottom:1px solid #ccc;padding:12px;clear:both}.form-header-group.hasImage>.header-logo{display:table-cell}.form-header-group.hasImage>.header-text{display:table-cell;width:100%}.httal{text-align:left}.httac{text-align:center}.httar{text-align:right}.htvat{vertical-align:top}.htvam{vertical-align:middle}.htvab{vertical-align:bottom}.header-logo-left{margin-right:1em}.header-logo-right{margin-left:1em}.form-footer-group{padding:12px;clear:both}.form-line .form-label.form-label-auto.label-top{width:auto}.form-label-top{margin-bottom:6px;display:block;white-space:normal}.form-label-left{float:left;display:inline-block;text-align:left;padding:3px;white-space:normal}.form-label-right{float:left;display:inline-block;text-align:right;margin-bottom:6px;padding:3px;white-space:normal}.form-label-right+.form-input,.form-label-left+.form-input{display:inline-block}.form-section,.form-section-closed{list-style:none;list-style-position:outside;margin:0px;padding:0px;position:relative;zoom:1;clear:both}.form-section-closed{overflow:hidden;height:60px}.time-dropdown{box-shadow:0 1px 2px #eee inset;border:1px
|
63 |
+
solid #ccc;background-color:#fff}.form-line{clear:both;padding:10px;margin:0px;display:block;width:97%;width:-moz-available;position:relative}.form-line[data-type="control_button"][paypal-button-status="hide"] .form-submit-button{display:inherit}.form-line[data-type="control_button"][paypal-button-status="hide"] .paypal-buttons{display:none!important}.form-line[data-type="control_button"][paypal-button-status="show"] .form-submit-button{display:none!important}.form-line[data-type="control_button"][paypal-button-status="show"] .paypal-buttons{display:block!important}li[data-type="control_checkbox"],[data-type="control_radio"]{display:inline-block}.form-line-column{float:left;clear:none;width:auto}.form-line.form-line-column{display:inline-block}.form-line-column-clear{clear:left;width:auto}.form-line-active{background-color:#FFFFE0;color:#333}.form-matrix-table{border-collapse:collapse;font-size:10px;margin-bottom:5px}.form-matrix-column-headers{border:1px
|
64 |
+
solid #ccc;background:#ddd;color:inherit;text-align:center}.form-matrix-row-headers{border:1px
|
65 |
+
solid #ccc;background:#ddd}.form-matrix-values{border:1px
|
66 |
+
solid #ccc;background:#f5f5f5}.form-pagebreak{border-top:1px solid #ccc;background:#f5f5f5;height:60px;clear:left}.form-pagebreak-back-container,.form-pagebreak-next-container{float:left;padding:10px;padding-top:14px}.form-pagebreak-next-container{padding-left:0px}.form-pagebreak-back,.form-pagebreak-next{-webkit-border-radius:5px 5px;-webkit-box-shadow:0px 1px 2px #aaa;-moz-border-radius:5px 5px;-moz-box-shadow:0px 1px 2px #aaa;border-radius:5px 5px;box-shadow:0px 1px 2px #aaa;border:1px
|
67 |
+
solid #999;background:#ddd;padding:5px;margin:0px;font-size:14px}.form-pagebreak-next{margin:0
|
68 |
+
0 0 20px}div.form-pagebreak .form-pagebreak-back-container button.button-hidden , div.form-pagebreak .form-pagebreak-next-container button.button-hidden{display:none}.form-required{margin-left:5px;color:red}.form-scale-table{font-size:12px}.form-scale-table
|
69 |
+
th{border-bottom:1px solid #ccc;color:#999}.form-product-details{font-size:0.8em;color:inherit;font-style:normal}.form-product-options-text,.form-product-child-label{font-weight:normal;word-wrap:break-word}.form-product-child-table{margin-top:4px}.form-product-child-table td, .form-product-child-table
|
70 |
+
th{padding:2px
|
71 |
+
6px}.form-product-child-price{font-size:0.786em;font-weight:bold;font-style:italic;color:#999;min-width:80px ! important}.form-address-table{width:330px}.form-address-line{width:310px}.form-address-city,.form-address-state{width:144px}.form-address-table td, .form-address-table
|
72 |
+
th{padding-bottom:10px}.form-address-table
|
73 |
+
select{width:155px}.form-button-error{color:#FF4E5D;display:inline;text-align:center}.form-pagebreak>.form-button-error{padding:14px
|
74 |
+
10px 10px;display:block}.form-line-error{background:#FAA;color:#333}li.form-line-error input:not(#coupon-input),
|
75 |
+
li.form-line-error select,
|
76 |
+
li.form-line-error textarea,
|
77 |
+
li.form-line-error .form-validation-error{border:1px
|
78 |
+
solid #FF4E5D;box-shadow:none}.form-validation-error.form-input{border:none}.form-line-active .form-error-message{display:none}.form-error-message{z-index:900;position:absolute;max-width:130px;right:0px;top:0px;color:#333;padding:3px;font-size:10px;border:4px
|
79 |
+
solid #d88;box-shadow:0px 2px 4px rgba(102, 102, 102, 0.5);border-radius:6px 6px;background:#FCC}.form-error-arrow{position:absolute;top:-16px;left:10px;height:0px;width:0px;border:8px
|
80 |
+
solid transparent;border-bottom-color:#666;border-bottom:8px solid rgba(102,102,102,0.3)}.form-error-arrow-inner{position:absolute;top:1px;height:0px;width:0px;border:10px
|
81 |
+
solid transparent;border-bottom-color:#FCC;border-bottom-width:11px;left:-10px;top:-10px}.form-input .form-error-message, .form-input-wide .form-error-message{bottom:-5px;font-size:11px;position:relative;z-index:900;right:auto;top:auto;color:#333;padding:3px;max-width:100%;padding-bottom:3px;font-size:12px;border:none;box-shadow:0px 2px 4px rgba(102, 102, 102, 0.5);border-radius:6px 6px;background:#FCC}.form-description{z-index:1000;position:absolute;right:7px;max-width:150px;top:6px;border:4px
|
82 |
+
solid #ccc;border-radius:6px 6px;box-shadow:0px 2px 4px #666;background:#f5f5f5;white-space:normal}.form-description-content{padding:10px;font-size:10px;color:#333}.form-description-arrow{border-color:transparent #CCC transparent transparent;border-style:solid;border-width:10px;height:0;width:0;left:-24px;top:7px;position:absolute}.form-description-arrow-small{border-color:transparent #F5F5F5 transparent transparent;border-style:solid;border-width:7px;height:0;width:0;left:-14px;top:10px;position:absolute}.right{right:33px !important;float:none !important}.form-line:hover .form-description-indicator, .form-line-active .form-description-indicator{display:block}.form-description-indicator{display:none;height:100%;position:absolute;right:0;top:0;width:25px;background:url(/images/s-info.png) no-repeat center}.right .form-description-arrow{border-color:transparent transparent transparent #CCC;left:auto;right:-24px}.right .form-description-arrow-small{border-color:transparent transparent transparent #F5F5F5;left:auto;right:-14px}.form-autocomplete-list{font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;font-size:12px;background:#333;background:rgba(26,58,81,0.8);border:1px
|
83 |
+
solid #eee;border-top:none;padding:5px
|
84 |
+
0;-moz-border-radius-bottomright:10px 10px;-moz-border-radius-bottomleft:10px 10px;-moz-box-shadow:0px 5px 10px rgba(0,0,0,0.6);-webkit-border-bottom-right-radius:10px 10px;-webkit-border-bottom-left-radius:10px 10px;-webkit-box-shadow:0px 5px 10px rgba(0,0,0,0.6);border-radius-bottom-right:10px 10px;border-radius-bottom-left:10px 10px;box-shadow:0px 5px 10px rgba(0,0,0,0.6)}.form-autocomplete-list-item{margin:0
|
85 |
+
5px;border:1px
|
86 |
+
solid transparent;color:#fff;padding:3px;-moz-border-radius:5px 5px;-webkit-border-radius:5px;border-radius:5px 5px;text-shadow:1px 1px 3px #000;cursor:pointer}.form-autocomplete-list-item-selected,.form-autocomplete-list-item:hover{box-shadow:0 0 4px #333;border:1px
|
87 |
+
solid #1a3a51;background:#4295D1}.form-autocomplete-list-item:hover{border:1px
|
88 |
+
solid #ccc}.form-sub-label-container{display:inline-block;margin-right:5px}.form-sub-label{color:#999;display:block;font-size:9px;margin-bottom:3px;word-wrap:break-word}.form-html{padding:3px;white-space:normal}[data-type="control_text"] .form-html
|
89 |
+
img{max-width:100%;height:auto}.form-radio-other-input,.form-checkbox-other-input{width:100px}.form-radio-item label , .form-checkbox-item
|
90 |
+
label{width:100%}.form-spinner-input-td{white-space:normal}.form-spinner-input-td input[type="number"]::-webkit-inner-spin-button,
|
91 |
+
.form-spinner-input-td input[type="number"]::-webkit-outer-spin-button{display:none}.edit-hover{display:none}.form-custom-hint{color:#aaa !important;overflow:hidden !important}.filePicker-button{border-style:solid;border-width:1px;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);cursor:pointer;display:inline-block;vertical-align:middle;padding:9px
|
92 |
+
24px;margin-bottom:0;font-size:13px;line-height:18px;text-align:center;color:#FFF;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background:#0074CC;background: -moz-linear-gradient(top, #08c 0%, #05c 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0088cc), color-stop(100%,#0055cc));background: -webkit-linear-gradient(top, #08c 0%,#05c 100%);background: -o-linear-gradient(top, #08c 0%,#05c 100%);background: -ms-linear-gradient(top, #08c 0%,#05c 100%);background:linear-gradient(to bottom, #08c 0%,#05c 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0088cc', endColorstr='#0055cc',GradientType=0 );-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-box-shadow:0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0,0,0,0.05)}.filePicker-button:hover{background:#00a0f0;background: -moz-linear-gradient(top, #00a0f0 0%, #0064f0 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00a0f0), color-stop(100%,#0064f0));background: -webkit-linear-gradient(top, #00a0f0 0%,#0064f0 100%);background: -o-linear-gradient(top, #00a0f0 0%,#0064f0 100%);background: -ms-linear-gradient(top, #00a0f0 0%,#0064f0 100%);background:linear-gradient(to bottom, #00a0f0 0%,#0064f0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a0f0', endColorstr='#0064f0',GradientType=0 )}.filePicker-button:active{background:#0064f0;background: -moz-linear-gradient(top, #0064f0 0%, #00a0f0 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0064f0), color-stop(100%,#00a0f0));background: -webkit-linear-gradient(top, #0064f0 0%,#00a0f0 100%);background: -o-linear-gradient(top, #0064f0 0%,#00a0f0 100%);background: -ms-linear-gradient(top, #0064f0 0%,#00a0f0 100%);background:linear-gradient(to bottom, #0064f0 0%,#00a0f0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0064f0', endColorstr='#00a0f0',GradientType=0 )}.qq-uploader{position:relative;width:224px}.qq-upload-button{background:#ffa84c;background: -moz-linear-gradient(top, #FBCB5D 0%, #EFA003 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBCB5D), color-stop(100%,#EFA003));filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBCB5D', endColorstr='#EFA003',GradientType=0 );color:#FFF;display:block;font-size:16px;padding:8px
|
93 |
+
0;text-align:center;text-shadow:0 -1px #C64F00;border:1px
|
94 |
+
solid #C64F00;-moz-border-radius:5px 5px;-webkit-border-radius:5px 5px;border-radius:5px 5px}.qq-upload-button-hover{background:#ff7b0d;background: -moz-linear-gradient(top, #ff7b0d 0%, #ffa84c 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b0d), color-stop(100%,#ffa84c));filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b0d', endColorstr='#ffa84c',GradientType=0 )}.qq-upload-button-focus{outline:1px
|
95 |
+
dotted black}.qq-upload-delete{display:none;top:0px;position:absolute;background:#f85032;background: -moz-linear-gradient(top, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f85032), color-stop(50%,#f16f5c), color-stop(51%,#f6290c), color-stop(71%,#f02f17), color-stop(100%,#e73827));filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#e73827',GradientType=0 );width:20px;height:100%;right:0px;color:#fff;line-height:20px;text-align:center;text-shadow:0 -1px 0px #000;-moz-border-radius:0px 5px 5px 0px;-webkit-border-radius:0px 5px 5px 0px;border-radius:0px 5px 5px 0px;border-left:1px solid #aaa;cursor:pointer;box-sizing:border-box}.qq-upload-delete:hover{background:#ffb76b;background: -moz-linear-gradient(top, #ffb76b 0%, #ffa73d 50%, #ff7c00 51%, #ff7f04 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffb76b), color-stop(50%,#ffa73d), color-stop(51%,#ff7c00), color-stop(100%,#ff7f04));filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb76b', endColorstr='#ff7f04',GradientType=0 )}.qq-upload-list li:hover{border:1px
|
96 |
+
solid #aaa}.qq-upload-success:hover .qq-upload-delete{display:block}.qq-upload-fail:hover .qq-upload-delete{display:block}.qq-upload-drop-area{position:absolute;top:0;left:0;width:100%;height:100%;min-height:54px;z-index:2;background:#F5F5F5;background:rgba(240, 240, 240, 0.9);text-align:center;color:#B1B1B1;border:2px
|
97 |
+
dashed #c5c5c5;-moz-border-radius:5px 5px;-webkit-border-radius:5px 5px;border-radius:5px 5px}.qq-upload-drop-area
|
98 |
+
span{display:block;position:absolute;top:50%;width:100%;margin-top:-10px;font-size:16px}.qq-upload-drop-area-active{background:lightyellow;background:rgba(222,255,210,0.9)}.qq-upload-list{margin:10px
|
99 |
+
0;padding:0;list-style:none}.qq-upload-list
|
100 |
+
li{position:relative;font-size:11px;margin:8px
|
101 |
+
0;color:#5E5B5B;padding:2px
|
102 |
+
4px;background:#EEE;-moz-border-radius:5px 5px;-webkit-border-radius:5px 5px;border-radius:5px 5px;white-space:normal;border:1px
|
103 |
+
solid transparent}.qq-upload-file,.qq-upload-spinner,.qq-upload-size,.qq-upload-cancel,.qq-upload-failed-text{font-size:0.8em;line-height:16px}.qq-file-uploading{display:inline-block;overflow:hidden;white-space:nowrap;width:80px}.qq-upload-failed-text{float:right}.qq-upload-fail{background:#FF927D !important;color:#fff !important}.qq-upload-fail .qq-upload-size{display:none !important}.qq-upload-file{}.qq-upload-spinner{display:inline-block;background:url("/images/loading.gif");width:15px;height:15px;vertical-align:text-bottom;margin-bottom:3px;margin-left:2px}.qq-upload-size,.qq-upload-cancel{float:right;margin-left:4px}.qq-upload-failed-text{display:none}.qq-upload-fail .qq-upload-failed-text{display:inline}.fb-login-label{color:#888;font-size:11px;line-height:23px}.braintree-hosted-fields{background:rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box;display:inline-block;width:147px;height:17px;border:1px
|
104 |
+
solid lightgrey;padding:3px;box-shadow:0 1px 2px #eee inset}.braintree-hosted-fields-focused{border:1px
|
105 |
+
solid #FFD300 !important;box-shadow:0px 0px 3px #FFF0AA}.square-hosted-fields{background:rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box;display:inline-block;width:147px;height:17px;border:1px
|
106 |
+
solid lightgrey;padding:3px}.StripeElement.cc_numberMount,.StripeElement.cc_cardExpiryMount{width:147px}.StripeElement{height:17px}.__PrivateStripeElement{top:50%;transform:translateY(-50%)}@media screen and (-webkit-min-device-pixel-ratio:0){.braintree-hosted-fields-focused{outline:rgb(59, 153, 252) auto 5px;border:1px
|
107 |
+
solid lightgrey !important}}.braintree-addons-box{border-radius:5px;background-color:#efefef;padding:5px;margin:6px
|
108 |
+
0 0 18px;font-size:12px;line-height:16px}.paypalpro_img{width:40px;height:26px;padding-right:7px}.paypalpro_visa{background:url('/images/credit-card-logo.png') no-repeat 0 0}.paypalpro_mc{background:url('/images/credit-card-logo.png') no-repeat -47px 0}.paypalpro_amex{background:url('/images/credit-card-logo.png') no-repeat -94px 0}.paypalpro_dc{background:url('/images/credit-card-logo.png') no-repeat -141px 0}.payment-form-deposits-table{width:100%;padding:40px
|
109 |
+
35px;box-sizing:border-box}.payment-form-deposits-table.active{display:block!important}.payment-form-deposits-table
|
110 |
+
th{font-size:22px;border-bottom:1px solid #e6e6e6;padding-bottom:15px}.payment-form-deposits-table tbody tr:nth-child(2) td{padding-bottom:30px}.payment-form-deposits-table tbody .deposits td:first-child{width:200px}.payment-form-deposits-table .deposit-b
|
111 |
+
td{border-bottom:1px solid #e6e6e6;padding-bottom:30px}.payment-form-deposits-table .deposits td:nth-of-type(2){position:relative}.payment-form-deposits-table .deposits td:nth-of-type(2)::after{content:'$';display:block;position:absolute;left:4px;top:0%;transform:translateY(5px);font-size:14px;opacity:0.6}.payment-form-deposits-table .deposits
|
112 |
+
input{padding-left:18px}.payment-form-deposits-table .verifyButtonTr
|
113 |
+
td{padding-left:156px;padding-top:34px}.payment-form-deposits-table
|
114 |
+
.verifyButton{padding:9px
|
115 |
+
15px;font-family:"Lucida Grande",sans-serif;font-size:14px;font-weight:normal;display:block;border:1px
|
116 |
+
solid #ccc;color:#666;text-shadow:0 1px #fff;cursor:pointer;border-radius:3px 3px;box-shadow:0 1px #fff inset, 0 1px #ddd;background:#f5f5f5;background:linear-gradient(top, #f5f5f5 0%,#eee 100%)}.payment-form-deposits-table .verifyButton:hover{background:#fff;background:linear-gradient(top, #fff 0%,#f5f5f5 100%)}@media only screen and (max-device-width: 550px){.payment-form-deposits-table .deposits
|
117 |
+
td{display:block}.payment-form-deposits-table .deposit-b td:nth-of-type(1){padding-bottom:10px;border-bottom:0}}#recaptcha_logo{display:none}#recaptcha_tagline{display:none}#recaptcha_table{border:none !important}.recaptchatable .recaptcha_image_cell,#recaptcha_table{background-color:transparent !important}#recaptcha_table
|
118 |
+
td{padding-left:0px !important}.always-hidden{display:none !important}.dropdown-match-height{min-height:24px}.signature-pad-passive,.signature-pad-wrapper{border:1px
|
119 |
+
solid #9D9D9D;color:#444;position:relative}.signature-pad-passive .signature-line{border:1px
|
120 |
+
solid #444;width:80%;position:absolute;bottom:50px;left:10%;right:10%}.signature-pad-wrapper .clear-pad-btn{cursor:pointer;text-decoration:underline;float:right;font-weight:bold;font-size:12px}.form-single-column
|
121 |
+
.clearfix{display:inline-block}.form-single-column
|
122 |
+
.clearfix{display:block}@media only screen and (max-device-width: 550px){body{font-size:18px}.form-all{width:auto !important}.form-label-left{float:none;display:block}.form-buttons-wrapper{margin:5px
|
123 |
+
!important;text-align:center}.form-textarea{width:94% !important;white-space:pre-wrap}span .time-dropdown{box-shadow:0 1px 2px #eee inset;border:1px
|
124 |
+
solid #ccc;background-color:#fff}.form-textbox,.form-textarea,.form-dropdown,.form-list{border:1px
|
125 |
+
solid #555;padding:4px;-webkit-border-radius:5px 5px;-webkit-box-shadow:0 2px 4px rgba(0,0,0, 0.4) inset;-moz-border-radius:5px 5px;-moz-box-shadow:0 2px 4px rgba(0,0,0, 0.4) inset;border-radius:5px 5px;box-shadow:0 2px 4px rgba(0,0,0, 0.4) inset}.form-address-table{width:300px}.form-address-line{width:280px}.form-address-city,.form-address-state{width:130px}.form-address-table td, .form-address-table
|
126 |
+
th{padding-bottom:10px}.form-address-table
|
127 |
+
select{width:120px}.form-spinner{max-width:100% !important;overflow:hidden;padding-right:105px !important;border-radius:5px}.form-spinner-up{margin-right:1px}[class*="form-spinner-"] img{width:10px !important;height:8px !important;margin: -4px 0 0 -5px !important}.form-spinner-up,.form-spinner-down{display:inline-block !important;width:52px !important;height:100% !important}div.form-spinner-input-td
|
128 |
+
input{padding:9px
|
129 |
+
6px !important;background:none}.form-sub-label-container img[id*="pick"]{}div.form-header-group{margin:0px
|
130 |
+
!important}div.form-pagebreak .form-label-left{display:inline-block !important;float:left}.form-submit-button,.form-submit-reset{font-size:18px;line-height:30px}.form-captcha{border:1px
|
131 |
+
solid #555}.form-captcha
|
132 |
+
input{width:120px !important}.custom-field-frame,.direct-embed-widgets,.signature-pad-wrapper{width:100% !important}.u-responsive-lightbox{width:90%!important}.u-responsive-lightbox .jt-title,
|
133 |
+
.u-responsive-lightbox .jt-content,
|
134 |
+
.u-responsive-lightbox .js-form-content{width:100%!important}.form-product-custom_price{width:35px}.signature-pad-passive{max-width:70vw}}.clearfix2:before,.clearfix2:after{content:" ";display:table}.clearfix2:after{clear:both}input[type=number]{-moz-appearance:textfield}input[id*="_donation"]{width:46px}input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.form-submit-button.icon-encrypt{position:relative}.form-submit-button.icon-encrypt+button{margin-left:25px}.form-submit-button.icon-encrypt:before{content:url("/images/security-icon.png");display:inline-block;position:absolute;width:32px;height:32px;right: -36px;top:50%;margin-top: -16px;box-sizing:border-box;padding-top:4px}.form-submit-button.icon-encrypt:after{content:"This form is encrypted";display:none;position:absolute;width:128px;background-color:rgba(0, 0, 0, 0.85);text-shadow:none;color:#eee;font-size:10px;top:50%;right: -166px;padding:5px
|
135 |
+
0 4px;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;line-height:15px;margin-top: -12px}.form-submit-button.icon-encrypt:hover:after{display:inline-block}.jotform-ad{background:red;display:block !important;visibility:visible !important}.jotform-ad>a{text-decoration:none !important;color:#aaa !important}.jotform-ad>a+a{color:#f38632 !important}.jf-branding:hover{color:orange !important;opacity:1 !important}.overlay{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.5);top:0;left:0;z-index:1001}.overlay-content{position:absolute;display:inline-block;transform:translate(-50%, -50%);left:50%;top:50%;background:#fff;padding:20px;box-shadow:0 3px 5px 0 rgba(0,0,0,.2)}.img-wrapper
|
136 |
+
img{display:block}.lb-prev-button,.lb-next-button{position:absolute;width:70px;height:70px;top:50%;margin-top: -35px;color:transparent;cursor:pointer;opacity:0;transition:opacity .15s ease;background-repeat:no-repeat;background-position:center center}.lb-prev-button{left: -70px;background-image:url(https://cdn.jotfor.ms/assets/img/v3/lightbox/prev.png)}.lb-next-button{right: -70px;background-image:url(https://cdn.jotfor.ms/assets/img/v3/lightbox/next.png)}.lb-close-button{display:none;position:absolute;width:40px;height:40px;top: -40px;right: -4px;color:transparent;cursor:pointer;background:url(https://cdn.jotfor.ms/assets/img/v3/lightbox/close.png) center center no-repeat}.overlay-content:hover .lb-prev-button,
|
137 |
+
.overlay-content:hover .lb-next-button{opacity:1}.new-file{position:relative;width:240px}.new-file-button{display:none}.new-file-droparea{background:rgba(240,240,240,0.9);border-color:rgba(180,180,180,0.9)}.new-file-droparea:hover{background:rgba(255,255,255,0.9);border-color:rgba(210,210,210,0.9)}.new-file-list{list-style:none;padding:0;max-width:300px}.new-file-list
|
138 |
+
li{max-width:280px;font-size:0.875em;line-height:2em;padding:6px
|
139 |
+
60px 6px 6px;position:relative;border-bottom:1px solid #eee;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.new-file-list li:first-child{border-top:1px solid #eee;margin-top:12px}.new-file-progress-bar{position:absolute;bottom: -1px;left:0;height:2px;background-color:#3f91f7}.new-file-abort{position:absolute;top:50%;right:0;font-size:10px;width:18px;height:18px;margin-top: -10px;line-height:17px;text-align:center;border-radius:50%;cursor:pointer;border:1px
|
140 |
+
solid #aaa;color:#aaa;display:none}.new-file-list li:hover .new-file-abort{display:block}.new-file-list li:hover .new-file-size{display:none}.new-file-abort:hover{border-color:#fd6847;color:#fd6847;transition:all 0.3s ease}.new-file-size{position:absolute;top:50%;right:0;line-height:18px;margin-top: -9px;text-align:center;font-weight:700}.new-file-progress-number{display:none}.form-html
|
141 |
+
ul{list-style:disc outside}.form-html
|
142 |
+
ol{list-style:decimal}.embed-dropdown{cursor:pointer;position:relative;display:inline-block;font-size:12px;margin-top:12px;margin-left:12px;float:right;background:#FC7C01;color:white;line-height:16px;text-decoration:none;padding:6px
|
143 |
+
0;border:none;box-shadow:0px 0px 4px black}.embed-dropdown:after{content:'';position:absolute;right:6px;top:12px;display:inline-block;width:0;height:0;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.embed-dropdown label:nth-of-type(1){cursor:pointer}.embed-dropdown .btn-dropdown{padding:6px
|
144 |
+
20px 6px 10px}.embed-dropdown-open{display:none}.embed-dropdown-overlay{display:none !important;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1}.embed-dropdown-inner{list-style:none;position:absolute;opacity:0;visibility:hidden;z-index:2;margin:6px
|
145 |
+
0 0 -14px;padding:10px;background:#FFF;border:1px
|
146 |
+
solid rgba(0,0,0,.15)}.embed-dropdown-inner
|
147 |
+
li{margin-bottom:5px}.embed-dropdown-inner
|
148 |
+
a{display:block;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap;text-decoration:none;text-align:left;padding:0
|
149 |
+
5px}.embed-dropdown-inner a:hover{color:#fc7c01}.embed-dropdown-open:checked~.embed-dropdown-inner{opacity:1;visibility:visible}.embed-dropdown-open:checked~.embed-dropdown-overlay{display:block !important}@media screen and (max-device-width:40em){div.form-all:before{background-size:contain}.fb-like-box{width:98%!important}.form-checkbox-item,.form-radio-item{white-space:normal!important}.form-line,.form-line.form-line-column{padding:12px;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-radio-item .form-radio-other-input.form-textbox , .form-checkbox-item .form-checkbox-other-input.form-textbox{width:77% !important}.form-dropdown,.form-textarea,.form-textbox{width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}div .form-label-left,div .form-label-right{display:block;float:none;width:auto!important}.form-label-right{text-align:right !important}div.form-label-left{text-align:left !important}.form-buttons-wrapper{margin-left:0!important}.form-all{width:95%}span.form-sub-label-container+span.form-sub-label-container{margin-right:0}.form-address-table td,.form-address-table
|
150 |
+
th{padding:0
|
151 |
+
1px 10px}.form-submit-button,.form-submit-print,.form-submit-reset{width:100%;margin-left:0!important}div[id*=at_]{font-size:14px;font-weight:700;height:8px;margin-top:6px}.showAutoCalendar{width:20px}img.form-image{max-width:100%;height:auto}.form-matrix-row-headers{width:100%;word-break:break-all;min-width:40px}.form-collapse-table,.form-header-group{margin:0}.form-collapse-table{height:100%;display:inline-block;width:100%}.form-collapse-hidden{display:none!important}.form-address-city,.form-address-line,.form-address-postal,.form-address-state,.form-address-table,.form-address-table .form-sub-label-container,.form-address-table select,.form-input{width:100%}.form-sub-label{white-space:normal}.form-pagebreak-back-container,.form-pagebreak-next-container{width:50%!important}.form-pagebreak-back,.form-pagebreak-next,.form-product-item.hover-product-item{width:100%}.form-pagebreak-back-container{padding:0;text-align:right}.form-pagebreak-next-container{padding:0;text-align:left}.form-pagebreak{margin:0
|
152 |
+
auto}.form-sub-label-container{margin-right:0;float:left;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}[data-type=control_fullname] .form-sub-label-container:first-child{margin-right:4%}[data-type=control_fullname] .form-sub-label-container{width:48%}[data-type=control_phone] .form-sub-label-container:first-child{width:31%;margin-right:4%}[data-type=control_phone] .form-sub-label-container{width:65%}[data-type=control_datetime] .form-sub-label-container+.form-sub-label-container,[data-type=control_datetime] .form-sub-label-container:first-child{width:27.3%;margin-right:6%}[data-type=control_datetime] .form-sub-label-container+.form-sub-label-container+.form-sub-label-container{width:33.3%;margin-right:0}[data-type=control_datetime] span+span+span>span:first-child{display:block;width:100%!important}li[data-type=control_birthdate] .form-sub-label-container,li[data-type=control_datetime] span+span+span>span:first-child+span+span,li[data-type=control_time] .form-sub-label-container{width:16%!important;margin-right:4%!important}li[data-type=control_birthdate] .form-sub-label-container:last-child,li[data-type=control_time] .form-sub-label-container:last-child{width:16%!important;margin-right:0!important}.form-error-message{clear:both;bottom:-10px}.date-separate,.phone-separate{display:none}.custom-field-frame,.direct-embed-widgets,.signature-pad-wrapper{width:100%!important}}@media
|
153 |
+
print{.supernova,body{height:auto !important}.form-all{-webkit-print-color-adjust:exact}.formFooter{display:none}}.formFooter-heightMask{height:56px}.formFooter{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";position:fixed;display: -ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;left:0;right:0;bottom:0;color:#eee;padding:0
|
154 |
+
5px;background-color:#414247;text-align:left;z-index:901}.formFooter-rightSide{display:flex;display: -ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.formFooter-logoLink{z-index:3}.formFooter-text{color:#bfbfbf;font-size:12px}.formFooter-button{display:inline-block;-ms-flex-negative:0;flex-shrink:0;background-color:#63c453;padding:10px
|
155 |
+
18px;color:#fff;border-radius:3px;margin-left:15px;font-size:14px;line-height:1;text-decoration:none;-webkit-transition:background-color .3s;-o-transition:background-color .3s;transition:background-color .3s}.formFooter-button:hover{background-color:#52bf41}@media screen and (min-width: 981px){.formFooter-text{font-size:14px}.formFooter-button{font-size:16px}}@media screen and (max-width: 650px){.formFooter-button{margin-right:5px;padding:10px
|
156 |
+
12px;font-size:12px}}@media screen and (max-width: 480px) and (min-width: 280px){.allowTime-container{width:100%}.formFooter-heightMask{height:76px}.form-header-group.hasImage>.header-text{width:auto}}@media screen and (max-width: 400px){.formFooter.formFooter-new .formFooter-button{font-size:11px}.form-description{right:7px !important}}@media screen and (max-width: 348px){.formFooter.formFooter-new .formFooter-logoLink{width:27px;overflow:hidden}}@media screen and (max-width: 279px){.formFooter-heightMask{height:45px}.formFooter-button{margin-left:0;padding:10px
|
157 |
+
12px;font-size:12px}.formFooter.formFooter-new .formFooter-button{font-size:12px}.form-header-group.hasImage>.header-text{width:auto}}@media screen and (max-width: 641px){.formFooter-rightSide:before{left:147px}}@media screen and (max-width: 380px){.formFooter-logo{height:33px !important}}@media screen and (max-width: 480px){.formFooter-text{display:none}}.translate-popup:after{content:'';position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.75);top:0;left:0;z-index:10001}.footerTranslationLink,.footerTranslationLink:hover{border:none;background:transparent;color:#f90;text-decoration:none;font-size:12px;margin:8px
|
158 |
+
0 0 0;padding:0}.translate-footer-popup{position:fixed;width:506px;height:440px;top:50%;left:50%;margin: -220px 0 0 -253px;-moz-box-shadow:0 0 10px 1px rgba(0,0,0,.5);-webkit-box-shadow:0 0 10px 1px rgba(0,0,0,.5);box-shadow:0 0 10px 1px rgba(0,0,0,.5);-moz-transition:none;-webkit-transition:none;-o-transition:color 0 ease-in;transition:none;z-index:10002}.translate-footer-popup
|
159 |
+
.ts_title{position:relative}.translate-footer-popup .ts_title
|
160 |
+
button{border:none;position:absolute;top:18px;right:18px;background:#ccc;color:#fff;font-size:15px;font-weight:700;text-align:center;line-height:20px;width:24px;height:24px;cursor:pointer;text-shadow:0 1px 0 #bbb;-moz-box-shadow:0 1px 1px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1) inset;box-shadow:0 1px 1px rgba(0,0,0,.1) inset;-moz-border-radius:100%;-webkit-border-radius:100%;border-radius:100%;text-decoration:none;min-width:initial}.translate-footer-popup
|
161 |
+
iframe{width:100%;height:100%;border:none;background:#FFF}li[data-type="control_mixed"] .form-input , li[data-type="control_mixed"] .form-input>div{width:320px}li[data-type="control_mixed"] .form-sub-label-container{float:left;margin-right:10px}li[data-type="control_mixed"] .form-sub-label-container[data-colsize="1"], li[data-type="control_mixed"] .form-sub-label-container input, li[data-type="control_mixed"] .form-sub-label-container
|
162 |
+
select{width:100%;box-sizing:border-box}li[data-type="control_mixed"] .form-sub-label-container[data-colsize="2"]{width:150px}li[data-type="control_mixed"] .form-sub-label-container[data-colsize="1"] input, li[data-type="control_mixed"] .form-sub-label-container[data-colsize="1"] select{width:310px}.jfRadio-label{display:inline-block}.jfRadio-labelText{margin-top:5px;display:inline-block}.jfRadio-image{width:60px;height:60px;background-size:cover;background-position:center;background-repeat:no-repeat}.jfRadio-input.form-radio{margin:25px
|
163 |
+
5px 0 0;position:relative}.black-friday-2018{display:none}.eoy-2018{display:none;background-color:#04003F;overflow:hidden}.eoy-2018 .formFooter-content::before{content:'';position:absolute;width:98vw;height:90px;border-radius:100%;top:0;z-index:2;left:110px;background:#0c0a5e;-ms-transform:translateY(-60%) translateX(-5vw);transform:translateY(-60%) translateX(-5vw)}.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-left{display:inline-block;vertical-align:middle}.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-right{display:inline-block;vertical-align:middle;padding-left:16px}.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-left
|
164 |
+
svg{height:20px;max-width:auto}.eoy-2018 .formFooter-rightSide{z-index:3;position:relative}.eoy-2018 .formFooter-rightSide .formFooter-button-container{display:inline-block;vertical-align:middle}.eoy-2018 .formFooter-rightSide .formFooter-button-container .formFooter-button{background-color:#35c300;font-weight:bold;border-radius:20px;padding:8px
|
165 |
+
22px;margin:4px
|
166 |
+
0 4px 15px}@media screen and (max-width: 780px){.eoy-2018 .formFooter-rightSide .formFooter-text{text-align:center;width:auto}.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-left{display:block;padding-top:0;padding-bottom:4px}.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-right{display:block;padding-left:0}.eoy-2018 .formFooter-rightSide .formFooter-button-container{padding-top:8px}}@media screen and (max-width: 550px){.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-left
|
167 |
+
svg{height:13px;width:auto}.eoy-2018 .formFooter-rightSide .formFooter-text .formFooter-text-right
|
168 |
+
svg{height:20px;width:auto}}@media screen and (max-width: 480px){.eoy-2018 .formFooter-rightSide .formFooter-text{display:inline-block}.eoy-2018 .formFooter-rightSide .formFooter-button-container{padding-top:0px}}@media screen and (max-width: 430px){.eoy-2018 .formFooter-logoLink{display:none}}@media screen and (max-width: 500px), screen and (max-device-width: 767px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape){.formFooter-heightMask{height:100px !important}}.summer-sale-2018{padding:6px
|
169 |
+
10px;background-color:#313336}.summer-sale-2018 .formFooter-content .formFooter-logoLink{position:unset;display:inline-block;margin:0;vertical-align:middle}.summer-sale-2018 .formFooter-content .formFooter-logoLink
|
170 |
+
img{height:44px}@media screen and (max-width: 500px){.summer-sale-2018 .formFooter-content .formFooter-logoLink{display:none}}.summer-sale-2018 .formFooter-content .formFooter-rightSide{position:relative;padding-top:0;float:right;width:auto}.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text{display:none;margin:0
|
171 |
+
3rem 0 0;padding:0
|
172 |
+
1rem 0 0;color:#fff;text-align:right;position:relative;width:auto}@media screen and (max-width: 575px){.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text{margin:0;padding:0}}@media screen and (max-width: 500px){.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text{display:block;text-align:center;margin-bottom:0.25rem;padding:0}}.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text .formFooter-text-top{font-size:21px;color:#f7c847}.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text .formFooter-text-bottom{font-size:14px}.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text:before{content:"";position:absolute;right:0;top:50%;transform:scale(1.2) translate(100%, -50%);background:url("https://cdn.jotfor.ms/assets/img/cardforms/summer-sale-2018/form-footer-sale.svg") no-repeat;background-size:contain;width:4rem;height:100%}@media screen and (max-width: 650px){.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text:before{transform:scale(1) translate(100%, -50%)}}@media screen and (max-width: 575px){.summer-sale-2018 .formFooter-content .formFooter-rightSide .formFooter-text:before{display:none}}@media screen and (max-width: 500px){.summer-sale-2018 .formFooter-content .formFooter-rightSide{float:none;text-align:center}}@media screen and (max-width: 640px){.form-header-group.hasImage{text-align:center;margin:0
|
173 |
+
auto}.header-logo-left{margin-right:0}.form-header-group.hasImage>.header-logo{display:block}.form-header-group.hasImage>.header-text{text-align:center}.form-header-group.hasImage>.header-text{text-align:center}.form-header-group .form-header{font-size:130%}}.jHabit{display:block;padding:0;margin: -10px auto}.jHabit-wrapper{display:flex;align-items:stretch}.jHabit-wrapper
|
174 |
+
span{display:block;font-size:15px;color:#fff;opacity: .65}.jHabit-wrapper .jHabit-icon{display:flex;align-items:center;justify-content:center;width:100px}.jHabit-wrapper .jHabit-icon
|
175 |
+
.iconSvg{width:70px;height:70px;background:#fff;display:flex;align-items:center;justify-content:center;border-radius:4px}.jHabit-wrapper .jHabit-icon .iconSvg
|
176 |
+
svg{display:block;width:70px}.isMobile .jHabit-wrapper .jHabit-icon{display:none}.jHabit-wrapper .jHabit-name{position:relative;flex:1;display:inherit;color:#fff;font-size:16px;overflow:hidden;flex-direction:column;justify-content:center}.jHabit-wrapper .jHabit-name
|
177 |
+
span{width:100%;text-align:left}.isMobile .jHabit-wrapper .jHabit-name{padding-left:20px;font-size:14px}.jHabit-wrapper .jHabit-name .editor-container{z-index:1}.jHabit-wrapper .jHabit-name
|
178 |
+
.iconSvg{position:absolute;right: -30px;top: -27px;width:180px}.isMobile .jHabit-wrapper .jHabit-name
|
179 |
+
.iconSvg{width:70px;left: -20px;top:0}.jHabit-wrapper .jHabit-status{position:relative;display:inherit;align-items:center;justify-content:center;width:100px;height:100px;flex-direction:column}.jHabit-wrapper .jHabit-status
|
180 |
+
span{margin-bottom:5px}.jHabit-wrapper .jHabit-status
|
181 |
+
input{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);width:40px;height:40px;opacity:0;margin:0;cursor:pointer;z-index:3}.jHabit-wrapper .jHabit-status input:checked+.statusIcon{background:url(https://cdn.jotfor.ms/assets/img/builder/daily-habit-tracker/done_white.svg) no-repeat center;animation:habitScale .3s linear}.jHabit-wrapper .jHabit-status input:checked+.statusIcon:after{animation:habitBlink .7s linear}.jHabit-wrapper .jHabit-status input+.statusIcon{background:url(https://cdn.jotfor.ms/assets/img/builder/daily-habit-tracker/waiting_white.svg) no-repeat center}.jHabit-wrapper .jHabit-status input:disabled+.statusIcon{background:url(https://cdn.jotfor.ms/assets/img/builder/daily-habit-tracker/waiting_white.svg) no-repeat center;animation:habitScale .3s linear}.jHabit-wrapper .jHabit-status input.past+.statusIcon{background:url(https://cdn.jotfor.ms/assets/img/builder/daily-habit-tracker/undone_white.svg) no-repeat center;animation:habitScale .3s linear}.jHabit-wrapper .jHabit-status
|
182 |
+
.statusIcon{position:relative;width:40px;height:40px;z-index:2}.jHabit-wrapper .jHabit-status .statusIcon:after{content:'';position:absolute;background-color:rgba(255, 255, 255, 0.6);border-radius:50%;z-index:1}.isMobile .jHabit-wrapper .jHabit-status{width:70px;height:70px}.jHabit-wrapper.green{background-color:#A1C32F}.jHabit-wrapper.green .jHabit-status{background-color:#90ae2a}.jHabit-wrapper.green .jHabit-icon
|
183 |
+
.iconSvg{fill:#A1C32F}.jHabit-wrapper.green .jHabit-name
|
184 |
+
.iconSvg{fill:#90ae2a}.jHabit-wrapper.orange{background-color:#F1AC44}.jHabit-wrapper.orange .jHabit-status{background-color:#efa12c}.jHabit-wrapper.orange .jHabit-icon
|
185 |
+
.iconSvg{fill:#F1AC44}.jHabit-wrapper.orange .jHabit-name
|
186 |
+
.iconSvg{fill:#efa12c}.jHabit-wrapper.blue{background-color:#4B73DD}.jHabit-wrapper.blue .jHabit-status{background-color:#3662d9}.jHabit-wrapper.blue .jHabit-icon
|
187 |
+
.iconSvg{fill:#4B73DD}.jHabit-wrapper.blue .jHabit-name
|
188 |
+
.iconSvg{fill:#3662d9}.jHabit-wrapper.purple{background-color:#AF53EC}.jHabit-wrapper.purple .jHabit-status{background-color:#a43ce9}.jHabit-wrapper.purple .jHabit-icon
|
189 |
+
.iconSvg{fill:#AF53EC}.jHabit-wrapper.purple .jHabit-name
|
190 |
+
.iconSvg{fill:#a43ce9}.jHabit-wrapper.pink{background-color:#E75DA9}.jHabit-wrapper.pink .jHabit-status{background-color:#e4479d}.jHabit-wrapper.pink .jHabit-icon
|
191 |
+
.iconSvg{fill:#E75DA9}.jHabit-wrapper.pink .jHabit-name
|
192 |
+
.iconSvg{fill:#e4479d}@keyframes
|
193 |
+
habitBlink{0%{opacity:0;left:50%;top:50%;width:0;height:0;z-index:1}25%{opacity: .5;left:calc(50% - 15px);top:calc(50% - 15px);width:30px;height:30px;z-index:1}50%{opacity: .8;left:calc(50% - 30px);top:calc(50% - 30px);width:60px;height:60px;z-index:1}75%{opacity: .5;left:calc(50% - 25px);top:calc(50% - 25px);width:50px;height:50px;z-index:1}100%{opacity:0;left:calc(50% - 20px);top:calc(50% - 20px);width:40px;height:40px;z-index:1}}@keyframes
|
194 |
+
habitScale{0%{opacity:0;transform:scale(0)}70%{opacity:1;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}div.calendar{color:#000;font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;-moz-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.5);-webkit-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.5);box-shadow:0px 0px 8px rgba(0,0,0,0.5)}div.calendar.popup{margin-left: -40px;margin-top: -100px;z-index:100000}div.calendar
|
195 |
+
td.weekend{background:#b5cfe9}div.calendar
|
196 |
+
.today{background:#f9621a !important}div.calendar .title, div.calendar
|
197 |
+
.button{color:#f9621a}div.calendar
|
198 |
+
table{background-color:#eee;border:1px
|
199 |
+
solid #aaa;border-collapse:collapse}div.calendar
|
200 |
+
thead{background-color:white}div.calendar td,
|
201 |
+
div.calendar
|
202 |
+
th{font-size:11px;padding:3px;text-align:center}div.calendar
|
203 |
+
td.title{font-weight:bold}div.calendar
|
204 |
+
th{background:#ddd;border-bottom:1px solid #ccc;border-top:1px solid #ccc;font-weight:bold;color:#555}div.calendar tr.days
|
205 |
+
td{width:2em;color:#555;text-align:center;cursor:pointer}div.calendar tr.days td:hover:not(.unselectable),
|
206 |
+
div.calendar td.button:hover:not(.unselectable){background-color:#34ABFA;cursor:pointer}.unselectable{cursor:default !important}div.calendar tr.days td:active
|
207 |
+
div.calendar td.button:active{background-color:#cde}div.calendar tr.days
|
208 |
+
td.selected{font-weight:bold;background-color:#fff;color:#000}div.calendar tr.days
|
209 |
+
td.today{font-weight:bold;color:#D50000}div.calendar tr.days
|
210 |
+
td.otherDay{color:#bbb}
|
inc/innofit-feedback-pop-up-form.php
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function spiceb_spicepress_feedback_scripts() {
|
3 |
+
|
4 |
+
wp_enqueue_style('spiceb_style',SPICEB_PLUGIN_URL.'inc/css/feedback-popup.css');
|
5 |
+
|
6 |
+
wp_enqueue_style('spiceb_formcss1',SPICEB_PLUGIN_URL.'inc/css/innofit-formCss.css');
|
7 |
+
wp_enqueue_style('spiceb_formcss2','https://cdn.jotfor.ms/css/printForm.css?3.3.13124');
|
8 |
+
wp_enqueue_style('spiceb_formcss3', 'https://cdn.jotfor.ms/css/styles/nova.css?3.3.13124');
|
9 |
+
wp_enqueue_style('spiceb_formcss4','https://cdn.jotfor.ms/themes/CSS/566a91c2977cdfcd478b4567.css?themeRevisionID=5cf39fbd544a5401541a4081');
|
10 |
+
wp_enqueue_style('spiceb_custom1',SPICEB_PLUGIN_URL.'inc/css/innofit-custom-one.css');
|
11 |
+
wp_enqueue_style('spiceb_custome2',SPICEB_PLUGIN_URL.'inc/css/innofit-custom-two.css');
|
12 |
+
|
13 |
+
wp_enqueue_script( 'spiceb-prototype-form', 'https://cdn.jotfor.ms/static/prototype.forms.js',array('jquery'), '', true);
|
14 |
+
wp_enqueue_script( 'spiceb-jotform-js', 'https://cdn.jotfor.ms/static/jotform.forms.js?3.3.13124',array('jquery'), '', true);
|
15 |
+
wp_register_script('spiceb-custom-script', SPICEB_PLUGIN_URL. 'inc/js/innofit-custom.js',array('jquery','wp-color-picker'),'1.1', true);
|
16 |
+
wp_enqueue_script('spiceb-custom-script');
|
17 |
+
}
|
18 |
+
add_action( 'admin_enqueue_scripts', 'spiceb_spicepress_feedback_scripts' );
|
19 |
+
error_reporting(0);?>
|
20 |
+
<div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox" id="spicepress-deactivate-feedback-modal" style="display: block;">
|
21 |
+
|
22 |
+
<form class="jotform-form" action="https://submit.jotform.me/submit/92702395836465/" method="post" name="form_92702395836465" id="92702395836465" accept-charset="utf-8">
|
23 |
+
<input type="hidden" name="formID" value="92702395836465" />
|
24 |
+
<input type="hidden" id="JWTContainer" value="" />
|
25 |
+
<input type="hidden" id="cardinalOrderNumber" value="" />
|
26 |
+
<div role="main" class="form-all">
|
27 |
+
<ul class="form-section page-section">
|
28 |
+
<li class="form-line" data-type="control_text" id="id_4">
|
29 |
+
<div id="cid_4" class="form-input-wide">
|
30 |
+
<div id="text_4" class="form-html" data-component="text">
|
31 |
+
<p><span style="font-family: helvetica, arial, sans-serif;"><strong><span style="font-size: 18pt;">Quick Feedback</span></strong></span></p>
|
32 |
+
<p><span style="font-size: 10pt; font-family: helvetica, arial, sans-serif;">Your feedback is valuable to us.</span></p>
|
33 |
+
</div>
|
34 |
+
</div>
|
35 |
+
</li>
|
36 |
+
<li class="form-line" data-type="control_radio" id="id_3">
|
37 |
+
<label class="form-label form-label-top" id="label_3" for="input_3"> </label>
|
38 |
+
<div id="cid_3" class="form-input-wide">
|
39 |
+
<div class="form-single-column" role="group" aria-labelledby="label_3" data-component="radio">
|
40 |
+
<span class="form-radio-item" style="clear:left">
|
41 |
+
<span class="dragger-item">
|
42 |
+
</span>
|
43 |
+
<input type="radio" class="form-radio" id="input_3_0" name="q3_input3" value="I found a better theme" />
|
44 |
+
<label id="label_input_3_0" for="input_3_0"> I found a better theme </label>
|
45 |
+
</span>
|
46 |
+
<span class="form-radio-item" style="clear:left">
|
47 |
+
<span class="dragger-item">
|
48 |
+
</span>
|
49 |
+
<input type="radio" class="form-radio" id="input_3_1" name="q3_input3" value="It's a temporary deactivation. I'm just debugging an issue." />
|
50 |
+
<label id="label_input_3_1" for="input_3_1"> It's a temporary deactivation. I'm just debugging an issue. </label>
|
51 |
+
</span>
|
52 |
+
<span class="form-radio-item" style="clear:left">
|
53 |
+
<span class="dragger-item">
|
54 |
+
</span>
|
55 |
+
<input type="radio" class="form-radio" id="input_3_2" name="q3_input3" value="It does not have a feature I require. If possible, mention them in text box." />
|
56 |
+
<label id="label_input_3_2" for="input_3_2"> It does not have a feature I require. If possible, mention them in text box. </label>
|
57 |
+
</span>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
</li>
|
61 |
+
<li class="form-line" data-type="control_textarea" id="id_6">
|
62 |
+
<label class="form-label form-label-top form-label-auto" id="label_6" for="input_6"> Others </label>
|
63 |
+
<div id="cid_6" class="form-input-wide">
|
64 |
+
<span class="form-sub-label-container" style="vertical-align:top">
|
65 |
+
<textarea id="input_6" class="form-textarea" name="q6_others" cols="40" rows="6" data-component="textarea" aria-labelledby="label_6 sublabel_input_6"></textarea>
|
66 |
+
<label class="form-sub-label" for="input_6" id="sublabel_input_6" style="min-height:13px"> Your feedback means a lot to us </label>
|
67 |
+
</span>
|
68 |
+
</div>
|
69 |
+
</li>
|
70 |
+
<li class="form-line form-line-column form-col-1" data-type="control_button" id="id_2">
|
71 |
+
<div id="cid_2" class="form-input-wide">
|
72 |
+
<div style="text-align:left" class="form-buttons-wrapper ">
|
73 |
+
<button id="input_2" type="submit" class="form-submit-button" data-component="button">
|
74 |
+
<?php _e('Submit Feedback','spicepress');?>
|
75 |
+
</button>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
</li>
|
79 |
+
<li class="form-line form-line-column form-col-2" data-type="control_text" id="id_5">
|
80 |
+
<div id="cid_5" class="form-input-wide">
|
81 |
+
<div id="text_5" class="form-html" data-component="text">
|
82 |
+
<p><a class="form-deactivation" href="#" rel="nofollow" onclick="window.location.reload()"> <?php _e('Skip & Deactive','spicepress');?></a></p>
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
</li>
|
86 |
+
<li style="clear:both">
|
87 |
+
</li>
|
88 |
+
<li style="display:none">
|
89 |
+
Should be Empty:
|
90 |
+
<input type="text" name="website" value="" />
|
91 |
+
</li>
|
92 |
+
</ul>
|
93 |
+
</div>
|
94 |
+
<script>
|
95 |
+
JotForm.showJotFormPowered = "old_footer";
|
96 |
+
</script>
|
97 |
+
<input type="hidden" id="simple_spc" name="simple_spc" value="92702395836465" />
|
98 |
+
<script type="text/javascript">
|
99 |
+
document.getElementById("si" + "mple" + "_spc").value = "92702395836465-92702395836465";
|
100 |
+
</script>
|
101 |
+
<input type="hidden" id="input_7" name="q7_typeA" class="form-hidden" value="<?php
|
102 |
+
global $wp;
|
103 |
+
echo home_url( $wp->request ).'/wp-admin/themes.php';
|
104 |
+
?>" data-component="hidden" />
|
105 |
+
</form>
|
106 |
+
</div>
|
107 |
+
|
108 |
+
<?php
|
109 |
+
unset( $_GET['action'] );
|
110 |
+
require ABSPATH . 'wp-admin/themes.php';
|
111 |
+
|
112 |
+
?>
|
inc/js/innofit-custom.js
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JotForm.init(function(){
|
2 |
+
JotForm.highlightInputs = false;
|
3 |
+
JotForm.clearFieldOnHide="disable";
|
4 |
+
/*INIT-END*/
|
5 |
+
});
|
6 |
+
|
7 |
+
JotForm.prepareCalculationsOnTheFly([null,null,{"name":"submitForm","qid":"2","text":"Submit Feedback","type":"control_button"},{"name":"input3","qid":"3","text":"","type":"control_radio"},{"name":"clickTo","qid":"4","text":"Quick Feedback\nYour feedback is valuable to us.","type":"control_text"},{"name":"clickTo5","qid":"5","text":"Skip & Deactive","type":"control_text"},{"description":"","name":"others","qid":"6","subLabel":"Your feedback means a lot to us","text":"Others","type":"control_textarea"},{"name":"typeA","qid":"7","text":"Type a question","type":"control_hidden"}]);
|
8 |
+
setTimeout(function() {
|
9 |
+
JotForm.paymentExtrasOnTheFly([null,null,{"name":"submitForm","qid":"2","text":"Submit Feedback","type":"control_button"},{"name":"input3","qid":"3","text":"","type":"control_radio"},{"name":"clickTo","qid":"4","text":"Quick Feedback\nYour feedback is valuable to us.","type":"control_text"},{"name":"clickTo5","qid":"5","text":"Skip & Deactive","type":"control_text"},{"description":"","name":"others","qid":"6","subLabel":"Your feedback means a lot to us","text":"Others","type":"control_textarea"},{"name":"typeA","qid":"7","text":"Type a question","type":"control_hidden"}]);}, 20);
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: spicethemes
|
|
3 |
Tags: widget, admin, widgets
|
4 |
Requires at least: 3.3+
|
5 |
Tested up to: 5.2.3
|
6 |
-
Stable tag: 1.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -153,4 +153,7 @@ This plugin create repeater controls in the customizer settings allowing you to
|
|
153 |
1. Minor Update.
|
154 |
|
155 |
= 1.1.2 =
|
156 |
-
1. Added SpicePress child theme name.
|
|
|
|
|
|
3 |
Tags: widget, admin, widgets
|
4 |
Requires at least: 3.3+
|
5 |
Tested up to: 5.2.3
|
6 |
+
Stable tag: 1.1.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
153 |
1. Minor Update.
|
154 |
|
155 |
= 1.1.2 =
|
156 |
+
1. Added SpicePress child theme name.
|
157 |
+
|
158 |
+
= 1.1.3 =
|
159 |
+
1. Added Feedback Form for innofit theme.
|
spicebox.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SpiceBox
|
4 |
Plugin URI:
|
5 |
Description: Enhances SpiceThemes with extra functionality.
|
6 |
-
Version: 1.1.
|
7 |
Author: Spicethemes
|
8 |
Author URI: https://github.com
|
9 |
Text Domain: spicebox
|
@@ -226,7 +226,6 @@ endif;
|
|
226 |
|
227 |
|
228 |
|
229 |
-
|
230 |
if ('SpicePress' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'SpicePress Child' == $theme->name)
|
231 |
{
|
232 |
add_action( 'switch_theme', 'spicepresstheme_deactivate_message' );
|
@@ -239,6 +238,19 @@ add_action( 'switch_theme', 'spicepresstheme_deactivate_message' );
|
|
239 |
|
240 |
}
|
241 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
243 |
add_action( 'init', 'wpdocs_load_textdomain' );
|
244 |
/**
|
3 |
Plugin Name: SpiceBox
|
4 |
Plugin URI:
|
5 |
Description: Enhances SpiceThemes with extra functionality.
|
6 |
+
Version: 1.1.3
|
7 |
Author: Spicethemes
|
8 |
Author URI: https://github.com
|
9 |
Text Domain: spicebox
|
226 |
|
227 |
|
228 |
|
|
|
229 |
if ('SpicePress' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'SpicePress Child' == $theme->name)
|
230 |
{
|
231 |
add_action( 'switch_theme', 'spicepresstheme_deactivate_message' );
|
238 |
|
239 |
}
|
240 |
}
|
241 |
+
if ( 'Innofit' == $theme->name || 'Innofit Child' == $theme->name)
|
242 |
+
{
|
243 |
+
add_action( 'switch_theme', 'innofittheme_deactivate_message' );
|
244 |
+
function innofittheme_deactivate_message()
|
245 |
+
{
|
246 |
+
$theme = wp_get_theme();
|
247 |
+
if($theme->template!='innofit'){
|
248 |
+
require_once('inc/innofit-feedback-pop-up-form.php');
|
249 |
+
}
|
250 |
+
|
251 |
+
}
|
252 |
+
}
|
253 |
+
|
254 |
|
255 |
add_action( 'init', 'wpdocs_load_textdomain' );
|
256 |
/**
|