gatsby-matrix-theme 10.0.2 → 10.0.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ ## [10.0.4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v10.0.3...v10.0.4) (2022-12-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update prettyLink ([c601d50](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/c601d502d1817916e711358a0a1e1eea7cdae59e))
7
+
8
+
9
+ ### Config
10
+
11
+ * update themes ([a6c3803](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/a6c3803cdcd71a9ded0849bbe2e13f58b6d58143))
12
+
13
+
14
+ * Merge branch 'tm-3150' into 'master' ([bd706e3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/bd706e34b7be69e4e346bbe6eefe8c6e478eb242))
15
+
16
+ ## [10.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v10.0.2...v10.0.3) (2022-12-01)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * payment method cards images ([a995e16](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/a995e162fd1b8544f102c03c30c456d3309c8408))
22
+ * payment method cards images ([1e9da42](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/1e9da42815728285c9d7420619cce267e6a0a8f8))
23
+
1
24
  ## [10.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v10.0.1...v10.0.2) (2022-12-01)
2
25
 
3
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "10.0.2",
3
+ "version": "10.0.4",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "gatsby": "^4.20.0",
27
- "gatsby-core-theme": "17.0.0",
27
+ "gatsby-core-theme": "17.0.2",
28
28
  "gatsby-plugin-sharp": "^4.10.2",
29
29
  "gatsby-plugin-sitemap": "^3.3.0",
30
30
  "gatsby-transformer-sharp": "^4.10.0",
@@ -8,7 +8,7 @@ import Link from 'gatsby-core-theme/src/hooks/link';
8
8
 
9
9
  import styles from './table.module.scss';
10
10
 
11
- const CasinosTable = ({ module }) => {
11
+ const CasinosTable = ({ module, page }) => {
12
12
  const { translations } = useContext(Context);
13
13
  const { items } = module || {};
14
14
 
@@ -53,7 +53,7 @@ const CasinosTable = ({ module }) => {
53
53
  </td>
54
54
  <td style={{ textAlign: 'left' }}>
55
55
  <a
56
- href={prettyTracker(item.relation)}
56
+ href={prettyTracker(item.relation, 'main', false, page?.template)}
57
57
  className="table-operator-card-gtm btn-cta"
58
58
  target="_blank"
59
59
  rel="noreferrer"
@@ -75,4 +75,7 @@ CasinosTable.propTypes = {
75
75
  module: PropTypes.shape({
76
76
  items: PropTypes.arrayOf({}),
77
77
  }).isRequired,
78
+ page: PropTypes.shape({
79
+ template: PropTypes.string,
80
+ }),
78
81
  };
@@ -20,12 +20,13 @@ const PaymentMethodCard = ({
20
20
  item,
21
21
  showTitle = true,
22
22
  showDesc = true,
23
- width,
24
- height,
23
+ width = 150,
24
+ height = 150,
25
25
  showRating = false,
26
26
  }) => {
27
27
  const { title, path, relation, sections } = item;
28
- const logUrlObject = relation?.logo_object;
28
+
29
+ const imageObject = relation?.standardised_logo_filename_object || relation?.logo_filename_object;
29
30
  const { translations } = useContext(Context) || {};
30
31
  const StarRating =
31
32
  showRating &&
@@ -41,10 +42,10 @@ const PaymentMethodCard = ({
41
42
  >
42
43
  <LazyImage
43
44
  width={width}
44
- height={height}
45
45
  className={styles.logo}
46
- src={imagePrettyUrl(relation?.logo)}
47
- alt={getAltText(logUrlObject, title)}
46
+ height={height}
47
+ src={imagePrettyUrl(imageObject?.filename, width, height)}
48
+ alt={getAltText(imageObject, title)}
48
49
  />
49
50
  </Link>
50
51
  {showTitle && (
@@ -84,7 +85,10 @@ PaymentMethodCard.propTypes = {
84
85
  relation: PropTypes.shape({
85
86
  games_count: PropTypes.number,
86
87
  logo: PropTypes.string,
87
- logo_object: PropTypes.shape({
88
+ logo_filename_object: PropTypes.shape({
89
+ alt: PropTypes.string,
90
+ }),
91
+ standardised_logo_filename_object: PropTypes.shape({
88
92
  alt: PropTypes.string,
89
93
  }),
90
94
  rating: PropTypes.string,
@@ -9,11 +9,17 @@
9
9
  height: 100%;
10
10
  .header{
11
11
  @include flex-direction(column);
12
+
13
+ a:first-child {
14
+ height: 6rem;
15
+ }
16
+
12
17
  .links{
13
18
  @include flex-align(center, center);
19
+
14
20
  .logo{
15
- max-width: 17.9rem;
16
- max-height: 4rem;
21
+ max-height: 5rem;
22
+ width: auto;
17
23
  margin-bottom: 1rem;
18
24
  }
19
25
  .title{
@@ -14,7 +14,7 @@ const OperatorBonuses = ({ page, operator }) => {
14
14
  const onliner = getBonus('main', operator);
15
15
  const { min_deposit, currency } = operator?.bonus;
16
16
  const { deposit_wagering } = operator;
17
- const prettyLink = prettyTracker(operator);
17
+ const prettyLink = prettyTracker(operator, 'main', false, page?.template);
18
18
  const status = operator?.status;
19
19
  const isPlaceholder = status === 'coming_soon' || page.extra_fields.operator_is_placeholder == 1;
20
20
  const isInoperative = status === 'inactive' || page.extra_fields.operator_is_inoperative == 1;
@@ -25,7 +25,7 @@ const OperatorSummary = ({
25
25
  operatorData = page?.relation;
26
26
  }
27
27
 
28
- const prettyLink = prettyTracker(operatorData);
28
+ const prettyLink = prettyTracker(operatorData, 'main', false, page.template);
29
29
 
30
30
  const bgImg = getExtraField(page?.extra_fields, 'summary_background')
31
31
  ? imagePrettyUrl(getExtraField(page?.extra_fields, 'summary_background'))
@@ -78,13 +78,14 @@ OperatorSummary.propTypes = {
78
78
  extra_fields: PropTypes.shape({
79
79
  summary: PropTypes.string,
80
80
  summary_background: PropTypes.string,
81
- related_operator: PropTypes.objectOf(PropTypes.object),
81
+ related_operator: PropTypes.objectOf({}),
82
82
  }),
83
+ template: PropTypes.string,
83
84
  relation: PropTypes.shape({
84
85
  name: PropTypes.string,
85
86
  logo_url: PropTypes.string,
86
- bonus: PropTypes.objectOf(PropTypes.object),
87
- affiliate_games: PropTypes.objectOf(PropTypes.object),
87
+ bonus: PropTypes.objectOf({}),
88
+ affiliate_games: PropTypes.objectOf({}),
88
89
  status: PropTypes.string,
89
90
  }),
90
91
  name: PropTypes.string,
@@ -21,7 +21,7 @@ const Index = ({ page }) => {
21
21
  const { logo_url, status } = operator;
22
22
  const { translations } = useContext(Context) || {};
23
23
  const isMobile = isMobileDevice();
24
- const prettyLink = prettyTracker(operator);
24
+ const prettyLink = prettyTracker(operator, 'main', false, page.template);
25
25
  let playNow = translate(translations, 'play_now', 'Play now');
26
26
  const bonus = getBonus('main', operator);
27
27
  const logUrlObject = operator?.logo_url_object;
@@ -36,6 +36,7 @@ export default function Row({
36
36
  className,
37
37
  itemRefs,
38
38
  endLink = false,
39
+ template,
39
40
  }) {
40
41
  const result = item.authorName?.split(/\s+/);
41
42
  const itemName = item.bonus?.operator_name || item.name;
@@ -53,7 +54,7 @@ export default function Row({
53
54
  ].filter(Boolean);
54
55
  }
55
56
  const trackerType = tracker.toLowerCase().replace(' ', '_');
56
- const prettyLink = prettyTracker(item, trackerType);
57
+ const prettyLink = prettyTracker(item, trackerType, false, template);
57
58
  const { ribbons } = item;
58
59
  const hasRibbon = ribbons && ribbons.length > 0;
59
60
  const imageObject = item?.standardised_logo_url_object || item?.logo_url_object;
@@ -105,7 +105,7 @@ const Modules = ({ module, page, pageContext, index, exclOperator }) => {
105
105
  operator: module?.value,
106
106
  logo: module?.value?.logo_url,
107
107
  hasLink: true,
108
- prettyLink: prettyTracker(module?.value),
108
+ prettyLink: prettyTracker(module?.value, 'main', false, page?.template),
109
109
  }
110
110
  : {};
111
111
 
@@ -28,6 +28,7 @@ const TopList = ({
28
28
  initItemsCount={toplist.num_items_initial_load}
29
29
  loadItemsCount={toplist.num_items_load_more}
30
30
  pageTemplate={page?.template}
31
+ template={page?.template}
31
32
  />
32
33
  </div>
33
34
  ));
@@ -22,6 +22,7 @@ export default function List({
22
22
  modulestyle,
23
23
  themeStyles = {},
24
24
  removeInactiveItems = true,
25
+ template,
25
26
  }) {
26
27
  const initLoadItems = Number(initItemsCount) !== 0 ? Number(initItemsCount) : 10000;
27
28
  const loadingItems = Number(loadItemsCount) !== 0 ? Number(loadItemsCount) : 10000;
@@ -75,6 +76,7 @@ export default function List({
75
76
  className={index + 1 <= initLoadItems ? styles.show : null}
76
77
  key={keygen()}
77
78
  itemRefs={elRefs}
79
+ template={template}
78
80
  />
79
81
  ) : (
80
82
  <Row
@@ -82,6 +84,7 @@ export default function List({
82
84
  item={item}
83
85
  tracker={toplist.tracker}
84
86
  oneliner={toplist.one_liner}
87
+ template={template}
85
88
  />
86
89
  )
87
90
  )}
@@ -120,4 +123,5 @@ List.propTypes = {
120
123
  loadItemsCount: PropTypes.string,
121
124
  pageTemplate: PropTypes.string,
122
125
  removeInactiveItems: PropTypes.bool,
126
+ template: PropTypes.string,
123
127
  };
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunkgatsby_matrix_theme=self.webpackChunkgatsby_matrix_theme||[]).push([[409],{"./src/components/molecules/toplist/row/variant-one.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:function(){return Row}});__webpack_require__("../node_modules/core-js/modules/es.string.split.js"),__webpack_require__("../node_modules/core-js/modules/es.regexp.exec.js"),__webpack_require__("../node_modules/core-js/modules/es.function.name.js"),__webpack_require__("../node_modules/core-js/modules/es.array.filter.js"),__webpack_require__("../node_modules/core-js/modules/es.string.replace.js"),__webpack_require__("../node_modules/core-js/modules/es.array.concat.js"),__webpack_require__("../node_modules/core-js/modules/es.array.map.js"),__webpack_require__("../node_modules/core-js/modules/es.array.slice.js");var react=__webpack_require__("../node_modules/react/index.js"),prop_types=__webpack_require__("../node_modules/prop-types/index.js"),prop_types_default=__webpack_require__.n(prop_types),getters=__webpack_require__("../node_modules/gatsby-core-theme/src/helpers/getters.js"),hooks_link=__webpack_require__("../node_modules/gatsby-core-theme/src/hooks/link/index.js"),HiBadgeCheck=__webpack_require__("../node_modules/@react-icons/all-files/hi/HiBadgeCheck.js"),label=__webpack_require__("../node_modules/gatsby-core-theme/src/components/atoms/label/index.js"),lazy_image=__webpack_require__("../node_modules/gatsby-core-theme/src/hooks/lazy-image/index.js"),one_star=__webpack_require__("../node_modules/gatsby-core-theme/src/components/molecules/star-rating/one-star.js"),selling_points=__webpack_require__("../node_modules/gatsby-core-theme/src/components/atoms/selling-points/index.js"),operator_cta=__webpack_require__("../node_modules/gatsby-core-theme/src/components/atoms/operator-cta/index.js"),tnc=__webpack_require__("../node_modules/gatsby-core-theme/src/components/molecules/tnc/index.js"),bonus=__webpack_require__("../node_modules/gatsby-core-theme/src/components/atoms/bonus/index.js"),MainProvider=__webpack_require__("../node_modules/gatsby-core-theme/src/context/MainProvider.js");__webpack_require__("../node_modules/core-js/modules/es.array.last-index-of.js"),__webpack_require__("../node_modules/gatsby-core-theme/src/helpers/generators.js");var injectStylesIntoStyleTag=__webpack_require__("../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),variant_one_module=__webpack_require__("../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[10].use[1]!../node_modules/sass-loader/dist/cjs.js!../node_modules/sass-resources-loader/lib/loader.js??ruleSet[1].rules[10].use[3]!./src/components/molecules/toplist/row/variant-one.module.scss"),options={insert:"head",singleton:!1},row_variant_one_module=(injectStylesIntoStyleTag_default()(variant_one_module.Z,options),variant_one_module.Z.locals||{});function Row(_ref){var _item$authorName,_item$bonus,_item$extra_fields,_item$extra_fields2,_item$extra_fields3,_item$extra_fields4,item=_ref.item,_ref$tracker=_ref.tracker,tracker=void 0===_ref$tracker?"main":_ref$tracker,_ref$oneliner=_ref.oneliner,oneliner=void 0===_ref$oneliner?"main":_ref$oneliner,_ref$layout=_ref.layout,layout=void 0===_ref$layout?"list":_ref$layout,_ref$number=_ref.number,number=void 0===_ref$number?1:_ref$number,index=_ref.index,_ref$activeAuthor=_ref.activeAuthor,activeAuthor=void 0!==_ref$activeAuthor&&_ref$activeAuthor,_ref$isPPC=_ref.isPPC,isPPC=void 0!==_ref$isPPC&&_ref$isPPC,_ref$showLaunchDate=_ref.showLaunchDate,showLaunchDate=void 0===_ref$showLaunchDate||_ref$showLaunchDate,_ref$showCtaReviewLin=_ref.showCtaReviewLink,showCtaReviewLink=void 0!==_ref$showCtaReviewLin&&_ref$showCtaReviewLin,className=_ref.className,itemRefs=_ref.itemRefs,_ref$endLink=_ref.endLink,endLink=void 0!==_ref$endLink&&_ref$endLink,template=_ref.template,result=null===(_item$authorName=item.authorName)||void 0===_item$authorName?void 0:_item$authorName.split(/\s+/),itemName=(null===(_item$bonus=item.bonus)||void 0===_item$bonus?void 0:_item$bonus.operator_name)||item.name,itemRating=item.rating,reviewPath=item.review_link?"/".concat(item.review_link):item.path||"/",pros=(null===(_item$extra_fields=item.extra_fields)||void 0===_item$extra_fields?void 0:_item$extra_fields.pro_1)||(null===(_item$extra_fields2=item.extra_fields)||void 0===_item$extra_fields2?void 0:_item$extra_fields2.pro_2)||(null===(_item$extra_fields3=item.extra_fields)||void 0===_item$extra_fields3?void 0:_item$extra_fields3.pro_3),translations=((0,react.useContext)(MainProvider._)||{}).translations,tandcEnabled="1"===(null==item||null===(_item$extra_fields4=item.extra_fields)||void 0===_item$extra_fields4?void 0:_item$extra_fields4.terms_and_conditions_text_enabled),sellingPoints=item.selling_points;pros&&(sellingPoints=[item.extra_fields.pro_1,item.extra_fields.pro_2,item.extra_fields.pro_3].filter(Boolean));var trackerType=tracker.toLowerCase().replace(" ","_"),prettyLink=(0,getters.u4)(item,trackerType,!1,template),ribbons=item.ribbons,hasRibbon=ribbons&&ribbons.length>0,imageObject=(null==item?void 0:item.standardised_logo_url_object)||(null==item?void 0:item.logo_url_object),launchDate=function getLaunchDate(foundedDate){if(foundedDate){var arr=foundedDate.split("-");if(3===arr.length)return"".concat(arr[0])}return null}(item.founded);return react.createElement("li",{className:"".concat(className," ").concat(row_variant_one_module.row," ").concat("grid"===layout?row_variant_one_module.grid:""," ").concat(showLaunchDate?row_variant_one_module.launchDate:""," ").concat(tandcEnabled?"":row_variant_one_module.rowNoTandC),ref:function ref(el){return function addToRefs(el,itemNum){el&&itemRefs&&(itemRefs.current[itemNum]=el)}(el,index)}},"grid"===layout&&react.createElement("div",{className:"".concat(row_variant_one_module.numbers," ").concat(row_variant_one_module["num_".concat(number)]),id:"num_".concat(number)},number),hasRibbon&&react.createElement("div",{className:row_variant_one_module.ribbon},ribbons.slice(0,3).map((function(r){return react.createElement(hooks_link.Z,{to:reviewPath,className:"toplist-variant-one-gtm"},react.createElement(label.Z,{title:r,bgColor:(0,getters.tp)(item.extra_fields,"ribbon_color")?(0,getters.tp)(item.extra_fields,"ribbon_color"):"#0000"}))}))),react.createElement("div",{className:row_variant_one_module.casinoDetails},react.createElement("a",{href:prettyLink,"aria-label":itemName,target:"_blank",rel:"noreferrer",className:"toplist-variant-one-gtm logo-cta"},react.createElement(lazy_image.Z,{alt:(0,getters.PY)(imageObject,item.name),src:(0,getters.S7)((null==imageObject?void 0:imageObject.filename)||(null==item?void 0:item.logo_url),80,80),width:80,height:800})),react.createElement("div",null,react.createElement("a",{href:prettyLink,target:"_blank",rel:"noreferrer",className:"toplist-variant-one-gtm name-cta"},itemName),react.createElement(one_star.default,{numOfStars:5,rating:itemRating,showLabel:!0}),!isPPC&&!showCtaReviewLink&&react.createElement(hooks_link.Z,{className:"".concat(row_variant_one_module.reviewLink," toplist-variant-one-gtm"),to:reviewPath},"".concat(itemName," ").concat((0,getters.Iu)(translations,"read_review","Review"))),item.authorName&&activeAuthor&&react.createElement("p",{className:row_variant_one_module.activeAuthor},"by",react.createElement(hooks_link.Z,{to:item.authorPath},"".concat(result[0]," ").concat(result[1].slice(0,1),".")),react.createElement(HiBadgeCheck.l,{color:"blue",size:18})))),react.createElement("a",{href:prettyLink,target:"_blank",rel:"noreferrer",className:"toplist-variant-one-gtm bonus-cta ".concat(row_variant_one_module.bonus," ").concat(showLaunchDate?row_variant_one_module.bonusLaunch:""," ").concat(hasRibbon?row_variant_one_module.withRibbon:"")},react.createElement(bonus.Z,{item:item,tracker:oneliner}),showLaunchDate&&react.createElement("span",null,(0,getters.Iu)(translations,"launch_date","Launch Date"),": ",launchDate)),react.createElement(selling_points.Z,{sellingPoints:sellingPoints,limit:3}),showLaunchDate&&react.createElement("div",{className:row_variant_one_module.launchDate},launchDate&&react.createElement(react.Fragment,null,react.createElement("p",{className:row_variant_one_module.launchDateLabel},(0,getters.Iu)(translations,"launch_date","Launch Date")),react.createElement("p",null,launchDate))),react.createElement("span",{className:row_variant_one_module.ctaAndReview},react.createElement(operator_cta.Z,{operator:item,tracker:tracker,gtmClass:"toplist-operator-cta-gtm"}),!isPPC&&showCtaReviewLink&&react.createElement(hooks_link.Z,{className:"".concat(row_variant_one_module.reviewLink," toplist-variant-one-gtm"),to:reviewPath},"".concat(itemName," ").concat((0,getters.Iu)(translations,"read_review","Review")))),!isPPC&&endLink&&react.createElement(hooks_link.Z,{className:"".concat(row_variant_one_module.reviewLinkEnd," toplist-variant-one-gtm"),to:reviewPath},"".concat(itemName," ").concat((0,getters.Iu)(translations,"read_review","Review"))),tandcEnabled&&react.createElement(tnc.Z,{onlyMobile:"list"===layout,operator:item}))}Row.displayName="Row",Row.propTypes={showLaunchDate:prop_types_default().bool,index:prop_types_default().number,activeAuthor:prop_types_default().bool,className:prop_types_default().string,tracker:prop_types_default().string,oneliner:prop_types_default().string,layout:prop_types_default().oneOf(["list","grid"]),showCtaReviewLink:prop_types_default().bool,endLink:prop_types_default().bool,item:prop_types_default().shape({path:prop_types_default().string,authorName:prop_types_default().string,authorPath:prop_types_default().string,founded:prop_types_default().string,name:prop_types_default().string,logo_url:prop_types_default().string,rating:prop_types_default().string,selling_points:prop_types_default().arrayOf(prop_types_default().string),review_link:prop_types_default().string,one_liners:prop_types_default().shape({main:prop_types_default().shape({one_liner:prop_types_default().string})}),extra_fields:prop_types_default().shape({terms_and_conditions_text_enabled:prop_types_default().string,ribbon_text:prop_types_default().string,ribbon_color:prop_types_default().string,pro_1:prop_types_default().string,pro_2:prop_types_default().string,pro_3:prop_types_default().string}),standardised_logo_url_object:prop_types_default().object,logo_url_object:prop_types_default().object,bonus:prop_types_default().oneOfType([prop_types_default().array,prop_types_default().object]),relation:prop_types_default().shape({rating:prop_types_default().string,name:prop_types_default().string,path:prop_types_default().string,logo_url:prop_types_default().string})}).isRequired,number:prop_types_default().number,isPPC:prop_types_default().bool},Row.__docgenInfo={description:"",methods:[],displayName:"Row",props:{tracker:{defaultValue:{value:"'main'",computed:!1},type:{name:"string"},required:!1,description:""},oneliner:{defaultValue:{value:"'main'",computed:!1},type:{name:"string"},required:!1,description:""},layout:{defaultValue:{value:"'list'",computed:!1},type:{name:"enum",value:[{value:"'list'",computed:!1},{value:"'grid'",computed:!1}]},required:!1,description:""},number:{defaultValue:{value:"1",computed:!1},type:{name:"number"},required:!1,description:""},activeAuthor:{defaultValue:{value:"false",computed:!1},type:{name:"bool"},required:!1,description:""},isPPC:{defaultValue:{value:"false",computed:!1},type:{name:"bool"},required:!1,description:""},showLaunchDate:{defaultValue:{value:"true",computed:!1},type:{name:"bool"},required:!1,description:""},showCtaReviewLink:{defaultValue:{value:"false",computed:!1},type:{name:"bool"},required:!1,description:""},endLink:{defaultValue:{value:"false",computed:!1},type:{name:"bool"},required:!1,description:""},index:{type:{name:"number"},required:!1,description:""},className:{type:{name:"string"},required:!1,description:""},item:{type:{name:"shape",value:{path:{name:"string",required:!1},authorName:{name:"string",required:!1},authorPath:{name:"string",required:!1},founded:{name:"string",required:!1},name:{name:"string",required:!1},logo_url:{name:"string",required:!1},rating:{name:"string",required:!1},selling_points:{name:"arrayOf",value:{name:"string"},required:!1},review_link:{name:"string",required:!1},one_liners:{name:"shape",value:{main:{name:"shape",value:{one_liner:{name:"string",required:!1}},required:!1}},required:!1},extra_fields:{name:"shape",value:{terms_and_conditions_text_enabled:{name:"string",required:!1},ribbon_text:{name:"string",required:!1},ribbon_color:{name:"string",required:!1},pro_1:{name:"string",required:!1},pro_2:{name:"string",required:!1},pro_3:{name:"string",required:!1}},required:!1},standardised_logo_url_object:{name:"object",required:!1},logo_url_object:{name:"object",required:!1},bonus:{name:"union",value:[{name:"array"},{name:"object"}],required:!1},relation:{name:"shape",value:{rating:{name:"string",required:!1},name:{name:"string",required:!1},path:{name:"string",required:!1},logo_url:{name:"string",required:!1}},required:!1}}},required:!0,description:""}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/molecules/toplist/row/variant-one.js"]={name:"Row",docgenInfo:Row.__docgenInfo,path:"src/components/molecules/toplist/row/variant-one.js"})},"../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[10].use[1]!../node_modules/sass-loader/dist/cjs.js!../node_modules/sass-resources-loader/lib/loader.js??ruleSet[1].rules[10].use[3]!./src/components/molecules/toplist/row/variant-one.module.scss":function(module,__webpack_exports__,__webpack_require__){var _node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../node_modules/css-loader/dist/runtime/cssWithMappingToString.js"),_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,".eUiIB97HmqhDwwR7mrfw2A\\=\\={background:#f3f2f2;border-radius:var(--border-radius);position:relative;text-align:center;justify-content:center;align-items:center;padding:3.8rem 2.4rem 3.2rem 2.4rem;display:flex;flex-direction:column;gap:1.7rem}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\={display:grid;grid-template-columns:1.5fr 1.5fr 1fr;column-gap:1rem;padding:0 0 0 2rem;text-align:inherit;row-gap:1.6rem}}@media only screen and (min-width:992px){.eUiIB97HmqhDwwR7mrfw2A\\=\\={grid-template-columns:2.5fr 2fr 2fr .5fr;padding:1.8rem 0 0 2rem}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=.bN1eNvxU40gEanQ9SNWPbw\\=\\={grid-template-columns:1fr 1fr 1fr}}@media only screen and (min-width:992px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=.bN1eNvxU40gEanQ9SNWPbw\\=\\={grid-template-columns:2.5fr 2fr 2fr .8fr .5fr}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= .nz5Qx0QX4R-JAGGTuWctNQ\\=\\={display:none}}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .hkvTWxoOP-8jSrbTJLvRUg\\=\\={position:absolute;left:4rem;top:.2rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .hkvTWxoOP-8jSrbTJLvRUg\\=\\= a{margin-right:1rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .hkvTWxoOP-8jSrbTJLvRUg\\=\\= span{padding:.8rem 1rem;font-size:1rem;color:#08202e;font-weight:700;text-transform:uppercase;background-color:#ffc740 !important;border-radius:var(--border-radius) 0}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= .hkvTWxoOP-8jSrbTJLvRUg\\=\\= span{padding:.5rem 1rem;font-size:1rem}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= .hkvTWxoOP-8jSrbTJLvRUg\\=\\={top:-1rem}}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .Mk3rxjR05i2ekMIlgIqplg\\=\\={color:var(--text-link-color);text-decoration:underline;font-weight:700}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .Mk3rxjR05i2ekMIlgIqplg\\=\\=:hover{color:var(--text-link-color)}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\={width:100%;display:flex;align-items:center;justify-content:flex-start;flex-direction:row;gap:1.6rem}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\={padding-left:1.6rem;width:auto;order:2}}@media only screen and (min-width:1200px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\={padding-left:2.4rem;order:1}}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>a{display:flex;flex:0 0 8rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\= img{width:8rem;height:8rem;border-radius:.8rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>div{display:flex;align-items:flex-start;justify-content:space-between;flex-direction:column;gap:.8rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>div a:first-child{color:#5a4e51;font-weight:700;font-size:14px;line-height:22px}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>div a:first-child:hover{color:#5a4e51}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>div>div{border:0}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>div a:last-child{font-weight:700;font-size:13px;line-height:16px}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\={display:flex;flex-direction:column;gap:.8rem;padding-top:0}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\= p{padding:0}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\= span:last-child{font-weight:700;font-size:16px;line-height:23px;color:#150e06;display:none}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\= span:last-child{display:block}}@media only screen and (min-width:992px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\= span:last-child{display:none}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\=.rtc1MNAqXcMRqNfNPbAu\\+g\\=\\={padding-top:2rem !important}}@media only screen and (min-width:1200px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\=.rtc1MNAqXcMRqNfNPbAu\\+g\\=\\={padding-top:0 !important}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\={grid-column:1/4;order:1;flex-direction:row;justify-content:center;align-items:center;background-color:var(--color-7)}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\=._8T7ZiU9-0Ho\\+s31\\+73TJKg\\=\\={justify-content:space-between;padding:0 1rem}}@media only screen and (min-width:992px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a._2Uq-rUSXp5IbrEQErB8Apw\\=\\={background-color:rgba(0,0,0,0);order:2;grid-column:auto;flex-direction:column;align-items:flex-start;padding-top:0}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= ul{order:3;padding-left:3rem}}@media only screen and (min-width:1200px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= ul{order:3}}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ul li{color:#150e06;text-align:left}.eUiIB97HmqhDwwR7mrfw2A\\=\\= ul li::before{top:.5rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .TAK2PALQiawL-8orJ-xsGg\\=\\={font-weight:700;font-size:16px;line-height:23px;color:#150e06;display:none}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= .TAK2PALQiawL-8orJ-xsGg\\=\\={display:block}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>ul,.eUiIB97HmqhDwwR7mrfw2A\\=\\= .bN1eNvxU40gEanQ9SNWPbw\\=\\={display:flex;align-items:center;justify-content:center}.eUiIB97HmqhDwwR7mrfw2A\\=\\= .bN1eNvxU40gEanQ9SNWPbw\\=\\={flex-direction:row;gap:1rem;font-size:2rem;font-weight:700;color:#150e06;justify-content:center}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= .bN1eNvxU40gEanQ9SNWPbw\\=\\={display:none}}@media only screen and (min-width:1200px){.eUiIB97HmqhDwwR7mrfw2A\\=\\= .bN1eNvxU40gEanQ9SNWPbw\\=\\={display:flex;order:4}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a:not(._2Uq-rUSXp5IbrEQErB8Apw\\=\\=){display:flex;align-items:center;justify-content:center;width:100%;word-break:inherit}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a:not(._2Uq-rUSXp5IbrEQErB8Apw\\=\\=){margin-right:2.4rem;order:4;width:auto}}@media only screen and (min-width:1200px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>a:not(._2Uq-rUSXp5IbrEQErB8Apw\\=\\=){order:4}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=>div:last-child{border-radius:0 0 var(--border-radius) 0;color:var(--color-34);font-size:.8rem;padding:.6rem 1rem;text-align:center}@media only screen and (max-width:991px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>div:last-child p{margin-top:1rem}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>div:last-child{order:5;grid-column:1/4}}@media only screen and (min-width:1200px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=>div:last-child{grid-column:1/6;order:5;background:var(--color-7)}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\={border-radius:1.2rem;padding:2rem 2rem .5rem 2rem;text-align:center;min-height:39rem}@media only screen and (min-width:992px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\={grid-template-columns:1fr}}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\={grid-template-columns:1fr}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .NeNIPpby8Rq5Mpeh\\+k7-qA\\=\\={position:absolute;text-align:center;width:2.4rem;height:2.4rem;background-color:var(--toplist-ranking-base-color);border-radius:.8rem 0 .8rem 0;color:#fff;font-size:1.4rem;line-height:2.4rem;left:0;top:0}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .NeNIPpby8Rq5Mpeh\\+k7-qA\\=\\=.-\\+OCyRCSY7UW4ZyU32dt-g\\=\\={background-color:var(--toplist-ranking-first-color)}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .NeNIPpby8Rq5Mpeh\\+k7-qA\\=\\=.eiaJV0SqBVV5oTcsu1IVuA\\=\\={background-color:var(--toplist-ranking-second-color)}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .NeNIPpby8Rq5Mpeh\\+k7-qA\\=\\=.bFF921IGpeuZhOpfSE3UzQ\\=\\={background-color:var(--toplist-ranking-third-color)}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .KSBSWw7AH\\+MMNYIsJ0CDlw\\=\\={grid-column:1;background:rgba(0,0,0,0)}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\={padding-left:0;height:8.5rem}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\={display:flex;align-items:center;justify-content:space-between;padding-left:0}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._6aOjNZFQtzKx543LGDUwcA\\=\\=>div{width:80%;margin:0 auto}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._2Uq-rUSXp5IbrEQErB8Apw\\=\\={flex-direction:column !important;justify-content:flex-start;background:rgba(0,0,0,0);height:9.3rem}@media only screen and (min-width:768px){.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._2Uq-rUSXp5IbrEQErB8Apw\\=\\={order:unset;grid-column:1}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._2Uq-rUSXp5IbrEQErB8Apw\\=\\=>*{padding-right:0 !important}}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._2Uq-rUSXp5IbrEQErB8Apw\\=\\= a>div{width:100%;text-align:center;display:flex;align-items:center;justify-content:flex-start;flex-direction:column}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._2Uq-rUSXp5IbrEQErB8Apw\\=\\= a>div div:first-child{padding-right:0 !important}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= ._2Uq-rUSXp5IbrEQErB8Apw\\=\\= a.Mk3rxjR05i2ekMIlgIqplg\\=\\={display:none}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .AmuODL0wmVwNSlH0vXxFKA\\=\\={display:flex;align-items:center;justify-content:center;display:flex;flex-direction:column}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .AmuODL0wmVwNSlH0vXxFKA\\=\\= a:first-child{width:90%;margin-top:1rem}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .AmuODL0wmVwNSlH0vXxFKA\\=\\= a:nth-child(2){padding-top:1.5rem;display:inline-block}.eUiIB97HmqhDwwR7mrfw2A\\=\\=.f0dY1Np7jC6uu-dljnBw8A\\=\\= .WISQApTn4Kz6r4ZIsjb22A\\=\\={height:6.25rem}.iFuYQ4No5S1SMdcr\\+23uTw\\=\\={padding-bottom:1.8rem}.pMxgwXnBx9wlYN2-R4rCFg\\=\\={background-color:inherit;order:4;margin-right:2.4rem;display:flex;flex-direction:column}.fcEsY6Hoqq5zJFl9G1y8xQ\\=\\={font-size:10px}.fcEsY6Hoqq5zJFl9G1y8xQ\\=\\=>a{font-size:10px}","",{version:3,sources:["webpack://./src/components/molecules/toplist/row/variant-one.module.scss","webpack://./../node_modules/gatsby-core-theme/src/styles/utils/_media-queries.scss","webpack://./../node_modules/gatsby-core-theme/src/styles/utils/_mixins.scss"],names:[],mappings:"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",sourcesContent:["// Global styles extended in each theme\n\n// Utils\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/typography';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/layout';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/stack-order';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/media-queries';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/icons';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/tooltip';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/loader';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/mixins';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/scrollbar';\n@import '../../../../../../node_modules/gatsby-core-theme/src/styles/utils/animations';\n\n.row {\n background: #f3f2f2;\n border-radius: var(--border-radius);\n position: relative;\n text-align: center;\n justify-content: center;\n align-items: center;\n padding: 3.8rem 2.4rem 3.2rem 2.4rem;\n display: flex;\n flex-direction: column;\n gap: 1.7rem;\n\n @include min(tablet) {\n display: grid;\n grid-template-columns: 1.5fr 1.5fr 1fr;\n column-gap: 1rem;\n padding: 0 0 0 2rem;\n text-align: inherit;\n row-gap: 1.6rem;\n }\n\n @include min(laptop) {\n grid-template-columns: 2.5fr 2fr 2fr 0.5fr;\n padding: 1.8rem 0 0 2rem;\n }\n\n &.launchDate {\n @include min(tablet) {\n grid-template-columns: 1fr 1fr 1fr;\n }\n\n @include min(laptop) {\n grid-template-columns: 2.5fr 2fr 2fr 0.8fr 0.5fr;\n }\n }\n\n .launchDateLabel {\n @include min(tablet) {\n display: none;\n }\n }\n\n .ribbon {\n position: absolute;\n left: 4rem;\n top: 0.2rem;\n\n a {\n margin-right: 1rem;\n }\n\n span {\n padding: 0.8rem 1rem;\n font-size: 1rem;\n color: #08202e;\n font-weight: 700;\n text-transform: uppercase;\n background-color: #ffc740 !important;\n border-radius: var(--border-radius) 0;\n\n @include min(tablet) {\n padding: 0.5rem 1rem;\n font-size: 1rem;\n }\n }\n\n @include min(tablet) {\n top: -1rem;\n }\n }\n\n .reviewLink {\n @include link-color(var(--text-link-color));\n text-decoration: underline;\n font-weight: 700;\n }\n\n .casinoDetails {\n width: 100%;\n @include flex-align(center, flex-start);\n flex-direction: row;\n gap: 1.6rem;\n\n @include min(tablet) {\n padding-left: 1.6rem;\n width: auto;\n order: 2;\n }\n\n @include min(desktop) {\n padding-left: 2.4rem;\n order: 1;\n }\n\n > a {\n display: flex;\n flex: 0 0 8rem;\n }\n\n img {\n width: 8rem;\n height: 8rem;\n border-radius: 0.8rem;\n }\n\n > div {\n @include flex-align(flex-start, space-between);\n flex-direction: column;\n gap: 0.8rem;\n\n a:first-child {\n @include link-color(#5a4e51);\n font-weight: 700;\n font-size: 14px;\n line-height: 22px;\n }\n\n > div {\n border: 0;\n }\n\n a:last-child {\n font-weight: 700;\n font-size: 13px;\n line-height: 16px;\n }\n }\n }\n\n > a.bonus {\n @include flex-direction(column);\n gap: 0.8rem;\n padding-top: 0;\n\n p {\n padding: 0;\n }\n\n span:last-child {\n font-weight: 700;\n font-size: 16px;\n line-height: 23px;\n color: #150e06;\n display: none;\n\n @include min(tablet) {\n display: block;\n }\n\n @include min(laptop) {\n display: none;\n }\n }\n\n &.withRibbon {\n @include min(tablet) {\n padding-top: 2rem !important;\n }\n\n @include min(desktop) {\n padding-top: 0 !important;\n }\n }\n\n @include min(tablet) {\n grid-column: 1/4;\n order: 1;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n background-color: var(--color-7);\n\n &.bonusLaunch {\n justify-content: space-between;\n padding: 0 1rem;\n }\n }\n\n @include min(laptop) {\n background-color: transparent;\n order: 2;\n grid-column: auto;\n flex-direction: column;\n align-items: flex-start;\n padding-top: 0;\n }\n }\n\n ul {\n @include min(tablet) {\n order: 3;\n padding-left: 3rem;\n }\n\n @include min(desktop) {\n order: 3;\n }\n\n li {\n color: #150e06;\n text-align: left;\n\n &::before {\n top: 0.5rem;\n }\n }\n }\n\n .launchDateBonus {\n font-weight: 700;\n font-size: 16px;\n line-height: 23px;\n color: #150e06;\n display: none;\n\n @include min(tablet) {\n display: block;\n }\n }\n\n > ul,\n .launchDate {\n @include flex-align(center, center);\n }\n\n .launchDate {\n flex-direction: row;\n gap: 1rem;\n font-size: 2rem;\n font-weight: 700;\n color: #150e06;\n justify-content: center;\n\n @include min(tablet) {\n display: none;\n }\n\n @include min(desktop) {\n display: flex;\n order: 4;\n }\n }\n\n > a:not(.bonus) {\n @include flex-align(center, center);\n width: 100%;\n word-break: inherit;\n\n @include min(tablet) {\n margin-right: 2.4rem;\n order: 4;\n width: auto;\n }\n\n @include min(desktop) {\n order: 4;\n }\n }\n\n > div:last-child {\n border-radius: 0 0 var(--border-radius) 0;\n color: var(--color-34);\n font-size: 0.8rem;\n padding: 0.6rem 1rem;\n text-align: center;\n\n p {\n @include max(tablet) {\n margin-top: 1rem;\n }\n }\n\n @include min(tablet) {\n order: 5;\n grid-column: 1/4;\n }\n\n @include min(desktop) {\n grid-column: 1/6;\n order: 5;\n background: var(--color-7);\n }\n }\n\n &.grid {\n border-radius: 1.2rem;\n padding: 2rem 2rem 0.5rem 2rem;\n text-align: center;\n min-height: 39rem;\n\n @include min(laptop) {\n grid-template-columns: 1fr;\n }\n @include min(tablet) {\n grid-template-columns: 1fr;\n }\n\n .numbers {\n position: absolute;\n text-align: center;\n width: 2.4rem;\n height: 2.4rem;\n background-color: var(--toplist-ranking-base-color);\n border-radius: 0.8rem 0 0.8rem 0;\n color: #fff;\n font-size: 1.4rem;\n line-height: 2.4rem;\n left: 0;\n top: 0;\n &.num_1 {\n background-color: var(--toplist-ranking-first-color);\n }\n &.num_2 {\n background-color: var(--toplist-ranking-second-color);\n }\n &.num_3 {\n background-color: var(--toplist-ranking-third-color);\n }\n }\n .tandc {\n grid-column: 1;\n background: transparent;\n }\n .casinoDetails {\n padding-left: 0;\n height: 8.5rem;\n @include min(tablet) {\n @include flex-align(center, space-between);\n padding-left: 0;\n }\n > div {\n width: 80%;\n margin: 0 auto;\n }\n }\n .bonus {\n flex-direction: column !important;\n justify-content: flex-start;\n background: transparent;\n height: 9.3rem;\n @include min(tablet) {\n order: unset;\n grid-column: 1;\n > * {\n padding-right: 0 !important;\n }\n }\n a > div {\n width: 100%;\n text-align: center;\n @include flex-align(center, flex-start);\n flex-direction: column;\n div:first-child {\n padding-right: 0 !important;\n }\n }\n a.reviewLink {\n display: none;\n }\n }\n .cta {\n @include flex-align(center, center);\n @include flex-direction(column);\n a:first-child {\n width: 90%;\n margin-top: 1rem;\n }\n a:nth-child(2) {\n padding-top: 1.5rem;\n display: inline-block;\n }\n }\n .pros {\n height: 6.25rem;\n }\n }\n}\n\n.rowNoTandC {\n padding-bottom: 1.8rem;\n}\n\n.ctaAndReview {\n background-color: inherit;\n order: 4;\n margin-right: 2.4rem;\n display: flex;\n flex-direction: column;\n}\n\n.activeAuthor {\n font-size: 10px;\n > a {\n font-size: 10px;\n }\n}\n","$media-query-sizes: (\n mobile-s: (\n min: 320px,\n max: 374px,\n ),\n mobile-m: (\n min: 375px,\n max: 424px,\n ),\n mobile: (\n min: 425px,\n max: 767px,\n ),\n tablet: (\n min: 768px,\n max: 991px,\n ),\n laptop: (\n min: 992px,\n max: 1199px,\n ),\n desktop: (\n min: 1200px,\n ),\n);\n\n// Get media query sizes\n$screen: 'only screen';\n@function media-query($media, $optional-media: '', $min: true) {\n $media-label: '';\n\n @if ($optional-media != '') {\n $media-sizes-min: map-get($media-query-sizes, $media);\n $media-sizes-max: map-get($media-query-sizes, $optional-media);\n $media-label: $screen +\n \" and (min-width:#{map-get($media-sizes-min, 'min')}) and (max-width:#{map-get($media-sizes-max, 'max')})\";\n } @else {\n $query: 'max';\n\n @if ($min) {\n $query: 'min';\n }\n\n $media-sizes: map-get($media-query-sizes, $media);\n $media-label: $screen + ' and (#{$query}-width:#{map-get($media-sizes, $query)})';\n }\n\n @return $media-label;\n}\n\n// Min media query\n@mixin min($media) {\n @media #{media-query($media)} {\n @content;\n }\n}\n\n// Max media query\n@mixin max($media) {\n @media #{media-query($media, '', false)} {\n @content;\n }\n}\n\n// Min & max media query\n@mixin min-max($min, $max) {\n @media #{media-query($min, $max)} {\n @content;\n }\n}\n\n// Use this ONLY if you need a media query that doesn't fit the $media-query-sizes breakpoints above\n// Pass number, for example @include custom-min(992)\n@mixin custom-min($min) {\n @media #{$screen} and (min-width: #{$min}px) {\n @content;\n }\n}\n\n@mixin custom-max($max) {\n @media #{$screen} and (max-width: #{$max}px) {\n @content;\n }\n}\n\n@mixin custom-min-max($min, $max) {\n @media #{$screen} and (min-width: #{$min}px) and (max-width: #{$max}px) {\n @content;\n }\n}\n\n// Landscape\n// (If we find more use cases of this in the future, might want to refactor this and include it in the media-query function for $screen)\n// Pass number\n$landscape: 'screen and (orientation:landscape)';\n\n@mixin landscape-max($max) {\n @media #{$landscape} and (max-width: #{$max}px) {\n @content;\n }\n}\n\n@mixin landscape-min($min) {\n @media #{$landscape} and (min-width: #{$min}px) {\n @content;\n }\n}\n\n// Hover\n// that allows you only to apply styles on devices with hover capability\n@mixin hover-device() {\n @media (hover: hover) {\n &:hover {\n @content;\n }\n }\n}\n","@mixin flex-align($align-items, $justify-content) {\n display: flex;\n align-items: $align-items;\n justify-content: $justify-content;\n}\n\n@mixin flex-direction($flex-direction) {\n display: flex;\n flex-direction: $flex-direction;\n}\n\n@mixin overflow($overflow-type, $overflow-value, $scrolling) {\n #{$overflow-type}: $overflow-value;\n -webkit-overflow-scrolling: $scrolling; // Autoprefixer doesn't add\n}\n\n@mixin text-background($bgcolor, $text-color) {\n background: $bgcolor;\n border-radius: 100px;\n color: $text-color;\n font-weight: 700;\n @include flex-align(center, center);\n padding: 0 2rem;\n}\n\n@mixin link-color($color) {\n color: $color;\n\n &:hover {\n color: $color;\n }\n}\n\n// Using em because I want images in content to inherit size based on parent element (not root)\n@mixin content-img-float($direction) {\n float: $direction;\n @if $direction == right {\n margin: 0 0 1em 1em;\n } @else {\n margin: 0 1em 1em 0;\n }\n}\n\n@mixin content-img-align($direction: center, $spacing: 1em) {\n display: block;\n @if $direction == right {\n margin: $spacing 0 $spacing auto;\n } @else if $direction == left {\n margin: $spacing auto $spacing 0;\n } @else {\n margin: $spacing auto;\n }\n}\n\n@mixin section-arrow-down($color, $width, $height) {\n position: relative;\n &:after {\n top: 100%;\n left: 50%;\n border: solid transparent;\n content: '';\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n border-color: rgba(0, 0, 0, 0);\n border-top: $height solid $color;\n border-right: calc($width / 2) solid transparent;\n border-left: calc($width / 2) solid transparent;\n margin-left: - calc($width / 2);\n }\n}\n\n@mixin gradientBtn($color1, $color2, $color3) {\n background: linear-gradient(to bottom, $color1 0, $color2 14%, $color3 61%);\n &:hover {\n background: linear-gradient(to bottom, $color1 0, $color2 14%, $color3 61%);\n }\n}\n\n@mixin sportBtn($color1, $color2) {\n background: linear-gradient(to bottom, $color1 0, $color2 100%);\n &:hover {\n background: linear-gradient(to bottom, $color2 0, $color1 100%);\n }\n}\n\n@mixin star($border-color: #ffb400, $fill-color: #ffb400, $width: 16px, $line-height: 2rem) {\n line-height: $line-height;\n width: $width;\n font-weight: normal;\n display: inline-block;\n color: $fill-color;\n font-size: 15px;\n position: relative;\n text-shadow: -1px 0 $border-color, 0 1px $border-color, 1px 0 $border-color, 0 -1px $border-color;\n\n &:last-child {\n margin-right: 0;\n }\n &:before {\n content: '\\2605';\n }\n}\n\n@mixin half-star($border-color: #ffb400, $half-empty-color: #ffb400, $half-full-color: white) {\n line-height: 2rem;\n width: 16px;\n font-weight: normal;\n display: inline-block;\n color: $half-full-color;\n font-size: 15px;\n position: relative;\n &:before {\n content: '\\2605';\n }\n text-shadow: -1px 0 $border-color, 0 1px $border-color, 1px 0 $border-color, 0 -1px $border-color;\n &:after {\n content: '\\2605';\n color: $half-empty-color;\n position: absolute;\n width: 7px;\n overflow: hidden;\n bottom: 0;\n left: 0;\n }\n}\n"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={row:"eUiIB97HmqhDwwR7mrfw2A==",launchDate:"bN1eNvxU40gEanQ9SNWPbw==",launchDateLabel:"nz5Qx0QX4R-JAGGTuWctNQ==",ribbon:"hkvTWxoOP-8jSrbTJLvRUg==",reviewLink:"Mk3rxjR05i2ekMIlgIqplg==",casinoDetails:"_6aOjNZFQtzKx543LGDUwcA==",bonus:"_2Uq-rUSXp5IbrEQErB8Apw==",withRibbon:"rtc1MNAqXcMRqNfNPbAu+g==",bonusLaunch:"_8T7ZiU9-0Ho+s31+73TJKg==",launchDateBonus:"TAK2PALQiawL-8orJ-xsGg==",grid:"f0dY1Np7jC6uu-dljnBw8A==",numbers:"NeNIPpby8Rq5Mpeh+k7-qA==",num_1:"-+OCyRCSY7UW4ZyU32dt-g==",num_2:"eiaJV0SqBVV5oTcsu1IVuA==",num_3:"bFF921IGpeuZhOpfSE3UzQ==",tandc:"KSBSWw7AH+MMNYIsJ0CDlw==",cta:"AmuODL0wmVwNSlH0vXxFKA==",pros:"WISQApTn4Kz6r4ZIsjb22A==",rowNoTandC:"iFuYQ4No5S1SMdcr+23uTw==",ctaAndReview:"pMxgwXnBx9wlYN2-R4rCFg==",activeAuthor:"fcEsY6Hoqq5zJFl9G1y8xQ=="},__webpack_exports__.Z=___CSS_LOADER_EXPORT___}}]);
@@ -345,4 +345,4 @@
345
345
 
346
346
 
347
347
 
348
- window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"}];</script><script src="runtime~main.62ccc8ed.iframe.bundle.js"></script><script src="166.667d18db.iframe.bundle.js"></script><script src="main.2004c394.iframe.bundle.js"></script></body></html>
348
+ window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"}];</script><script src="runtime~main.e14721c4.iframe.bundle.js"></script><script src="166.667d18db.iframe.bundle.js"></script><script src="main.e90612f1.iframe.bundle.js"></script></body></html>