@wizishop/angular-components 0.0.222 → 0.0.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/angular-components.scss +385 -379
- package/bundles/wizishop-angular-components.umd.js +3 -1
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/breadcrumbs/breadcrumbs.component.js +4 -2
- package/fesm2015/wizishop-angular-components.js +3 -1
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.223.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.222.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -1080,117 +1080,30 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
1080
1080
|
}
|
|
1081
1081
|
}
|
|
1082
1082
|
}
|
|
1083
|
-
}.wac-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
1087
|
-
@include simple_transition();
|
|
1088
|
-
height: 100%;
|
|
1089
|
-
border-radius: 3px;
|
|
1090
|
-
|
|
1091
|
-
@include media('<tablet') {
|
|
1092
|
-
@include padding(rem(20));
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
&.no-padding {
|
|
1096
|
-
padding: 0;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
&.border-radius {
|
|
1100
|
-
border-radius: 5px;
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
&.sticky {
|
|
1104
|
-
position: sticky;
|
|
1105
|
-
top: 20px;
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
&.noFullHeight {
|
|
1109
|
-
height: auto;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
&.stretch {
|
|
1113
|
-
display: flex;
|
|
1114
|
-
flex-wrap: wrap;
|
|
1115
|
-
.wac-block__content {
|
|
1116
|
-
display: flex;
|
|
1117
|
-
}
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
/*************************/
|
|
1121
|
-
/* Titre INTERNE au bloc */
|
|
1122
|
-
/*************************/
|
|
1123
|
-
&__title {
|
|
1124
|
-
text-transform: none;
|
|
1125
|
-
font-size: rem(16);
|
|
1126
|
-
font-weight: 500;
|
|
1127
|
-
margin-bottom: rem(20);
|
|
1128
|
-
color: $wac-main-text;
|
|
1083
|
+
}.wac-back {
|
|
1084
|
+
width: 40px;
|
|
1085
|
+
height: 40px;
|
|
1129
1086
|
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1087
|
+
&__wrapper {
|
|
1088
|
+
@include flexbox();
|
|
1089
|
+
@include justify-content(center);
|
|
1090
|
+
@include align-items(center);
|
|
1091
|
+
width: 100%;
|
|
1092
|
+
height: 100%;
|
|
1093
|
+
border-radius: 3px;
|
|
1094
|
+
border: 1px solid $wac-border-light;
|
|
1095
|
+
background-color: transparent;
|
|
1096
|
+
transition: border-color 0.3s ease-in-out;
|
|
1133
1097
|
|
|
1134
|
-
&.is-simple {
|
|
1135
|
-
text-transform: none;
|
|
1136
|
-
font-weight: 500;
|
|
1137
|
-
}
|
|
1138
1098
|
i {
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
color: $wac-green-color;
|
|
1143
|
-
}
|
|
1144
|
-
&.warning {
|
|
1145
|
-
color: $wac-orange-color;
|
|
1146
|
-
}
|
|
1147
|
-
&.danger {
|
|
1148
|
-
color: $wac-primary-button;
|
|
1149
|
-
}
|
|
1150
|
-
}
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
|
-
&:hover {
|
|
1154
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
|
-
/*************************/
|
|
1158
|
-
/* Titre EXTERNE au bloc */
|
|
1159
|
-
/*************************/
|
|
1160
|
-
&__external {
|
|
1161
|
-
padding: 0;
|
|
1162
|
-
background: transparent;
|
|
1163
|
-
box-shadow: none;
|
|
1164
|
-
height: calc(100% - 60px);
|
|
1165
|
-
transition: none;
|
|
1166
|
-
|
|
1167
|
-
.wac-block__title {
|
|
1168
|
-
font-size: 1.875rem;
|
|
1169
|
-
margin-bottom: 1.5rem;
|
|
1170
|
-
margin-left: 10px;
|
|
1171
|
-
line-height: 1.5625rem;
|
|
1172
|
-
margin-top: 0.625rem;
|
|
1173
|
-
font-weight: 400;
|
|
1174
|
-
color: $wac-block-color;
|
|
1175
|
-
&.is-simple {
|
|
1176
|
-
text-transform: none;
|
|
1177
|
-
font-weight: 500;
|
|
1178
|
-
}
|
|
1179
|
-
}
|
|
1180
|
-
|
|
1181
|
-
.wac-block__content {
|
|
1182
|
-
background-color: $wac-block-color-background;
|
|
1183
|
-
padding: 1.875rem;
|
|
1184
|
-
box-shadow: 0 0.125rem 0.3125rem rgba(45, 62, 85, 0.1);
|
|
1185
|
-
transition: none;
|
|
1186
|
-
height: 100%;
|
|
1187
|
-
&:hover {
|
|
1188
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
1189
|
-
}
|
|
1099
|
+
color: $wac-second-color;
|
|
1100
|
+
font-size: 11px;
|
|
1101
|
+
line-height: 14px;
|
|
1190
1102
|
}
|
|
1191
1103
|
|
|
1192
1104
|
&:hover {
|
|
1193
|
-
|
|
1105
|
+
border-color: $wac-back-border-hover;
|
|
1106
|
+
transition: border-color 0.3s ease-in-out;
|
|
1194
1107
|
}
|
|
1195
1108
|
}
|
|
1196
1109
|
}
|
|
@@ -1213,8 +1126,10 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
1213
1126
|
border-radius: 3px;
|
|
1214
1127
|
|
|
1215
1128
|
@include media('<tablet') {
|
|
1216
|
-
|
|
1217
|
-
|
|
1129
|
+
&:not(.no-responsive) {
|
|
1130
|
+
max-width: 100%;
|
|
1131
|
+
overflow: hidden;
|
|
1132
|
+
}
|
|
1218
1133
|
}
|
|
1219
1134
|
|
|
1220
1135
|
&__wrapper {
|
|
@@ -1223,8 +1138,10 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
1223
1138
|
align-items: center;
|
|
1224
1139
|
|
|
1225
1140
|
@include media('<tablet') {
|
|
1226
|
-
|
|
1227
|
-
|
|
1141
|
+
:not(.no-responsive) & {
|
|
1142
|
+
width: auto;
|
|
1143
|
+
overflow-x: scroll;
|
|
1144
|
+
}
|
|
1228
1145
|
}
|
|
1229
1146
|
}
|
|
1230
1147
|
|
|
@@ -1260,11 +1177,13 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
1260
1177
|
}
|
|
1261
1178
|
}
|
|
1262
1179
|
@include media('<tablet') {
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1180
|
+
:not(.no-responsive) & {
|
|
1181
|
+
width: auto;
|
|
1182
|
+
min-width: unset;
|
|
1183
|
+
max-width: unset;
|
|
1184
|
+
.name {
|
|
1185
|
+
white-space: nowrap;
|
|
1186
|
+
}
|
|
1268
1187
|
}
|
|
1269
1188
|
}
|
|
1270
1189
|
.round {
|
|
@@ -1941,115 +1860,174 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
1941
1860
|
}
|
|
1942
1861
|
|
|
1943
1862
|
}
|
|
1944
|
-
.wac-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
}
|
|
1962
|
-
|
|
1963
|
-
@include media('<desktop') {
|
|
1964
|
-
padding: 30px;
|
|
1863
|
+
.wac-field-checkbox {
|
|
1864
|
+
&.disable-wt {
|
|
1865
|
+
.wac-field-checkbox__row {
|
|
1866
|
+
display: flex;
|
|
1867
|
+
width: 100%;
|
|
1868
|
+
}
|
|
1869
|
+
.is-checkradio[type='checkbox'] {
|
|
1870
|
+
& + label {
|
|
1871
|
+
white-space: normal;
|
|
1872
|
+
line-height: 1.4;
|
|
1873
|
+
padding: 0;
|
|
1874
|
+
> span {
|
|
1875
|
+
margin: 0 0 0 30px;
|
|
1876
|
+
transform: translateY(-4px);
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1965
1880
|
}
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1881
|
+
&__row {
|
|
1882
|
+
position: relative;
|
|
1883
|
+
min-width: 100%;
|
|
1884
|
+
margin: 0;
|
|
1969
1885
|
}
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1886
|
+
&--nowrap {
|
|
1887
|
+
display: inline-block;
|
|
1888
|
+
width: auto;
|
|
1889
|
+
min-width: 0;
|
|
1890
|
+
margin: 0 10px 10px 0;
|
|
1891
|
+
.field {
|
|
1892
|
+
&__row {
|
|
1893
|
+
width: auto;
|
|
1894
|
+
display: inline-block;
|
|
1895
|
+
margin: 0;
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1973
1898
|
}
|
|
1974
1899
|
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
margin:
|
|
1900
|
+
input[type='text'] {
|
|
1901
|
+
height: 40px;
|
|
1902
|
+
max-height: 40px;
|
|
1903
|
+
padding: 0 20px;
|
|
1904
|
+
line-height: 40px;
|
|
1905
|
+
border: 1px solid $wac-border-form;
|
|
1906
|
+
border-radius: 3px;
|
|
1907
|
+
margin: 15px 0 10px !important;
|
|
1908
|
+
font-size: rem(14) !important;
|
|
1909
|
+
color: $wac-main-text;
|
|
1910
|
+
&:focus {
|
|
1911
|
+
border-color: $wac-wizishop-blue !important;
|
|
1912
|
+
box-shadow: 0px 0px 4px $wac-checkbox-shadow !important;
|
|
1913
|
+
&::-webkit-input-placeholder {
|
|
1914
|
+
/* Chrome/Opera/Safari */
|
|
1915
|
+
opacity: 0;
|
|
1916
|
+
}
|
|
1917
|
+
&::-moz-placeholder {
|
|
1918
|
+
/* Firefox 19+ */
|
|
1919
|
+
opacity: 0;
|
|
1920
|
+
}
|
|
1921
|
+
&:-ms-input-placeholder {
|
|
1922
|
+
/* IE 10+ */
|
|
1923
|
+
opacity: 0;
|
|
1924
|
+
}
|
|
1925
|
+
&:-moz-placeholder {
|
|
1926
|
+
/* Firefox 18- */
|
|
1927
|
+
opacity: 0;
|
|
1928
|
+
}
|
|
1929
|
+
}
|
|
1983
1930
|
}
|
|
1931
|
+
&.alone {
|
|
1932
|
+
.is-checkradio[type='checkbox'] {
|
|
1933
|
+
& + label {
|
|
1934
|
+
padding-left: 9px;
|
|
1935
|
+
margin-right: 0px;
|
|
1984
1936
|
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1937
|
+
&:before {
|
|
1938
|
+
border-width: 1px;
|
|
1939
|
+
width: 16px;
|
|
1940
|
+
height: 16px;
|
|
1941
|
+
border-radius: 2px;
|
|
1942
|
+
}
|
|
1943
|
+
}
|
|
1944
|
+
&:checked + label {
|
|
1945
|
+
&:after {
|
|
1946
|
+
top: 7px;
|
|
1947
|
+
transform: scale(1.1) translateY(1px) translateX(6px) rotate(45deg);
|
|
1948
|
+
}
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1993
1951
|
}
|
|
1994
1952
|
|
|
1995
|
-
.
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
1953
|
+
.is-checkradio[type='checkbox'] {
|
|
1954
|
+
outline: 0 !important;
|
|
1955
|
+
top: 0;
|
|
1956
|
+
& + label {
|
|
1957
|
+
font-size: rem(14);
|
|
1958
|
+
line-height: 0;
|
|
1959
|
+
color: $wac-input-radio-color-label;
|
|
1960
|
+
white-space: nowrap;
|
|
1961
|
+
padding: 0 8px;
|
|
1962
|
+
margin-right: 0;
|
|
1963
|
+
outline: 0 !important;
|
|
1964
|
+
&:before {
|
|
1965
|
+
width: 16px;
|
|
1966
|
+
height: 16px;
|
|
1967
|
+
border: 1px solid $wac-border-color;
|
|
1968
|
+
top: 0;
|
|
1969
|
+
transition: all 0.3s ease-in-out;
|
|
1970
|
+
}
|
|
1971
|
+
&:after {
|
|
1972
|
+
top: 2.3px !important;
|
|
1973
|
+
left: 3px !important;
|
|
1974
|
+
width: 10px;
|
|
1975
|
+
height: 12px;
|
|
1976
|
+
border: none !important;
|
|
1977
|
+
background: transparent
|
|
1978
|
+
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='check' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16 fa-5x'%3E%3Cpath fill='%23ffffff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E")
|
|
1979
|
+
center center / 8px 8px no-repeat;
|
|
1980
|
+
transform: scale(1) translateY(0px) translateX(0px) rotate(0deg) !important;
|
|
1981
|
+
transition: all 0.3s ease-in-out;
|
|
1982
|
+
}
|
|
2010
1983
|
span {
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
1984
|
+
margin: 0 0 0 rem(16);
|
|
1985
|
+
display: inline-block;
|
|
1986
|
+
}
|
|
1987
|
+
&:hover,
|
|
1988
|
+
&:focus {
|
|
1989
|
+
&:before {
|
|
1990
|
+
border-color: $wac-input-active-color !important;
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
&:before,
|
|
1994
|
+
&:after {
|
|
1995
|
+
outline: 0 !important;
|
|
2017
1996
|
}
|
|
2018
1997
|
}
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
1998
|
+
&:hover {
|
|
1999
|
+
& + label {
|
|
2000
|
+
color: $wac-input-radio-color-active-label;
|
|
2001
|
+
&:before {
|
|
2002
|
+
border-color: $wac-input-active-color !important;
|
|
2003
|
+
}
|
|
2004
|
+
&:after {
|
|
2005
|
+
border-color: $wac-white !important;
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
&:not([disabled]) {
|
|
2009
|
+
& + label {
|
|
2010
|
+
&:before {
|
|
2011
|
+
border-color: $wac-input-active-color !important;
|
|
2012
|
+
}
|
|
2013
|
+
}
|
|
2014
|
+
}
|
|
2026
2015
|
}
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
margin: 0;
|
|
2016
|
+
&:checked + label {
|
|
2017
|
+
color: $wac-input-radio-color-active-label;
|
|
2018
|
+
&:before {
|
|
2019
|
+
border: 1px solid $wac-input-active-color;
|
|
2020
|
+
background-color: $wac-input-active-color;
|
|
2021
|
+
transition: all 0.3s ease-in-out;
|
|
2022
|
+
}
|
|
2023
|
+
&:after {
|
|
2024
|
+
left: 7px;
|
|
2025
|
+
top: 8px;
|
|
2026
|
+
transition: all 0.3s ease-in-out;
|
|
2027
|
+
}
|
|
2040
2028
|
}
|
|
2041
2029
|
}
|
|
2042
2030
|
|
|
2043
|
-
.package-subtitle {
|
|
2044
|
-
margin: 10px 0 30px;
|
|
2045
|
-
}
|
|
2046
|
-
|
|
2047
|
-
.link-bottom {
|
|
2048
|
-
margin: 0;
|
|
2049
|
-
display: flex;
|
|
2050
|
-
justify-content: center;
|
|
2051
|
-
width: 100%;
|
|
2052
|
-
}
|
|
2053
2031
|
}
|
|
2054
2032
|
.wac-state {
|
|
2055
2033
|
width: 12px;
|
|
@@ -4037,30 +4015,117 @@ span.wac-tooltip {
|
|
|
4037
4015
|
}
|
|
4038
4016
|
}
|
|
4039
4017
|
}
|
|
4040
|
-
.wac-
|
|
4041
|
-
|
|
4042
|
-
|
|
4018
|
+
.wac-block {
|
|
4019
|
+
background-color: $white;
|
|
4020
|
+
@include padding(rem(30));
|
|
4021
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
4022
|
+
@include simple_transition();
|
|
4023
|
+
height: 100%;
|
|
4024
|
+
border-radius: 3px;
|
|
4043
4025
|
|
|
4044
|
-
|
|
4045
|
-
@include
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4026
|
+
@include media('<tablet') {
|
|
4027
|
+
@include padding(rem(20));
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
&.no-padding {
|
|
4031
|
+
padding: 0;
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
&.border-radius {
|
|
4035
|
+
border-radius: 5px;
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
&.sticky {
|
|
4039
|
+
position: sticky;
|
|
4040
|
+
top: 20px;
|
|
4041
|
+
}
|
|
4054
4042
|
|
|
4043
|
+
&.noFullHeight {
|
|
4044
|
+
height: auto;
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
&.stretch {
|
|
4048
|
+
display: flex;
|
|
4049
|
+
flex-wrap: wrap;
|
|
4050
|
+
.wac-block__content {
|
|
4051
|
+
display: flex;
|
|
4052
|
+
}
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
/*************************/
|
|
4056
|
+
/* Titre INTERNE au bloc */
|
|
4057
|
+
/*************************/
|
|
4058
|
+
&__title {
|
|
4059
|
+
text-transform: none;
|
|
4060
|
+
font-size: rem(16);
|
|
4061
|
+
font-weight: 500;
|
|
4062
|
+
margin-bottom: rem(20);
|
|
4063
|
+
color: $wac-main-text;
|
|
4064
|
+
|
|
4065
|
+
&.no-uppercase {
|
|
4066
|
+
text-transform: none;
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
&.is-simple {
|
|
4070
|
+
text-transform: none;
|
|
4071
|
+
font-weight: 500;
|
|
4072
|
+
}
|
|
4055
4073
|
i {
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4074
|
+
font-size: 16px;
|
|
4075
|
+
margin: 0 0 0 8px;
|
|
4076
|
+
&.success {
|
|
4077
|
+
color: $wac-green-color;
|
|
4078
|
+
}
|
|
4079
|
+
&.warning {
|
|
4080
|
+
color: $wac-orange-color;
|
|
4081
|
+
}
|
|
4082
|
+
&.danger {
|
|
4083
|
+
color: $wac-primary-button;
|
|
4084
|
+
}
|
|
4085
|
+
}
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
&:hover {
|
|
4089
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
/*************************/
|
|
4093
|
+
/* Titre EXTERNE au bloc */
|
|
4094
|
+
/*************************/
|
|
4095
|
+
&__external {
|
|
4096
|
+
padding: 0;
|
|
4097
|
+
background: transparent;
|
|
4098
|
+
box-shadow: none;
|
|
4099
|
+
height: calc(100% - 60px);
|
|
4100
|
+
transition: none;
|
|
4101
|
+
|
|
4102
|
+
.wac-block__title {
|
|
4103
|
+
font-size: 1.875rem;
|
|
4104
|
+
margin-bottom: 1.5rem;
|
|
4105
|
+
margin-left: 10px;
|
|
4106
|
+
line-height: 1.5625rem;
|
|
4107
|
+
margin-top: 0.625rem;
|
|
4108
|
+
font-weight: 400;
|
|
4109
|
+
color: $wac-block-color;
|
|
4110
|
+
&.is-simple {
|
|
4111
|
+
text-transform: none;
|
|
4112
|
+
font-weight: 500;
|
|
4113
|
+
}
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
.wac-block__content {
|
|
4117
|
+
background-color: $wac-block-color-background;
|
|
4118
|
+
padding: 1.875rem;
|
|
4119
|
+
box-shadow: 0 0.125rem 0.3125rem rgba(45, 62, 85, 0.1);
|
|
4120
|
+
transition: none;
|
|
4121
|
+
height: 100%;
|
|
4122
|
+
&:hover {
|
|
4123
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
4124
|
+
}
|
|
4059
4125
|
}
|
|
4060
4126
|
|
|
4061
4127
|
&:hover {
|
|
4062
|
-
|
|
4063
|
-
transition: border-color 0.3s ease-in-out;
|
|
4128
|
+
box-shadow: none;
|
|
4064
4129
|
}
|
|
4065
4130
|
}
|
|
4066
4131
|
}
|
|
@@ -6090,174 +6155,115 @@ h4.wac-h4 {
|
|
|
6090
6155
|
color: $wac-second-color;
|
|
6091
6156
|
}
|
|
6092
6157
|
}
|
|
6093
|
-
.wac-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
transform: translateY(-4px);
|
|
6107
|
-
}
|
|
6108
|
-
}
|
|
6109
|
-
}
|
|
6158
|
+
.wac-card-price {
|
|
6159
|
+
width: 100%;
|
|
6160
|
+
padding: 30px;
|
|
6161
|
+
border-radius: 3px;
|
|
6162
|
+
background-color: $wac-white;
|
|
6163
|
+
display: flex;
|
|
6164
|
+
flex-direction: column;
|
|
6165
|
+
border: 1px solid $wac-white;
|
|
6166
|
+
|
|
6167
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
6168
|
+
|
|
6169
|
+
&.selected {
|
|
6170
|
+
border: 1px solid $wac-tag-success;
|
|
6110
6171
|
}
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
margin: 0;
|
|
6172
|
+
|
|
6173
|
+
&:hover {
|
|
6174
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
6115
6175
|
}
|
|
6116
|
-
|
|
6117
|
-
|
|
6118
|
-
|
|
6119
|
-
min-width: 0;
|
|
6120
|
-
margin: 0 10px 10px 0;
|
|
6121
|
-
.field {
|
|
6122
|
-
&__row {
|
|
6123
|
-
width: auto;
|
|
6124
|
-
display: inline-block;
|
|
6125
|
-
margin: 0;
|
|
6126
|
-
}
|
|
6127
|
-
}
|
|
6176
|
+
|
|
6177
|
+
@include media('<desktop') {
|
|
6178
|
+
padding: 30px;
|
|
6128
6179
|
}
|
|
6129
6180
|
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
max-height: 40px;
|
|
6133
|
-
padding: 0 20px;
|
|
6134
|
-
line-height: 40px;
|
|
6135
|
-
border: 1px solid $wac-border-form;
|
|
6136
|
-
border-radius: 3px;
|
|
6137
|
-
margin: 15px 0 10px !important;
|
|
6138
|
-
font-size: rem(14) !important;
|
|
6139
|
-
color: $wac-main-text;
|
|
6140
|
-
&:focus {
|
|
6141
|
-
border-color: $wac-wizishop-blue !important;
|
|
6142
|
-
box-shadow: 0px 0px 4px $wac-checkbox-shadow !important;
|
|
6143
|
-
&::-webkit-input-placeholder {
|
|
6144
|
-
/* Chrome/Opera/Safari */
|
|
6145
|
-
opacity: 0;
|
|
6146
|
-
}
|
|
6147
|
-
&::-moz-placeholder {
|
|
6148
|
-
/* Firefox 19+ */
|
|
6149
|
-
opacity: 0;
|
|
6150
|
-
}
|
|
6151
|
-
&:-ms-input-placeholder {
|
|
6152
|
-
/* IE 10+ */
|
|
6153
|
-
opacity: 0;
|
|
6154
|
-
}
|
|
6155
|
-
&:-moz-placeholder {
|
|
6156
|
-
/* Firefox 18- */
|
|
6157
|
-
opacity: 0;
|
|
6158
|
-
}
|
|
6159
|
-
}
|
|
6181
|
+
@include media('<tablet') {
|
|
6182
|
+
padding: 20px;
|
|
6160
6183
|
}
|
|
6161
|
-
&.alone {
|
|
6162
|
-
.is-checkradio[type='checkbox'] {
|
|
6163
|
-
& + label {
|
|
6164
|
-
padding-left: 9px;
|
|
6165
|
-
margin-right: 0px;
|
|
6166
6184
|
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
width: 16px;
|
|
6170
|
-
height: 16px;
|
|
6171
|
-
border-radius: 2px;
|
|
6172
|
-
}
|
|
6173
|
-
}
|
|
6174
|
-
&:checked + label {
|
|
6175
|
-
&:after {
|
|
6176
|
-
top: 7px;
|
|
6177
|
-
transform: scale(1.1) translateY(1px) translateX(6px) rotate(45deg);
|
|
6178
|
-
}
|
|
6179
|
-
}
|
|
6180
|
-
}
|
|
6185
|
+
.cta {
|
|
6186
|
+
min-height: 40px;
|
|
6181
6187
|
}
|
|
6182
6188
|
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6203
|
-
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6189
|
+
> strong {
|
|
6190
|
+
font-size: rem(40);
|
|
6191
|
+
line-height: rem(47);
|
|
6192
|
+
text-align: center;
|
|
6193
|
+
display: block;
|
|
6194
|
+
width: 100%;
|
|
6195
|
+
font-weight: 600;
|
|
6196
|
+
margin: 0 0 -5px;
|
|
6197
|
+
}
|
|
6198
|
+
|
|
6199
|
+
> p {
|
|
6200
|
+
font-size: rem(20);
|
|
6201
|
+
text-transform: uppercase;
|
|
6202
|
+
margin: 0 0 20px;
|
|
6203
|
+
text-align: center;
|
|
6204
|
+
display: block;
|
|
6205
|
+
width: 100%;
|
|
6206
|
+
font-weight: 600;
|
|
6207
|
+
}
|
|
6208
|
+
|
|
6209
|
+
.price {
|
|
6210
|
+
display: flex;
|
|
6211
|
+
align-items: flex-end;
|
|
6212
|
+
width: 100%;
|
|
6213
|
+
justify-content: center;
|
|
6214
|
+
position: relative;
|
|
6215
|
+
color: $wac-tag-success;
|
|
6216
|
+
margin: 0 0 5px;
|
|
6217
|
+
|
|
6218
|
+
.amount {
|
|
6219
|
+
font-size: rem(50);
|
|
6220
|
+
font-weight: 600;
|
|
6221
|
+
margin: 0 5px 0 0;
|
|
6222
|
+
position: relative;
|
|
6223
|
+
line-height: 1;
|
|
6213
6224
|
span {
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
border-color: $wac-input-active-color !important;
|
|
6221
|
-
}
|
|
6222
|
-
}
|
|
6223
|
-
&:before,
|
|
6224
|
-
&:after {
|
|
6225
|
-
outline: 0 !important;
|
|
6225
|
+
position: absolute;
|
|
6226
|
+
top: 5px;
|
|
6227
|
+
left: 100%;
|
|
6228
|
+
margin: 0 0 0 3px;
|
|
6229
|
+
display: block;
|
|
6230
|
+
font-size: rem(20);
|
|
6226
6231
|
}
|
|
6227
6232
|
}
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6235
|
-
border-color: $wac-white !important;
|
|
6236
|
-
}
|
|
6237
|
-
}
|
|
6238
|
-
&:not([disabled]) {
|
|
6239
|
-
& + label {
|
|
6240
|
-
&:before {
|
|
6241
|
-
border-color: $wac-input-active-color !important;
|
|
6242
|
-
}
|
|
6243
|
-
}
|
|
6244
|
-
}
|
|
6233
|
+
|
|
6234
|
+
.month {
|
|
6235
|
+
font-size: rem(20);
|
|
6236
|
+
margin: 0;
|
|
6237
|
+
font-weight: 500;
|
|
6238
|
+
line-height: 1;
|
|
6239
|
+
transform: translateY(-5px);
|
|
6245
6240
|
}
|
|
6246
|
-
|
|
6247
|
-
|
|
6248
|
-
|
|
6249
|
-
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
|
|
6241
|
+
}
|
|
6242
|
+
|
|
6243
|
+
.subtitle, .package-subtitle {
|
|
6244
|
+
font-size: rem(12);
|
|
6245
|
+
color: $wac-subtitle-color;
|
|
6246
|
+
margin: 0 0 30px;
|
|
6247
|
+
text-align: center;
|
|
6248
|
+
font-style: italic;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
.subtitle {
|
|
6252
|
+
&:last-child {
|
|
6253
|
+
margin: 0;
|
|
6258
6254
|
}
|
|
6259
6255
|
}
|
|
6260
6256
|
|
|
6257
|
+
.package-subtitle {
|
|
6258
|
+
margin: 10px 0 30px;
|
|
6259
|
+
}
|
|
6260
|
+
|
|
6261
|
+
.link-bottom {
|
|
6262
|
+
margin: 0;
|
|
6263
|
+
display: flex;
|
|
6264
|
+
justify-content: center;
|
|
6265
|
+
width: 100%;
|
|
6266
|
+
}
|
|
6261
6267
|
}
|
|
6262
6268
|
.wac-filters {
|
|
6263
6269
|
width: 100%;
|