October 17, 2021 at 10:32:41 PM UTC
VERIFY
Websites
Websites
Runtime: 2.8s
Share on Facebook or Twitter
On October 17, 2021 at 10:32:41 PM UTC, http://nypost.com/ was accessible when tested on AS57293 in Azerbaijan.

Failures

HTTP Experiment
null
DNS Experiment
null
Control
null

DNS Queries

Resolver:
149.255.152.1
Query:
IN A nypost.com
Engine:
system
Name
Class
TTL
Type
DATA
Answer IP Info
@
IN
A
192.0.66.32
AS2635 (Automattic, Inc)

TCP Connections

192.0.66.32:80: succeeded

HTTP Requests

URL
GET https://nypost.com/
Response Headers
Accept-Ranges:
bytes
Age:
635
Cache-Control:
private, no-store
Content-Length:
537732
Content-Security-Policy:
frame-ancestors nypost.com *.nypost.com *.decider.com *.pagesix.com
Content-Type:
text/html; charset=UTF-8
Date:
Sun, 17 Oct 2021 22:32:43 GMT
Host-Header:
a9130478a60e5f9135f765b23f26593b
Link:
<https://nypost.com/wp-json/>; rel="https://api.w.org/"
Referrer-Policy:
no-referrer-when-downgrade
Server:
nginx
Strict-Transport-Security:
max-age=31536000
X-Cache:
hit
X-Content-Type-Options:
nosniff
X-Hacker:
If you're reading this, you should visit wpvip.com/careers and apply to join the fun, mention this header.
X-Powered-By:
WordPress VIP <https://wpvip.com>
X-Rq:
ams5 0 4 9980
X-Xss-Protection:
1; mode=block
Response Body

<!doctype html>
<html lang="en-US">

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
	<title>New York Post – Breaking News, Top Headlines, Photos & Videos</title>

	<meta http-equiv="X-UA-Compatible" content="IE=edge" />
	<meta charset="UTF-8">
	<script>document.documentElement.classList.remove("no-js");</script>
	<link rel="profile" href="https://gmpg.org/xfn/11">
				<script type="application/ld+json">
			{"@context":"http:\/\/schema.org","publisher":{"@type":"Organization","name":"New York Post","sameAs":"https:\/\/nypost.com","logo":{"@type":"ImageObject","url":"https:\/\/nypost.com\/wp-content\/themes\/nypost-2016\/static\/images\/logo-nypost.png","height":60,"width":404}},"headline":"New York Post","url":"https:\/\/nypost.com","@type":"WebPage","keywords":["home"]}			</script>
				<!-- OneTrust Cookies Consent Notice start -->
	<script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"  type="text/javascript" charset="UTF-8" data-domain-script="6c0f8417-b563-477c-8b00-33914cb4600e"></script>
	<script src="https://cdn.cookielaw.org/opt-out/otCCPAiab.js" type="text/javascript" charset="UTF-8" ccpa-opt-out-ids="C0012,C0013,C0017" ccpa-opt-out-geo="ca" ccpa-opt-out-lspa="false"></script>

	<script type="text/javascript">
	function OptanonWrapper() { document.getElementById("confirm-choices-handler").addEventListener("click", function() {Optanon.RejectAll(); alert("You have been opted out of browser data sharing by this site. This setting will not apply to other sites, your other browsers or if you clean this browser's cookies");}); }
	</script>
	<!-- OneTrust Cookies Consent Notice end -->
	<link rel="canonical" href="https://nypost.com/" />		<!-- Google Analytics command queue start -->
		<script>
			(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
			(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
			m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
			})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

			(function() {

				// Set the default options for the Google Analytics "create" function.
				var gaCreateOptions = {
					trackingId: "UA-3922003-6",
					cookieDomain: 'auto',
					useAmpClientId: true
				};

				// Add the allowLinker option if it is configured and found in PHP.
									gaCreateOptions.allowLinker = true;
					
				var isLsAvailable = function() {
					var test = 'test';
					try {
						window.localStorage.setItem(test, test);
						window.localStorage.removeItem(test);
						return true;
					} catch (e) {
						return false;
					}
				}

				// Bail early and use the old method if we do not have localStorage in this browser.
				if ( ! isLsAvailable() ) {
					ga( 'create', gaCreateOptions );
					return;
				}

				// If we have a GA clientId in the URL.
				var haveClientIdInURL = false;

				// First, check for linker param in URL and let GA use that for our clientId if it exists.
				// Check if URLSearchParams is available, otherwise use a polyfill function.
				if ( 'function' === typeof URLSearchParams ) {
					var urlParams = new URLSearchParams( window.location.search );
					if ( urlParams.get( '_ga' ) ) {
						haveClientIdInURL = true;
					}
				} else {
					/**
					 * A polyfill for older browsers like IE.
					 * @link https://caniuse.com/#feat=urlsearchparams
					 * @link https://davidwalsh.name/query-string-javascript
					 */
					var getUrlParameter = function(name) {
						name = name.replace( /[\[]/, '\\[' ).replace( /[\]]/, '\\]' );
						var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
						var results = regex.exec( location.search );
						return results === null ? false : decodeURIComponent( results[1].replace( /\+/g, ' ' ) );
					};
					if ( getUrlParameter( '_ga' ) ) {
						haveClientIdInURL = true;
					}
				}

				// Assume the GA Cookie is not present.
				var hasGACookie = false;

				// Try to get the GA Cookie.
				var GACookie = document.cookie.split(';').filter(function(item) {
					return item.trim().indexOf('_ga=') === 0
				} );

				// Check if we have a cookie.
				if ( GACookie.length ) {
					// If the cookie value is not empty we have a GA cookie.
					hasGACookie = GACookie[0].trim().length > 4 ? true : false;
				}

				// Id to use for localStorage object which holds the GA clientId and expire time.
				var gaClientIdLocalStorageId = 'nyp_ga_client_id';

				// If we don't have a clientId in the URL and there is no GA cookie set, we look in localStorage for one.
				if ( ! haveClientIdInURL && ! hasGACookie ) {

					// If no linker param and no GA cookie, we check in localStorage for the GA clientId.
					var nypGALocalStorage = window.localStorage.getItem( gaClientIdLocalStorageId ) || '{}';
					var parsedNYPGALocalStorage = JSON.parse( nypGALocalStorage );
					var now = new Date().getTime();
					if ( parsedNYPGALocalStorage.clientId && parsedNYPGALocalStorage.expires ) {
						if ( now <= parsedNYPGALocalStorage.expires ) {

							// If we have the clientId, add it to the GA Tracker options.
							if ( parsedNYPGALocalStorage.clientId && '' !== parsedNYPGALocalStorage.clientId ) {
								gaCreateOptions.clientId = parsedNYPGALocalStorage.clientId;
							}
						}
					}
				}

				// Create the tracker instance.
				ga( 'create', gaCreateOptions );

				// Add the clientId to localStorage using readyCallback to ensure the tracker instance has been instantiated.
				ga( function( tracker ) {
					var clientId = tracker.get( 'clientId' );
					if ( clientId ) {
						var gaClientIdStore = JSON.stringify({
							clientId: clientId,
							expires: new Date().getTime() + 1000*60*60*24*365*2
						});
						window.localStorage.setItem( gaClientIdLocalStorageId, gaClientIdStore );
					}
				});
			})();

			ga('require', 'linker');
ga('linker:autoLink', ["nypost.com","pagesix.com","decider.com"])

			// Optimizely Universal Analytics Integration code
			window.optimizely = window.optimizely || [];
			window.optimizely.push(['activateUniversalAnalytics']);
		</script>
		<!-- Google Analytics command queue end -->
				<script type="text/javascript">
			window.dataLayer = window.dataLayer || [];
			dataLayer.push({"page_type":"Home","section":"nypost.com-home","pagename":"\/"} );
		</script>
			<!-- Performance Event Tracking start -->
	<script>
	  if ('PerformanceObserver' in window) {
	    // Set our starting mark.
	    performance.mark('load-start');

  	    // First Contentful Paint start.
	    // Create a variable to hold the FCP, we'll need it later.
	    var fcp;
	    // Register the PerformanceObserver to track paint timing.
	    var observerFCP = new PerformanceObserver((list) => {
	      for (var entry of list.getEntriesByName('first-contentful-paint')) {
	        fcp = Math.round(entry.startTime);
	        ga('send', 'event', {
	          eventCategory: 'Performance Metrics',
	          eventAction: 'First Contentful Paint',
	          eventValue: fcp,
	          eventLabel: window.location.href,
	          nonInteraction: true,
	        });
	        observerFCP.disconnect();
	      }
	    });
	    // Start observing paint entries.
	    observerFCP.observe({
	      type: 'paint',
	    });
	    // First Contentful Paint end.

  	    // First Input Delay start.
	    // Register the PerformanceObserver to track first input delay.
	    var observerFID = new PerformanceObserver((list) => {
	      for (var entry of list.getEntries()) {
	        var fid = entry.processingStart - entry.startTime;
	          ga('send', 'event', {
	            eventCategory: 'Performance Metrics',
	            eventAction: 'First Input Delay',
	            eventValue: Math.round(fid),
	            eventLabel: window.location.href,
	            nonInteraction: true,
	          });
	        observerFID.disconnect();
	      }
	    });

  	    // Start observing first-input entries.
	    observerFID.observe({
	      type: 'first-input',
	      buffered: true,
	    });
	    // First Input Delay end.

  	    // Largest Contentful Paint start.
	    // Create a variable to hold the latest LCP value (since it can change).
	    var lcp;

  	    // Create the PerformanceObserver instance.
	    var observerLCP = new PerformanceObserver((list) => {
	      var entries = list.getEntries();
	      var lastEntry = entries[entries.length - 1];

  	      // Update `lcp` to the latest value, using `renderTime` if it's available,
	      // otherwise using `loadTime`. (Note: `renderTime` may not be available if
	      // the element is an image and it's loaded cross-origin without the
	      // `Timing-Allow-Origin` header.)
	      lcp = lastEntry.renderTime || lastEntry.loadTime;
	    });

  	    // Observe entries of type `largest-contentful-paint`, including buffered
	    // entries, i.e. entries that occurred before calling `observe()`.
	    observerLCP.observe({
	      type: 'largest-contentful-paint',
	      buffered: true
	    });

  	    // Send the latest LCP value to your analytics server once the user
	    // leaves the tab. This waits to log LCP until the page's lifecycle state changes to hidden.
	    // This is a way of ensuring that it only logs the latest entry.
	    function handleLCPVisibility() {
	      if (lcp && document.visibilityState === 'hidden') {
	        ga('send', 'event', {
	          eventCategory: 'Performance Metrics',
	          eventAction: 'Largest Contentful Paint',
	          eventValue: Math.round(lcp),
	          eventLabel: window.location.href,
	          nonInteraction: true,
	        });
	        removeEventListener('visibilitychange', handleLCPVisibility, true);
	        observerLCP.disconnect();
	      }
	    }
	    addEventListener('visibilitychange',handleLCPVisibility, true);
	    // Largest Contentful Paint end.

  	    // Load Abandonment start.
	    function handleAbandonmentVisibility() {
	      if (document.visibilityState === 'hidden') {
	        // Mark when the user left.
	        performance.mark('user-left');

  	        // Create our measure.
	        performance.measure('time-on-page', 'load-start', 'user-left');

  	        // Get our measure.
	        var timeOnPage = performance.getEntriesByName('time-on-page', 'measure');

  	        // Create our abandonment var.
	        var userAbandoned = false;
	        if (fcp && timeOnPage[0] && timeOnPage[0].duration < fcp) {
	          userAbandoned = true;
	        }
	        ga('send', 'event', {
	          eventCategory: 'Performance Metrics',
	          eventAction: 'User Abandoned',
	          eventValue: userAbandoned,
	          eventLabel: window.location.href,
	          nonInteraction: true,
	        });
	        removeEventListener('visibilitychange', handleAbandonmentVisibility, true);
	      }
	    }
	    addEventListener('visibilitychange', handleAbandonmentVisibility, true);
	    // Load Abandonment end.
	  }
	</script>
	<!-- Performance Event Tracking end -->
			<script type='text/javascript'>
		  /* Start Amazon Publisher Services Library download code. */
		  // Load the APS JavaScript Library
		  !function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
		  /* End Amazon Publisher Services Library download code. */
		</script>
				<meta name="copyright" content="Copyright 2021 NYP Holdings. All rights reserved."/>
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<meta name="p:domain_verify" content="44b526edc36ffbcc163412ee9fe42833"/>

		<meta name="robots" content="max-image-preview:large" />
		<link rel="manifest" href="/wp-content/themes/nypost-2016/static/nypost-manifest.json?ver=64c411406524ac4e26e1">

			<link rel="apple-touch-icon" href="https://nypost.com/wp-content/themes/nypost-2016/static/images/apple-icons/nypost/apple-icon.png" />
							<link rel="apple-touch-icon" sizes="57x57" href="https://nypost.com/wp-content/themes/nypost-2016/static/images/apple-icons/nypost/apple-icon-57x57.png" />
					<link rel="apple-touch-icon" sizes="114x114" href="https://nypost.com/wp-content/themes/nypost-2016/static/images/apple-icons/nypost/apple-icon-114x114.png" />
					<link rel="apple-touch-icon" sizes="144x144" href="https://nypost.com/wp-content/themes/nypost-2016/static/images/apple-icons/nypost/apple-icon-144x144.png" />
				<link rel="shortcut icon" type="image/x-icon" href="https://nypost.com/wp-content/themes/nypost-2016/static/images/favicon-nypost/favicon.ico" />

		<link rel="profile" href="http://gmpg.org/xfn/11" />
		<link rel="preload" href="https://cdn.optimizely.com/js/291827881.js" as="script" type="text/javascript" crossorigin="anonymous">
<link rel="preconnect" href="//logx.optimizely.com">
<script src="https://cdn.optimizely.com/js/291827881.js" crossorigin="anonymous"></script>
<link rel='next' href='https://nypost.com/page/2/'/>
			<script src="https://cdn.p-n.io/pushly-sdk.min.js?domain_key=lGrO4sEYCy0zUu2DRBSBxuOWIGo8lGqPv8wE" async></script>
			<script>
				var PushlySDK = window.PushlySDK || [];
				function pushly() { PushlySDK.push(arguments) }
				pushly('load', {
					domainKey: 'lGrO4sEYCy0zUu2DRBSBxuOWIGo8lGqPv8wE',
					sw: '/push-worker.js',
				});

				if ('undefined' !== typeof ga) {
					ga(function(tracker) {
						pushly('profile', {'external_id': tracker.get('clientId')});
					});
				}
			</script>

			<link rel='dns-prefetch' href='//us.tags.newscgp.com' />
<link rel='dns-prefetch' href='//nypost-com.videoplayerhub.com' />
<link rel='dns-prefetch' href='//assets.vidora.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='dns-prefetch' href='//v0.wordpress.com' />
<link rel='dns-prefetch' href='//fastlane.rubiconproject.com' />
<link rel='dns-prefetch' href='//secure-assets.rubiconproject.com' />
<link rel='dns-prefetch' href='//googleads.g.doubleclick.net' />
<link rel='dns-prefetch' href='//pagead2.googlesyndication.com' />
<link rel='dns-prefetch' href='//securepubads.g.doubleclick.net' />
<link rel='dns-prefetch' href='//tpc.googlesyndication.com' />
<link rel='dns-prefetch' href='//acdn.adnxs.com' />
<link rel='dns-prefetch' href='//ib.adnxs.com' />
<link rel='dns-prefetch' href='//rb.adnxs.com' />
<link rel='dns-prefetch' href='//secure.adnxs.com' />
<link rel='dns-prefetch' href='//as-sec.casalemedia.com' />
<link rel='dns-prefetch' href='//ssum-sec.casalemedia.com' />
<link rel='dns-prefetch' href='//assets.bounceexchange.com' />
<link rel='dns-prefetch' href='//api.bounceexchange.com' />
<link rel='dns-prefetch' href='//events.bouncex.net' />
<link rel='dns-prefetch' href='//perfads.bouncex.net' />
<link rel='dns-prefetch' href='//connect.facebook.net' />
<link rel='dns-prefetch' href='//www.google-analytics.com' />
<link rel='dns-prefetch' href='//www.googletagservices.com' />
<link rel='preconnect' href='https://use.typekit.net' />
<link rel='preconnect' href='https://s0.wp.com' />
<link rel='preconnect' href='https://s1.wp.com' />
<link rel='preconnect' href='https://s2.wp.com' />
<link rel='preconnect' href='https://pixel.wp.com' />
<link rel='preconnect' href='https://fonts.googleapis.com' />
<link rel='preconnect' href='https://fonts.gstatic.com' />
	<script type="text/javascript">
	(function()
		{ var prox_url = "https://segment-data.zqtk.net/newscorpjs-1f38g3?url="+encodeURIComponent(window.location.href); var prox_script=document.createElement('script');prox_script.type='text/javascript';prox_script.src=prox_url;prox_script.async=false; if(document.getElementsByTagName("head").length>0)document.getElementsByTagName("head")[0].appendChild(prox_script); else if(document.getElementsByTagName("body").length>0)document.getElementsByTagName("body")[0].appendChild(prox_script); }
	)();
	</script>
	<script class="wp-asset-manager gdpr" type="text/javascript">window.nypScripts = window.nypScripts || {}; window.nypScripts["gdpr"] = {"euCountries":["AT","AU","BE","BG","HR","CY","CZ","DK","EE","FI","FR","DE","GR","HU","IS","IE","IT","LV","LI","LT","LU","MT","NL","NO","PL","PT","RO","SK","SI","ES","SE","GB"]}</script><script class="wp-asset-manager nypost_wp_vars" type="text/javascript">window.nypScripts = window.nypScripts || {}; window.nypScripts["nypost_wp_vars"] = {"wp_ajax_url":"https:\/\/nypost.com\/wp-admin\/admin-ajax.php","modal_image_nonce":"c22ac032df","nypostSite":"nypost","postType":"","isSingle":false,"isMobile":false,"isRedesign":true,"pagesix_app_flyout":{"is_active":"0","max_modal_views":"1","cookie_expiry":"7","mobile_article_views":"1","desktop_article_views":"1","mobile_cookie_expiry":"7","suppress_flyout_views":"60"},"outbrain_permalink":"","vip":true,"polyfills":"https:\/\/nypost.com\/wp-content\/themes\/nypost-2016\/static\/js\/polyfills.bundle.js"}</script><script class="wp-asset-manager load-polyfills" type="text/javascript">!function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(o,n,function(t){return e[t]}.bind(null,n));return o},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/wp-content/themes/nypost-2016/static/",r(r.s=231)}({231:function(e,t,r){"use strict";window.fetch&&"function"==typeof Promise&&Element.prototype.matches&&Element.prototype.closest&&Array.from&&Array.prototype.includes&&window.NodeList&&NodeList.prototype.forEach&&Number.isNaN&&String.prototype.repeat||window.nypScripts.nypost_wp_vars.polyfills&&function(e,t){var r=document.createElement("script");r.src=e,r.onload=function(){return t()},r.onerror=function(){return t(new Error("Failed to load script ".concat(e)))};var o=document.querySelector(".load-polyfills");o&&o.parentNode.insertBefore(r,o.nextSibling)}(window.nypScripts.nypost_wp_vars.polyfills,(function(){return console.log("polyfills loaded")}))}});
//# sourceMappingURL=loadPolyfills.bundle.js.map</script><script class="wp-asset-manager loadCSS" type="text/javascript">/*! loadCSS: load a CSS file asynchronously. [c]2016 @scottjehl, Filament Group, Inc. Licensed MIT */
!function(e){"use strict";var n=function(n,t,o){function i(e){return a.body?e():void setTimeout(function(){i(e)})}function r(){l.addEventListener&&l.removeEventListener("load",r),l.media=o||"all"}var d,a=e.document,l=a.createElement("link");if(t)d=t;else{var s=(a.body||a.getElementsByTagName("head")[0]).childNodes;d=s[s.length-1]}var f=a.styleSheets;l.rel="stylesheet",l.href=n,l.media="only x",i(function(){d.parentNode.insertBefore(l,t?d:d.nextSibling)});var u=function(e){for(var n=l.href,t=f.length;t--;)if(f[t].href===n)return e();setTimeout(function(){u(e)})};return l.addEventListener&&l.addEventListener("load",r),l.onloadcssdefined=u,u(r),l};"undefined"!=typeof exports?exports.loadCSS=n:e.loadCSS=n}("undefined"!=typeof global?global:this);
/*! CSS rel=preload polyfill. Depends on loadCSS function. [c]2016 @scottjehl, Filament Group, Inc. Licensed MIT  */
!function(t){if(t.loadCSS){var e=loadCSS.relpreload={};if(e.support=function(){try{return t.document.createElement("link").relList.supports("preload")}catch(e){return!1}},e.poly=function(){for(var e=t.document.getElementsByTagName("link"),n=0;n<e.length;n++){var r=e[n];"preload"===r.rel&&"style"===r.getAttribute("as")&&(t.loadCSS(r.href,r),r.rel=null)}},!e.support()){e.poly();var n=t.setInterval(e.poly,300);t.addEventListener&&t.addEventListener("load",function(){e.poly(),t.clearInterval(n)}),t.attachEvent&&t.attachEvent("onload",function(){t.clearInterval(n)})}}}(this);</script><script class="wp-asset-manager nypost-screen" type="text/javascript">!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/wp-content/themes/nypost-2021/nypost-2021/client/build/",n(n.s=597)}({20:function(e){e.exports=JSON.parse('{"xl":"1280","lg":"1024","md":"768","sm":"600","xs":"480"}')},597:function(e,t,n){e.exports=n(598)},598:function(e,t,n){"use strict";n.r(t);var r=n(20);const o=(r.lg||1024).toString(),i=window.screen.width<o?"mobile":"desktop";window.matchMedia(`(max-width: ${o}px)`).addEventListener("change",e=>{window.nypost_screen=e.matches?"mobile":"desktop"}),window.nypost_screen=i}});
//# sourceMappingURL=nypost-screen.bundle.min.js.map</script><link rel="stylesheet" class="wp-asset-manager adobe-fonts-pyz4pvc" href="https://use.typekit.net/pyz4pvc.css?ver=a113b0eb40a36e98c3b8" media="print" onload="this.onload=null;this.media='all'" /><noscript><link rel="stylesheet" href="https://use.typekit.net/pyz4pvc.css?ver=a113b0eb40a36e98c3b8" media="all" class="wp-asset-manager adobe-fonts-pyz4pvc" /></noscript><style class="wp-asset-manager global-assets-critical" type="text/css">html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}html{background-color:#fff}ol,ul{list-style:none}*{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-size:16px;overflow:auto}body{font-size:1rem}body,html{color:#585858;font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:1.3}img{height:auto;max-width:100%;width:100%}img[aria-hidden=true]{height:0;width:auto}svg{max-width:100%}.site-container{margin-left:auto;margin-right:auto;max-width:100%;padding:1.875rem .625rem;width:calc(66.5rem + (1.25rem*2))}@media (min-width:37.5rem){.site-container{padding-left:1.25rem;padding-right:1.25rem}}@supports (display:grid){.site-container{width:calc(66.5rem + (1.25rem*2))}}.entry-content .alignnone{clear:both;margin-bottom:1.25rem;margin-top:1.25rem;position:relative;width:100%}@media (min-width:37.5rem){.entry-content .alignnone{width:auto}}.entry-content .alignleft{clear:both;margin-bottom:1.25rem;margin-top:1.25rem;position:relative;width:100%;display:block;max-width:100%}@media (min-width:37.5rem){.entry-content .alignleft{width:auto;display:inline-block;float:left;margin-right:1.875rem}}.entry-content .aligncenter{clear:both;margin-bottom:1.25rem;margin-top:1.25rem;position:relative;width:100%}@media (min-width:37.5rem){.entry-content .aligncenter{width:auto}}.screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.d-none{display:none!important}.d-block{display:block!important}@media (min-width:48rem){.d-block-md{display:block!important}.d-flex-md{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}}@media (min-width:64rem){.d-none-lg{display:none!important}.d-block-lg{display:block!important}}@media (min-width:80rem){.d-none-xl{display:none!important}}.m-top{margin-top:1.25rem!important}.m-bottom{margin-bottom:1.25rem!important}.m-bottom-none{margin-bottom:0!important}.m-bottom-double{margin-bottom:calc(1.25rem*2)!important}.m-left-half{margin-left:calc(1.25rem/2)!important}@media (min-width:37.5rem){.p-right-sm{padding-right:1.25rem!important}}.p-bottom-half{padding-bottom:calc(1.25rem/2)!important}@media (min-width:37.5rem){.p-left-sm{padding-left:1.25rem!important}}.b-bottom{border-bottom:1px solid #ccc!important}.b-bottom--black{border-bottom-color:#000!important}.b-bottom--thick{border-bottom-width:2px!important}@media (min-width:37.5rem){.b-left-sm{border-left:1px solid #ccc!important}}.t-center{text-align:center!important}[class*=t-truncate]{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.t-truncate-3{-webkit-line-clamp:3}.t-color-white{color:#fff!important}.t-color-nyp-brand{color:#c60800!important}p,ul,ol,blockquote,hr{margin-bottom:1rem}b,strong{font-weight:700}a{color:inherit;text-decoration:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:currentColor;text-decoration:inherit}p,.body,.body p{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;color:#000;font-size:1.125rem;letter-spacing:-.01em;line-height:1.44}.entry-content p{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;color:#000;font-size:1.125rem;letter-spacing:-.01em;line-height:1.44;color:#2a2a2a}@media (min-width:37.5rem){.entry-content p{font-size:1rem;line-height:1.5}}.entry-content a{color:#c60800}.body--md,.body--md p{font-size:1rem;line-height:1.25}h1,h2,h3,h4,h5,h6{margin-bottom:1rem}.headline{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#000;line-height:1.1}.headline--xl{font-size:1.875rem;letter-spacing:-.01em;line-height:1.083}@media (min-width:37.5rem){.headline--xl{font-size:2.25rem;line-height:1.05}}.headline--lg{font-size:1.5rem;letter-spacing:-.01em;line-height:1.08}@media (min-width:37.5rem){.headline--lg{font-size:1.875rem;line-height:1.07}}.headline--md{font-size:1.375rem;letter-spacing:-.01em;line-height:1.09}.headline--xxs{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;font-size:.9375rem;letter-spacing:-.03em;line-height:1.13}.headline--archive{font-size:1rem;letter-spacing:-.01em;line-height:1.08}@media (min-width:37.5rem){.headline--archive{font-size:1.5rem}}.headline--single{font-size:1.875rem;letter-spacing:-.01em;line-height:1.05;margin-top:1rem}@media (min-width:37.5rem){.headline--single{font-size:2.625rem;margin-top:0}}.section-heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#000;font-size:1.125rem;letter-spacing:-.06em;line-height:1.11;text-transform:uppercase}.section-heading--xl{font-size:1.875rem;font-style:italic;letter-spacing:-.01em;line-height:.87;text-transform:uppercase}@media (min-width:37.5rem){.section-heading--xl{font-size:3.75rem}}.section-heading--lg{font-size:1.375rem;letter-spacing:-.01em;line-height:1.09}@media (min-width:37.5rem){.section-heading--lg{font-size:2.875rem;line-height:.96}}.section-heading--md{font-size:1.875rem;font-style:italic;letter-spacing:-.01em;line-height:.86}@media (min-width:37.5rem){.section-heading--md{font-size:2.75rem}}.section-heading--md-semi{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;font-size:1.5625rem;font-style:italic;letter-spacing:-.01em;line-height:.94}@media (min-width:37.5rem){.section-heading--md-semi{font-size:1.875rem}}.section-heading--sm{font-size:1.875rem;font-style:italic;letter-spacing:.05em;line-height:.86}.section-heading--xs{font-size:1.125rem;font-style:italic;letter-spacing:0;line-height:.89}.section-heading--xxs{font-size:1.125rem;letter-spacing:.06em;line-height:.89}.section-heading--xxs-em{font-size:1.375rem;font-style:italic;letter-spacing:-.01em;line-height:.9}.section-heading--underline{border-bottom:10px solid #000;padding-bottom:.25rem}.section-heading--underline.t-color-gray{border-bottom-color:#585858}.section-heading--underline.t-color-white{border-bottom-color:#fff}.section-heading--underline.t-color-nyp-brand{border-bottom-color:#c60800}.section-heading--underline.t-color-p6-brand{border-bottom-color:#ffd62b}.sub-heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#000;display:block;font-size:1.125rem;letter-spacing:-.01em;line-height:1.1}@media (min-width:37.5rem){.sub-heading{font-size:1.375rem}}.sub-heading--semi{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;font-size:.9375rem;letter-spacing:-.03em;line-height:1.26}.webwood{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#c60800;letter-spacing:-.01em;line-height:.8;text-transform:uppercase}.webwood:empty{margin-bottom:0}.webwood--xl{font-size:3.75rem;letter-spacing:-.02em}@media (min-width:30rem){.webwood--xl{font-size:5.3125rem}}@media (min-width:48rem){.webwood--xl{font-size:8rem}}@media (min-width:64rem){.webwood--xl{font-size:10.625rem}}.webwood--lg{font-size:2.5rem;line-height:.87}@media (min-width:37.5rem){.webwood--lg{font-size:4.375rem;line-height:.83}}.webwood--xl span[data-fontpercent='80']{font-size:80%}.webwood--xl span[data-fontpercent='90']{font-size:90%}.webwood--xl span[data-fontpercent='100']{font-size:100%}.webwood--xl span[data-fontpercent='110']{font-size:110%}.webwood--xl span[data-fontpercent='120']{font-size:120%}.webwood--lg span[data-fontpercent='80']{font-size:80%}.webwood--lg span[data-fontpercent='90']{font-size:90%}.webwood--lg span[data-fontpercent='100']{font-size:100%}.webwood--lg span[data-fontpercent='110']{font-size:110%}.webwood--lg span[data-fontpercent='120']{font-size:120%}.webwood--md span[data-fontpercent='80']{font-size:80%}.webwood--md span[data-fontpercent='90']{font-size:90%}.webwood--md span[data-fontpercent='100']{font-size:100%}.webwood--md span[data-fontpercent='110']{font-size:110%}.webwood--md span[data-fontpercent='120']{font-size:120%}.widget-heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#000;font-size:1.4375rem;font-style:italic;letter-spacing:-.01em;line-height:.73;margin-bottom:1.25rem;text-transform:uppercase}.widget-heading--underline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:-webkit-max-content;width:-moz-max-content;width:max-content}.widget-heading--underline::after{background-color:#c60800;content:'';display:block;height:.5rem;margin-left:-1.3125rem;margin-right:-.125rem;margin-top:.125rem}.widget-heading__sub{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#000;display:block;font-size:.875rem;font-style:normal;letter-spacing:.04em;line-height:.85;margin-bottom:.1875rem;margin-top:.1875rem}.widget-heading--underline .widget-heading__sub{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.meta{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;color:#585858;font-size:.75rem;letter-spacing:-.01em;line-height:1.17}.meta--heading{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;color:#000;font-size:.875rem;line-height:1.14}.meta--byline{color:#000;display:block;font-size:.875rem;line-height:1.14;position:relative}.meta--byline a,.meta--byline .meta__link,.meta--caption a,.meta--caption .meta__link{color:#c60800}.ad--inline{margin-bottom:1.875rem;position:relative;text-align:center;z-index:1}.ad--inline>div,.ad--inline iframe{display:block;margin-left:auto!important;margin-right:auto!important}.ad p.ad__label{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;color:#585858;font-size:.625rem;margin-bottom:0;margin-top:.625rem;text-transform:uppercase}.ad__wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ad__placeholder{margin:0 auto;overflow:hidden;width:100%}.ad__placeholder--banner{max-width:60.625rem;min-height:15.625rem}.ad__placeholder--banner-sm{max-width:60.625rem;min-height:5.625rem}.ad__placeholder--tall{max-width:18.75rem;min-height:37.5rem}.ad__placeholder--small{max-width:18.75rem;min-height:15.625rem}@media (min-width:64rem){.ad__placeholder.sticky{overflow:visible}.ad__placeholder.sticky>div{height:inherit}.ad__placeholder.sticky>div>div{position:sticky;top:0}}.ad__slot{height:inherit}.ad-slot--skin{position:relative}.ad-slot--billboard{display:none}@media (min-width:37.5rem){.ad-slot--billboard{display:block}}.ad-slot--bottom{bottom:env(safe-area-inset-bottom,0);left:0;position:fixed;text-align:center;width:100%;z-index:1000}.ad-slot iframe{display:block}.button,.entry-content .button{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;display:inline-block;padding:0;text-transform:uppercase}.button--solid,.entry-content .button--solid{background-color:#c60800;border:2px solid #c60800;border-radius:6px;color:#fff;font-size:1.125rem;font-weight:800;line-height:1;min-width:12.5rem;padding:.6875rem 2.6875rem .75rem;text-align:center}@media (max-width:37.4375rem){.button--solid,.entry-content .button--solid{padding-left:1.25rem;padding-right:1.25rem}}.button--solid-third,.entry-content .button--solid-third{background-color:#c60800;border:2px solid #c60800;border-radius:6px;color:#fff;font-size:1.125rem;font-weight:800;line-height:1;min-width:12.5rem;padding:.6875rem 2.6875rem .75rem;text-align:center;background-color:#000;border-color:#000;color:#fff}@media (max-width:37.4375rem){.button--solid-third,.entry-content .button--solid-third{padding-left:1.25rem;padding-right:1.25rem}}.button--arrow,.entry-content .button--arrow{color:#000;font-size:.8125rem;letter-spacing:.08em;line-height:1.1;padding-right:.75rem;position:relative}.button--arrow:focus span,.entry-content .button--arrow:focus span{text-decoration:underline}.button--arrow span,.entry-content .button--arrow span{display:inline-block;vertical-align:top}.button--arrow svg,.entry-content .button--arrow svg{height:.625rem;position:absolute;right:0;top:.1875rem}.button--modal-trigger,.entry-content .button--modal-trigger{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:3px #fff solid;border-radius:50%;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.8),0 3px 6px rgba(0,0,0,.4) inset;box-shadow:0 3px 6px rgba(0,0,0,.8),0 3px 6px rgba(0,0,0,.4) inset;display:-webkit-box;display:-ms-flexbox;display:flex;height:2.375rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;width:2.375rem}.button--modal-trigger svg,.entry-content .button--modal-trigger svg{display:block;-webkit-filter:drop-shadow(0 0 3px rgba(0,0,0,.8));filter:drop-shadow(0 0 3px rgba(0,0,0,.8));margin:0 auto;pointer-events:none}.button-wrap-lines,.entry-content .button-wrap-lines{display:-webkit-box;display:-ms-flexbox;display:flex}.button-wrap-lines::before,.button-wrap-lines::after,.entry-content .button-wrap-lines::before,.entry-content .button-wrap-lines::after{-ms-flex-item-align:center;align-self:center;border-bottom:3px solid #000;content:"";-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.button-wrap-lines .button-wrap-lines__inner,.entry-content .button-wrap-lines .button-wrap-lines__inner{padding:0 .3125rem 0 .4375rem}.button-wrap-lines h1,.button-wrap-lines h2,.button-wrap-lines h3,.button-wrap-lines h4,.button-wrap-lines h5,.button-wrap-lines h6,.entry-content .button-wrap-lines h1,.entry-content .button-wrap-lines h2,.entry-content .button-wrap-lines h3,.entry-content .button-wrap-lines h4,.entry-content .button-wrap-lines h5,.entry-content .button-wrap-lines h6{font-size:inherit}.button--secondary,.entry-content .button--secondary{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;display:inline-block;padding:0;text-transform:uppercase;background-color:transparent;border:1px solid #ccc;border-radius:6px;color:#000;font-size:1rem;line-height:1;padding:.6875rem 2.6875rem;text-transform:none}@media (max-width:37.4375rem){.button--secondary,.entry-content .button--secondary{padding-left:1.25rem;padding-right:1.25rem}}.flag{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;display:inline-block;font-size:.8125rem;text-transform:uppercase}.flag--skewed{border:1px transparent solid;letter-spacing:.08em;line-height:1;padding:.0625rem .5rem;text-align:center;-webkit-transform:skew(-10deg);transform:skew(-10deg)}.flag--skewed span{display:block}.flag--color-nyp{background-color:#c60800;color:#fff}.flag--color-nyp-inverted{background-color:transparent;color:#c60800}.flag--color-nyp-border{border-color:#c60800}.flag--color-dispatch{background-color:#000;color:#fff}.flag--color-dispatch-inverted{background-color:transparent;color:#000}.flag--color-nyp-inverted:not([class*=-border]),.flag--color-dispatch-inverted:not([class*=-border]){padding-left:0;padding-right:0}input[type=text],input[type=email],input[type=password],textarea{border:1px solid #ccc;font-size:1rem;margin-bottom:.9375rem;padding:.9375rem .625rem 1.0625rem;width:100%}input[type=submit]{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;display:inline-block;padding:0;text-transform:uppercase;background-color:#c60800;border:2px solid #c60800;border-radius:6px;color:#fff;font-size:1.125rem;font-weight:800;line-height:1;min-width:12.5rem;padding:.6875rem 2.6875rem .75rem;text-align:center;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-wrapper input[type=submit]{width:100%}.content-header,.entry-content .content-header{margin-bottom:1rem;position:relative}.content-header .section-heading:not(.section-heading--dropshadow),.entry-content .content-header .section-heading:not(.section-heading--dropshadow){margin:0}.content-header--lines-thick,.entry-content .content-header--lines-thick{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.25rem;margin-bottom:.9375rem}.content-header--lines-thick::before,.content-header--lines-thick::after,.entry-content .content-header--lines-thick::before,.entry-content .content-header--lines-thick::after{-ms-flex-item-align:center;align-self:center;border-bottom:3px solid #000;content:'';display:inline-block;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.content-header--lines-thick::after,.entry-content .content-header--lines-thick::after{margin-left:-2px}.content-header--lines-thick.content-header--b-gray::before,.content-header--lines-thick.content-header--b-gray::after,.entry-content .content-header--lines-thick.content-header--b-gray::before,.entry-content .content-header--lines-thick.content-header--b-gray::after{border-color:#585858}.content-header--lines-thick.content-header--b-white::before,.content-header--lines-thick.content-header--b-white::after,.entry-content .content-header--lines-thick.content-header--b-white::before,.entry-content .content-header--lines-thick.content-header--b-white::after{border-color:#fff}.content-header--lines-thick.content-header--b-nyp-brand::before,.content-header--lines-thick.content-header--b-nyp-brand::after,.entry-content .content-header--lines-thick.content-header--b-nyp-brand::before,.entry-content .content-header--lines-thick.content-header--b-nyp-brand::after{border-color:#c60800}.content-header--lines-thick.content-header--b-p6-brand::before,.content-header--lines-thick.content-header--b-p6-brand::after,.entry-content .content-header--lines-thick.content-header--b-p6-brand::before,.entry-content .content-header--lines-thick.content-header--b-p6-brand::after{border-color:#ffd62b}.content-header--lines-thick::before,.entry-content .content-header--lines-thick::before{margin-right:.625rem}.content-header--lines-thick::after,.entry-content .content-header--lines-thick::after{margin-left:.625rem}.content-header--lines-thick::before,.content-header--lines-thick::after,.entry-content .content-header--lines-thick::before,.entry-content .content-header--lines-thick::after{border-bottom-width:.625rem;margin-top:.25rem}@media (min-width:37.5rem){.content-header--lines-thick,.entry-content .content-header--lines-thick{margin-bottom:1.875rem}.content-header--lines-thick::before,.entry-content .content-header--lines-thick::before{margin-right:1.25rem}.content-header--lines-thick::after,.entry-content .content-header--lines-thick::after{margin-left:1.25rem}.content-header--line-right,.entry-content .content-header--line-right{display:-webkit-box;display:-ms-flexbox;display:flex}.content-header--line-right::after,.entry-content .content-header--line-right::after{-ms-flex-item-align:center;align-self:center;border-bottom:6px solid #000;border-left:4px solid #fff;content:'';display:inline-block;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin-left:1.625rem;margin-top:.25rem}.content-header--line-right.content-header--b-gray::after,.entry-content .content-header--line-right.content-header--b-gray::after{border-bottom-color:#585858}.content-header--line-right.content-header--b-white::after,.entry-content .content-header--line-right.content-header--b-white::after{border-bottom-color:#fff;border-left-color:#000}.content-header--line-right.content-header--b-nyp-brand::after,.entry-content .content-header--line-right.content-header--b-nyp-brand::after{border-bottom-color:#c60800}.content-header--line-right.content-header--b-p6-brand::after,.entry-content .content-header--line-right.content-header--b-p6-brand::after{border-bottom-color:#ffd62b}}.module:not(.inline){margin-bottom:1.25rem;margin-top:1.25rem}@media (min-width:64rem){.module:not(.inline){margin-bottom:1.875rem;margin-top:1.875rem}}.module:not(.inline):first-of-type:not(.module--latest){margin-top:0}.skeleton{background-color:#f6f6f6}.skeleton--ad{overflow:hidden;position:relative}.ad__placeholder--banner .skeleton--ad{height:15.625rem;width:60.625rem}.ad__placeholder--banner-sm .skeleton--ad{height:5.625rem;width:60.625rem}.ad__placeholder--small .skeleton--ad{height:15.625rem;width:18.75rem}[class*="--skeleton"]{position:relative}.social-icons--horizontal{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style-type:none}.social-icons--horizontal li+li a{margin-left:.625rem}@media (min-width:80rem){.social-icons--vertical li+li a{margin-top:.625rem}.social-icons .social-icons__icon--whatsapp{display:none}}.social-icons__icon{display:-webkit-box;display:-ms-flexbox;display:flex;visibility:hidden}.social-icons__icon:not(.social-icons__icon--comments) span{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.social-icons__icon--email::before{height:60%;width:60%}.social-icons__icon--facebook::before{height:60%;width:60%}.social-icons__icon--flipboard::before{height:60%;width:60%}.social-icons__icon--instagram::before{height:60%;width:60%}.social-icons__icon--linkedin::before{height:60%;width:60%}.social-icons__icon--post-url::before{height:60%;width:60%}.social-icons__icon--twitter::before{height:60%;width:60%}.social-icons__icon--whatsapp::before{height:60%;width:60%}.social-icons__icon--youtube::before{height:100%;width:100%}.entry-content img{height:auto;max-width:100%;vertical-align:middle}.entry-content .post-image img,.entry-content .wp-caption img,.entry-content .alignleft img,.entry-content .alignright img,.entry-content .aligncenter img,.entry-content .alignnone img,.entry-content .wp-block-image img{-webkit-box-shadow:0 3px 0 0 #fff,0 7px 0 0 #c60800;box-shadow:0 3px 0 0 #fff,0 7px 0 0 #c60800;margin-bottom:7px}.entry-content>ol,.entry-content>ul,.wp-block-group ol,.wp-block-group ul{margin:1.5625rem 0 1.5625rem .5rem}.entry-content>ol li,.entry-content>ul li,.wp-block-group ol li,.wp-block-group ul li{margin-bottom:1.5625rem;margin-left:2.5rem}.entry-content>ol li:last-of-type,.entry-content>ul li:last-of-type,.wp-block-group ol li:last-of-type,.wp-block-group ul li:last-of-type{margin-bottom:0}.entry-content>ol ol,.entry-content>ol ul,.entry-content>ul ol,.entry-content>ul ul,.wp-block-group ol ol,.wp-block-group ol ul,.wp-block-group ul ol,.wp-block-group ul ul{margin-bottom:0;margin-top:1.25rem;padding-bottom:0}.entry-content>ul ul,.entry-content>ul>li>ul,.wp-block-group ul ul,.wp-block-group ul>li>ul{margin-left:0}.breaking-news{display:none}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:auto;margin-right:auto;max-width:100%;padding:1.25rem 0 0 1.25rem;width:auto}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid>*{background-clip:padding-box;border-color:transparent;border-style:solid;border-width:0 1.25rem 1.25rem 0;-webkit-box-sizing:border-box;box-sizing:border-box}@supports (display:grid){body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid{-ms-flex-line-pack:start;align-content:start;display:grid;grid-gap:1.25rem;padding:0}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid>*{background-clip:border-box;border-width:0}}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-0{padding:0 0 0 0}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-0>*{border-width:0 0 0 0}@supports (display:grid){body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-0{grid-gap:0;padding:0}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-0>*{border-width:0}}@media (max-width:37.4375rem){body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-10-mobile{padding:.625rem 0 0 .625rem}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-10-mobile>*{border-width:0 .625rem .625rem 0}@supports (display:grid){body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-10-mobile{grid-gap:.625rem;padding:0}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-10-mobile>*{border-width:0}}}@media (min-width:37.5rem){body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-30-row-desktop{padding:1.875rem 0 0 1.875rem}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-30-row-desktop>*{border-width:0 1.875rem 1.875rem 0}@supports (display:grid){body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-30-row-desktop{grid-gap:1.875rem;padding:0}body:not(.wp-admin) .layout:not(.layout--5up):not([class*=layout--sidebar]) .layout__grid--gap-30-row-desktop>*{border-width:0}}}body:not(.wp-admin) .layout--sidebar>.layout__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:100%;padding:1.25rem 0 0 1.25rem}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid{-ms-flex-line-pack:start;align-content:start;display:grid;grid-gap:1.25rem;padding:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid>.layout__item{background-clip:padding-box;border-color:transparent;border-style:solid;border-width:0 1.25rem 1.25rem 0;-webkit-box-sizing:border-box;box-sizing:border-box}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid>.layout__item{background-clip:border-box;border-width:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-0{padding:0}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-0{grid-gap:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-0>.layout__item{border-width:0}body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-30{padding:1.875rem 0 0 1.875rem}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-30{grid-gap:1.875rem;padding:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-30>.layout__item{border-width:0 1.875rem 1.875rem 0}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid--gap-30>.layout__item{border-width:0}body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break]){grid-template-columns:minmax(0,1fr)}}@media (min-width:64rem){@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break]){grid-template-columns:minmax(0,1fr) 18.75rem}}}body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}@media (min-width:64rem){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item{-ms-flex-preferred-size:calc(100% - 18.75rem);flex-basis:calc(100% - 18.75rem);max-width:calc(100% - 18.75rem)}}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item{max-width:none}@media (min-width:64rem){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item{grid-row-start:1}}}@media (min-width:64rem){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item--main{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item--main{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item--sidebar{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}@media (min-width:64rem){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item--sidebar{-ms-flex-preferred-size:18.75rem;flex-basis:18.75rem;max-width:18.75rem;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid:not([class*=break])>.layout__item--sidebar{max-width:none;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left{grid-template-rows:auto}body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left:not([class*=break]){grid-template-columns:minmax(0,1fr)}@media (min-width:64rem){body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left:not([class*=break]){grid-template-columns:18.75rem minmax(0,1fr)}body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left:not([class*=break])>.layout__item--main{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left:not([class*=break])>.layout__item--main{grid-column-start:2;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left:not([class*=break])>.layout__item--sidebar{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}@supports (display:grid){body:not(.wp-admin) .layout--sidebar>.layout__grid--sidebar-left:not([class*=break])>.layout__item--sidebar{grid-column-start:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}}.skip-link{opacity:0;position:absolute}.story__flag{margin-bottom:.4375rem}.story__headline{margin-bottom:.625rem}.story__image{margin-bottom:.625rem;position:relative}.story__image img{display:block}.sidebar-images--hide .story__image{display:none}.story__excerpt{margin-bottom:.625rem}.story__icon--image{bottom:.625rem;left:.625rem;position:absolute}.story__icon--inline{margin-right:.3125rem;vertical-align:middle}.story--i-flex{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.story--i-flex .story__image{-ms-flex-negative:0;flex-shrink:0;margin-bottom:0;margin-right:.9375rem}.story--i-float::after{clear:both;content:'';display:table}.story--i-float .story__image{float:left;margin-bottom:0;margin-right:.9375rem}.story--list+.story--list{border-top:1px #ccc solid;margin-top:.9375rem;padding-top:.9375rem}.story--list .story__headline{margin-bottom:.4375rem}.story--hfs .webwood,.story--hs .webwood{letter-spacing:-.04em}.story--promo .story__image{margin-bottom:0}.story--promo .story__headline{margin-bottom:0;padding-top:.125rem}.story--promo .story__icon--inline{padding-left:.1875rem;vertical-align:top}.story--archive .meta,.story--archive .story__excerpt{display:none}@media (min-width:37.5rem){.story--archive .meta,.story--archive .story__excerpt{display:block}}.story--archive .meta{margin-bottom:.9375rem}.story--archive .story__image--floated{margin-right:.625rem}@media (min-width:37.5rem){.story--archive .story__image--floated{margin-right:1.25rem}}
/*# sourceMappingURL=global-assets-critical.min.css.map */</style><link rel="stylesheet" class="wp-asset-manager global-assets" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/global-assets.min.css?ver=c4fb1bc4d4dead5ea478" media="print" onload="this.onload=null;this.media='all'" /><noscript><link rel="stylesheet" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/global-assets.min.css?ver=c4fb1bc4d4dead5ea478" media="all" class="wp-asset-manager global-assets" /></noscript><style class="wp-asset-manager header-footer-critical" type="text/css">.more-stories{border-top:5px solid #c60800;display:none}@media (min-width:37.5rem){.more-stories{display:block}}.more-stories__inner{margin:3.125rem auto;max-width:66.5rem;padding:0 .625rem}@media (min-width:80rem){.more-stories__inner{padding:0}}.more-stories__title{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;font-size:1.25rem;letter-spacing:-.01em;line-height:.9;text-transform:uppercase}body{padding-top:3.25rem}body.header-recirc-bar-enabled{padding-top:9.1875rem}@media (max-width:37.4375rem){body.header-recirc-bar-enabled.recirc-bar-mobile-disabled{padding-top:3.25rem}}@media (min-width:37.5rem){body.header-recirc-bar-enabled{padding-top:9.875rem}}@media (min-width:48rem){body{padding-top:6.625rem}body.header-recirc-bar-enabled{padding-top:13.25rem}}.site-header{position:fixed;top:0;width:100%;z-index:9999}@media (min-width:48rem){.site-header__container{height:calc(6.625rem - 20px)}}.site-header__wrapper{background:#c60800;color:#fff;height:3.25rem;max-height:100%;position:relative;z-index:299}@media (min-width:48rem){.site-header__wrapper{height:6.625rem}}.site-header__container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 auto;max-width:80.625rem;padding:.625rem .8125rem;position:relative}@media (min-width:48rem){.site-header__container{max-width:81.25rem;padding:1.25rem}}.site-header__left,.site-header__right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.site-header__left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-right:.625rem}@media (min-width:37.5rem){.site-header__left{margin-right:0}}.site-header__left>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:auto}.site-header__right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-left:.625rem;min-width:5rem}@media (min-width:37.5rem){.site-header__right{margin-left:0}}.site-header__right>div{display:none}@media (min-width:64rem){.site-header__right__search{display:none}}.site-header__email,.site-header__search-toggle{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;background-repeat:no-repeat;border-radius:2px;margin-left:.3125rem;opacity:1}@media (min-width:37.5rem){.site-header__email,.site-header__search-toggle{margin-left:1.25rem}}.site-header__search-toggle{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMyIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDIzIDI0IiB0YWJpbmRleD0iLTEiIGFyaWEtaGlkZGVuPSJ0cnVlIj48cGF0aCBkYXRhLW5hbWU9IlNlYXJjaCBJY29uIiBkPSJNMjEuNTY4IDI0bC03LjM0OC03LjM0NGE5LjIxOCA5LjIxOCAwIDExMS41NC0xLjMyNUwyMyAyMi41NjkgMjEuNTY5IDI0ek05LjExNiAyLjAyNWE3LjA4NyA3LjA4NyAwIDEwNy4wOTEgNy4wODcgNy4xIDcuMSAwIDAwLTcuMDkxLTcuMDg3eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);background-position:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:1.875rem;width:1.875rem}@media (min-width:64rem){.site-header__right .site-header__search-toggle{display:none}}.site-header__email{display:none}@media (min-width:64rem){.site-header__email{display:block;padding:.1875rem}.site-header__email-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMSAyNCI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDQxMiIgZD0iTTEgMXYxMmw2LjAxMS02LjAxMXoiLz48cGF0aCBkYXRhLW5hbWU9IlBhdGggNDEzIiBkPSJNMTEuMDExIDcuMDExTDE3IDEzVjF6Ii8+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDQxNCIgZD0iTTkuMDMxIDlMNy4wMTIgNi45ODkgMSAxM2gxNmwtNS45ODktNS45ODl6Ii8+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDQxNSIgZD0iTTEgMWw2LjAxMSA1Ljk4OUw5LjAzMSA5bDEuOTgxLTEuOTg5TDE3IDF6Ii8+PC9nPjwvc3ZnPg==);background-size:3.4375rem 2.6875rem;display:block;height:1.625rem;width:2.0625rem}}.site-header__logo{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.site-header__logo>a{display:block}.site-header__logo>a,.site-header__logo svg{height:1.875rem}@media (min-width:30rem){.site-header__logo>a,.site-header__logo svg{height:2rem}}@media (min-width:48rem){.site-header__logo>a,.site-header__logo svg{height:3.4375rem}.local-country-au .site-header__logo>a,.local-country-au .site-header__logo svg{height:3rem;width:18.75rem}}.site-header__logo svg{margin:0 auto;width:auto}.site-header__date{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;background-color:#000;display:none;font-size:.75rem;height:1.25rem;letter-spacing:-.01em;line-height:1.25rem;text-align:center;text-transform:uppercase}@media (min-width:48rem){.site-header__date{display:block}}.site-header__sports-plus{background:#ffd62b;margin:0 auto;position:relative}.site-header__sports-plus .site-container{padding:0}body.nyp-membership-user--subscribed .site-header__sports-plus .pencil-unit{display:none}body.nyp-membership-user--subscribed .site-header__sports-plus .recirc--membership{display:none}body.nyp-membership-user--subscribed .site-header__sports-plus .recirc--membership.recirc--enabled{display:block}body:not(.nyp-membership-user--subscribed) .site-header__sports-plus .pencil-unit{display:-webkit-box;display:-ms-flexbox;display:flex}body:not(.nyp-membership-user--subscribed) .site-header__sports-plus .recirc--membership{display:none}.site-header__nav{display:none}.search--header{position:absolute;-webkit-transform:translateY(-200%);transform:translateY(-200%)}.menu-toggle{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:transparent;border:1px solid #fff;border-radius:2px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;padding:.4375rem}@media (min-width:48rem){.menu-toggle{padding:.4375rem}}.menu-toggle__icon{display:block;height:.875rem;position:relative;width:1rem}.menu-toggle__line{background-color:#fff;display:block;height:.125rem;position:absolute;width:100%}.menu-toggle__line:nth-of-type(1){left:0;top:0}.menu-toggle__line:nth-of-type(2){left:0;margin-top:-.0625rem;top:50%}.menu-toggle__line:nth-of-type(3){bottom:0;left:0}.menu-toggle__title{display:none}@media (min-width:48rem){.menu-toggle__title{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;-webkit-transition:.2s color ease-in-out;transition:.2s color ease-in-out;color:#fff;display:block;font-size:.875rem;letter-spacing:.04em;line-height:1;margin-left:.4375rem;margin-top:.0625rem;padding-bottom:.125rem;text-transform:uppercase}}.page--404 .search--interior{height:2.6875rem;visibility:hidden}
/*# sourceMappingURL=header-footer-critical.min.css.map */</style><link rel="stylesheet" class="wp-asset-manager header-footer" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/header-footer.min.css?ver=1dab0cbf330959691b1c" media="print" onload="this.onload=null;this.media='all'" /><noscript><link rel="stylesheet" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/header-footer.min.css?ver=1dab0cbf330959691b1c" media="all" class="wp-asset-manager header-footer" /></noscript><link rel="stylesheet" class="wp-asset-manager zephr" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/zephr.min.css?ver=92918cfb60dcb8c90e62" media="print" onload="this.onload=null;this.media='all'" /><noscript><link rel="stylesheet" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/zephr.min.css?ver=92918cfb60dcb8c90e62" media="all" class="wp-asset-manager zephr" /></noscript><style class="wp-asset-manager home-critical" type="text/css">body:not(.wp-admin) .layout--3up{height:100%}body:not(.wp-admin) .layout--3up>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--3up>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--3up>.layout__grid>*{max-width:none}}@media (min-width:48rem){body:not(.wp-admin) .layout--3up>.layout__grid:not([class*=break])>*{flex-basis:calc(100%/2);-ms-flex-preferred-size:calc(100%/2);max-width:calc(100%/2)}@supports (display:grid){body:not(.wp-admin) .layout--3up>.layout__grid:not([class*=break]){grid-template-columns:repeat(2,minmax(0,1fr))}body:not(.wp-admin) .layout--3up>.layout__grid:not([class*=break])>*{max-width:none}}body:not(.wp-admin) .layout--3up>.layout__grid:not([class*=break]) .layout__item--full{flex-basis:calc(2/2*100%);-ms-flex-preferred-size:calc(2/2*100%);max-width:calc(2/2*100%)}@supports (display:grid){body:not(.wp-admin) .layout--3up>.layout__grid:not([class*=break]) .layout__item--full{grid-column-start:span 2;max-width:none}}}body:not(.wp-admin) .layout--3up--static>.layout__grid>*{flex-basis:calc(100%/2);-ms-flex-preferred-size:calc(100%/2);max-width:calc(100%/2)}@supports (display:grid){body:not(.wp-admin) .layout--3up--static>.layout__grid{grid-template-columns:repeat(2,minmax(0,1fr))}body:not(.wp-admin) .layout--3up--static>.layout__grid>*{max-width:none}}body:not(.wp-admin) .layout--3up--static>.layout__grid .layout__item--full{flex-basis:calc(2/2*100%);-ms-flex-preferred-size:calc(2/2*100%);max-width:calc(2/2*100%)}@supports (display:grid){body:not(.wp-admin) .layout--3up--static>.layout__grid .layout__item--full{grid-column-start:span 2;max-width:none}}body:not(.wp-admin) .layout--full>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--full>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--full>.layout__grid>*{max-width:none}}body:not(.wp-admin) .layout--thirds>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--thirds>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--thirds>.layout__grid>*{max-width:none}}@media (min-width:48rem){body:not(.wp-admin) .layout--thirds>.layout__grid>*{flex-basis:calc(100%/3);-ms-flex-preferred-size:calc(100%/3);max-width:calc(100%/3)}@supports (display:grid){body:not(.wp-admin) .layout--thirds>.layout__grid{grid-template-columns:repeat(3,minmax(0,1fr))}body:not(.wp-admin) .layout--thirds>.layout__grid>*{max-width:none}}}@media (min-width:37.5rem){.module--3up .module__button--mobile{margin-top:.9375rem}}@media (min-width:48rem){.module--3up .module__button--mobile{display:none}}.module--3up .module__button--desktop{display:none}@media (min-width:48rem){.module--3up .module__button--desktop{display:block}}.module--lede-daily .layout__item--main,.module--lede-daily .layout__item--sidebar{flex-basis:calc(3/3*100%);-ms-flex-preferred-size:calc(3/3*100%);max-width:calc(3/3*100%)}@supports (display:grid){.module--lede-daily .layout__item--main,.module--lede-daily .layout__item--sidebar{grid-column-start:span 3;max-width:none}}@media (min-width:64rem){.module--lede-daily .layout__item--main{flex-basis:calc(2/3*100%);-ms-flex-preferred-size:calc(2/3*100%);max-width:calc(2/3*100%)}@supports (display:grid){.module--lede-daily .layout__item--main{grid-column-start:span 2;max-width:none}}.module--lede-daily .layout__item--sidebar{flex-basis:calc(1/3*100%);-ms-flex-preferred-size:calc(1/3*100%);max-width:calc(1/3*100%)}@supports (display:grid){.module--lede-daily .layout__item--sidebar{grid-column-start:span 1;max-width:none}}}.sidebar-images--hide .module-sidebar .story__image{display:none}.widget-wrapper{padding-bottom:1.25rem}.widget--border{border:1px solid #ccc;padding:.9375rem 1.25rem}.widget__link{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;font-size:.8125rem;letter-spacing:.08em;padding:0;text-transform:uppercase}.widget__link,.entry-content .widget__link{color:#000}
/*# sourceMappingURL=home-critical.min.css.map */</style><link rel="stylesheet" class="wp-asset-manager home" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/home.min.css?ver=7749a98e0e1121ae7cea" media="print" onload="this.onload=null;this.media='all'" /><noscript><link rel="stylesheet" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/home.min.css?ver=7749a98e0e1121ae7cea" media="all" class="wp-asset-manager home" /></noscript><style class="wp-asset-manager page-default-critical" type="text/css">.interior-menu{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;border-bottom:3px solid #c60800;border-top:3px solid #c60800;margin-bottom:1.875rem;padding-right:2.5rem;position:relative}@media (min-width:64rem){.interior-menu{border-bottom:0;border-top:0;margin-bottom:0}}.interior-menu .current-menu-item{display:block;margin-top:.9375rem;position:absolute;top:0;width:100%}@media (min-width:64rem){.interior-menu .current-menu-item{margin-top:0;position:relative}}.interior-menu__heading{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;color:#000;font-size:1rem;letter-spacing:-.01em;line-height:1.25;margin-bottom:1.25rem}.interior-menu__sub-heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;color:#c60800;font-size:.875rem;letter-spacing:.04em;line-height:1.1;margin-top:.9375rem;padding-left:.9375rem}@media (min-width:64rem){.interior-menu__sub-heading{color:#000;margin-top:0;padding-left:0}.interior-menu__sub-heading--border{border-bottom:2px #c60800 solid;margin-bottom:.9375rem;padding-bottom:.5rem}}.interior-menu__nav{padding-left:.9375rem}@media (min-width:64rem){.interior-menu__nav{padding-left:0}}.interior-menu__nav li{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;color:#585858;display:none;font-size:.75rem;letter-spacing:-.01em;line-height:1.1;margin-bottom:.9375rem}@media (min-width:64rem){.interior-menu__nav li{display:block}}.interior-menu__nav+.interior-menu__sub-heading{padding-top:1.25rem}.interior-menu--page>div>ul>li>a{display:none}body:not(.wp-admin) .layout--full>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--full>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--full>.layout__grid>*{max-width:none}}
/*# sourceMappingURL=page-default-critical.min.css.map */</style><style class="wp-asset-manager interior-with-sidebar-critical" type="text/css">.archive .layout__item--sidebar .ad--container:not(:last-child),.archive .widget:not(:last-child),.page .layout__item--sidebar .ad--container:not(:last-child),.page .widget:not(:last-child),.section .layout__item--sidebar .ad--container:not(:last-child),.section .widget:not(:last-child),.single .layout__item--sidebar .ad--container:not(:last-child),.single .widget:not(:last-child){margin-bottom:1.25rem}.widget-wrapper{padding-bottom:1.25rem}.widget--border{border:1px solid #ccc;padding:.9375rem 1.25rem}.widget__link{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;font-size:.8125rem;letter-spacing:.08em;padding:0;text-transform:uppercase}.widget__link,.entry-content .widget__link{color:#000}
/*# sourceMappingURL=interior-with-sidebar-critical.min.css.map */</style><link rel="stylesheet" class="wp-asset-manager interior-with-sidebar" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/interior-with-sidebar.min.css?ver=247c81dd0fd26cbb16ea" media="print" onload="this.onload=null;this.media='all'" /><noscript><link rel="stylesheet" href="https://nypost.com/wp-content/themes/nypost-2016/nypost-2021/client/build/css/interior-with-sidebar.min.css?ver=247c81dd0fd26cbb16ea" media="all" class="wp-asset-manager interior-with-sidebar" /></noscript><style class="wp-asset-manager membership-critical" type="text/css">.grid-container{-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:auto;margin-right:auto;max-width:100%;padding:1.25rem 0 0 1.25rem}.grid-col{background-clip:padding-box;border-color:transparent;border-style:solid;border-width:0 1.25rem 1.25rem 0;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}@supports (display:grid){.grid-container{display:grid;grid-gap:1.25rem;grid-template-columns:repeat(10,minmax(0,1fr));padding:0}.grid-col{border-width:0;width:auto}}.grid-col-1{flex-basis:calc(1/10*100%);-ms-flex-preferred-size:calc(1/10*100%);max-width:calc(1/10*100%)}.grid-col-2{flex-basis:calc(2/10*100%);-ms-flex-preferred-size:calc(2/10*100%);max-width:calc(2/10*100%)}.grid-col-5{flex-basis:calc(5/10*100%);-ms-flex-preferred-size:calc(5/10*100%);max-width:calc(5/10*100%)}.grid-col-8{flex-basis:calc(8/10*100%);-ms-flex-preferred-size:calc(8/10*100%);max-width:calc(8/10*100%)}.grid-col-10{flex-basis:calc(10/10*100%);-ms-flex-preferred-size:calc(10/10*100%);max-width:calc(10/10*100%)}@media (min-width:37.5rem){.grid-col-sm-1{flex-basis:calc(1/10*100%);-ms-flex-preferred-size:calc(1/10*100%);max-width:calc(1/10*100%)}.grid-col-sm-2{flex-basis:calc(2/10*100%);-ms-flex-preferred-size:calc(2/10*100%);max-width:calc(2/10*100%)}.grid-col-sm-3{flex-basis:calc(3/10*100%);-ms-flex-preferred-size:calc(3/10*100%);max-width:calc(3/10*100%)}.grid-col-sm-4{flex-basis:calc(4/10*100%);-ms-flex-preferred-size:calc(4/10*100%);max-width:calc(4/10*100%)}.grid-col-sm-5{flex-basis:calc(5/10*100%);-ms-flex-preferred-size:calc(5/10*100%);max-width:calc(5/10*100%)}.grid-col-sm-6{flex-basis:calc(6/10*100%);-ms-flex-preferred-size:calc(6/10*100%);max-width:calc(6/10*100%)}.grid-col-sm-7{flex-basis:calc(7/10*100%);-ms-flex-preferred-size:calc(7/10*100%);max-width:calc(7/10*100%)}.grid-col-sm-8{flex-basis:calc(8/10*100%);-ms-flex-preferred-size:calc(8/10*100%);max-width:calc(8/10*100%)}.grid-col-sm-9{flex-basis:calc(9/10*100%);-ms-flex-preferred-size:calc(9/10*100%);max-width:calc(9/10*100%)}.grid-col-sm-10{flex-basis:calc(10/10*100%);-ms-flex-preferred-size:calc(10/10*100%);max-width:calc(10/10*100%)}}@media (min-width:48rem){.grid-col-md-1{flex-basis:calc(1/10*100%);-ms-flex-preferred-size:calc(1/10*100%);max-width:calc(1/10*100%)}.grid-col-md-2{flex-basis:calc(2/10*100%);-ms-flex-preferred-size:calc(2/10*100%);max-width:calc(2/10*100%)}.grid-col-md-3{flex-basis:calc(3/10*100%);-ms-flex-preferred-size:calc(3/10*100%);max-width:calc(3/10*100%)}.grid-col-md-4{flex-basis:calc(4/10*100%);-ms-flex-preferred-size:calc(4/10*100%);max-width:calc(4/10*100%)}}@media (min-width:64rem){.grid-col-lg-2{flex-basis:calc(2/10*100%);-ms-flex-preferred-size:calc(2/10*100%);max-width:calc(2/10*100%)}.grid-col-lg-8{flex-basis:calc(8/10*100%);-ms-flex-preferred-size:calc(8/10*100%);max-width:calc(8/10*100%)}}@supports (display:grid){.grid-col-1{grid-column-start:span 1;max-width:none}.grid-col-2{grid-column-start:span 2;max-width:none}.grid-col-3{grid-column-start:span 3;max-width:none}.grid-col-4{grid-column-start:span 4;max-width:none}.grid-col-5{grid-column-start:span 5;max-width:none}.grid-col-6{grid-column-start:span 6;max-width:none}.grid-col-7{grid-column-start:span 7;max-width:none}.grid-col-8{grid-column-start:span 8;max-width:none}.grid-col-9{grid-column-start:span 9;max-width:none}.grid-col-10{grid-column-start:span 10;max-width:none}@media (min-width:37.5rem){.grid-col-sm-1{grid-column-start:span 1;max-width:none}.grid-col-sm-2{grid-column-start:span 2;max-width:none}.grid-col-sm-3{grid-column-start:span 3;max-width:none}.grid-col-sm-4{grid-column-start:span 4;max-width:none}.grid-col-sm-5{grid-column-start:span 5;max-width:none}.grid-col-sm-6{grid-column-start:span 6;max-width:none}.grid-col-sm-7{grid-column-start:span 7;max-width:none}.grid-col-sm-8{grid-column-start:span 8;max-width:none}.grid-col-sm-9{grid-column-start:span 9;max-width:none}.grid-col-sm-10{grid-column-start:span 10;max-width:none}}@media (min-width:48rem){.grid-col-md-1{grid-column-start:span 1;max-width:none}.grid-col-md-2{grid-column-start:span 2;max-width:none}.grid-col-md-3{grid-column-start:span 3;max-width:none}.grid-col-md-4{grid-column-start:span 4;max-width:none}.grid-col-md-5{grid-column-start:span 5;max-width:none}.grid-col-md-6{grid-column-start:span 6;max-width:none}.grid-col-md-7{grid-column-start:span 7;max-width:none}.grid-col-md-8{grid-column-start:span 8;max-width:none}.grid-col-md-9{grid-column-start:span 9;max-width:none}.grid-col-md-10{grid-column-start:span 10;max-width:none}}@media (min-width:64rem){.grid-col-lg-1{grid-column-start:span 1;max-width:none}.grid-col-lg-2{grid-column-start:span 2;max-width:none}.grid-col-lg-3{grid-column-start:span 3;max-width:none}.grid-col-lg-4{grid-column-start:span 4;max-width:none}.grid-col-lg-5{grid-column-start:span 5;max-width:none}.grid-col-lg-6{grid-column-start:span 6;max-width:none}.grid-col-lg-7{grid-column-start:span 7;max-width:none}.grid-col-lg-8{grid-column-start:span 8;max-width:none}.grid-col-lg-9{grid-column-start:span 9;max-width:none}.grid-col-lg-10{grid-column-start:span 10;max-width:none}}@media (min-width:80rem){.grid-col-xl-1{grid-column-start:span 1;max-width:none}.grid-col-xl-2{grid-column-start:span 2;max-width:none}.grid-col-xl-3{grid-column-start:span 3;max-width:none}.grid-col-xl-4{grid-column-start:span 4;max-width:none}.grid-col-xl-5{grid-column-start:span 5;max-width:none}.grid-col-xl-6{grid-column-start:span 6;max-width:none}.grid-col-xl-7{grid-column-start:span 7;max-width:none}.grid-col-xl-8{grid-column-start:span 8;max-width:none}.grid-col-xl-9{grid-column-start:span 9;max-width:none}.grid-col-xl-10{grid-column-start:span 10;max-width:none}}}body:not(.wp-admin) .layout--full>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--full>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--full>.layout__grid>*{max-width:none}}body:not(.wp-admin) .layout--halves>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--halves>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--halves>.layout__grid>*{max-width:none}}@media (min-width:37.5rem){body:not(.wp-admin) .layout--halves>.layout__grid>*{flex-basis:calc(100%/2);-ms-flex-preferred-size:calc(100%/2);max-width:calc(100%/2)}@supports (display:grid){body:not(.wp-admin) .layout--halves>.layout__grid{grid-template-columns:repeat(2,minmax(0,1fr))}body:not(.wp-admin) .layout--halves>.layout__grid>*{max-width:none}}}body:not(.wp-admin) .layout--halves-thirds>.layout__grid>*{flex-basis:calc(100%/2);-ms-flex-preferred-size:calc(100%/2);max-width:calc(100%/2)}@supports (display:grid){body:not(.wp-admin) .layout--halves-thirds>.layout__grid{grid-template-columns:repeat(2,minmax(0,1fr))}body:not(.wp-admin) .layout--halves-thirds>.layout__grid>*{max-width:none}}@media (min-width:37.5rem){body:not(.wp-admin) .layout--halves-thirds>.layout__grid>*{flex-basis:calc(100%/3);-ms-flex-preferred-size:calc(100%/3);max-width:calc(100%/3)}@supports (display:grid){body:not(.wp-admin) .layout--halves-thirds>.layout__grid{grid-template-columns:repeat(3,minmax(0,1fr))}body:not(.wp-admin) .layout--halves-thirds>.layout__grid>*{max-width:none}}}body:not(.wp-admin) .layout--thirds>.layout__grid>*{flex-basis:calc(100%/1);-ms-flex-preferred-size:calc(100%/1);max-width:calc(100%/1)}@supports (display:grid){body:not(.wp-admin) .layout--thirds>.layout__grid{grid-template-columns:repeat(1,minmax(0,1fr))}body:not(.wp-admin) .layout--thirds>.layout__grid>*{max-width:none}}@media (min-width:48rem){body:not(.wp-admin) .layout--thirds>.layout__grid>*{flex-basis:calc(100%/3);-ms-flex-preferred-size:calc(100%/3);max-width:calc(100%/3)}@supports (display:grid){body:not(.wp-admin) .layout--thirds>.layout__grid{grid-template-columns:repeat(3,minmax(0,1fr))}body:not(.wp-admin) .layout--thirds>.layout__grid>*{max-width:none}}}.button--secondary-sm,.entry-content .button--secondary-sm{background-color:transparent;border:0;border-radius:0;cursor:pointer;outline:0;overflow:visible;text-decoration:none;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;display:inline-block;padding:0;text-transform:uppercase;font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;min-width:auto;padding:.25rem .625rem!important;text-transform:uppercase;background-color:transparent;border:1px solid #ccc;border-radius:6px}.button--social,.entry-content .button--social{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.9375rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-transform:capitalize}.button--social [class^=icon-],.entry-content .button--social [class^=icon-]{margin-right:.625rem}.button--login,.entry-content .button--login{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #fff;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.25rem .625rem .1875rem;white-space:nowrap}@media (min-width:48rem){.button--login,.entry-content .button--login{font-size:.875rem;padding:.3125rem 1rem .375rem}}.button--login .icon-account,.entry-content .button--login .icon-account{display:none}@media (min-width:48rem){.button--login .icon-account,.entry-content .button--login .icon-account{display:inline-block;margin-right:.3125rem}}.social-action-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:1.875rem 0 0}@media (min-width:48rem){.social-action-buttons #paypal-button{margin-right:1.25rem}}.social-action-buttons .button{background-color:#fff;border-color:#000;border-radius:4px;height:2.5rem;margin-bottom:.625rem;max-height:2.5rem;padding:0}@media (min-width:48rem){.social-action-buttons{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.social-action-buttons .button{margin:0 1.25rem 0 0;max-width:9.25rem;width:9.25rem}}.icon-email{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMSAyNCI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDQxMiIgZD0iTTEgMXYxMmw2LjAxMS02LjAxMXoiLz48cGF0aCBkYXRhLW5hbWU9IlBhdGggNDEzIiBkPSJNMTEuMDExIDcuMDExTDE3IDEzVjF6Ii8+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDQxNCIgZD0iTTkuMDMxIDlMNy4wMTIgNi45ODkgMSAxM2gxNmwtNS45ODktNS45ODl6Ii8+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDQxNSIgZD0iTTEgMWw2LjAxMSA1Ljk4OUw5LjAzMSA5bDEuOTgxLTEuOTg5TDE3IDF6Ii8+PC9nPjwvc3ZnPg==);background-size:3.4375rem 2.6875rem;display:block;height:1.625rem;width:2.0625rem}.icon-dropdown-arrow{border-color:#000 transparent transparent transparent;border-style:solid;border-width:.375rem .25rem 0 .25rem;display:inline-block;height:0;width:0}.icon-right-arrow{border-color:transparent transparent transparent #fff;border-style:solid;border-width:.3125rem 0 .3125rem .3125rem;content:'';display:inline-block;margin-left:.3125rem}.icon-community{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTkiIGhlaWdodD0iMjIuNDYyIiB2aWV3Qm94PSIwIDAgMTkgMjIuNDYyIj4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZV85MjkiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDkyOSIgd2lkdGg9IjE5IiBoZWlnaHQ9IjIyLjQ2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIgLTIpIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMCwwLDAsMCkiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+CiAgPGcgaWQ9Imljb25fZGlzY3Vzc2lvbnMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiPgogICAgPGcgaWQ9Ikdyb3VwXzMxMzIiIGRhdGEtbmFtZT0iR3JvdXAgMzEzMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPgogICAgICA8cGF0aCBpZD0iUGF0aF85MjQ2IiBkYXRhLW5hbWU9IlBhdGggOTI0NiIgZD0iTTcuNjkzLjdhNi45ODksNi45ODksMCwxLDEsMCwxMy45NzhINy40NTFsLS4xOS4xNDhMNC40NDYsMTcuMDE3LDQuNDY1LDE0LjNsMC0uNC0uMzQ2LS4yMDZBNi45ODQsNi45ODQsMCwwLDEsNy42OTMuN20wLS43QTcuNjg3LDcuNjg3LDAsMCwwLDMuNzYyLDE0LjNsLS4wMjksNC4xNjUsMy45Ni0zLjA3NkE3LjY5Myw3LjY5MywwLDAsMCw3LjY5MywwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjNTg1ODU4IiBzdHJva2U9IiM1ODU4NTgiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIwLjUiLz4KICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZV85MjciIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDkyNyIgd2lkdGg9IjUuOTgiIGhlaWdodD0iMC45NSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy40MjIgOS4yMDEpIiBmaWxsPSIjNTg1ODU4IiBzdHJva2U9IiM1ODU4NTgiIHN0cm9rZS13aWR0aD0iMC40Ii8+CiAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGVfOTI4IiBkYXRhLW5hbWU9IlJlY3RhbmdsZSA5MjgiIHdpZHRoPSI4LjU0NCIgaGVpZ2h0PSIwLjk1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjQyMSA1LjM1NikiIGZpbGw9IiM1ODU4NTgiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLXdpZHRoPSIwLjQiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo=);background-repeat:no-repeat;background-size:1.1875rem 1.4375rem;display:inline-block;height:1.4375rem;width:1.1875rem}.icon-gift-box{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNy4zMSIgaGVpZ2h0PSIxOS43MDgiPjxnIGRhdGEtbmFtZT0iSWNvbiBpb25pYy1pb3MtZ2lmdCI+PGcgZGF0YS1uYW1lPSJHcm91cCAzMzkiPjxwYXRoIGRhdGEtbmFtZT0iUGF0aCA3NDY5IiBkPSJNMTIuODQgNC41ODlhMi42IDIuNiAwIDAwLjktMS45NDFBMi43MiAyLjcyIDAgMDAxMC45NDkuMDAxYTIuNTI5IDIuNTI5IDAgMDEtNC4zMTQgMCAyLjcyIDIuNzIgMCAwMC0yLjc4NCAyLjY1IDIuNTc1IDIuNTc1IDAgMDAuOSAxLjk0MW02LjItMy4zNTZhMS40NSAxLjQ1IDAgMDExLjQ4NyAxLjQxMiAxLjQ1MSAxLjQ1MSAwIDAxLTEuNDg3IDEuNDEySDkuNDYzYzAtMi4xMTguNjY0LTIuODI0IDEuNDg1LTIuODI0em0tNC4zMTQgMGMuODIxIDAgMS40ODcuNzA2IDEuNDg3IDIuODIzSDYuNjM3YTEuNDEzIDEuNDEzIDAgMTEwLTIuODIzeiIgZmlsbD0iIzU4NTg1OCIvPjwvZz48L2c+PHBhdGggZGF0YS1uYW1lPSJSZWN0YW5nbGUgODM5IiBmaWxsPSIjNTg1ODU4IiBkPSJNMCA4LjE0NWg3Ljk5OHYxMS41NjNIMHoiLz48cGF0aCBkYXRhLW5hbWU9IlJlY3RhbmdsZSA4NDAiIGZpbGw9IiM1ODU4NTgiIGQ9Ik05LjMxMiA4LjE0NWg3Ljk5OHYxMS41NjNIOS4zMTJ6Ii8+PHBhdGggZGF0YS1uYW1lPSJSZWN0YW5nbGUgODQxIiBmaWxsPSIjNTg1ODU4IiBkPSJNLjAxOCA0LjUzM0gxNy4zMXYyLjQzSC4wMTh6Ii8+PC9zdmc+Cg==);background-repeat:no-repeat;background-size:1.125rem 1.25rem;display:inline-block;height:1.25rem;width:1.125rem}.icon-rewards{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNS45OTYiIGhlaWdodD0iMTkuNDQxIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDMwLjc0MyAtMTE0LjM0OCkiIGZpbGw9IiM1ODU4NTgiPjxwYXRoIGRhdGEtbmFtZT0iUGF0aCA5MTE3IiBkPSJNNDQxLjA2NiAxMjYuMjQ1YTYuMzg0IDYuMzg0IDAgMDAxLjMtLjY4IDYuMyA2LjMgMCAwMDEuMDQxLS44OTNsMy4zMzcgNS44LTMuOTMxLS4wMjEtMS45NzcgMy4zMzUtMS42NzgtMy4zMTR6Ii8+PHBhdGggZGF0YS1uYW1lPSJQYXRoIDkxMTgiIGQ9Ik00NDAuMTU2IDEyNi40MzNsLTMuMjcyIDcuMDc2LTEuOTMzLTMuMDYtNC4yMDctLjA4NSAzLjM0OC02LjI4M2E2LjQ0MiA2LjQ0MiAwIDAwMi41MzggMS45NDggNy42NTMgNy42NTMgMCAwMDMuNTI2LjQwNHoiLz48Y2lyY2xlIGRhdGEtbmFtZT0iRWxsaXBzZSA3NiIgY3g9IjUuNzAxIiBjeT0iNS43MDEiIHI9IjUuNzAxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0MzMuMzE4IDExNC4zNDcpIi8+PC9nPjwvc3ZnPgo=);background-repeat:no-repeat;background-size:1rem 1.25rem;display:inline-block;height:1.25rem;width:1rem}.icon-home-delivery{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNC42IiBoZWlnaHQ9IjE3LjUwOCIgdmlld0JveD0iMCAwIDI0LjYgMTcuNTA4Ij4KICA8ZyBpZD0iaWNvbl9ob21lX2RlbGl2ZXJ5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDc4LjE2OCAtMTgyLjY4KSI+CiAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlXzM3IiBkYXRhLW5hbWU9IlJlY3RhbmdsZSAzNyIgd2lkdGg9IjEyLjQ3NyIgaGVpZ2h0PSIxNS41MDQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ3OC42NjggMTg0LjE4NCkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDxyZWN0IGlkPSJSZWN0YW5nbGVfMzgiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDM4IiB3aWR0aD0iMTEuNDc3IiBoZWlnaHQ9IjE0LjUwNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDkwLjc5MSAxODUuMTg0KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTg1ODU4IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9IlBhdGhfNzQxMCIgZGF0YS1uYW1lPSJQYXRoIDc0MTAiIGQ9Ik00ODkuODA4LDE4NC4xODR2MTUuMjYzYTIwLjg4MiwyMC44ODIsMCwwLDEsMTAuMDctMS4wNGwtLjE1My0xNS4xODVhMzQuMjM4LDM0LjIzOCwwLDAsMC05LjkxNy45NjJaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjk4NCkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDxyZWN0IGlkPSJSZWN0YW5nbGVfMzkiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDM5IiB3aWR0aD0iOC4wMDEiIGhlaWdodD0iMS42MjgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC44NTEgMTg2LjA4MykiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDxyZWN0IGlkPSJSZWN0YW5nbGVfNDAiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDQwIiB3aWR0aD0iOC4wNTciIGhlaWdodD0iOC40NTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC44MjMgMTg5LjI3NCkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDxwYXRoIGlkPSJQYXRoXzc0MTEiIGRhdGEtbmFtZT0iUGF0aCA3NDExIiBkPSJNNDkxLjI1MywxODcuNWEyMS4xNDksMjEuMTQ5LDAsMCwxLDYuNjktLjczNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4xMTEgMSkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjAuNzUiLz4KICAgIDxwYXRoIGlkPSJQYXRoXzc0MTIiIGRhdGEtbmFtZT0iUGF0aCA3NDEyIiBkPSJNNDkxLjI1MywxODkuMTI0YTIxLjE1LDIxLjE1LDAsMCwxLDYuNjktLjczNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4xMTEgMSkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjAuNzUiLz4KICAgIDxwYXRoIGlkPSJQYXRoXzc0MTMiIGRhdGEtbmFtZT0iUGF0aCA3NDEzIiBkPSJNNDkxLjI1MywxOTAuNjg4YTIxLjE5LDIxLjE5LDAsMCwxLDYuNjktLjczOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4xMTEgMSkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjAuNzUiLz4KICAgIDxwYXRoIGlkPSJQYXRoXzc0MTUiIGRhdGEtbmFtZT0iUGF0aCA3NDE1IiBkPSJNNDkxLjI1NSwxODUuOTUxYTE5LjY4OSwxOS42ODksMCwwLDEsMy4wODktLjY0MmMuMzc0LS4wNDcuNzM4LS4wODEsMS4wODktLjEwNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4xMTEgMSkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzU4NTg1OCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjAuNzUiLz4KICAgIDxwYXRoIGlkPSJQYXRoXzc0MTYiIGRhdGEtbmFtZT0iUGF0aCA3NDE2IiBkPSJNNDk3LjUyLDE5Ni42MTRhMTguMDkzLDE4LjA5MywwLDAsMC0zLjA5Mi4wNSwxNy41NTEsMTcuNTUxLDAsMCwwLTIuOTcyLjU2MnYtMy40YTE4LjQwNiwxOC40MDYsMCwwLDEsMi44OTItLjU0MywxOC43MjYsMTguNzI2LDAsMCwxLDMuMTcyLS4wNjhaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjEyOSAtMC40OTIpIiBmaWxsPSIjNTg1ODU4IiBzdHJva2U9IiM1ODU4NTgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgICA8cGF0aCBpZD0iUGF0aF83NDI2IiBkYXRhLW5hbWU9IlBhdGggNzQyNiIgZD0iTTEwNjkuMzI5LDUxNjkuMDI5djEyLjcxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTc3LjMzMiAtNDk4My44MTkpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9IlBhdGhfNzQyNyIgZGF0YS1uYW1lPSJQYXRoIDc0MjciIGQ9Ik0xMDY5LjMyOSw1MTY5LjAyOXYxMi43MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3MC4wNjEgLTQ5ODQuMzQ4KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDxwYXRoIGlkPSJQYXRoXzc0MjgiIGRhdGEtbmFtZT0iUGF0aCA3NDI4IiBkPSJNMTA2OS4zMjksNTE2OS4wMjl2Mi40MjEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NzIuNjYxIC00OTg0LjM0OCkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPC9nPgo8L3N2Zz4K);background-repeat:no-repeat;background-size:1.625rem 1.1875rem;display:inline-block;height:1.1875rem;width:1.625rem}.icon-help{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBpZD0iaWNvbl9oZWxwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOTYgLTg0KSI+CiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzU2IiBkYXRhLW5hbWU9IkVsbGlwc2UgNTYiIGN4PSIxMCIgY3k9IjEwIiByPSIxMCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTYgODQpIiBmaWxsPSIjNTg1ODU4Ii8+CiAgICA8cGF0aCBpZD0iUGF0aF85OTQiIGRhdGEtbmFtZT0iUGF0aCA5OTQiIGQ9Ik0xNi41MjMsMjMuODM2aDIuMDIxdjIuMDIxSDE2LjUyM1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg4LjQ2NiA3NC41MzQpIiBmaWxsPSIjZmZmIi8+CiAgICA8cGF0aCBpZD0iUGF0aF85OTUiIGRhdGEtbmFtZT0iUGF0aCA5OTUiIGQ9Ik0xNy4xNTUsMTguMjExaC0yYzAtMy4yMjUsMy0yLjk5NCwzLTVhMi4wMTEsMi4wMTEsMCwwLDAtMi0yLjAwNywyLjAzMSwyLjAzMSwwLDAsMC0yLDJoLTJhNCw0LDAsMCwxLDguMDA5LDBDMjAuMTU5LDE1LjcxMywxNy4xNTUsMTYsMTcuMTU1LDE4LjIxMVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg5Ljg0NiA3OS4xNDgpIiBmaWxsPSIjZmZmIi8+CiAgPC9nPgo8L3N2Zz4K);background-repeat:no-repeat;background-size:1.25rem 1.25rem;display:inline-block;height:1.25rem;width:1.25rem}.icon-google{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOS42IiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMTkuNiAyMCI+CiAgPGcgaWQ9Imljb25fZ29vZ2xlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTA3Ljg2OCAxNi4zNDYpIj4KICAgIDxwYXRoIGlkPSJTaGFwZSIgZD0iTTEyNi40NjgtNi45MzdhMTEuNTMxLDExLjUzMSwwLDAsMC0uMTgyLTIuMDQ2aC05LjQxOHYzLjg2OWg1LjM4MWE0LjU5Myw0LjU5MywwLDAsMS0yLDMuMDE4Vi40MTNoMy4yMzJhOS43NTIsOS43NTIsMCwwLDAsMi45ODItNy4zNVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEgMC44MTgpIiBmaWxsPSIjNDI4NWY0IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz4KICAgIDxwYXRoIGlkPSJTaGFwZS0yIiBkYXRhLW5hbWU9IlNoYXBlIiBkPSJNMTE3Ljc2MiwyLjQ2NEE5LjU0NCw5LjU0NCwwLDAsMCwxMjQuMzc5LjA0MWwtMy4yMzItMi41MDlhNi4wMDUsNi4wMDUsMCwwLDEtMy4zODYuOTU0LDUuOTYsNS45NiwwLDAsMS01LjYtNC4xMjJoLTMuMzQxdjIuNTlhMTAsMTAsMCwwLDAsOC45MzcsNS41MVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMTA2IDEuMTkpIiBmaWxsPSIjMzRhODUzIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz4KICAgIDxwYXRoIGlkPSJTaGFwZS0zIiBkYXRhLW5hbWU9IlNoYXBlIiBkPSJNMTEyLjI3Mi01YTYuMDEyLDYuMDEyLDAsMCwxLS4zMTMtMS45LDYuMDA3LDYuMDA3LDAsMCwxLC4zMTMtMS45di0yLjU5MWgtMy4zNDFBOS45ODcsOS45ODcsMCwwLDAsMTA3Ljg2OC02LjlhOS45ODYsOS45ODYsMCwwLDAsMS4wNjMsNC40OUwxMTIuMjcyLTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuNTUxKSIgZmlsbD0iI2ZiYmMwNSIgZmlsbC1ydWxlPSJldmVub2RkIi8+CiAgICA8cGF0aCBpZD0iU2hhcGUtNCIgZGF0YS1uYW1lPSJTaGFwZSIgZD0iTTExNy43NjItMTIuMzY5YTUuNCw1LjQsMCwwLDEsMy44MjIsMS41bDIuODY5LTIuODY4YTkuNjA4LDkuNjA4LDAsMCwwLTYuNjkxLTIuNiwxMCwxMCwwLDAsMC04LjkzNyw1LjUwOWwzLjM0MSwyLjU5MWE1Ljk2LDUuOTYsMCwwLDEsNS42LTQuMTIzWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4xMDYpIiBmaWxsPSIjZWE0MzM1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz4KICA8L2c+Cjwvc3ZnPgo=);background-repeat:no-repeat;background-size:1.25rem 1.25rem;display:inline-block;height:1.25rem;width:1.25rem}.icon-google-pay{display:inline-block;height:3.125rem;width:3.125rem}.icon-facebook{display:inline-block;height:1.25rem;width:1.25rem}.icon-apple{display:inline-block;height:1.25rem;width:1rem}.icon-apple-white{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTEzLjM2MyAxMC42MjVBNC40MDkgNC40MDkgMCAwMDE2IDE0LjY3MmExMS4wMzYgMTEuMDM2IDAgMDEtMS4zNiAyLjg0NWMtLjgxOSAxLjIxOC0xLjY2OSAyLjQzMi0zLjAwOCAyLjQ1Ny0xLjMxNi4wMjUtMS43MzktLjc5NC0zLjI0My0uNzk0cy0xLjk3NC43NjktMy4yMTkuODJjLTEuMjkzLjA1LTIuMjc3LTEuMzE3LTMuMS0yLjUzMUMuMzggMTQuOTg0LS45MSAxMC40NTEuODIyIDcuMzkxYTQuOCA0LjggMCAwMTQuMDY2LTIuNTA3YzEuMjY5LS4wMjUgMi40NjcuODY5IDMuMjQzLjg2OXMyLjIzMS0xLjA3NSAzLjc2Mi0uOTE3YTQuNTY0IDQuNTY0IDAgMDEzLjU5MyAxLjk4NCA0LjUyOSA0LjUyOSAwIDAwLTIuMTI0IDMuODA1TTEwLjg5IDMuMTkzQTQuNDU2IDQuNDU2IDAgMDAxMS45MTIgMGE0LjM3OSA0LjM3OSAwIDAwLTIuODk0IDEuNTE2IDQuMjMyIDQuMjMyIDAgMDAtMS4wNDMgMy4wOTMgMy42MiAzLjYyIDAgMDAyLjkxNS0xLjQxNiIvPjwvc3ZnPgo=);background-repeat:no-repeat;background-size:1rem 1.25rem;display:inline-block;height:1.25rem;width:1rem;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTEzLjM2MyAxMC42MjVBNC40MDkgNC40MDkgMCAwMDE2IDE0LjY3MmExMS4wMzYgMTEuMDM2IDAgMDEtMS4zNiAyLjg0NWMtLjgxOSAxLjIxOC0xLjY2OSAyLjQzMi0zLjAwOCAyLjQ1Ny0xLjMxNi4wMjUtMS43MzktLjc5NC0zLjI0My0uNzk0cy0xLjk3NC43NjktMy4yMTkuODJjLTEuMjkzLjA1LTIuMjc3LTEuMzE3LTMuMS0yLjUzMUMuMzggMTQuOTg0LS45MSAxMC40NTEuODIyIDcuMzkxYTQuOCA0LjggMCAwMTQuMDY2LTIuNTA3YzEuMjY5LS4wMjUgMi40NjcuODY5IDMuMjQzLjg2OXMyLjIzMS0xLjA3NSAzLjc2Mi0uOTE3YTQuNTY0IDQuNTY0IDAgMDEzLjU5MyAxLjk4NCA0LjUyOSA0LjUyOSAwIDAwLTIuMTI0IDMuODA1TTEwLjg5IDMuMTkzQTQuNDU2IDQuNDU2IDAgMDAxMS45MTIgMGE0LjM3OSA0LjM3OSAwIDAwLTIuODk0IDEuNTE2IDQuMjMyIDQuMjMyIDAgMDAtMS4wNDMgMy4wOTMgMy42MiAzLjYyIDAgMDAyLjkxNS0xLjQxNiIgZmlsbD0iI2ZmZiIgLz48L3N2Zz4K)}.icon-apple-pay{display:inline-block;height:1.5625rem;width:3.125rem}.icon-account{display:inline-block;height:1.125rem;width:1.1875rem}.icon-new-red{display:inline-block;height:1.5625rem;width:4.875rem}.icon-new-yellow{display:inline-block;height:1.5625rem;width:4.875rem}@media (min-width:48rem){.icon-new-yellow{width:5.125rem}}.icon-sports-plus{display:inline-block;height:3.625rem;width:14.6875rem}@media (min-width:48rem){.icon-sports-plus{height:4rem;width:16.25rem}}.icon-post-sports-plus{background-repeat:no-repeat;background-size:14.375rem 2rem;display:inline-block;height:2rem;width:14.375rem}.membership-link{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;color:#000;text-decoration:underline}.membership-account__heading{font-size:1.125rem;letter-spacing:-.01em;line-height:1.1;display:none;text-align:center}@media (min-width:61.875rem){.membership-account__heading{font-size:1.375rem;letter-spacing:-.01em;line-height:1.09}}.nyp-membership-view #membership-wrapper{margin:0 auto;max-width:100%}@media (min-width:61.875rem){.nyp-membership-view #membership-wrapper{max-width:59.375rem;padding-top:3.125rem}.nyp-membership-view #membership-wrapper .layout__grid{grid-gap:1.75rem}}@media (min-width:64rem){.nyp-membership-view #membership-wrapper .layout__item--main{max-width:41.9375rem}}.nyp-membership-view #membership-wrapper .layout__item--main .grid-container{grid-gap:0}.nyp-membership-view #membership-wrapper .sitewide-notice{display:none}.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left{grid-template-rows:auto}@media (min-width:61.875rem){.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left:not([class*=break]){grid-template-columns:minmax(0,1fr)}}@media (min-width:61.875rem) and (min-width:61.875rem){.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left:not([class*=break]){grid-template-columns:18.75rem minmax(0,1fr)}.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left:not([class*=break])>.layout__item--main{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@supports (display:grid){.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left:not([class*=break])>.layout__item--main{grid-column-start:2}}.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left:not([class*=break])>.layout__item--sidebar{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}@supports (display:grid){.nyp-membership-view #membership-wrapper .layout--sidebar-membership>.layout__grid--sidebar-left:not([class*=break])>.layout__item--sidebar{grid-column-start:1}}}.nyp-membership-view .site-footer{border:0;padding:1.25rem 0 1.25rem}.nyp-membership-view .site-footer__top,.nyp-membership-view .site-footer__main,.nyp-membership-view .site-footer__middle{display:none}.nyp-membership-view .site-footer__logo{display:none}.nyp-membership-view .site-footer__wrapper{border-top:1px solid #000;margin:0 auto;max-width:66.5rem}.nyp-membership-view .site-footer .footer-legal{font-size:.75rem;margin-top:.375rem;text-align:center}.nyp-membership-view .site-footer .footer-legal #ot-sdk-btn.ot-sdk-show-settings,.nyp-membership-view .site-footer .footer-legal #ot-sdk-btn.optanon-show-settings{display:none}.nyp-membership-view .powered-by-account-dark-mode,.nyp-membership-view .powered-by-wpcom{display:none}.nyp-membership-view.nyp-membership-darkmode{background-color:#2a2a2a;bottom:0;color:#fff;height:100%;margin-top:0;min-height:100vh;padding-top:0;position:absolute;right:0;top:0;width:100%}.nyp-membership-view.nyp-membership-darkmode p{color:#fff}.nyp-membership-view.nyp-membership-darkmode .site-container--bg{background:0 0}.membership-onboarding__splash{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.membership-onboarding__splash .splash__progressbar{height:.1875rem;margin:1.75rem 0;overflow:hidden;width:12.5rem}.membership-onboarding__splash .splash__progressbar .progressbar__fill{background-color:#fff;display:block;height:100%;width:100%}.membership-onboarding__splash .splash__heading{font-size:2.25rem;margin-bottom:.625rem;text-align:center}@media (min-width:48rem){.membership-onboarding__splash .splash__heading{font-size:4.3125rem}}.membership-onboarding__splash .splash__sub-heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;font-size:1.5625rem;line-height:1.2;margin-bottom:.9375rem;max-width:15.625rem;text-align:center}@media (min-width:48rem){.membership-onboarding__splash .splash__sub-heading{max-width:31.25rem}}.membership-onboarding__splash .splash__text{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.membership-onboarding__splash .splash__arrow{background-color:transparent;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MC43MDciIGhlaWdodD0iMTQuODUiPjxnIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIj48cGF0aCBkYXRhLW5hbWU9IkxpbmUgMSIgZD0iTTAgNy40MjRoNDAiLz48cGF0aCBkPSJNMzIuOTI5IDE0LjVMNDAgNy40MjUgMzIuOTI5LjM1MyIvPjwvZz48L3N2Zz4=);border:0;display:block;height:.88375rem;width:2.5rem}.nyp-membership-onboarding .sitewide-notice{display:none}.membership-onboarding{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:1.25rem}.membership-onboarding .logo{margin-bottom:2.5rem}.membership-onboarding__heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;font-size:1.875rem;letter-spacing:-.01em;line-height:2rem;margin-bottom:.875rem;padding-top:.875rem;text-align:center}.membership-onboarding__sub-heading{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;font-size:1.375rem;font-weight:400;letter-spacing:-.01em;line-height:1.75rem;margin-bottom:1.25rem;text-align:center}.membership-onboarding__cta{font-weight:700;text-transform:uppercase}.membership-onboarding .member-display__form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:rgba(0,0,0,.3);border-radius:.375rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:.625rem 0 0 -.5625rem;max-width:100vw;padding:1.875rem .625rem;width:calc(100vw - 18px)}@media (min-width:61.875rem){.membership-onboarding .member-display__form{margin:1rem auto 0 auto;padding:2.5rem 11.25rem 2.875rem 11.25rem;width:46.25rem}}.membership-onboarding .member-display__form .user-avatar{margin:0 0 1.25rem 0}.membership-onboarding .member-display__form .user-avatar .avatar__initials{font-size:2.5rem;height:5rem;width:5rem}.membership-onboarding__progress{max-width:78.75rem;width:calc(100vw - 30px)}.membership-onboarding__progress>div{-webkit-transform:translateY(-.9375rem);transform:translateY(-.9375rem)}.membership-onboarding__progress .membership-onboarding__cta{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:700;font-size:1rem}.membership-onboarding-progress-bar{margin-top:1rem}.membership-onboarding-progress-bar--item{border:2px solid #7f7f7f;border-radius:100%;display:inline-block;height:.8125rem;margin-right:6rem;width:.8125rem}.membership-onboarding-progress-bar--item::after{border:1px solid #7f7f7f;content:'';display:block;margin:.3125rem 0 0 .6875rem;width:6rem}.membership-onboarding-progress-bar--item:last-of-type,.nyp-membership-user--subscribed .membership-onboarding-progress-bar--item:last-of-type{margin-right:0}.membership-onboarding-progress-bar--item:last-of-type::after,.nyp-membership-user--subscribed .membership-onboarding-progress-bar--item:last-of-type::after{display:none}.membership-onboarding-progress-bar--item.active{border:1px solid #fff}.membership-onboarding-progress-bar--item.active::after{border:1px solid #7f7f7f}.membership-onboarding-progress-bar--item.completed::before{background-color:#fff;border-radius:100%;content:'';display:block;height:.4375rem;left:.125rem;position:relative;top:.125rem;width:.4375rem}.membership-onboarding-progress-bar--item.completed::after{border:1px solid #fff;margin-top:-.125rem}.nyp-membership-view.onboarding--payflow .headline{color:#fff;margin-bottom:1.5625rem}.nyp-membership-view.onboarding--payflow .content-wrapper{margin-top:.625rem;max-width:45.25rem;padding:1.5625rem 1.25rem;position:relative}@media (min-width:37.5rem){.nyp-membership-view.onboarding--payflow .content-wrapper{margin-top:5.3125rem;padding:3.25rem 1.5rem}}.nyp-membership-view.onboarding--payflow .content-wrapper p{font-size:1.125rem}@media (min-width:37.5rem){.nyp-membership-view.onboarding--payflow .content-wrapper p{font-size:1.375rem;padding:0 2.8125rem}.nyp-membership-view.onboarding--payflow .centered-content{text-align:center;width:42rem}}.nyp-membership-view.onboarding--payflow .buttons{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:1.5rem}.nyp-membership-view.nyp-membership-view--payflow{background-image:-webkit-gradient(linear,left bottom,left top,from(#000),color-stop(30%,#000),color-stop(30%,#ffd62b),color-stop(70%,#ffd62b),color-stop(70%,transparent));background-image:linear-gradient(0deg,#000 0,#000 30%,#ffd62b 30%,#ffd62b 70%,transparent 70%);height:100vh;overflow-x:hidden;padding-top:0}@media (min-width:61.875rem){.nyp-membership-view.nyp-membership-view--payflow{background-image:-webkit-gradient(linear,left top,right top,from(#000),color-stop(60%,#000),color-stop(60%,#ffd62b));background-image:linear-gradient(90deg,#000 0,#000 60%,#ffd62b 60%)}}.nyp-membership-view.nyp-membership-view--payflow .site-footer{position:relative;top:calc(100vh + 100px)}.nyp-membership-view.nyp-membership-view--payflow.nyp-membership-view--loaded{background-image:none;height:auto}.nyp-membership-view.nyp-membership-view--payflow.nyp-membership-view--loaded .site-footer{top:auto}.nyp-membership-view.nyp-membership-view--payflow.admin-bar{margin-top:0;padding-top:0}.nyp-membership-view.nyp-membership-view--payflow #header-cta-sports-plus-mobile{display:none}.nyp-membership-view.nyp-membership-view--payflow .site-container--bg{background-color:transparent;max-width:100%;padding:0;width:100%}.nyp-membership-view.nyp-membership-view--payflow #masthead,.nyp-membership-view.nyp-membership-view--payflow #content>.ad-slot{display:none}.nyp-membership-view.nyp-membership-view--payflow #membership-wrapper{max-width:100%;min-height:100vh;padding-top:0}.nyp-membership-view.nyp-membership-view--payflow #membership-wrapper .layout__grid--sidebar{grid-gap:0;grid-template-columns:100%}@media (min-width:61.875rem){.nyp-membership-view.nyp-membership-view--payflow #membership-wrapper .layout__grid--sidebar{grid-template-columns:60% 40%}}.nyp-membership-view.nyp-membership-view--payflow #membership-wrapper .layout__item--main{max-width:100%}.membership-payflow--upper{background-color:#000;padding-bottom:.625rem;position:relative;width:100%}.membership-payflow--lower{margin:0 auto;padding:1.25rem;width:100%}@media (min-width:48rem){.membership-payflow--lower{max-width:calc(66.5rem + (1.25rem*2));padding:3.75rem 1.875rem}}.membership-payflow__hero,.membership-payflow__sidebar{padding:1.25rem}@media (min-width:48rem){.membership-payflow__hero,.membership-payflow__sidebar{padding:4.0625rem 3.4375rem}}.membership-payflow__hero{background-color:#000;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative}@media (min-width:61.875rem){.membership-payflow__hero{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}}.membership-payflow__hero .payflow-hero__bg{background-position:bottom right;background-repeat:no-repeat;background-size:150%;bottom:0;height:100%;left:0;opacity:.5;position:absolute;right:0;top:-.625rem;width:100%;z-index:0}@media (min-width:48rem){.membership-payflow__hero .payflow-hero__bg{background-size:85%;opacity:1}}.membership-payflow__hero .payflow-hero__container{max-width:100%;width:100%;z-index:1}.membership-payflow__hero .payflow-hero__logo{margin:0 auto 3.125rem;max-width:70%}@media (min-width:61.875rem){.membership-payflow__hero .payflow-hero__logo{margin:0 0 7.5rem;max-width:60%}}.membership-payflow__hero .payflow-hero__headline,.membership-payflow__hero .payflow-hero__text p{color:#fff;margin-bottom:1.25rem;max-width:37.5rem}.membership-payflow__hero .payflow-hero__headline{font-size:1.875rem;max-width:none}@media (min-width:61.875rem){.membership-payflow__hero .payflow-hero__headline{font-size:3.4375rem}}.membership-payflow__hero .payflow-hero__headline span{color:#ffd62b;font-weight:900}.membership-payflow__hero .payflow-hero__text p{font-size:1.125rem;margin-bottom:1.25rem}@media (max-width:61.8125rem){.membership-payflow__hero .payflow-hero__text p{font-size:1.375rem}}.membership-payflow__hero .payflow-hero__text p span{color:#ffd62b;font-weight:900}.membership-payflow__hero .list--checkmark{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding-left:0}.membership-payflow__hero .list--checkmark li{color:#fff}@media (min-width:37.5rem){.membership-payflow__hero .list--checkmark{margin-top:5.1875rem}.membership-payflow__hero .list--checkmark ul{border-top:1px solid #ffd62b}}.membership-payflow__hero .list__heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;color:#fff;font-size:1rem;margin-bottom:.625rem;text-transform:uppercase}.membership-payflow__sidebar{background-color:#ffd62b;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;z-index:1}@media (min-width:61.875rem){.membership-payflow__sidebar{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.membership-payflow__sidebar .sub-heading--semi{color:#000}.membership-payflow .payflow-sidebar__container{margin:0 auto;max-width:100%;width:100%}.membership-payflow .payflow-sidebar__container .form-wrapper{border:0;margin:0;max-width:100%;padding:0}.membership-payflow .payflow-sidebar__container .form-wrapper input[type=submit]{background-color:#000;border-color:#000;color:#fff}.membership-payflow .payflow-sidebar__container .form-wrapper .social-login .button--social{background-color:#000;border-color:#000;color:#fff}.membership-payflow .form-wrapper--login .button--link,.membership-payflow .form-wrapper--register .button--link{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;font-weight:700}.membership-payflow .form-wrapper--payment{text-align:left}.membership-payflow .form-wrapper--payment .form-wrapper__heading{color:#000;font-size:1.875rem;margin:0 auto .625rem}@media (min-width:48rem){.membership-payflow .form-wrapper--payment .form-wrapper__heading{max-width:70%}}@media (min-width:61.875rem){.membership-payflow .form-wrapper--payment .social-action-buttons #paypal-button,.membership-payflow .form-wrapper--payment .social-action-buttons .button{margin-right:.625rem;max-width:7.5rem}}.membership-payflow .form-wrapper--payment .braintree-hosted-field{background:#fff}.membership-payflow .form-wrapper--subscribe .braintree-form-container{margin-bottom:.9375rem}.membership-payflow--tagline{background-color:#000;left:50%;margin-left:-50vw;margin-right:-50vw;padding:1.875rem;position:relative;right:50%;text-align:center;width:100%;width:100vw;z-index:1}.membership-payflow--tagline .payflow-tagline__heading{color:#fff;font-size:1.375rem}@media (min-width:61.875rem){.membership-payflow--tagline .payflow-tagline__heading{font-size:1.875rem}}.member-display .layout{margin-top:2.625rem}.member-display .layout__item{padding-bottom:.8125rem}.member-display .layout__inner{border-bottom:.3125rem solid #000;padding-bottom:3.125rem}@media (max-width:47.9375rem){.member-newsletters{margin:0;max-width:100%}}.member-newsletters__subscription-only{border:10px solid #000;margin-bottom:3.4375rem;padding:.625rem;position:relative;width:100%}@media (min-width:48rem){.member-newsletters__subscription-only{padding:2.5rem}}.member-newsletters__subscription-only>p{color:#585858;margin:1.875rem 0 2.25rem}.member-newsletters__subscription-only .member-newsletters__section-brand-info{border-top:5px solid #000;padding-top:2.25rem}.member-newsletters__subscription-only .member-newsletters__section-brand-info:not(:first-of-type){border-top-width:3px}.member-newsletters__subscription-only .member-subscriptions-brandlist::before{display:none}.member-newsletters__logo{left:50%;padding:.1875rem .9375rem;position:absolute;top:-3rem;-webkit-transform:translateX(-50%) skew(-10deg);transform:translateX(-50%) skew(-10deg)}@media (min-width:48rem){.member-newsletters__logo{padding-bottom:.4375rem;padding-top:.4375rem}}.member-newsletters__logo span{background-color:#c60800}.member-newsletters__logo img{-webkit-transform:skew(10deg);transform:skew(10deg)}.member-newsletters__logo svg{height:2.25rem;width:11.875rem}@media (min-width:48rem){.member-newsletters__logo svg{height:2.5rem;width:15.625rem}}.member-newsletters__section--name{border-top:5px solid #000;padding-top:2.25rem}.member-newsletters__section-brand{border-bottom:.3125rem solid #000;margin-bottom:3.125rem}.member-newsletters__section-brand-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:3.3125rem}@media (max-width:47.9375rem){.member-newsletters__section-brand-buttons{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.member-newsletters__section-brand-buttons .update-button,.member-newsletters__section-brand-buttons .cancel-button{margin-bottom:.625rem;width:100%}}.member-newsletters__section-brand-edit-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:3.3125rem}.member-newsletters__subscription-only .member-newsletters__section-brand-edit-button{margin-bottom:0}.member-newsletters__section-brand-terms{font-size:.75rem;text-align:center}.member-newsletters__section-brand-info{font-size:1.25rem}.member-newsletters__subscription-only .member-newsletters__section-brand-info{font-size:1.5rem;text-align:center}.member-newsletters .button--solid{background-color:#000;border:0;margin-right:1.25rem}.member-newsletters__onboarding{margin:0 auto;max-width:100%;width:23.75rem}.member-newsletters__onboarding .member-newsletters__brandlist{-webkit-columns:1;-moz-columns:1;columns:1;margin-bottom:0}.member-newsletters__onboarding .member-newsletters__brandlist:first-of-type{border-top:.1875rem solid #fff}.member-newsletters__onboarding .brandlist__item-checkbox label{padding-left:4.0625rem}.member-newsletters__onboarding .brandlist__item-checkbox label::before{border:.1875rem solid #fff}.member-newsletters__onboarding .brandlist__item-checkbox label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0My4yNTUiIGhlaWdodD0iMzcuMDIxIj48cGF0aCBkPSJNMTYuMTA2IDMzLjQ4NWwtMS43NjgtMS43NjgtOS4wMzUtOS4wMzUtMS43NjgtMS43NjggMS43NjgtMS43NjcgMi44MS0yLjgxMSAxLjc1NC0xLjc1MyAxLjc2OCAxLjczOSA0LjQ2MiA0LjM5TDMxLjYxIDUuMjg3bDEuNzY3LTEuNzU4IDEuNzYzIDEuNzYzIDIuODEgMi44MSAxLjc2OSAxLjc2OS0xLjc2OCAxLjc2Ny0yMC4wNzggMjAuMDc4LTEuNzY4IDEuNzY4eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0zMy4zNzMgNy4wNkwxNi4xMDYgMjQuMjI4IDkuODggMTguMTA0bC0yLjgxIDIuODEgOS4wMzUgOS4wMzZMMzYuMTg0IDkuODcybC0yLjgxLTIuODExbS4wMS03LjA2bDMuNTI1IDMuNTI0IDIuODEgMi44MTEgMy41MzYgMy41MzYtMy41MzYgMy41MzUtMjAuMDc4IDIwLjA3OC0zLjUzNSAzLjUzNi0zLjUzNi0zLjUzNi05LjAzNS05LjAzNUwwIDIwLjkxNGwzLjUzNS0zLjUzNSAyLjgxMS0yLjgxIDMuNTA3LTMuNTA4IDMuNTM1IDMuNDc4IDIuNyAyLjY1NiAxMy43Ni0xMy42OEwzMy4zODQgMHoiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=)}.member-newsletters__onboarding .brandlist__item label,.member-newsletters__onboarding .brandlist__item-description{color:#fff;padding-left:4.0625rem}.member-newsletters__onboarding .member-newsletters__section-brand-buttons{margin-bottom:0}.member-newsletters__onboarding .button--solid{background-color:#c60800;margin-right:0;width:100%}.member-newsletters .membership-onboarding__view-all{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:1.25rem 0}.member-newsletters .button.membership-onboarding__view-all-text{background:0 0;border:0;color:#fff;font-size:.875rem;text-transform:none}@media (max-width:61.8125rem){.member-newsletters--exclusive{margin:3.125rem 0 0}.member-newsletters--exclusive .member-newsletters__logo{padding-left:1.25rem;top:-2.25rem}.member-newsletters--exclusive .member-newsletters__logo span{padding-bottom:.3125rem;padding-top:.3125rem;width:14.0625rem}}.member-profile__heading.sub-heading{margin-bottom:.9375rem}.member-profile__section{border-bottom:1px solid #ccc;padding-bottom:2.1875rem;padding-top:2.5rem}.member-profile__section--optional-info .profile-helper-text{display:block;margin-bottom:1.875rem;text-align:center}.member-profile__section:last-of-type{border-bottom:5px solid #000}@media (min-width:30rem){.member-profile .input-container--submit{grid-template-columns:1fr 6.25rem;grid-template-rows:1fr}}.member-profile .profile-data{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600}.member-profile .profile-data--password{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;font-size:1.875rem}.subscriptions--top{border-bottom:5px solid #000;margin-bottom:2.5rem;padding-bottom:3.4375rem}.membership-section .billing-confirmation-text{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:400;color:#585858;font-size:.75rem}@media (min-width:48rem){.membership-section.membership-section--try-it-free{padding-top:3.125rem}}.membership-section.membership-section--your-payment-method .payment-method-container{margin-bottom:1.25rem;max-width:23.75rem;width:100%}.membership-section.membership-section--confirm-plan-change{padding-top:.625rem}.membership-section.membership-section--confirm-plan-change .confirmation-text{margin-bottom:1.5rem}.membership-section.membership-section--confirm-plan-change .billing-confirmation-text{margin-top:2.6875rem}.member-subscriptions-brandlist{margin:0 0 1.5625rem 0;padding:0 .625rem 0 0;position:relative}@media (min-width:48rem){.member-subscriptions-brandlist{-webkit-column-gap:3.125rem;-moz-column-gap:3.125rem;column-gap:3.125rem;-webkit-columns:2;-moz-columns:2;columns:2}.member-subscriptions-brandlist--2col{display:grid;grid-column-gap:3.125rem;grid-template-columns:1fr 1fr}}.brandlist__item{border-top:.0625rem solid #ccc;-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:0;padding:1.25rem 0}.brandlist__item-description{color:#585858;font-size:.9375rem;line-height:1.3;margin-right:.3125rem;padding-left:3.125rem}.brandlist__item-icon{height:3.125rem;margin-left:auto;width:3.125rem}.brandlist__item-container{overflow:hidden}.brandlist__item-checkbox input[type=checkbox]{float:left;margin-left:-1.875rem}.brandlist__item-checkbox label{color:#000;display:inline-block;line-height:1;padding-left:3.125rem;position:relative;text-transform:uppercase;vertical-align:top}.brandlist__item-checkbox label::before,.brandlist__item-checkbox label::after{content:'';cursor:pointer;display:inline-block;position:absolute}.brandlist__item-checkbox label::before{border:.1875rem solid #000;height:2.1875rem;left:0;top:0;width:2.1875rem}.brandlist__item-checkbox input[type=checkbox]+label::after{display:none}.brandlist__item-checkbox input[type=checkbox]:checked+label::after{content:'';display:block}.brandlist__item-checkbox input[type=checkbox]:focus-visible+label::before{border:.1875rem solid #c60800;outline:#c60800 auto .3125rem}.nyp-membership-darkmode .brandlist__item{border-top:none}.nyp-membership-darkmode .brandlist__item-description{color:#fff}.nyp-membership-darkmode .brandlist__item-checkbox label{color:#fff}.nyp-membership-darkmode .brandlist__item-checkbox label::before{border:.1875rem solid #fff}.nyp-membership-darkmode .brandlist__item-checkbox label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0My4yNTUiIGhlaWdodD0iMzcuMDIxIj48cGF0aCBkPSJNMTYuMTA2IDMzLjQ4NWwtMS43NjgtMS43NjgtOS4wMzUtOS4wMzUtMS43NjgtMS43NjggMS43NjgtMS43NjcgMi44MS0yLjgxMSAxLjc1NC0xLjc1MyAxLjc2OCAxLjczOSA0LjQ2MiA0LjM5TDMxLjYxIDUuMjg3bDEuNzY3LTEuNzU4IDEuNzYzIDEuNzYzIDIuODEgMi44MSAxLjc2OSAxLjc2OS0xLjc2OCAxLjc2Ny0yMC4wNzggMjAuMDc4LTEuNzY4IDEuNzY4eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0zMy4zNzMgNy4wNkwxNi4xMDYgMjQuMjI4IDkuODggMTguMTA0bC0yLjgxIDIuODEgOS4wMzUgOS4wMzZMMzYuMTg0IDkuODcybC0yLjgxLTIuODExbS4wMS03LjA2bDMuNTI1IDMuNTI0IDIuODEgMi44MTEgMy41MzYgMy41MzYtMy41MzYgMy41MzUtMjAuMDc4IDIwLjA3OC0zLjUzNSAzLjUzNi0zLjUzNi0zLjUzNi05LjAzNS05LjAzNUwwIDIwLjkxNGwzLjUzNS0zLjUzNSAyLjgxMS0yLjgxIDMuNTA3LTMuNTA4IDMuNTM1IDMuNDc4IDIuNyAyLjY1NiAxMy43Ni0xMy42OEwzMy4zODQgMHoiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=)}.card-container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (min-width:61.875rem){.card-container{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.card{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;border:4px solid transparent;border-radius:.375rem;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.29);box-shadow:0 3px 6px rgba(0,0,0,.29);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:1.25rem;max-width:13.125rem;padding:2.5rem 1.25rem 1.25rem;position:relative;text-align:center;width:100%}.card:not(.card--dark){background-color:#fff}.card__heading{font-family:"neue-haas-grotesk-display",sans-serif;font-weight:600;font-size:1.125rem;padding:0 1.375rem}.card__badge{background-color:#1a69ff;color:#fff;font-size:.875rem;height:2.25rem;left:50%;padding:.5rem .625rem;position:absolute;text-transform:uppercase;top:-1.2rem;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap;width:calc(100% - 80px)}.card__footer{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}@media (min-width:48rem){.card--subscription{max-width:calc(33% - 10px)}}.card--subscription .subscription__offer{margin-bottom:1rem}.card--subscription .subscription__offer>span{display:inline-block}.card--subscription .subscription__offer .offer__deal{color:#c60800;display:block}.card--subscription .subscription__offer .offer__strikethrough{color:#585858;display:inline-block;font-size:1.5rem;padding-right:.1875rem}.card--subscription .subscription__offer .offer__strikethrough+.offer__text{margin-top:0}.card--subscription .subscription__offer .offer__text{font-size:1.5rem;margin-top:1.5rem}.card--subscription .subscription__offer .offer__text .offer__text--term{font-size:.9375rem}.card--subscription hr{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;height:1px;margin:0 -1rem .375rem}.card--subscription .button--solid{margin:0 auto;max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;min-width:7.5rem}.card--subscription .card--selected__icon-container{display:none;padding-top:.625rem}.card--subscription .card--selected__icon-container .icon-checkmark{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzg1IDI5OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Y2hlY2ttYXJrPC90aXRsZT48cGF0aCBkPSJNMzc2LjQgMzUuNmMtOC43LTguOC0xNy40LTE3LjUtMjYuMi0yNi4yLTExLjctMTEuNi0yMy43LTExLjUtMzUuMy4xLTU2LjcgNTYuNy0xMTMuNCAxMTMuNC0xNzAgMTcwLjEtMS41IDEuNS0yLjYgMy41LTQuNiA2LjMtMi4xLTIuOC0zLjEtNC41LTQuNC01LjctMjItMjIuMS00NC00NC4yLTY2LjEtNjYuMS0xMS4zLTExLjItMjMuNC0xMS0zNC42LjFMOC43IDE0MC43Qy0yLjYgMTUyLTIuNyAxNjQgOC41IDE3NS4xbDExNC4yIDExNC4yYzExLjIgMTEuMiAyMy4zIDExLjQgMzQuNi4xIDczLjEtNzMgMTQ2LjItMTQ2LjEgMjE5LjItMjE5LjIgMTEuMi0xMS4yIDExLTIzLjMtLjEtMzQuNnoiIGZpbGw9IiM0Y2M5NzciIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:1.8125rem;margin:0 auto;width:2.375rem}.card--selected{border-color:#4cc977}.card--selected .button--solid{display:none}.card--selected .card--selected__icon-container{display:block}.card--dark{background-color:#000;color:#fff}.card--dark .card__heading{color:#fff}.card--dark .subscription__offer .offer__deal{color:#ffd62b}.card--dark .subscription__offer .offer__strikethrough{color:#707070}.card--dark .subscription__details .details__secondary{color:#ffd62b}.card--horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 auto 1.5rem;padding:1.25rem .5rem .5625rem;width:100%}@media (min-width:64rem){.card--horizontal{padding-left:2.375rem;padding-right:2.375rem}}.card--horizontal.has-badge{margin-top:2rem;padding-top:2rem}.card--horizontal .card__badge{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:auto}.card--horizontal .card__heading{font-size:1.5rem;margin-bottom:1.125rem;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.card--horizontal .card__heading,.card--horizontal hr,.card--horizontal .subscription__details{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:1;-ms-flex:1 100%;flex:1 100%}.card--horizontal .subscription__offer,.card--horizontal .card__footer{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:1;-ms-flex:1;flex:1}.card--horizontal .subscription__offer{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;text-align:left}.card--horizontal .offer__deal{width:100%}.card--horizontal .offer__strikethrough,.card--horizontal .offer__text{width:50%}.card--horizontal .card__footer{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4;text-align:right}.card--horizontal .button--solid{font-size:1.125rem;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;padding:.625rem;width:6.25rem}@media (min-width:61.875rem){.card--horizontal .button--solid{max-width:7.5rem;padding:.6875rem 1.5rem .75rem;width:7.5rem}}.card--horizontal hr{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.card--horizontal .subscription__details{margin-bottom:0;-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.card--horizontal .subscription__details [class^=details]{display:inline-block;padding:0 .125rem}.list--checkmark li{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzg1IDI5OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Y2hlY2ttYXJrPC90aXRsZT48cGF0aCBkPSJNMzc2LjQgMzUuNmMtOC43LTguOC0xNy40LTE3LjUtMjYuMi0yNi4yLTExLjctMTEuNi0yMy43LTExLjUtMzUuMy4xLTU2LjcgNTYuNy0xMTMuNCAxMTMuNC0xNzAgMTcwLjEtMS41IDEuNS0yLjYgMy41LTQuNiA2LjMtMi4xLTIuOC0zLjEtNC41LTQuNC01LjctMjItMjIuMS00NC00NC4yLTY2LjEtNjYuMS0xMS4zLTExLjItMjMuNC0xMS0zNC42LjFMOC43IDE0MC43Qy0yLjYgMTUyLTIuNyAxNjQgOC41IDE3NS4xbDExNC4yIDExNC4yYzExLjIgMTEuMiAyMy4zIDExLjQgMzQuNi4xIDczLjEtNzMgMTQ2LjItMTQ2LjEgMjE5LjItMjE5LjIgMTEuMi0xMS4yIDExLTIzLjMtLjEtMzQuNnoiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);background-position:left .25rem;background-repeat:no-repeat;background-size:1.125rem;color:#000;list-style-type:none;margin:.625rem auto;padding-left:1.78125rem}.list--checkmark-black li{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzg1IDI5OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Y2hlY2ttYXJrPC90aXRsZT48cGF0aCBkPSJNMzc2LjQgMzUuNmMtOC43LTguOC0xNy40LTE3LjUtMjYuMi0yNi4yLTExLjctMTEuNi0yMy43LTExLjUtMzUuMy4xLTU2LjcgNTYuNy0xMTMuNCAxMTMuNC0xNzAgMTcwLjEtMS41IDEuNS0yLjYgMy41LTQuNiA2LjMtMi4xLTIuOC0zLjEtNC41LTQuNC01LjctMjItMjIuMS00NC00NC4yLTY2LjEtNjYuMS0xMS4zLTExLjItMjMuNC0xMS0zNC42LjFMOC43IDE0MC43Qy0yLjYgMTUyLTIuNyAxNjQgOC41IDE3NS4xbDExNC4yIDExNC4yYzExLjIgMTEuMiAyMy4zIDExLjQgMzQuNi4xIDczLjEtNzMgMTQ2LjItMTQ2LjEgMjE5LjItMjE5LjIgMTEuMi0xMS4yIDExLTIzLjMtLjEtMzQuNnoiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=)}.list--checkmark-green li{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzg1IDI5OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Y2hlY2ttYXJrPC90aXRsZT48cGF0aCBkPSJNMzc2LjQgMzUuNmMtOC43LTguOC0xNy40LTE3LjUtMjYuMi0yNi4yLTExLjctMTEuNi0yMy43LTExLjUtMzUuMy4xLTU2LjcgNTYuNy0xMTMuNCAxMTMuNC0xNzAgMTcwLjEtMS41IDEuNS0yLjYgMy41LTQuNiA2LjMtMi4xLTIuOC0zLjEtNC41LTQuNC01LjctMjItMjIuMS00NC00NC4yLTY2LjEtNjYuMS0xMS4zLTExLjItMjMuNC0xMS0zNC42LjFMOC43IDE0MC43Qy0yLjYgMTUyLTIuNyAxNjQgOC41IDE3NS4xbDExNC4yIDExNC4yYzExLjIgMTEuMiAyMy4zIDExLjQgMzQuNi4xIDczLjEtNzMgMTQ2LjItMTQ2LjEgMjE5LjItMjE5LjIgMTEuMi0xMS4yIDExLTIzLjMtLjEtMzQuNnoiIGZpbGw9IiM0Y2M5NzciIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=)}.list--checkmark-yellow li{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzg1IDI5OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+Y2hlY2ttYXJrPC90aXRsZT48cGF0aCBkPSJNMzc2LjQgMzUuNmMtOC43LTguOC0xNy40LTE3LjUtMjYuMi0yNi4yLTExLjctMTEuNi0yMy43LTExLjUtMzUuMy4xLTU2LjcgNTYuNy0xMTMuNCAxMTMuNC0xNzAgMTcwLjEtMS41IDEuNS0yLjYgMy41LTQuNiA2LjMtMi4xLTIuOC0zLjEtNC41LTQuNC01LjctMjItMjIuMS00NC00NC4yLTY2LjEtNjYuMS0xMS4zLTExLjItMjMuNC0xMS0zNC42LjFMOC43IDE0MC43Qy0yLjYgMTUyLTIuNyAxNjQgOC41IDE3NS4xbDExNC4yIDExNC4yYzExLjIgMTEuMiAyMy4zIDExLjQgMzQuNi4xIDczLjEtNzMgMTQ2LjItMTQ2LjEgMjE5LjItMjE5LjIgMTEuMi0xMS4yIDExLTIzLjMtLjEtMzQuNnoiIGZpbGw9IiNGM0QwMTAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=)}.sports-
URL
GET http://nypost.com/
Response Headers
Connection:
keep-alive
Content-Length:
162
Content-Type:
text/html
Date:
Sun, 17 Oct 2021 22:32:43 GMT
Location:
https://nypost.com/
Server:
nginx
Response Body
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>

Resolver

Resolver ASN
AS57293
Resolver IP
149.255.152.1
Resolver Network Name
AG Telecom LTD.
Measurement UID
20211017223244.267970_AZ_webconnectivity_56bef0fce2eb8868
Report ID
20211017T223153Z_webconnectivity_AZ_57293_n1_R2bgQRe22c5R02s9
Platform
ios
Software Name
ooniprobe-ios (1.0.0)
Measurement Engine
ooniprobe-engine (0.21.0)

Raw Measurement Data

Loading…