/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/pf/resources/dist/images/ajax-loader.gif?d=484) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/pf/resources/dist/fonts/slick.eot?d=484);
    src: url(/pf/resources/dist/fonts/slick.eot?#iefix) format('embedded-opentype'), url(/pf/resources/dist/fonts/slick.woff?d=484) format('woff'), url(/pf/resources/dist/fonts/slick.ttf?d=484) format('truetype'), url(/pf/resources/dist/fonts/slick.svg?d=484#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/pf/resources/dist/images/ajax-loader.gif?d=484) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/pf/resources/dist/fonts/slick.eot?d=484);
    src: url(/pf/resources/dist/fonts/slick.eot?#iefix) format('embedded-opentype'), url(/pf/resources/dist/fonts/slick.woff?d=484) format('woff'), url(/pf/resources/dist/fonts/slick.ttf?d=484) format('truetype'), url(/pf/resources/dist/fonts/slick.svg?d=484#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.m-none{margin:0}.p-none{padding:0}.m-t-none{margin-top:0}.p-t-none{padding-top:0}.m-r-none{margin-right:0}.p-r-none{padding-right:0}.m-b-none{margin-bottom:0}.p-b-none{padding-bottom:0}.m-l-none{margin-left:0}.p-l-none{padding-left:0}.m-xxs{margin:.25rem}.p-xxs{padding:.25rem}.m-t-xxs{margin-top:.25rem}.p-t-xxs{padding-top:.25rem}.m-r-xxs{margin-right:.25rem}.p-r-xxs{padding-right:.25rem}.m-b-xxs{margin-bottom:.25rem}.p-b-xxs{padding-bottom:.25rem}.m-l-xxs{margin-left:.25rem}.p-l-xxs{padding-left:.25rem}.m-xs{margin:.5rem}.p-xs{padding:.5rem}.m-t-xs{margin-top:.5rem}.p-t-xs{padding-top:.5rem}.m-r-xs{margin-right:.5rem}.p-r-xs{padding-right:.5rem}.m-b-xs{margin-bottom:.5rem}.p-b-xs{padding-bottom:.5rem}.m-l-xs{margin-left:.5rem}.p-l-xs{padding-left:.5rem}.m-sm{margin:.75rem}.p-sm{padding:.75rem}.m-t-sm{margin-top:.75rem}.p-t-sm{padding-top:.75rem}.m-r-sm{margin-right:.75rem}.p-r-sm{padding-right:.75rem}.m-b-sm{margin-bottom:.75rem}.p-b-sm{padding-bottom:.75rem}.m-l-sm{margin-left:.75rem}.p-l-sm{padding-left:.75rem}.m-md{margin:1rem}.p-md{padding:1rem}.m-t-md{margin-top:1rem}.p-t-md{padding-top:1rem}.m-r-md{margin-right:1rem}.p-r-md{padding-right:1rem}.m-b-md{margin-bottom:1rem}.p-b-md{padding-bottom:1rem}.m-l-md{margin-left:1rem}.p-l-md{padding-left:1rem}.m-lg{margin:1.5rem}.p-lg{padding:1.5rem}.m-t-lg{margin-top:1.5rem}.p-t-lg{padding-top:1.5rem}.m-r-lg{margin-right:1.5rem}.p-r-lg{padding-right:1.5rem}.m-b-lg{margin-bottom:1.5rem}.p-b-lg{padding-bottom:1.5rem}.m-l-lg{margin-left:1.5rem}.p-l-lg{padding-left:1.5rem}.m-xl{margin:2rem}.p-xl{padding:2rem}.m-t-xl{margin-top:2rem}.p-t-xl{padding-top:2rem}.m-r-xl{margin-right:2rem}.p-r-xl{padding-right:2rem}.m-b-xl{margin-bottom:2rem}.p-b-xl{padding-bottom:2rem}.m-l-xl{margin-left:2rem}.p-l-xl{padding-left:2rem}.m-xxl{margin:3rem}.p-xxl{padding:3rem}.m-t-xxl{margin-top:3rem}.p-t-xxl{padding-top:3rem}.m-r-xxl{margin-right:3rem}.p-r-xxl{padding-right:3rem}.m-b-xxl{margin-bottom:3rem}.p-b-xxl{padding-bottom:3rem}.m-l-xxl{margin-left:3rem}.p-l-xxl{padding-left:3rem}.m-xxxl{margin:4rem}.p-xxxl{padding:4rem}.m-t-xxxl{margin-top:4rem}.p-t-xxxl{padding-top:4rem}.m-r-xxxl{margin-right:4rem}.p-r-xxxl{padding-right:4rem}.m-b-xxxl{margin-bottom:4rem}.p-b-xxxl{padding-bottom:4rem}.m-l-xxxl{margin-left:4rem}.p-l-xxxl{padding-left:4rem}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;max-width:100%;vertical-align:middle}img,svg,video,canvas{height:auto}audio{width:100%}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}input::-moz-placeholder{opacity:1}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg{flex-grow:0;flex-shrink:0}figure{margin:0}ul,ol{margin:0 0 0 1.25rem;padding:0;line-height:1.6}li{padding:0;margin-top:0.3125rem}@media (min-width: 576px){.article-weather__header--ashburton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/ashburton.jpg")}}@media (min-width: 768px){.article-weather__header--ashburton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/ashburton-md.jpg")}}@media (min-width: 992px){.article-weather__header--ashburton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/ashburton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--auckland{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/auckland.jpg")}}@media (min-width: 768px){.article-weather__header--auckland{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/auckland-md.jpg")}}@media (min-width: 992px){.article-weather__header--auckland{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/auckland-lg.jpg")}}@media (min-width: 576px){.article-weather__header--blenheim{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/blenheim.jpg")}}@media (min-width: 768px){.article-weather__header--blenheim{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/blenheim-md.jpg")}}@media (min-width: 992px){.article-weather__header--blenheim{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/blenheim-lg.jpg")}}@media (min-width: 576px){.article-weather__header--christchurch{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/christchurch.jpg")}}@media (min-width: 768px){.article-weather__header--christchurch{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/christchurch-md.jpg")}}@media (min-width: 992px){.article-weather__header--christchurch{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/christchurch-lg.jpg")}}@media (min-width: 576px){.article-weather__header--dannervirke{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dannervirke.jpg")}}@media (min-width: 768px){.article-weather__header--dannervirke{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dannervirke-md.jpg")}}@media (min-width: 992px){.article-weather__header--dannervirke{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dannervirke-lg.jpg")}}@media (min-width: 576px){.article-weather__header--dargaville{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dargaville.jpg")}}@media (min-width: 768px){.article-weather__header--dargaville{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dargaville-md.jpg")}}@media (min-width: 992px){.article-weather__header--dargaville{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dargaville-lg.jpg")}}@media (min-width: 576px){.article-weather__header--dunedin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dunedin.jpg")}}@media (min-width: 768px){.article-weather__header--dunedin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dunedin-md.jpg")}}@media (min-width: 992px){.article-weather__header--dunedin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dunedin-lg.jpg")}}@media (min-width: 576px){.article-weather__header--gisborne{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gisborne.jpg")}}@media (min-width: 768px){.article-weather__header--gisborne{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gisborne-md.jpg")}}@media (min-width: 992px){.article-weather__header--gisborne{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gisborne-lg.jpg")}}@media (min-width: 576px){.article-weather__header--gore{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gore.jpg")}}@media (min-width: 768px){.article-weather__header--gore{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gore-md.jpg")}}@media (min-width: 992px){.article-weather__header--gore{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gore-lg.jpg")}}@media (min-width: 576px){.article-weather__header--greymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/greymouth.jpg")}}@media (min-width: 768px){.article-weather__header--greymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/greymouth-md.jpg")}}@media (min-width: 992px){.article-weather__header--greymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/greymouth-lg.jpg")}}@media (min-width: 576px){.article-weather__header--hamilton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hamilton.jpg")}}@media (min-width: 768px){.article-weather__header--hamilton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hamilton-md.jpg")}}@media (min-width: 992px){.article-weather__header--hamilton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hamilton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--hastings{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hastings.jpg")}}@media (min-width: 768px){.article-weather__header--hastings{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hastings-md.jpg")}}@media (min-width: 992px){.article-weather__header--hastings{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hastings-lg.jpg")}}@media (min-width: 576px){.article-weather__header--hokitika{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hokitika.jpg")}}@media (min-width: 768px){.article-weather__header--hokitika{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hokitika-md.jpg")}}@media (min-width: 992px){.article-weather__header--hokitika{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hokitika-lg.jpg")}}@media (min-width: 576px){.article-weather__header--invercargill{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/invercargill.jpg")}}@media (min-width: 768px){.article-weather__header--invercargill{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/invercargill-md.jpg")}}@media (min-width: 992px){.article-weather__header--invercargill{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/invercargill-lg.jpg")}}@media (min-width: 576px){.article-weather__header--kaikoura{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaikoura.jpg")}}@media (min-width: 768px){.article-weather__header--kaikoura{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaikoura-md.jpg")}}@media (min-width: 992px){.article-weather__header--kaikoura{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaikoura-lg.jpg")}}@media (min-width: 576px){.article-weather__header--kaitaia{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaitaia.jpg")}}@media (min-width: 768px){.article-weather__header--kaitaia{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaitaia-md.jpg")}}@media (min-width: 992px){.article-weather__header--kaitaia{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaitaia-lg.jpg")}}@media (min-width: 576px){.article-weather__header--levin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/levin.jpg")}}@media (min-width: 768px){.article-weather__header--levin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/levin-md.jpg")}}@media (min-width: 992px){.article-weather__header--levin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/levin-lg.jpg")}}@media (min-width: 576px){.article-weather__header--masterton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/masterton.jpg")}}@media (min-width: 768px){.article-weather__header--masterton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/masterton-md.jpg")}}@media (min-width: 992px){.article-weather__header--masterton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/masterton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--motueka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/motueka.jpg")}}@media (min-width: 768px){.article-weather__header--motueka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/motueka-md.jpg")}}@media (min-width: 992px){.article-weather__header--motueka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/motueka-lg.jpg")}}@media (min-width: 576px){.article-weather__header--napier{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/napier.jpg")}}@media (min-width: 768px){.article-weather__header--napier{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/napier-md.jpg")}}@media (min-width: 992px){.article-weather__header--napier{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/napier-lg.jpg")}}@media (min-width: 576px){.article-weather__header--nelson{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/nelson.jpg")}}@media (min-width: 768px){.article-weather__header--nelson{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/nelson-md.jpg")}}@media (min-width: 992px){.article-weather__header--nelson{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/nelson-lg.jpg")}}@media (min-width: 576px){.article-weather__header--new-plymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/new-plymouth.jpg")}}@media (min-width: 768px){.article-weather__header--new-plymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/new-plymouth-md.jpg")}}@media (min-width: 992px){.article-weather__header--new-plymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/new-plymouth-lg.jpg")}}@media (min-width: 576px){.article-weather__header--omaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/omaru.jpg")}}@media (min-width: 768px){.article-weather__header--omaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/omaru-md.jpg")}}@media (min-width: 992px){.article-weather__header--omaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/omaru-lg.jpg")}}@media (min-width: 576px){.article-weather__header--palmerston-north{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/palmerston-north.jpg")}}@media (min-width: 768px){.article-weather__header--palmerston-north{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/palmerston-north-md.jpg")}}@media (min-width: 992px){.article-weather__header--palmerston-north{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/palmerston-north-lg.jpg")}}@media (min-width: 576px){.article-weather__header--paraparaumu{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/paraparaumu.jpg")}}@media (min-width: 768px){.article-weather__header--paraparaumu{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/paraparaumu-md.jpg")}}@media (min-width: 992px){.article-weather__header--paraparaumu{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/paraparaumu-lg.jpg")}}@media (min-width: 576px){.article-weather__header--queenstown{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/queenstown.jpg")}}@media (min-width: 768px){.article-weather__header--queenstown{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/queenstown-md.jpg")}}@media (min-width: 992px){.article-weather__header--queenstown{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/queenstown-lg.jpg")}}@media (min-width: 576px){.article-weather__header--reefton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/reefton.jpg")}}@media (min-width: 768px){.article-weather__header--reefton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/reefton-md.jpg")}}@media (min-width: 992px){.article-weather__header--reefton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/reefton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--rotorua{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/rotorua.jpg")}}@media (min-width: 768px){.article-weather__header--rotorua{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/rotorua-md.jpg")}}@media (min-width: 992px){.article-weather__header--rotorua{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/rotorua-lg.jpg")}}@media (min-width: 576px){.article-weather__header--taumaranui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taumaranui.jpg")}}@media (min-width: 768px){.article-weather__header--taumaranui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taumaranui-md.jpg")}}@media (min-width: 992px){.article-weather__header--taumaranui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taumaranui-lg.jpg")}}@media (min-width: 576px){.article-weather__header--taupo{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taupo.jpg")}}@media (min-width: 768px){.article-weather__header--taupo{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taupo-md.jpg")}}@media (min-width: 992px){.article-weather__header--taupo{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taupo-lg.jpg")}}@media (min-width: 576px){.article-weather__header--tauranga{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tauranga.jpg")}}@media (min-width: 768px){.article-weather__header--tauranga{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tauranga-md.jpg")}}@media (min-width: 992px){.article-weather__header--tauranga{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tauranga-lg.jpg")}}@media (min-width: 576px){.article-weather__header--tekuiti{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tekuiti.jpg")}}@media (min-width: 768px){.article-weather__header--tekuiti{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tekuiti-md.jpg")}}@media (min-width: 992px){.article-weather__header--tekuiti{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tekuiti-lg.jpg")}}@media (min-width: 576px){.article-weather__header--thames{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/thames.jpg")}}@media (min-width: 768px){.article-weather__header--thames{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/thames-md.jpg")}}@media (min-width: 992px){.article-weather__header--thames{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/thames-lg.jpg")}}@media (min-width: 576px){.article-weather__header--timaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/timaru.jpg")}}@media (min-width: 768px){.article-weather__header--timaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/timaru-md.jpg")}}@media (min-width: 992px){.article-weather__header--timaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/timaru-lg.jpg")}}@media (min-width: 576px){.article-weather__header--tokoroa{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tokoroa.jpg")}}@media (min-width: 768px){.article-weather__header--tokoroa{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tokoroa-md.jpg")}}@media (min-width: 992px){.article-weather__header--tokoroa{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tokoroa-lg.jpg")}}@media (min-width: 576px){.article-weather__header--wanaka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wanaka.jpg")}}@media (min-width: 768px){.article-weather__header--wanaka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wanaka-md.jpg")}}@media (min-width: 992px){.article-weather__header--wanaka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wanaka-lg.jpg")}}@media (min-width: 576px){.article-weather__header--wellington{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wellington.jpg")}}@media (min-width: 768px){.article-weather__header--wellington{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wellington-md.jpg")}}@media (min-width: 992px){.article-weather__header--wellington{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wellington-lg.jpg")}}@media (min-width: 576px){.article-weather__header--westport{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/westport.jpg")}}@media (min-width: 768px){.article-weather__header--westport{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/westport-md.jpg")}}@media (min-width: 992px){.article-weather__header--westport{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/westport-lg.jpg")}}@media (min-width: 576px){.article-weather__header--whakatane{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whakatane.jpg")}}@media (min-width: 768px){.article-weather__header--whakatane{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whakatane-md.jpg")}}@media (min-width: 992px){.article-weather__header--whakatane{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whakatane-lg.jpg")}}@media (min-width: 576px){.article-weather__header--whanganui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whanganui.jpg")}}@media (min-width: 768px){.article-weather__header--whanganui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whanganui-md.jpg")}}@media (min-width: 992px){.article-weather__header--whanganui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whanganui-lg.jpg")}}@media (min-width: 576px){.article-weather__header--whangarei{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whangarei.jpg")}}@media (min-width: 768px){.article-weather__header--whangarei{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whangarei-md.jpg")}}@media (min-width: 992px){.article-weather__header--whangarei{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whangarei-lg.jpg")}}@font-face{font-weight:300;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Light.otf?d=484)}@font-face{font-weight:400;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Regular.otf?d=484)}@font-face{font-weight:600;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Semibold.otf?d=484)}@font-face{font-weight:700;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Bold.otf?d=484)}@font-face{font-weight:400;font-family:'Source Sans Pro';font-style:italic;src:url(/pf/resources/dist/fonts/SourceSansPro-It.otf?d=484)}@font-face{font-weight:400;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Book.otf?d=484)}@font-face{font-weight:500;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Medium.otf?d=484)}@font-face{font-weight:600;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Semibold.otf?d=484)}@font-face{font-weight:700;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Bold.otf?d=484)}@font-face{font-weight:300;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Light.otf?d=484)}@font-face{font-weight:300;font-family:'Stag';font-style:italic;src:url(/pf/resources/dist/fonts/Stag-LightItalic.otf?d=484)}@font-face{font-weight:300;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Light.otf?d=484)}@font-face{font-weight:400;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Book.otf?d=484)}@font-face{font-weight:500;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Medium.otf?d=484)}@font-face{font-weight:700;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Bold.otf?d=484)}@font-face{font-weight:300;font-family:'Stag Sans Light';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Light.otf?d=484)}@font-face{font-weight:900;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-BlackIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-BlackIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-BoldIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-BoldIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:900;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Black.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Black.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Bold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Bold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Extrabld.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Extrabld.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-ExtrabldIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-ExtrabldIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-RegularIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-RegularIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:300;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-LightIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-LightIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:300;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Light.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Light.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:500;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-MediumIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-MediumIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Regular.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Regular.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:500;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Medium.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Medium.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:600;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-SemiboldIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-SemiboldIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:600;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNova-Semibold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-Semibold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:100;font-family:'Proxima Nova';font-style:italic;src:url(/pf/resources/dist/fonts/ProximaNova-ThinIt.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNova-ThinIt.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:100;font-family:'Proxima Nova';font-style:normal;src:url(/pf/resources/dist/fonts/ProximaNovaT-Thin.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/ProximaNovaT-Thin.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:900;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Black.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Black.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:900;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-BlackItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-BlackItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Bold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Bold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-BoldItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-BoldItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-ExtraBold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-ExtraBold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-ExtraBoldItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-ExtraBoldItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Italic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Italic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Regular.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Regular.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Italic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Italic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:500;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-MediumItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-MediumItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:500;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Medium.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Medium.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:600;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-SemiBold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-SemiBold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:600;font-family:'Playfair Display';font-style:italic;src:url(/pf/resources/dist/fonts/PlayfairDisplay-SemiBoldItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-SemiBoldItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Playfair Display';font-style:normal;src:url(/pf/resources/dist/fonts/PlayfairDisplay-Regular.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/PlayfairDisplay-Regular.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Radiant URW Cond';font-style:normal;src:url(/pf/resources/dist/fonts/RadiantURWCon-Bol.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/RadiantURWCon-Bol.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:400;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Book.otf?d=484)}@font-face{font-weight:600;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Semibold.otf?d=484)}@font-face{font-weight:bold;font-family:'Ibarra Real Nova';font-style:normal;src:url(/pf/resources/dist/fonts/IbarraRealNova-Bold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-Bold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:bold;font-family:'Ibarra Real Nova';font-style:italic;src:url(/pf/resources/dist/fonts/IbarraRealNova-BoldItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-BoldItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Ibarra Real Nova';font-style:italic;src:url(/pf/resources/dist/fonts/IbarraRealNova-Italic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-Italic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:500;font-family:'Ibarra Real Nova';font-style:italic;src:url(/pf/resources/dist/fonts/IbarraRealNova-MediumItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-MediumItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:600;font-family:'Ibarra Real Nova';font-style:italic;src:url(/pf/resources/dist/fonts/IbarraRealNova-SemiBoldItalic.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-SemiBoldItalic.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:500;font-family:'Ibarra Real Nova';font-style:normal;src:url(/pf/resources/dist/fonts/IbarraRealNova-Medium.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-Medium.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:600;font-family:'Ibarra Real Nova';font-style:normal;src:url(/pf/resources/dist/fonts/IbarraRealNova-SemiBold.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-SemiBold.woff?d=484) format("woff");font-display:swap}@font-face{font-weight:normal;font-family:'Ibarra Real Nova';font-style:normal;src:url(/pf/resources/dist/fonts/IbarraRealNova-Regular.woff2?d=484) format("woff2"),url(/pf/resources/dist/fonts/IbarraRealNova-Regular.woff?d=484) format("woff");font-display:swap}.theme-form .form-button.theme-form-section-sport__button{background-color:#50ac47}.theme-form .input-group--checkbox.theme-form-section-sport__checkbox .input-label{background-color:#50ac47}.theme-form .form-button.theme-form-section-business__button{background-color:#394190}.theme-form .input-group--checkbox.theme-form-section-business__checkbox .input-label{background-color:#394190}.theme-form .form-button.theme-form-section-national__button{background-color:#38a3d7}.theme-form .input-group--checkbox.theme-form-section-national__checkbox .input-label{background-color:#38a3d7}.theme-form .form-button.theme-form-section-politics__button{background-color:#38a3d7}.theme-form .input-group--checkbox.theme-form-section-politics__checkbox .input-label{background-color:#38a3d7}.theme-form .form-button.theme-form-section-new-zealand__button{background-color:#38a3d7}.theme-form .input-group--checkbox.theme-form-section-new-zealand__checkbox .input-label{background-color:#38a3d7}.theme-form .form-button.theme-form-section-crime__button{background-color:#38a3d7}.theme-form .input-group--checkbox.theme-form-section-crime__checkbox .input-label{background-color:#38a3d7}.theme-form .form-button.theme-form-section-world__button{background-color:#3374ba}.theme-form .input-group--checkbox.theme-form-section-world__checkbox .input-label{background-color:#3374ba}.theme-form .form-button.theme-form-section-entertainment__button{background-color:#a43f82}.theme-form .input-group--checkbox.theme-form-section-entertainment__checkbox .input-label{background-color:#a43f82}.theme-form .form-button.theme-form-section-lifestyle__button{background-color:#de2363}.theme-form .input-group--checkbox.theme-form-section-lifestyle__checkbox .input-label{background-color:#de2363}.theme-form .form-button.theme-form-section-royalty__button{background-color:#de2363}.theme-form .input-group--checkbox.theme-form-section-royalty__checkbox .input-label{background-color:#de2363}.theme-form .form-button.theme-form-section-technology__button{background-color:#ef5633}.theme-form .input-group--checkbox.theme-form-section-technology__checkbox .input-label{background-color:#ef5633}.theme-form .form-button.theme-form-section-travel__button{background-color:#f47d22}.theme-form .input-group--checkbox.theme-form-section-travel__checkbox .input-label{background-color:#f47d22}.theme-form .form-button.theme-form-section-property__button{background-color:#30bdb0}.theme-form .input-group--checkbox.theme-form-section-property__checkbox .input-label{background-color:#30bdb0}.theme-form .form-button.theme-form-section-northern-advocate__button{background-color:#808285}.theme-form .input-group--checkbox.theme-form-section-northern-advocate__checkbox .input-label{background-color:#808285}.theme-form .form-button.theme-form-section-bay-of-plenty-times__button{background-color:#0063a4}.theme-form .input-group--checkbox.theme-form-section-bay-of-plenty-times__checkbox .input-label{background-color:#0063a4}.theme-form .form-button.theme-form-section-waikato-news__button{background-color:#8b080d}.theme-form .input-group--checkbox.theme-form-section-waikato-news__checkbox .input-label{background-color:#8b080d}.theme-form .form-button.theme-form-section-hawkes-bay-today__button{background-color:#0e76bc}.theme-form .input-group--checkbox.theme-form-section-hawkes-bay-today__checkbox .input-label{background-color:#0e76bc}.theme-form .form-button.theme-form-section-kapiti-news__button{background-color:#30638b}.theme-form .input-group--checkbox.theme-form-section-kapiti-news__checkbox .input-label{background-color:#30638b}.theme-form .form-button.theme-form-section-manawatu-guardian__button{background-color:#088b6c}.theme-form .input-group--checkbox.theme-form-section-manawatu-guardian__checkbox .input-label{background-color:#088b6c}.theme-form .form-button.theme-form-section-rotorua-daily-post__button{background-color:#8b080d}.theme-form .input-group--checkbox.theme-form-section-rotorua-daily-post__checkbox .input-label{background-color:#8b080d}.theme-form .form-button.theme-form-section-stratford-press__button{background-color:#8b080d}.theme-form .input-group--checkbox.theme-form-section-stratford-press__checkbox .input-label{background-color:#8b080d}.theme-form .form-button.theme-form-section-aucklander__button{background-color:#8b080d}.theme-form .input-group--checkbox.theme-form-section-aucklander__checkbox .input-label{background-color:#8b080d}.theme-form .form-button.theme-form-section-the-country__button{background-color:#469031}.theme-form .input-group--checkbox.theme-form-section-the-country__checkbox .input-label{background-color:#469031}.theme-form .form-button.theme-form-section-whanganui-chronicle__button{background-color:#084a7a}.theme-form .input-group--checkbox.theme-form-section-whanganui-chronicle__checkbox .input-label{background-color:#084a7a}.theme-form .form-button.theme-form-section-northland-age__button{background-color:#8c163d}.theme-form .input-group--checkbox.theme-form-section-northland-age__checkbox .input-label{background-color:#8c163d}.theme-form .form-button.theme-form-section-horowhenua-chronicle__button{background-color:#0063a4}.theme-form .input-group--checkbox.theme-form-section-horowhenua-chronicle__checkbox .input-label{background-color:#0063a4}.theme-form .form-button.theme-form-section-te-awamutu-courier__button{background-color:#1e9043}.theme-form .input-group--checkbox.theme-form-section-te-awamutu-courier__checkbox .input-label{background-color:#1e9043}.theme-form .form-button.theme-form-section-default__button{background-color:#121617}.theme-form .input-group--checkbox.theme-form-section-default__checkbox .input-label{background-color:#121617}.theme-form .form-button.theme-form-section-nosection__button{background-color:#8a8f96}.theme-form .input-group--checkbox.theme-form-section-nosection__checkbox .input-label{background-color:#8a8f96}.theme-form .form-button.theme-form-section-newstalk-zb__button{background-color:#00beeb}.theme-form .input-group--checkbox.theme-form-section-newstalk-zb__checkbox .input-label{background-color:#00beeb}.theme-form .form-button.theme-form-section-the-vision-is-clear__button{background-color:#009290}.theme-form .input-group--checkbox.theme-form-section-the-vision-is-clear__checkbox .input-label{background-color:#009290}.theme-form .form-button.theme-form-section-trailblazers__button{background-color:#6e2053}.theme-form .input-group--checkbox.theme-form-section-trailblazers__checkbox .input-label{background-color:#6e2053}.theme-form .form-button.theme-form-section-eatwell__button{background-color:#c33857}.theme-form .input-group--checkbox.theme-form-section-eatwell__checkbox .input-label{background-color:#c33857}.theme-form .form-button.theme-form-section-recipes__button{background-color:#c33857}.theme-form .input-group--checkbox.theme-form-section-recipes__checkbox .input-label{background-color:#c33857}.theme-form .form-button.theme-form-section-food-news__button{background-color:#c33857}.theme-form .input-group--checkbox.theme-form-section-food-news__checkbox .input-label{background-color:#c33857}.theme-form .form-button.theme-form-section-premium__button{background-color:#ecac0c}.theme-form .input-group--checkbox.theme-form-section-premium__checkbox .input-label{background-color:#ecac0c}.theme-form .form-button.theme-form-section-fallback__button{background-color:#333c3d}.theme-form .input-group--checkbox.theme-form-section-fallback__checkbox .input-label{background-color:#333c3d}.theme-form .form-button.theme-form-section-kahu__button{background-color:#597c35}.theme-form .input-group--checkbox.theme-form-section-kahu__checkbox .input-label{background-color:#597c35}.theme-form .form-button.theme-form-section-talanoa__button{background-color:#00c29b}.theme-form .input-group--checkbox.theme-form-section-talanoa__checkbox .input-label{background-color:#00c29b}.theme-form .form-button.theme-form-section-reset__button{background-color:#00b2b1}.theme-form .input-group--checkbox.theme-form-section-reset__checkbox .input-label{background-color:#00b2b1}.form-feedback{display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;width:100%;height:1.9375rem;margin-top:1rem;margin-bottom:0.5rem;padding:0.5rem;border-radius:0.125rem}.form-feedback--success{color:#38a3d7;background-color:rgba(56,163,215,0.2)}.form-feedback--error{color:#ed213e;background-color:#fbd3d9}.form-feedback__message{margin-left:0.625rem;color:inherit;font-weight:600;font-size:0.78125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.form-feedback__icon{width:100%;max-width:0.4375rem;height:100%;max-height:0.4375rem}.form-feedback__icon-circle{display:flex;align-items:center;justify-content:center;width:0.9375rem;height:0.9375rem;border-radius:50%}.form-feedback__icon-circle--success{background-color:#38a3d7}.form-feedback__icon-circle--error{background-color:#ed213e}body{color:#111617;font-weight:300;font-size:1.0625rem;font-family:"Source Sans Pro","Helvetica",sans-serif}h1,h2,h3{margin-top:1.25rem;margin-bottom:0.625rem;color:#4c585d;font-weight:500;font-family:"Stag","Georgia",serif}h1{font-size:2.1875rem;line-height:1.1}@media (min-width: 768px){h1{font-size:2.8125rem}}h2{margin-top:0.3125rem;margin-bottom:0.3125rem;font-size:1.875rem}h3{margin:0;font-size:1rem;line-height:1.2}h4{margin:0}p{margin-top:0;margin-bottom:0.625rem;font-size:1.1875rem;line-height:1.6}@media (min-width: 768px){p{font-size:1.0625rem}}a{color:#38a3d7;text-decoration:none}a:hover,a:focus{opacity:0.8;transition:opacity 0.2s}strong{font-weight:700}figcaption{margin-top:0.3125rem;margin-bottom:0.625rem;color:#707c83;font-size:0.875rem;line-height:1.6}time{font-weight:300;font-size:0.75rem}blockquote{color:#333;font-weight:500;font-size:2.1875rem;font-family:"Stag","Georgia",serif;text-align:center;quotes:'“' '”' '‘' '’'}@media print{figcaption{display:none}}.accordion{width:100%;border-bottom:2px solid #23292a}.accordion:first-of-type{border-top:2px solid #23292a}.accordion:last-of-type{border-bottom:none}.accordion--is-expanded .accordion__chevron{color:#fff;background-color:#4c585d;transform:rotate(90deg)}.accordion--is-expanded .accordion__content{max-height:625rem;overflow:visible}.accordion__button{display:flex;align-items:center;box-sizing:border-box;width:100%;padding:0.625rem 1.5625rem;background-color:transparent;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.accordion__button .accordion__chevron{transition:all 0.1s}.accordion__button small{margin-left:0.3125rem;font-size:70%}.accordion__button,.accordion__link{color:#c4cccb;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif;line-height:1.45}.accordion__icon{width:2.1875rem;height:2.1875rem;margin-right:1.25rem}.accordion__icon--avatar{margin-top:-0.375rem;color:#4c585d}.accordion__icon--my-news{display:flex;align-items:center;justify-content:center;color:#fff;background-color:#313c3d;border-radius:50%}.accordion__chevron{box-sizing:content-box;width:0.3125rem;height:0.5rem;margin-left:auto;padding:0.125rem 0.1875rem;color:#4c585d;border:2px solid #4c585d;border-radius:50%}.accordion__content{height:auto;max-height:0;overflow:hidden;background-color:#1c2122}.ad{color:#9e9f9f;text-align:center}.ad .pb-ad-container{margin:0 auto}.ad .pb-ad-container[data-adtype='Leaderboard']{display:inline-block}@media (min-width: 768px){.ad.ad-rectangle .pb-ad-container[data-ad-env='mobile'],.ad.ad-native .pb-ad-container[data-ad-env='mobile']{display:none}}@media (max-width: 767px){.ad.ad-rectangle .pb-ad-container[data-ad-env='desktop'],.ad.ad-native .pb-ad-container[data-ad-env='desktop']{display:none}}.ad.ad-leaderboard{display:none;flex-flow:column nowrap;align-items:center;justify-content:center;width:100%}@media (min-width: 992px){.ad.ad-leaderboard{display:flex}}.ad.ad-leaderboard .ad__link{margin-top:0.3125rem}.ad__placeholder{display:flex;align-items:center;justify-content:center;margin:0 auto;color:#fff;text-align:center;background-color:#38a3d7}@media (min-width: 768px){.ad__placeholder[data-ad-env='mobile']{display:none}}@media (max-width: 767px){.ad__placeholder[data-ad-env='desktop']{display:none}}.ad__heading{margin-bottom:0.625rem;font-weight:300;font-size:0.6875rem;text-transform:uppercase}@media (min-width: 768px){.ad__heading[data-ad-env='mobile']{display:none}}@media (max-width: 767px){.ad__heading[data-ad-env='desktop']{display:none}}.ad__link{display:block;color:#9e9f9f;font-size:0.625rem;font-style:italic}@media (min-width: 768px){.ad__link[data-ad-env='mobile']{display:none}}@media (max-width: 767px){.ad__link[data-ad-env='desktop']{display:none}}@media print{.ad,.ad.ad-leaderboard{display:none}}.article-media{margin:2rem auto;outline:0}@media (min-width: 576px){.article-media{position:relative}}.article-media__full-screen-button{display:none}@media (min-width: 576px){.article-media__full-screen-button{position:absolute;top:0.3125rem;right:0.3125rem;display:flex;align-items:center;justify-content:center;width:2.1875rem;height:2.1875rem;padding:0;background-color:#4c585d;border:none;border-radius:0.375rem;cursor:pointer;transition:opacity 0.2s}}.article-media__full-screen-button:hover{opacity:0.8}.article-media__full-screen-button-icon{width:2.1875rem;height:2.1875rem;color:#fff}.article-media__image{width:100%}.article-media__image--portrait{width:auto;height:31.25rem;margin:0 auto}@media (max-width: 575px){.article__header-simple .hero-container{padding:0 0.625rem}}@media (max-width: 575px){.article__header-simple .hero-container.with-no-video{padding:0}}.article-media__hero-wrapper{position:relative;margin-top:1.25rem;padding-top:56.25%}@media (max-width: 575px){.article-media__hero-wrapper.no-video{padding-top:106.42%}}.article-media__hero-wrapper.placeholder-image{overflow:hidden}.article-media__hero-wrapper .header__figure{margin-top:0}.article-media__hero-wrapper .article-media__image{position:absolute;top:0;left:0;width:100%;margin-top:0}.article-media__hero-wrapper .video-outer{position:absolute;top:0;width:100%;height:100%}@media print{.article-media__full-screen-button{position:static;display:none}.article-media__image{display:none}.article-media__caption{display:none}}.article-offer{position:relative;z-index:1;width:100%;text-align:center;background:linear-gradient(to bottom, #f8f9fa 90%, #fff);border-top:0.0625rem solid #e1a325}.article-offer::before{position:absolute;top:-7.25rem;left:0;display:block;width:100%;height:6.25rem;background-image:linear-gradient(rgba(255,255,255,0), #fff);content:''}.article-offer__inner{position:relative;max-width:23.75rem;margin:0 auto;padding:4rem 1.25rem}.article-offer__subheading{margin-bottom:1rem;color:#000;font-weight:500;font-size:1.25rem}@media (max-width: 767px){.article-offer__subheading{margin-bottom:1.3125rem}}.article-offer__heading{font-weight:400;font-size:1.5625rem}.article-offer__inline-break{display:inline-block}.article-offer__inner .article-offer__price,.article-offer__price{display:flex;align-items:flex-end;justify-content:center;margin-bottom:1.5rem;font-weight:700;font-size:3rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:3.75rem;letter-spacing:-0.0625rem}@media (max-width: 767px){.article-offer__inner .article-offer__price,.article-offer__price{margin-bottom:1.6875rem}}.article-offer__price-sign{position:relative;font-size:3rem;letter-spacing:-0.0625rem}.article-offer__price-period{padding-bottom:0.375rem;padding-left:0.3125rem;font-size:1.5rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.875rem}.article-offer__signin{margin-top:1rem;font-weight:700;font-size:0.875rem;line-height:1.375rem}.article-offer__hr{position:relative;display:flex;margin-top:2.25rem;margin-bottom:2.25rem}.article-offer__hr::before{z-index:-1;width:100%;height:0.0625rem;background:#dde2e3;content:''}.article-offer__hr span{position:absolute;top:50%;left:50%;width:2.5rem;padding:0 0.875rem;background:#f8f9fa;transform:translate(-50%, -60%)}.article-offer__call-to-action{display:flex;align-items:center;justify-content:center;box-sizing:border-box;height:3.25rem;padding:0 5rem;color:#000;font-weight:600;font-size:1rem;background-color:#ecac0c;border-radius:0.25rem}@media (min-width: 576px){.article-offer__call-to-action{padding:0.5rem 7rem}}@media print{.article-offer{page-break-inside:avoid}}.author{display:flex;align-items:center;color:#4c585d;font-size:0.875rem}.author__image{width:3.75rem;height:3.75rem;margin-right:1.25rem;border-radius:50%}@media (min-width: 992px){.author__info{max-width:18.75rem}}.author__description{margin-top:0;margin-bottom:0;color:#313c3d;font-size:0.875rem;line-height:1.125rem}.author__description.role{font-weight:400}.author__name{color:#313c3d;font-weight:400;line-height:1.125rem}.author__name .name__heading{display:inline;font-weight:700;font-size:0.875rem}.author__link{display:inline;margin-top:0.3125rem;font-weight:700}.author__profile{position:relative;display:block;margin-top:1.125rem;font-weight:700;font-size:0.75rem;line-height:0.9375rem}.author__profile::before{position:absolute;top:-0.59375rem;width:4.6875rem;height:0.0625rem;background-color:#dde2e3;content:''}.author .author--is-hidden{display:none}.author--is-sponsored .sponsored-text-info{background-color:#9b9b9b;border-radius:3px}.author--is-sponsored .sponsored-text{margin:auto;padding:0.5rem;color:#fff;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.07}.syndicator__logo-container{max-width:150px;max-height:20px}.syndicator__logo{width:100%;height:100%}.syndicator__logo--eatwell-syndicator{width:4.8125rem;height:1.25rem}.syndicator__logo--viva{width:1.875rem;height:1.25rem}.syndicator__logo--canvas{width:8.125rem;height:1.25rem}.syndicator__logo--nz-listener{width:6.125rem;height:1.25rem}.syndicator__logo--nz-womans-weekly{width:6.3125rem;height:1.25rem}.syndicator__logo--nz-herald{width:8.75rem;height:1.25rem}.syndicator__logo--be-well{width:4.6875rem;height:1.25rem}.syndicator__logo--dish{width:2.625rem}@media (max-width: 767px){.syndicator__logo--dish{margin-left:0.625rem}}.syndicator__logo-container+.author__name{margin-top:0.625rem}@media (max-width: 767px){.syndicator__logo-container+.author__name{margin-left:0.625rem}}.author--apo{width:50%}@media (max-width: 575px){.author--apo{width:100%}}@media (min-width: 576px) and (max-width: 768px){.author--apo{width:60%}}.author--apo .meta-data{justify-content:flex-start;margin-top:0.5rem;color:#93a0a8}.author--apo .meta-data__time-stamp{margin-right:0.5rem}.author--apo .meta-data__read-time{line-height:1.3}.author--apo .meta-data__time-stamp,.author--apo .meta-data__read-time{font-weight:400 !important;font-size:0.875rem}.author--apo .syndicator__name,.author--apo .author__name{color:#111617;font-weight:600;word-break:break-word}.author--apo .syndicator__name .name__heading,.author--apo .author__name .name__heading{font-weight:600}.author--apo .author__byline_name{color:#111617;font-weight:400}.author--apo .author__name .author__link{font-weight:600;text-decoration:underline}.author--apo .author__image{margin-right:0.5rem}.author--apo span.author__image{min-width:3.75rem;margin-right:0.5rem;background-color:#313c3d}.author--apo span.author__image .author__image--svg{position:relative;top:0.75rem;left:0.75rem;width:60%;height:60%}.author--apo .author__role{font-weight:400;font-size:0.875rem}.action-bar{display:flex;padding:0.3125rem 0.625rem 0.3125rem 0.75rem}.action-bar.action-bar-black-bg{max-width:100%;padding-left:1.25rem;background:#121617;border-top:0.0625rem solid #313c3d}@media (max-width: 575px){.action-bar.action-bar-black-bg{border-top:none}}@media (min-width: 768px){.action-bar{padding:0.3125rem 0 0.3125rem 0}.action-bar.action-bar-split-line{border-bottom:0.0625rem solid #d5d5d5}}@media (min-width: 992px){.action-bar{max-width:58.75rem;margin-right:auto;margin-left:auto}}.action-bar .website-of-year{display:flex;width:100%;margin:0.1875rem;padding-top:0.25rem;color:#121617;font:normal normal 700 0.875rem/0.9375rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0;white-space:nowrap;text-align:left;text-transform:uppercase}@media (min-width: 768px){.action-bar .website-of-year{width:calc(100% - 1.25rem * 2)}}.action-bar .website-of-year img,.action-bar .website-of-year amp-img{display:inline-block;padding-right:1.25rem;vertical-align:middle}@media (max-width: 575px){.action-bar .website-of-year img,.action-bar .website-of-year amp-img{padding-right:0.625rem}}.action-bar .btn-premium-wrapper{margin:auto}@media (min-width: 768px){.action-bar .btn-premium-wrapper{display:none}}.action-bar .btn-premium-wrapper .sub-btn{display:inline-block;margin:0 auto 1.25rem;padding:0.5rem 0.75rem;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-align:center;text-decoration:none;vertical-align:middle;background-color:#ecac0d;border:0.0625rem solid #ecac0d;border-radius:0.25rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;margin:auto;padding-top:0.6875rem;padding-bottom:0.6875rem;color:#000;text-transform:uppercase;border-radius:0.125rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.action-bar .btn-premium-wrapper .sub-btn:hover{background-color:#d49b0b;border-color:#d49b0b}.action-bar__img-container{display:inline-block;padding-right:0.6875rem;border-right:0.0625rem solid #e3e3e3}@media (max-width: 575px){.action-bar__img-container{padding-right:0.625rem}}.action-bar__img-container img{vertical-align:middle}.action-bar__img-container.img-container-journalist{padding-right:0;border-right:none}.action-bar__voyager-awards-text{display:flex;flex-direction:column;justify-content:center;padding-left:0.78125rem}.action-bar__voyager-awards-text.voyager-awards-text-color{padding-left:0;color:#fff}@media (max-width: 575px){.action-bar__voyager-awards-text.voyager-awards-text-color{padding-left:0.6875rem}}@media print{.action-bar{display:none}}.brandedstrap{max-width:60rem;margin:0.625rem;padding:1.25rem 0;border-top:1px solid #313c3d;border-bottom:1px solid #313c3d}@media (min-width: 992px){.brandedstrap{margin:2.5rem auto}}@media (min-width: 576px){.brandedstrap__wrapper{display:flex;align-items:center;justify-content:space-between}}.brandedstrap__image{max-width:13.125rem;max-height:2.1875rem;margin-right:0.3125rem}.brandedstrap__description{margin-top:0.3125rem;padding:0 0.9375rem;color:#000;font-weight:400;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.0625rem}@media (min-width: 576px){.brandedstrap__description{flex-basis:70%;margin-top:0;padding:0 3.125rem}}.brandedstrap__link{display:flex;margin-top:0.3125rem;color:#313c3d;font-weight:700;font-size:0.75rem;font-family:"Stag Sans","Helvetica",sans-serif;text-transform:uppercase;word-break:normal}@media (min-width: 576px){.brandedstrap__link{min-width:6.875rem;margin-top:0}}.brandinsight{height:4.0625rem}.brandinsight__wrapper{display:flex;align-items:center;justify-content:space-between;max-width:60rem;height:100%;margin:0 0.625rem}@media (min-width: 992px){.brandinsight__wrapper{margin:0 auto}}.brandinsight__logo{display:flex;align-items:center}.brandinsight__logo-icon{width:2.8125rem;height:2.8125rem}.brandinsight__logo-text{display:none;margin-left:0.125rem;color:#fff;font-size:1.3125rem;font-family:"Stag","Georgia",serif;line-height:2.8125rem}@media (min-width: 576px){.brandinsight__logo-text{display:inline}}.brandinsight__sponsor-logo{max-height:3.75rem}.breaking-news{height:2.5rem;overflow:hidden;color:#fff;background-color:#ed213e}@media (max-width: 767px){.breaking-news{position:fixed;bottom:0;left:0;z-index:3;width:100%;box-shadow:0 -0.3125rem 0.625rem rgba(28,33,34,0.3)}}.breaking-news--has-animation .breaking-news__message{-webkit-animation:ticker 15s linear infinite;animation:ticker 15s linear infinite}.breaking-news__inner{position:relative;display:flex;align-items:center;width:100%;height:100%}.breaking-news__message{display:inline-block;margin-bottom:0;padding:0 0.625rem;font-weight:600;font-size:1rem;line-height:1;white-space:nowrap;text-transform:uppercase}@media (min-width: 768px){.breaking-news__message{font-size:1.125rem}}@media (min-width: 1200px){.breaking-news__message{padding-left:4.375rem}}.breaking-news__message:hover{-webkit-animation-play-state:paused;animation-play-state:paused}.breaking-news__link{padding-left:0.1875rem;color:#fff;font-weight:400;font-family:"Stag","Georgia",serif;text-transform:none}.breaking-news__close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;padding:0;background-color:#d51e38;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.breaking-news__close-icon{width:1.3125rem;height:1.3125rem;color:#fff}@-webkit-keyframes ticker{0%{transform:translateX(0)}30%{transform:translateX(0)}100%{transform:translateX(-110%)}}@keyframes ticker{0%{transform:translateX(0)}30%{transform:translateX(0)}100%{transform:translateX(-110%)}}@media print{.breaking-news{display:none}}.section-chain .slick-slide article[class^='story-card']{margin:0 0.625rem}.section-chain .slick-prev{left:-2.5rem}.section-chain .slick-next{right:-2.5rem}.section-chain .slick-dots li button::before{font-size:0.625rem}.journalistcarousel-chain .slick-dots li button::before{color:#8a8f96;font-size:0.625rem}.journalistcarousel-chain .slick-dots li.slick-active button::before{color:#fff}.commenting__wrapper{padding:1.125rem 1.0625rem;background-color:#f5f5f5}.commenting__main{padding:1.875rem 0.9375rem;background-color:#fff}@media (min-width: 768px){.commenting__main{padding:1.875rem}}.commenting__description{max-width:29.6875rem;margin:0 0 0.625rem;color:#121617;font-weight:300;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.commenting__heading{margin:0 0 0.625rem;color:#313c3d;font-weight:400;font-family:"Stag","Georgia",serif}.commenting__name-form,.commenting__paywall{display:flex;flex-flow:column nowrap;align-items:center;width:100%;height:auto;text-align:center}.commenting__paywall .commenting__heading{font-size:1.375rem}.commenting__paywall .article-offer__price{margin-bottom:0.1875rem}.commenting__paywall .button{max-width:23.75rem;margin:0 0 1.125rem}.commenting__paywall h4{margin:0.5rem 0 0.9375rem;color:#313c3d;font-weight:400}.commenting__paywall .note{color:#333;font-size:0.875rem}.commenting__name-form .commenting__heading{font-size:1.375rem}.commenting__name-form .commenting__description{margin-bottom:1.25rem}.commenting .button{display:flex;align-items:center;justify-content:center;width:100%;height:3rem;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center;border-radius:0.25rem}.commenting .button:hover{cursor:pointer;opacity:0.8;transition:opacity 0.2s}.commenting .button:disabled{opacity:0.3;transition:opacity 0.2s}.commenting .button--primary{color:#fff;background-color:#38a3d7;border:1px solid #38a3d7}.commenting .button--premium{color:#000;background-color:#ecac0c;border:1px solid #ecac0c}.commenting__count{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;box-sizing:border-box;width:100%;margin:1.5625rem 0 0.3125rem;padding-top:0.9375rem;padding-bottom:0.9375rem;border-top:1px solid #dce1e2}.commenting__count-info{display:flex;flex-flow:row nowrap;align-items:center}@media (max-width: 575px){.commenting__count{padding:1.625rem 0.625rem}}.commenting__count-title{color:#38a3d7;font-weight:400;font-size:1.375rem;font-family:"Stag","Georgia",serif}.commenting__speech-bubble{position:relative;display:flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:2.40625rem;height:1.75rem;margin:0 0.625rem 0 0;padding:0 0.75rem;color:#fff;font-weight:500;font-size:0.875rem;font-family:"Stag","Georgia",serif;line-height:1.125rem;background-color:#38a3d7;border-radius:0.125rem}.commenting__speech-bubble::after{position:absolute;right:-0.3125rem;bottom:1px;margin-bottom:-0.625rem;margin-left:0.5rem;border:10px solid transparent;border-top-color:#38a3d7;border-right:0;border-bottom:0;transform:translateX(-50%);content:''}.commenting .coral-count-number,.commenting .coral-count{color:inherit;font-weight:inherit;font-size:inherit;font-family:inherit}.form{width:100%}.form .form-input-row{display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:center}.form .form-input-row--two{display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:center}@media (min-width: 576px){.form .form-input-row--two .input-group{width:49%}.form .form-input-row--two .input-group:first-child{margin-right:2%}}.form .input-group{display:flex;flex-direction:column;align-items:flex-start;width:100%;margin-bottom:1.25rem}.form .input-label{order:1;margin:0 0 0.375rem;color:#95989d;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.form .input-text{order:2;box-sizing:border-box;width:100%;max-height:3rem;padding:0.75rem 0.875rem;font-weight:300;font-size:1.0625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.0625rem;background-color:#f5f5f5;border:1.5px solid rgba(0,0,0,0);border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form .input-text:focus{background-color:#fff;border:1.5px solid #38a3d7;outline-width:0}.form .input-error{order:3;margin-top:0.25rem;color:#d51e38;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:left}.form .input-text:focus ~ .input-label{color:#38a3d7}.form__feedback{margin-bottom:1.25rem}@media print{.commenting__wrapper{display:none}.commenting__count{display:none}}.share-bar--apo .commenting__speech-bubble{height:1.5rem;margin-top:0.25rem}.share-bar--apo .coral-count{color:#fff}.share-bar--apo .commenting-caption--apo{font-weight:400;font-size:0.875rem;cursor:pointer}.currency-converter{display:flex;flex-direction:column;align-items:center;justify-content:center;box-sizing:border-box;max-width:18.75rem;margin:1.875rem auto;padding:1.875rem 1.75rem;background-color:#fff}@media (min-width: 576px){.currency-converter{margin:0 auto;padding:0.9375rem 1.75rem}}.currency-converter__form{width:100%;max-width:18.75rem}.currency-converter__row{display:flex;flex-direction:row;align-items:center}.currency-converter__title{margin-bottom:0.8125rem;color:#394190;font-size:1.5rem}.currency-converter__input-group{display:flex;flex-direction:column;justify-content:flex-start;width:100%;margin:0.375rem 0 0.5rem}.currency-converter__input-group label{margin-bottom:0.375rem;color:#313c3d;font-weight:700;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:0.8125rem;text-transform:uppercase}.currency-converter__input-group input,.currency-converter__input-group select{box-sizing:border-box;width:100%;padding:0.5625rem 1rem;color:#000;font-weight:300;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border:1px solid #dce1e2;border-radius:0.25rem}.currency-converter__input-group select{background-image:url(/pf/resources/dist/fonts/chevron-dropdown.svg?d=484);background-repeat:no-repeat;background-position:center right 1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.currency-converter__input-group select>option{color:#000;font-weight:300;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.currency-converter__submit-btn{width:100%;height:2.1875rem;margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;background-color:#394190;border:none;border-radius:0.125rem}.article-sidebar .currency-converter{margin:1.875rem auto}.day-forecast{display:flex;flex-wrap:wrap;align-items:center;align-self:flex-start}.day-forecast__icon{width:2.5rem;height:2.5rem;margin-right:0.9375rem}.day-forecast__heading{font-weight:600;font-size:1.0625rem}.day-forecast__heading--date{display:block;color:#38a3d7}.day-forecast__heading--location{display:block;color:#4c585d;text-transform:capitalize}.day-forecast__temperature{display:inline-block;margin-top:0.3125rem;color:#313c3d;font-weight:400;font-size:1.1875rem;font-family:"Stag","Georgia",serif}.day-forecast__temperature:not(:first-of-type){padding-left:0.625rem}.day-forecast__temperature--secondary{color:#9e9f9f}.day-forecast__description{flex-basis:100%;margin-top:0.3125rem;color:#4c585d;font-size:1.0625rem;line-height:1.4}.follow-bar{display:flex;flex-wrap:wrap;padding:0.625rem 1.5625rem}@media (max-width: 575px){.follow-bar{margin-bottom:7.5rem}}.follow-bar__heading{flex-basis:100%;color:#9e9f9f;font-weight:600;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.follow-bar .follow-bar-link{margin-top:0.625rem}.follow-bar .follow-bar-link:not(:first-of-type){margin-left:0.625rem}.follow-bar-link{display:flex;align-items:center;justify-content:center;width:2.1875rem;height:2.1875rem;color:#fff;background-color:#4c585d;border-radius:0.375rem}.follow-bar-link--facebook{background-color:#4267b2}.follow-bar-link--twitter{background-color:#38a1f3}.follow-bar-link--linkedin{background-color:#0077b5}.follow-bar-link--reddit{background-color:#f24511}.follow-bar-link--instagram{background-color:#8b5191}.follow-bar-link--youtube{background-color:#dc4e41}.follow-bar-link--rss{background-color:#e3702d}.follow-bar-link--mail{background-color:#4c585d}.follow-bar-link--share{background-color:#111617}.follow-bar-link__icon{width:1.375rem;height:1.375rem}.follow-bar-link--youtube>.follow-bar-link__icon,.follow-bar-link--rss>.follow-bar-link__icon{width:2.1875rem;height:2.1875rem}.myaccount-form{display:flex;flex-flow:column nowrap;align-items:center;justify-content:center;box-sizing:border-box;width:100%;max-width:23.1875rem;margin-top:4.0625rem;padding:4.0625rem 1.25rem;background-color:#fff}@media (min-width: 576px){.myaccount-form{max-width:36rem;margin-top:4.0625rem;padding:8.125rem 6.4375rem;box-shadow:0 20px 28px rgba(85,99,137,0.08)}}.myaccount-form__container{display:flex;align-items:center;justify-content:center}.myaccount-form .heading{width:100%;margin:0;color:#121617;font-weight:500;font-size:2rem;font-family:"Stag","Georgia",serif;line-height:2.25rem;text-align:center}@media (min-width: 576px){.myaccount-form .heading{font-size:2.5rem;line-height:2.75rem}}.myaccount-form .description{width:100%;margin-bottom:2rem;color:#313c3d;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.25rem;text-align:center}.myaccount-form .description .paragraph{margin:0;line-height:1.25rem}.myaccount-form .hr{display:block;width:2.0625rem;height:0.1875rem;margin:2rem 0;background-color:#ecac0c;border-radius:0.09375rem}.myaccount-form .hr-success{display:block;width:2.0625rem;height:0.1875rem;margin:2rem 0;background-color:#38a3d7;border-radius:0.09375rem}.myaccount-form .divider.hr{margin:2rem auto;background-color:#38a3d7}.myaccount-form input[type='text']:focus,.myaccount-form input[type='text']:hover,.myaccount-form input[type='email']:focus,.myaccount-form input[type='email']:hover{border-color:#ecac0c}.myaccount-form .form-button--submit{color:#fff;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#ecac0c}.myaccount-form .form-button--submit:disabled{opacity:0.2}.myaccount-form .form-button--submit:hover,.myaccount-form .form-button--submit:active{background-color:#fdb215}.myaccount-form .form-button--submit:active{opacity:0.5}.myaccount-form .form-button--verify{color:#fff;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#38a3d7}.myaccount-form .form-button--verify:disabled{background-color:#38a3d7;opacity:0.5}.myaccount-form .form-button--verify:hover,.myaccount-form .form-button--verify:active{background-color:#2aaae8}.myaccount-form .form-button--verify:active{opacity:0.8}.myaccount-form .form-button .button--suffix{display:flex;flex-direction:row;align-items:center;justify-content:center}.myaccount-form .form-button .button-text--IE{margin-right:15%;margin-left:25%}.myaccount-form .form-button .button--text{margin:auto}.myaccount-form .form-button .button--suffix span:last-child{align-self:flex-end;margin-right:5%}.myaccount-form .form-button .button--suffix-arrow{width:1rem;height:1rem;fill:#ffffff}.myaccount-form .email-field{display:flex;align-items:center;padding:0.75rem 0;padding-right:2.1875rem;padding-left:1.125rem;font-size:0.875rem;border:0.0625rem solid #dde1e2;border-radius:0.125rem}.myaccount-form .email-field__input{margin-left:1rem;background-color:#fff;border:none;outline:none}.myaccount-form .email-field .input-wrapper{width:100%}.myaccount-form .email-field input[type='text']{width:100%;border:none;opacity:1;-webkit-text-fill-color:#23292a}.myaccount-form .email-field .google-icon,.myaccount-form .email-field .apple-icon{width:1.125rem;height:1.125rem}.myaccount-form .email-field .google-icon{background:url(/pf/resources/dist/fonts/google-icon.svg?d=484)}.myaccount-form .email-field .apple-icon{background:url(/pf/resources/dist/fonts/apple-icon.svg?d=484);background-repeat:no-repeat;background-size:15px 18px}.myaccount-form .ms-ie-container-fix{max-width:25rem}.myaccount-form .user-agreement{margin-top:1rem;margin-bottom:0;color:#adadad;font:normal normal 600 0.75rem/1.125rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0rem;text-align:center}@media (max-width: 575px){.myaccount-form .user-agreement{padding:0 3.125rem;font-stretch:1rem}}.myaccount-form .user-agreement a{color:#adadad;font-weight:700;text-decoration:underline}@media (max-width: 575px){.myaccount-form.user-form{box-shadow:none}}.myaccount-form .feedback-message{margin-bottom:2rem;color:#313c3d;font:normal normal 600 1rem/1.25rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0;text-align:center}.myaccount-form .input-label{display:block;margin-bottom:0.5rem;font:normal normal 700 0.875rem/1.5rem "Source Sans Pro","Helvetica",sans-serif}.myaccount-form .checkbox__label{color:#272f31;font-weight:600;font-size:0.9375rem;font-family:"Source Sans Pro","Helvetica",sans-serif;font-stretch:1.25rem;letter-spacing:0rem}.myaccount-form .submit-button,.myaccount-form .try-again-button{width:100%;margin-top:0.5rem;padding:0.6875rem 0;color:#fff;background-color:#38a3d7;border:none}.myaccount-form .submit-button:hover,.myaccount-form .try-again-button:hover{background:#2b7199;border-color:#2b7199}.myaccount-form .submit-button:focus,.myaccount-form .try-again-button:focus{background:#2b7199;border-color:#2b7199}.myaccount-form .try-again-button{background-color:#38a3d7}.myaccount-form .manage-account{margin-top:2rem;font:normal normal 700 0.875rem/1.125rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0rem;text-align:center}@media (max-width: 575px){.myaccount-form .manage-account{margin-top:4.6875rem}}.myaccount-form .contact-customer-service{margin-top:2rem;font:normal normal 700 0.875rem/1.125rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0rem;text-align:center}.myaccount-form .checkbox{position:relative;display:flex;margin-top:1.5rem;margin-bottom:1.5rem}.myaccount-form .checkbox__input{position:relative;width:1.25rem;min-width:1.25rem;height:1.25rem;margin-right:0.625rem;border:0.0625rem solid #dde1e2;border-radius:4px;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.myaccount-form .checkbox__input::after{position:absolute;top:0.125rem;left:0.375rem;display:none;width:0.1875rem;height:0.5rem;border:solid #fff;border-width:0 0.15625rem 0.15625rem 0;transform:rotate(45deg);content:''}.myaccount-form .checkbox__input:checked{background-color:#38a3d7;border:0.0625rem solid #38a3d7}.myaccount-form .checkbox__input:checked::after{display:block}.myaccount-form .checkbox-icon{position:absolute;top:0.3125rem;left:0.3125rem;display:none;width:7px;height:10px}.myaccount-form .radio-row{display:flex;align-items:center;margin-bottom:1.1875rem}.myaccount-form .radio-button{position:relative;width:1rem;height:1rem;margin-right:0.9375rem;border:0.125rem solid #dce1e2;border-radius:50%;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.myaccount-form .radio-button::after{position:absolute;top:0.125rem;left:0.125rem;display:none;width:0.5rem;height:0.5rem;background-color:#38a3d7;border-radius:50%;content:''}.myaccount-form .radio-label{font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;cursor:pointer}.myaccount-form .radio-button:checked{border-color:#38a3d7}.myaccount-form .radio-button:checked+.cancel-form__radio-label{color:#38a3d7}.myaccount-form .radio-button:checked::after{display:block}.fusion-form{width:100%}.fusion-form form{width:100%}.fusion-form .input-group{margin:0 0 1rem 0}.fusion-form .input-group label{padding:0 0 0.5rem 0;color:#23292a;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.5rem}.fusion-form .input-wrapper{position:relative}.fusion-form .input-icon{position:absolute;top:50%;right:1rem;display:flex;align-items:center;justify-content:center;width:1.1875rem;height:1.1875rem;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border-radius:50%;transform:translateY(-50%)}.fusion-form .input-icon--warning{background-color:#ed213e;content:'!'}.fusion-form .input-icon--warning::before{color:#fff;content:'!'}.fusion-form input[type='text'],.fusion-form input[type='email']{display:flex;flex-flow:column nowrap;box-sizing:border-box;width:100%;height:2.8125rem;padding:0.8125rem 1.125rem;color:#23292a;font-weight:600;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border:0.0625rem solid #c7c7c7;border-radius:0.25rem;outline:none}.fusion-form .input-error{position:absolute;bottom:-2.5625rem;left:1rem;box-sizing:border-box;width:auto;height:auto;padding:0.5rem 0.75rem;color:#23292a;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.5rem;white-space:nowrap;background-color:#fff;border:0.0625rem solid #dce1e2;border-radius:0.25rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}@media (min-width: 768px){.fusion-form .input-error{bottom:0.125rem;left:calc(100% + 1rem)}}.fusion-form .input-error::before{position:absolute;top:-0.75rem;left:1.25rem;border-top:0.375rem solid transparent;border-right:0.375rem solid transparent;border-bottom:0.375rem solid #dce1e2;border-left:0.375rem solid transparent;content:''}@media (min-width: 768px){.fusion-form .input-error::before{top:50%;left:-0.375rem;display:block;border-color:transparent #dce1e2;border-style:solid;border-width:0.375rem 0.375rem 0.375rem 0;transform:translateY(-50%)}}.fusion-form .input-error::after{position:absolute;top:-0.625rem;left:1.3125rem;border-top:0.3125rem solid transparent;border-right:0.3125rem solid transparent;border-bottom:0.3125rem solid #fff;border-left:0.3125rem solid transparent;content:''}@media (min-width: 768px){.fusion-form .input-error::after{top:50%;left:-0.3125rem;border-color:transparent #fff;border-style:solid;border-width:0.3125rem 0.3125rem 0.3125rem 0;transform:translateY(-50%)}}.fusion-form .form-button{width:100%;height:2.8125rem;border:none;border-radius:0.125rem;cursor:pointer}.fusion-form .form-button--submit{color:#fff;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#ecac0c}.fusion-form .form-button--submit:disabled{opacity:0.2}.fusion-form .form-button--submit:hover,.fusion-form .form-button--submit:active{background-color:#fdb215}.fusion-form .form-button--submit:active{opacity:0.5}.form-feedback{display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;width:100%;height:auto;margin-top:1rem;padding:0.5rem;overflow:auto;border-radius:0.125rem}.form-feedback--success{color:#38a3d7;background-color:rgba(56,163,215,0.2)}.form-feedback--error{color:#ed213e;background-color:#fbd3d9}.form-feedback__message{margin-left:0.625rem;color:inherit;font-weight:600;font-size:0.78125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.form-feedback__icon{width:100%;max-width:0.4375rem;height:100%;max-height:0.4375rem}.no-margin-top{margin-top:0}.form-feedback__icon-circle{display:flex;align-items:center;justify-content:center;width:0.9375rem;height:0.9375rem;border-radius:50%}.form-feedback__icon-circle--success{background-color:#38a3d7}.form-feedback__icon-circle--error{background-color:#ed213e}.social-auth-newsletter-form{flex-flow:wrap;min-width:25rem;max-width:36rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.social-auth-newsletter-form__ms-ie-container-fix{max-width:25rem}}@media (max-width: 575px){.social-auth-newsletter-form{min-width:23.4375rem}}.gallery{margin-top:1.25rem;padding-bottom:0.625rem}@media (min-width: 768px){.gallery{max-width:62rem}}@media (min-width: 992px){.gallery{max-width:39.375rem}}.gallery::before{position:absolute;top:-0.625rem;display:block;width:100%;height:0.0625rem;background-color:#d5d5d5;content:''}.gallery__image-count{font-weight:700}@media (min-width: 576px){.gallery+.overlay__full-screen-button{top:0.9375rem}}.gallery .slick-prev{left:0.625rem}.gallery .slick-next{right:0.625rem}.gallery__caption{margin-bottom:0.3125rem;padding-bottom:0.625rem;color:#4c585d;font-size:0.875rem;line-height:1.6;border-bottom:1px solid #d5d5d5}.overlayad{position:absolute;top:0;right:0;bottom:0;left:0;z-index:7;display:flex;align-items:center;justify-content:center;max-width:100%;height:100%;background-color:#000;border:none}.horoscopes{display:flex;flex-wrap:wrap}.horoscopes__heading{flex-basis:100%;color:#de2363;font-weight:300;text-align:center}.horoscopes__heading-fine-text{display:block;color:#4c585d;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.horoscopes__item{display:flex;align-items:center;margin-bottom:1.875rem;color:#4c585d}.horoscopes__item .horoscopes__item-image{width:3.75rem;height:3.75rem;margin:0 1.25rem 0 0.625rem}@media (min-width: 576px){.horoscopes__item .horoscopes__item-image{margin:0 1.5625rem 0 0.9375rem}}.horoscopes__item .horoscopes__item-heading{margin-bottom:0;font-size:2rem}.horoscopes__item .horoscopes__item-time{font-size:1rem}.horoscopes__item-link{display:inline-block;flex-basis:calc(100% / 3);margin-top:1.875rem;color:#4c585d;text-align:center}@media (min-width: 768px){.horoscopes__item-link{flex-basis:calc(100% / 4);margin-top:3.125rem}}@media (min-width: 992px){.horoscopes__item-link{flex-basis:calc(100% / 6)}}.horoscopes__item-heading{margin-top:0.625rem;font-weight:500;font-size:1.0625rem;font-family:"Stag","Georgia",serif}@media (min-width: 576px){.horoscopes__item-heading{font-size:1.25rem}}.horoscopes__item-image{width:2.5rem;height:2.5rem;margin:0 auto}@media (min-width: 576px){.horoscopes__item-image{width:3.75rem;height:3.75rem}}.horoscopes__item-time{display:inline-block;margin-top:0.3125rem;color:#9e9f9f;font-size:0.75rem}@media (min-width: 576px){.horoscopes__item-time{font-size:1rem}}.horoscopes--carousel .horoscopes__item-link{display:block;margin-top:0}.horoscopes--carousel .section-chain__wrapper{margin-top:1.875rem}.horoscopes--carousel .slick-dots li button::before{color:#de2363}.horoscopes--carousel .slick-dots li.slick-active button::before{color:#ae1b4e}.section-iframe{margin:1.25rem 0}.section-iframe iframe{width:0.625rem;min-width:100%}.section-iframe.both{display:block}.section-iframe.mobile{display:block}@media (min-width: 992px){.section-iframe.mobile{display:none}}.section-iframe.desktop{display:none}@media (min-width: 992px){.section-iframe.desktop{display:block}}.journalist-card{position:relative;display:flex}.journalist-card__image-link__picture{width:7.5625rem;height:7.5625rem;border-radius:50%}@media (max-width: 767px){.journalist-card__image-link__picture{position:absolute;top:0;left:0;width:5.3125rem;height:5.3125rem}}@media (min-width: 768px) and (max-width: 992px){.journalist-card__image-link__picture{position:absolute;top:0;left:0}}.journalist-card__body-wrapper{display:flex;flex-direction:column;width:100%}@media (min-width: 992px){.journalist-card__body-wrapper{max-width:19.1875rem;margin-left:1.125rem}}@media (min-width: 768px) and (max-width: 992px){.journalist-card__body-wrapper{margin-left:9.375rem}}@media (max-width: 767px){.journalist-card__body__name-wrapper{display:flex;flex-direction:column;justify-content:center;height:5.3125rem;margin-left:6.75rem}}@media (min-width: 768px) and (max-width: 992px){.journalist-card__body__name-wrapper{display:flex;flex-direction:column;justify-content:center}}.journalist-card__body__name{color:#000;font-weight:500;font-size:1.1875rem;font-family:"Stag","Georgia",serif;line-height:1.375rem}@media (max-width: 767px){.journalist-card__body__name{font-size:1.125rem;line-height:1.4375rem}}.journalist-card__body__role{margin-top:0.125rem;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:0.9375rem;text-transform:uppercase}.journalist-card__body__bio{margin-top:1.125rem;margin-bottom:1.75rem;color:#313c3d;font-weight:400;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.375rem}@media (max-width: 767px){.journalist-card__body__bio{margin-bottom:1.375rem;font-size:1.0625rem}}.journalist-card__footer-wrapper{display:flex;flex-direction:row;justify-content:space-between;margin-top:auto}.journalist-card__footer__social-wrapper{display:flex}.journalist-card__footer__social-link--mail{display:block;width:1.0625rem;height:1rem}.journalist-card__footer__social-link--twitter{display:block;width:1.1875rem;height:1rem;margin-left:1.3125rem}.journalist-card__footer__social-link__icon{width:100%;height:100%}.journalist-card__footer__read-more{color:#38a3d7;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.font-header,.journalist-details__name,.journalist-details__quote,.journalist-details__latest-content{font-weight:500;font-family:"Stag","Georgia",serif}.font-role,.journalist-details__role{font-weight:900}.font-location,.journalist-details__location{font-weight:700}.journalist-details{margin:0 0.625rem}.journalist-details__card-wrap{display:flex;flex-direction:column;background:#f5f5f5}@media (min-width: 576px){.journalist-details__card-wrap{display:block;float:left;width:100%}}.journalist-details__title-box{display:flex;flex-direction:column;align-items:center;padding-top:2.1875rem}@media (min-width: 576px){.journalist-details__title-box{padding-bottom:3rem;background:#fff}}.journalist-details__name{font-size:1.5rem;line-height:1.875rem}@media (min-width: 576px){.journalist-details__name{font-size:2.5rem;line-height:3.125rem}}.journalist-details__role{margin-top:0.25rem;color:#8a8f96;font-size:0.75rem;line-height:0.9375rem;text-align:center;text-transform:uppercase}@media (min-width: 576px){.journalist-details__role{margin-top:0.5rem;font-size:1rem;line-height:1.25rem}}.journalist-details__photo-box{display:flex;justify-content:center;order:-1;padding-top:3.5rem}@media (min-width: 576px){.journalist-details__photo-box{float:left;width:20rem;padding-top:4.5625rem}}.journalist-details__photo-img,.journalist-details__default-img{width:11.375rem;height:11.375rem;background-color:#ebebeb;background-size:cover;border-radius:100%}@media (min-width: 576px){.journalist-details__photo-img,.journalist-details__default-img{width:14.125rem;height:14.125rem}}.journalist-details__default-img{display:flex;justify-content:center}.journalist-details__default-img-svg{width:3.5625rem;color:#bfc5c6}.journalist-details__social{display:flex;flex-wrap:wrap;justify-content:center;padding-top:1.25rem}@media (min-width: 576px){.journalist-details__social{float:left;clear:left;width:20rem;padding-top:3.125rem}}.journalist-details__location{width:100%;margin:1.5rem 0 2.8125rem 0;color:#8a8f96;font-size:0.75rem;line-height:0.9375rem;text-align:center;text-transform:uppercase}@media (min-width: 576px){.journalist-details__location{width:auto;margin-top:0.0625rem;margin-bottom:4.0625rem}}.journalist-details__location.location-only{margin-left:0;padding-left:0;border:none}.journalist-details__location-border{border-left:1px solid #dde2e3}@media (min-width: 576px){.journalist-details__location-border{margin-left:1.5625rem}}.journalist-details__location-border span{margin-left:0.515625rem}.journalist-details__description{flex:1;padding:2rem 0.625rem 2rem;color:#313c3d;background:#fff}@media (min-width: 576px){.journalist-details__description{margin:0;padding:4rem 2.75rem 2rem;background:initial}}.journalist-details__description .bio{font-weight:bold}.journalist-details__description p{margin:1.75rem 0;font-size:1.1875rem;line-height:1.8125rem}@media (min-width: 576px){.journalist-details__description p{margin:1.125rem 0;font-size:1.0625rem;line-height:1.375rem}}.journalist-details__description p:first-child{margin-top:0}.journalist-details__description p:last-child{margin-bottom:0}.journalist-details__description p.journalist-details__bold-text{font-weight:bold}.journalist-details__description .bio-long{white-space:pre-line}.journalist-details__quote{clear:both;margin:0 1.25rem 2.8125rem 4.0625rem;padding-top:3.125rem;font-size:1.625rem;line-height:2rem}@media (min-width: 576px){.journalist-details__quote{margin-right:9.625rem;margin-left:9.625rem;font-size:1.5rem;line-height:1.875rem;text-align:center}}.journalist-details__latest-content{padding:2.8125rem 0.3125rem 1.75rem;font-size:1.25rem;line-height:1.5625rem;text-align:center;border-top:0.0625rem solid #dde2e3}.label-updated{position:relative;padding-left:0.8125rem;color:#9e9f9f;font-weight:700;font-size:0.625rem;text-transform:uppercase}.label-updated::before{position:absolute;top:calc(50% - 3px);left:0;width:0.3125rem;height:0.3125rem;background-color:#9e9f9f;border-radius:50%;content:''}.masthead{display:flex;align-items:center;justify-content:center}.masthead+.masthead{margin-top:0.625rem}.masthead:last-of-type{margin-bottom:5rem}.OUTBRAIN{display:flex}@media print{.OUTBRAIN{display:none}}.meta-data{display:flex;align-items:center;justify-content:space-between;color:#9e9f9f;font-size:0.75rem}.meta-data__read-time{display:flex;align-items:center;line-height:1}.meta-data__read-time-icon{width:0.625rem;height:0.625rem;margin-right:0.1875rem}.meta-data__premium-tag{display:flex;align-items:center;padding-top:0.0625rem;padding-left:0.5625rem;color:#ecac0c;font-weight:600;font-size:0.8125rem}.meta-data__premium-tag::before{position:relative;left:-0.3125rem;display:block;width:0.0625rem;height:0.625rem;background-color:#9e9f9f;content:''}.meta-data__premium-tag-icon{position:relative;width:0.9375rem;height:1.125rem;padding-right:0.125rem}.modal{position:fixed;top:0;left:0;z-index:110;width:100%;height:100%;background:rgba(0,0,0,0.6)}.modal__wrapper{position:fixed;top:50%;left:50%;box-sizing:border-box;width:95%;max-width:31.25rem;height:auto;padding:4.0625rem 2.8125rem;background:#fff;border-radius:0.25rem;transform:translate(-50%, -50%)}@media (min-width: 576px){.modal__wrapper{width:90%;padding:3.5rem 5.625rem}}.modal__title{margin-bottom:1.875rem;color:#313c3d;font-weight:500;font-size:1.25rem;font-family:"Stag","Georgia",serif;text-align:center}.modal__title span{text-transform:capitalize}@media (min-width: 768px){.modal__title{font-size:1.5625rem}}.modal .forgot-password{display:block;width:100%;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center}.modal .button-group{display:flex;flex-flow:row wrap;justify-content:space-between;margin:1rem 0}.modal .button-group .button{width:100%;margin-bottom:1rem}.modal .social__button--apple,.modal .social__button--google{display:flex;align-items:center;width:100%;height:2.625rem;padding:0 1.09375rem;background-color:#fff;border:0.0625rem solid #333c3d;border-radius:0.125rem;cursor:pointer}.modal .social__button--apple:hover:enabled,.modal .social__button--google:hover:enabled{border-color:#4285f4}.modal .social__button--apple:active,.modal .social__button--google:active{background:#eee;border:0.0625rem solid #4285f4}.modal .social__button--apple:focus,.modal .social__button--google:focus{outline:none}.modal .social__button--apple:disabled,.modal .social__button--google:disabled{opacity:0.25;filter:grayscale(100%)}.modal .social__button-icon--google{width:1.125rem;height:1.125rem;background:url(/pf/resources/dist/fonts/google-icon.svg?d=484)}.modal .social__button-icon--apple{width:1.125rem;height:1.125rem;background:url(/pf/resources/dist/fonts/apple-icon.svg?d=484);background-repeat:no-repeat;background-size:0.9375rem 0.9375rem}.modal .social__button-text{margin:0 auto;color:#000;font-weight:600;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.modal .social .button--secondary{margin-top:1rem}.modal .reauth-form .input-group{position:relative;margin-bottom:1rem}.modal .reauth-form .input-label{position:absolute;top:0.9375rem;left:0.9375rem;z-index:1;color:#000;font-size:0.75rem;text-transform:none;cursor:text;transition:0.2s}.modal .reauth-form .input-text{max-height:2.8125rem;font-size:0.75rem;background-color:#fff;border:0.09375rem solid #d3d3d3}.modal .reauth-form .input-text:focus{background-color:#fff;border:0.09375rem solid #38a3d7;outline:none}.modal .reauth-form .input-text--error,.modal .reauth-form .input-text--error:focus{border-color:#ed213e}.modal .reauth-form .input-text--error ~ .input-label{color:#ed213e}.modal .reauth-form .input-text:focus ~ .input-label,.modal .reauth-form .input-text:valid ~ .input-label{top:-0.375rem;left:0.8125rem;padding:0 0.1875rem;font-size:0.625rem;background-color:#fff}.modal .reauth-form .input-show{position:absolute;top:0.9375rem;right:1.875rem;color:#000;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;cursor:pointer}.modal .reauth-form .button-group{margin:0}.modal .form-feedback{order:3;margin-top:0.5rem}.modal .button{height:2.5625rem;font-weight:700;font-size:0.875rem;border:none;cursor:pointer}.modal .button--primary{background-color:#38a3d7}.modal .button--secondary{background-color:#dce1e2}.modal .button--secondary:active{background-color:#c7cdd5}.modal .button--secondary:hover{background-color:#c7d0db;opacity:1;transition:background-color 0.2s}.modal .exit-btn{display:flex;float:right;color:#000;background-color:transparent;border:none}.modal .exit-btn:hover{cursor:pointer}.modal .exit-btn__container{position:absolute;top:8%;right:5%}.modal .exit-btn__icon{align-items:center;justify-content:center;width:1.25rem;height:1.25rem}.modal .exit-btn__container::after{display:table;clear:both;content:''}.moon{text-align:center}.moon__shape{position:relative;width:6.25rem;height:6.25rem;margin:0 auto;overflow:hidden;border:2px solid #fff;border-radius:50%}.moon__shape--full{background-color:#fff}.moon__shape--last-quarter::before,.moon__shape--first-quarter::before{position:absolute;top:0;display:block;width:50%;height:100%;background-color:#fff;content:''}.moon__shape--last-quarter::before{left:0}.moon__shape--first-quarter::before{right:0}.moon__heading{margin-top:0.9375rem;margin-bottom:0;color:#fff;font-weight:400;font-size:1rem;text-transform:capitalize}.moon__date{display:inline-block;margin-top:0.625rem;color:#fff;font-weight:400;font-size:0.875rem}.login-v2 .login-form__password-reset-link,.container--myaccount-v2-page .font-size-sm,.container--myprofile-v2-page .font-size-sm,.container--customer-management-page .font-size-sm,.container--myaccount-v2-page .subscriber-benefit,.container--myprofile-v2-page .subscriber-benefit,.container--customer-management-page .subscriber-benefit,.container--myaccount-v2-page .newsletter-card__description,.container--myprofile-v2-page .newsletter-card__description,.container--customer-management-page .newsletter-card__description,.container--myaccount-v2-page .help-desk,.container--myprofile-v2-page .help-desk,.container--customer-management-page .help-desk,.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__incorrect-password,.container--customer-management-page .typography-content,.container--customer-management-page .social-account__label,.container--customer-management-page .social-account__title,.container--customer-management-page__title,.transaction-item__view-invoice--mobile,.transaction-history td,.user-subscription__text,.my-newsletter-section__newsletters-state-message,.redeem-code__sub-text,.my-subscriptions__text,.my-saved-articles__sub-heading,.my-saved-articles__page-info,.special-offer__attributes-text p,.my-benefits .block-section__text,.e-editions-page .block-section__text,.subs-upgrade .payment-info>p,.e-editions-page .heading-center__text{font-size:0.875rem;line-height:1.125rem}.identity-v2 .identity-form{margin-top:1.5rem}@media (min-width: 768px){.identity-v2 .identity-form{margin-top:4rem}}.identity-v2 .identity-form .identity-seperator{margin-top:2rem;margin-bottom:0;border-top:none;border-right:none;border-bottom:none;border-left:none}@media (min-width: 768px){.identity-v2 .identity-form .identity-seperator{border-top:0.0625rem solid #dde2e3}}.identity-v2 .identity-form__links a{color:inherit;text-decoration:underline;cursor:pointer}.identity-v2 .identity-form .checkbox{margin-top:1.5rem}.identity-v2 .identity-form .checkbox__input{margin-top:0.25rem}.register-v2{height:100%}.register-v2 .progression-header{margin-bottom:1.5rem}@media (min-width: 768px){.register-v2 .progression-header{margin-bottom:2rem}}.register-v2 .register-form{opacity:1;transition:visibility 0s, opacity 0.5s linear}.register-v2 .register-form--registered{visibility:hidden;opacity:0}.register-v2--welcome{display:flex;flex-direction:column;justify-content:center;height:calc(100vh - 15rem);padding:0}@media (max-width: 575px){.login-v2{padding:2rem 1.5rem}}.login-v2 .login-form{max-width:23.75rem;margin:1.5rem auto 0;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 575px){.login-v2 .login-form{margin:1.125rem auto 0}}.login-v2 .login-form__password-reset-link{display:inline-block;width:100%;color:#121617;font-weight:500;text-align:center;text-decoration:underline;cursor:pointer}.identity-wrapper,.profile-wrapper{width:100%;padding-top:1.5rem}@media (min-width: 768px){.identity-wrapper,.profile-wrapper{padding-top:4rem}}.identity-wrapper form,.profile-wrapper form{max-width:23.75rem;margin-right:auto;margin-left:auto;font-family:"Source Sans Pro","Helvetica",sans-serif}.profile-wrapper{padding-top:0}.print-entitled{margin:0 auto}@media (max-width: 575px){.print-entitled{padding:1.5rem}}.print-entitled__feedback{margin:0 auto}.print-entitled__container{max-width:23.75rem;margin-top:2.25rem;margin-right:auto;margin-left:auto}.password-reset__feedback{margin-right:auto;margin-bottom:1.5625rem;margin-left:auto;opacity:1;-webkit-animation-name:feedback-animation;animation-name:feedback-animation;-webkit-animation-duration:0.5s;animation-duration:0.5s}@-webkit-keyframes feedback-animation{from{margin-bottom:0;transform:translateY(-50%);opacity:0}to{margin-bottom:1.5625rem;transform:translateY(0%);opacity:1}}@keyframes feedback-animation{from{margin-bottom:0;transform:translateY(-50%);opacity:0}to{margin-bottom:1.5625rem;transform:translateY(0%);opacity:1}}.my-account-header{position:relative;display:flex;align-items:center;justify-content:center;width:100%;height:3.75rem;margin:0 auto;background-color:#000}.my-account-header__logo{display:flex;align-items:center}.my-account-header__logo-link{text-decoration:none}.my-account-header__logo-link:hover,.my-account-header__logo-link:focus{opacity:1;transition:none}.my-account-header__logo-text{margin:0;padding-left:0.5rem;color:#fff;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif;letter-spacing:0}.my-account-header__logo-icon{width:1.625rem;height:2.25rem}.my-account-header__sign-in{position:absolute;top:0;right:1.5rem;display:flex;align-items:center;justify-content:center;height:100%;color:#bfc5c6;font-size:0.75rem}.my-account-header__sign-in-question,.my-account-header__sign-in-icon{display:none}@media (min-width: 768px){.my-account-header__sign-in-question,.my-account-header__sign-in-icon{display:inline-block}}.my-account-header__sign-in-question{font-weight:400}.my-account-header__sign-in-link{margin-left:0.25rem;color:#fff;font-weight:700}.my-account-header__sign-in-icon{width:2.25rem;height:2.25rem;margin-left:0.75rem}.progression-header{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:2.875rem;background-color:#fff;border-bottom:1px solid #f3f3f3}@media (min-width: 768px){.progression-header{height:3.75rem}}.progression-header__icon{width:1.5rem;height:1.5rem;margin-right:0.375rem}.progression-header__text{margin-bottom:0;color:#000;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.progression-header__text--gray{padding-left:0.125rem;color:#8a8f96}.my-account-footer{display:flex;align-items:center;box-sizing:border-box;width:100%;height:3.75rem;background-color:#fff;border-top:1px solid #f3f3f3;border-bottom:1px solid #f3f3f3}.my-account-footer__links-wrapper{display:flex;margin:0 auto}.my-account-footer__link{color:#111617;font-weight:400;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.my-account-footer__link:hover,.my-account-footer__link:focus{color:#38a3d7;opacity:1;transition:none}.my-account-footer__link:nth-of-type(2){margin:0 0.625rem;padding:0 0.625rem;border-right:0.0625rem solid #f3f3f3;border-left:0.0625rem solid #f3f3f3}.pagination__item{border:solid 0.0625rem #e2e2e3}.pagination{display:flex;justify-content:center;margin:2rem 0 4rem;color:#111617;list-style-type:none}.pagination__item{display:inline-block;width:1.8125rem;height:1.8125rem;margin:0 0.1875rem 0.5rem 0;color:#8a8f96;line-height:1.8125rem;text-align:center;vertical-align:middle;list-style:none;border-radius:0.125rem;outline:0;cursor:pointer;transition:all 0.3s}@media (min-width: 768px){.pagination__item{margin-right:0.5rem}}.pagination__item:hover{color:#111617}.pagination__item:hover svg{stroke:#111617}.pagination__item--active{color:#111617;border-color:#8a8f96}.pagination__arrow-wrapper{display:flex;align-items:center;justify-content:center;height:100%}.pagination__left,.pagination__right{display:inline-block;width:100%;height:0.625rem;stroke:#8a8f96}.pagination__dots{pointer-events:none}.pagination__disabled{opacity:0.8;pointer-events:none}.my-news{padding:1.5625rem}.my-news__heading{display:flex;align-items:center;color:#fff;font-weight:400;font-size:2.1875rem;line-height:1}.my-news__heading-fine-text{padding-left:0.1875rem;color:#9e9f9f;font-weight:300;font-size:0.8125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.my-news__description{margin-top:1.5625rem;color:#c4cccb;font-size:0.875rem;line-height:1.4}.my-news__link{color:#fff;font-size:0.875rem}.my-news__link:not(:first-of-type){display:inline-block;margin-left:0.625rem}.my-news__item{position:relative;padding-bottom:0.625rem}.my-news__item:not(:first-of-type){margin-top:0.625rem;padding-top:0.625rem;border-top:1px solid #d5d5d5}.my-news__item:not(:first-of-type) .my-news__item-close-button{top:0.8125rem}.my-news__item-close-button{position:absolute;top:0.125rem;right:0;width:0.9375rem;height:0.9375rem;padding:0.125rem;background-color:#313c3d;border:none;border-radius:50%;cursor:pointer;transition:opacity 0.2s;-webkit-appearance:none;-moz-appearance:none;appearance:none}.my-news__item-close-button:hover,.my-news__item-close-button:focus{opacity:0.8}.my-news__item-close-icon{width:0.6875rem;height:0.6875rem;color:#f5f5f5}.my-news .story-card{position:static;margin-right:0;margin-left:0}.my-news .story-card__heading__link,.my-news .story-card .story-card__heading{color:#fff;font-size:0.875rem}.my-news .story-card__article-video_icon{fill:#f5f5f5}@-webkit-keyframes fadeOut{0%{height:100%;opacity:1}100%{height:0;opacity:0}}@keyframes fadeOut{0%{height:100%;opacity:1}100%{height:0;opacity:0}}.main>.email-boost .email-boost__container{margin:2.8125rem auto}@media (min-width: 992px){.main>.email-boost .email-boost__container{margin:2.8125rem auto 2.8125rem 4.375rem}}.email-boost--hide{height:0;opacity:0;-webkit-animation:fadeOut ease 200ms;animation:fadeOut ease 200ms}.email-boost__email-section{box-sizing:border-box;padding:2rem 2.4375rem 1.5rem 2.4375rem;background-color:#fff}@media (max-width: 575px){.email-boost__email-section{padding:2.5rem 2rem 2rem}}.email-boost__container{box-sizing:border-box;max-width:39.375rem;margin:1.5rem auto;background-color:#fff;border:1px solid #efefef}.email-boost__heading{color:#313c3d;font-weight:500;font-size:1.5rem;font-family:"Stag","Georgia",serif}.email-boost__description{display:block;color:#313c3d;font-weight:normal;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.125rem}.email-boost__legal{margin:1rem 0 0;color:#9e9f9f;font-weight:normal;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1rem}.email-boost__legal>a{color:inherit;font-size:inherit;font-family:inherit;text-decoration:underline}.email-boost .close-newsletter{padding:0.6875rem 1.875rem;padding-top:0.6875rem;font-weight:normal;font-size:0.875rem;line-height:1.125rem;background-color:#f1f3f4}.email-boost .close-newsletter__button{color:#38a3d7;text-decoration:underline}.email-boost .close-newsletter__button:hover{cursor:pointer}.email-boost .form-button{width:100%;height:2.5rem;margin:1rem 0 0;color:#fff;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;background-color:#38a3d7;border:none;border-radius:0.25rem;cursor:pointer}@media (min-width: 576px){.email-boost .form-button{width:11.25rem;margin:0}}.email-boost .form-button:hover{opacity:0.9}.email-boost .form-button:active{opacity:0.8}.email-boost .form-button:disabled{opacity:0.5}.email-boost label.hidden{display:none}.email-boost input[type='text']{box-sizing:border-box;width:100%;height:2.5rem;padding:0 0.75rem;color:#313c3d;font-weight:400;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.5rem;border:1px solid #dce1e2;border-radius:0.25rem;outline:none}.email-boost input[type='text']:disabled{background-color:#fff;opacity:1;-webkit-text-fill-color:#313c3d}.email-boost input[type='text']::-moz-placeholder{color:#9e9f9f}.email-boost input[type='text']:-ms-input-placeholder{color:#9e9f9f}.email-boost input[type='text']::placeholder{color:#9e9f9f}.email-boost .premium-bg-color{background-color:#ecac0c}.email-boost .input-group{display:flex}.email-boost .input-group--newsletter{flex-flow:column nowrap;margin:1rem 0}@media (min-width: 576px){.email-boost .input-group--newsletter{flex-flow:row nowrap}}.email-boost .input-group--newsletter .input-wrapper{flex-grow:1;margin:0 0.4375rem 0 0}@media (max-width: 575px){.email-boost .input-group--newsletter .input-wrapper{margin:0}}.email-boost .input-group--checkbox{margin:1rem 0}.email-boost .input-group--checkbox .input-wrapper{display:flex;flex-flow:row nowrap;align-items:center}.email-boost .input-group--checkbox .input-checkbox{display:none}.email-boost .input-group--checkbox .input-label{display:flex;flex-shrink:0;align-items:center;justify-content:center;width:1.0625rem;height:1.0625rem;margin:0 0.5rem 0 0;background-color:#38a3d7;border-radius:0.125rem;cursor:pointer}.email-boost .input-group--checkbox .checkbox-icon{max-width:0.6875rem;max-height:0.6875rem}.email-boost .input-group--checkbox .label-string{color:#9e9f9f;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.email-boost .input-group .input-error{padding:0.25rem 0;color:#d51e38;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.signin-modal__wrapper{top:45%;justify-content:initial;width:95%;padding:5rem 4rem}@media (min-width: 576px){.signin-modal__wrapper{min-height:18.5rem}}.signin-modal__wrapper .signin-modal{background-color:#fff}@media (max-width: 575px){.signin-modal__wrapper .signin-modal .heading{font-size:1.5rem;line-height:1.875rem}}.signin-modal__wrapper .signin-modal__sign-in{font:normal normal normal 1rem/1.25rem "Source Sans Pro","Helvetica",sans-serif;text-align:center}.signin-modal__wrapper .signin-modal__continue-btn{display:block;padding:0.75rem 0;font-size:0.875rem;text-align:center}@media (min-width: 576px){.signin-modal__wrapper .signin-modal__continue-btn{padding:0.875rem 0;font-size:1rem}}.signin-modal__wrapper .signin-modal__continue-btn:disabled{opacity:1}@media (min-width: 394px) and (max-width: 576px){.signin-modal__wrapper .signin-modal__sign-in{padding:0 1.25rem}}.signin-modal__wrapper .exit-btn{display:flex;float:right;background-color:transparent;border:none}.signin-modal__wrapper .exit-btn:hover{cursor:pointer}.signin-modal__wrapper .exit-btn__container{position:absolute;top:8%;right:5%}.signin-modal__wrapper .exit-btn__icon{align-items:center;justify-content:center;width:1.25rem;height:1.25rem}.signin-modal__wrapper .exit-btn__container::after{display:table;clear:both;content:''}@media (min-width: 768px) and (max-width: 992px){.signin-modal__wrapper{top:56%}}@media (max-width: 575px){.signin-modal__wrapper{width:90%;padding:3rem 1.5rem}}@media print{.email-boost{display:none}}@media (min-width: 576px){.overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:110;display:flex;align-items:center;justify-content:center;max-width:100%;height:100%;background-color:#000;border:none}}.overlay .article-media__image{margin:0 auto}@media (min-width: 576px){.overlay .article-media__image{width:100%}}@media (min-width: 1400px){.overlay .article-media__image{max-width:100%}}.overlay .article-media__image--portrait{height:100%}@media (min-width: 576px){.overlay .article-media__image--portrait{width:auto;height:100vh}}@media (min-width: 576px){.overlay .article-media__caption{position:absolute;bottom:0;left:0;width:calc(100% - 1.25rem * 2);margin:0;padding:1.25rem;color:#fff;background-color:rgba(0,0,0,0.8)}}@media (min-width: 576px){.overlay .gallery{min-width:100%;margin-top:0;padding:0;border-top:none;border-bottom:none}.overlay .gallery::before{display:none}}@media (min-width: 576px){.overlay .gallery__item{position:relative;display:flex;align-items:center;justify-content:center;height:100vh}}.overlay .article .figure{margin-top:0}.overlay__close-button{display:none}@media (min-width: 576px){.overlay__close-button{position:fixed;top:1.875rem;right:0;z-index:110;display:flex;align-items:center;justify-content:center;width:3.125rem;height:3.125rem;background-color:#38a3d7;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}}.overlay__close-button-icon{width:1.875rem;height:1.875rem;color:#fff}@media (min-width: 576px){.body--overlay-is-active{overflow:hidden}}.read-more-links{padding:1.25rem 0}.read-more-links h3.read-more{display:flex;align-items:center;justify-content:center;padding-right:1rem;font-size:1.25rem}.read-more-links h3.read-more::after{flex:1;height:1px;margin-left:1rem;background-color:#d5d5d5;content:''}.read-more-links>ul>li{font-weight:500;font-size:0.9375rem;font-family:"Stag","Georgia",serif}@media print{.read-more-links{display:none}.article__raw-html,.article__raw-html-static,.article__raw-html__top,.article__raw-html__bottom{page-break-inside:avoid}.article__raw-html iframe[src*='nzonscreen.com/embed'],.article__raw-html iframe[src*='youtube.com/embed'],.article__raw-html iframe[src*='iheart.com'],.article__raw-html-static iframe[src*='nzonscreen.com/embed'],.article__raw-html-static iframe[src*='youtube.com/embed'],.article__raw-html-static iframe[src*='iheart.com'],.article__raw-html__top iframe[src*='nzonscreen.com/embed'],.article__raw-html__top iframe[src*='youtube.com/embed'],.article__raw-html__top iframe[src*='iheart.com'],.article__raw-html__bottom iframe[src*='nzonscreen.com/embed'],.article__raw-html__bottom iframe[src*='youtube.com/embed'],.article__raw-html__bottom iframe[src*='iheart.com']{display:none}.article__raw-html .embed-container,.article__raw-html-static .embed-container,.article__raw-html__top .embed-container,.article__raw-html__bottom .embed-container{display:none}}.related-articles{margin:1.25rem auto}@media (min-width: 576px){.related-articles{margin:1.25rem 0}}.related-articles__heading{font-weight:300;text-align:center}.related-articles__items-wrapper{display:flex}@media (max-width: 575px){.related-articles__items-wrapper{flex-wrap:wrap}}.related-articles article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem);margin-top:1.25rem;margin-right:0;margin-left:0}@media (min-width: 576px){.related-articles article[class^='story-card']{width:calc(100% / 2 - 1.25rem)}}.related-articles article[class^='story-card'] .story-card__heading{font-weight:500}.related-articles article[class^='story-card'] .meta-data{display:block}.related-articles article[class^='story-card'] .meta-data__read-time{margin-top:0.3125rem}.related-articles article[class^='story-card']:nth-of-type(even){margin-left:1.25rem}@media (min-width: 576px){.related-articles article[class^='story-card']:not(:first-of-type){margin-left:1.25rem}}@media print{.related-articles{display:none}}.share-bar{position:relative;display:flex}.share-bar .story-card__bookmark{background-color:transparent}.share-bar .social-link--bookmark,.share-bar .social-link--share-mobile{position:relative;padding-right:1.5rem;font-weight:400;font-size:0.875rem;font-style:normal}.share-bar .social-link--share-mobile svg{width:1.25rem;height:1rem;padding-right:0.3125rem}.share-bar .social-popup{position:absolute;top:1.875rem;left:33%;z-index:6;box-sizing:border-box;width:19.5625rem;padding:2rem;background-color:#fff;border-radius:0.1875rem;box-shadow:0 0.25rem 2.125rem rgba(0,0,0,0.1)}.share-bar .social-popup__title{font-weight:700;font-size:1rem;font-style:normal}.share-bar .social-popup__reminder{color:#ecac0c;font-weight:400;font-size:1rem;font-style:italic;line-height:1.5rem}.share-bar .social-popup__close-btn{position:absolute;top:0.625rem;right:0.625rem;background-color:transparent;border:0;cursor:pointer}.share-bar .social-popup strong{font-weight:600}.share-bar .social-popup .social-link svg{padding-right:0.5rem}.share-bar .social-popup .social-link{color:#111617;font-weight:400;font-size:1rem;font-style:normal;line-height:1.125rem}.share-bar .social-popup .copy-bg-color{color:#38a3d7}.share-bar .social-popup .copy-bg-color .social-link__icon--tick{margin-left:0.5rem}.share-bar .social-popup-hidden{display:none}@media (max-width: 575px){.share-bar{align-items:center;margin-top:0.625rem}}.share-bar .social-link{text-transform:capitalize}.share-bar .social-link:first-of-type{margin-left:0}.share-bar .social-link--bookmark{position:relative;margin-left:auto;background-color:transparent}.share-bar .social-link--bookmark svg{width:1rem;height:1.25rem;padding-right:0.3125rem}@media (min-width: 576px){.share-bar .social-link--bookmark{margin-left:1.5625rem}}.share-bar .social-link--bookmark::after,.share-bar .social-link--divide-line::after{position:absolute;top:0.25rem;right:0.75rem;display:block;width:0.0625rem;height:1.5rem;background-color:#d5d5d5;content:''}@media (min-width: 576px) and (max-width: 768px){.share-bar .social-link--bookmark::after,.share-bar .social-link--divide-line::after{right:0.5rem}}@media (min-width: 576px){.article__body .share-bar--apo{display:none}}.body--modal{position:absolute;top:0;left:0;z-index:5;width:100%;height:auto;background-color:rgba(0,0,0,0.4)}.arrow-icon{width:1.5625rem;height:1.5625rem}.slick-dots{position:static;padding:1rem 0 0}.slick-prev{transform:translate(0, -50%) rotate(180deg)}.slick-prev,.slick-next{z-index:2;display:flex !important;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;color:#fff !important;background-color:#4c585d !important;border-radius:50%;transition:opacity 0.2s}.slick-prev.slick-disabled,.slick-next.slick-disabled{cursor:auto}.slick-prev.slick-disabled,.slick-prev.slick-disabled:hover,.slick-next.slick-disabled,.slick-next.slick-disabled:hover{opacity:0.6}.slick-prev::before,.slick-next::before{display:none}.slick-prev:hover,.slick-next:hover{opacity:0.8}.social-link{display:flex;align-items:center;justify-content:left;height:2rem;color:#111617}.social-link--facebook{color:#4267b2;fill:#4267b2}.social-link--twitter{color:#38a1f3;fill:#38a1f3}.social-link--linkedin{color:#0077b5;fill:#0077b5}.social-link--reddit{color:#f24511;fill:#f24511}.social-link--instagram{color:#8b5191;fill:#8b5191}.social-link--youtube{color:#dc4e41;fill:#dc4e41}.social-link--rss{color:#e3702d;fill:#e3702d}.social-link--mail{color:#4c585d;fill:#4c585d}.social-link--share{color:#111617;fill:#111617}.social-link__icon{width:1.4375rem;height:1.4375rem}.social-link--bookmark{background-color:#4c585d}.social-link--bookmark .social-link__icon:first-of-type{display:block}.social-link--bookmark .social-link__icon:last-of-type{display:none}.social-link--commenting{width:auto;margin-left:0.5rem;padding:0 0.625rem;font-weight:700;font-size:0.8125rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#38a3d7}.social-link--commenting .social-link__icon{width:1.25rem;height:1.25rem;margin-right:0.33rem;fill:#fff}.social-link--is-selected{background-color:#38a3d7}.social-link--is-selected .social-link__icon:first-of-type{display:none}.social-link--is-selected .social-link__icon:last-of-type{display:block}.sponsor__image{max-width:210px;max-height:35px;margin-right:10px;overflow:hidden;border-radius:0}.sponsor__info-title{display:block}.sponsor__info-link{color:#4c585d;font-weight:700;font-family:"Source Sans Pro","Helvetica",sans-serif}.sponsored{height:4.0625rem;color:#fff;font-weight:700;font-size:0.6875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (min-width: 768px){.sponsored{margin-top:0.3125rem}}.sponsored__wrapper{position:relative;display:flex;align-items:center;justify-content:center;max-width:60rem;height:100%;margin:0 0.625rem}@media (min-width: 992px){.sponsored__wrapper{margin:0 auto}}@media (max-width: 767px){.sponsored__wrapper{margin:0}}.sponsored__text{margin:0;padding-right:1.0625rem;padding-left:1.875rem;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.3}.sponsored__sponsor-logo-box{height:2.5rem;border-right:1px solid #707070}.sponsored__sponsor-link{display:block;padding-right:0.625rem;padding-left:1.0625rem}.sponsored__logo{max-height:3.125rem}.sponsored__textwrapper{display:flex;align-items:center;min-height:1.875rem}.story-card--has-label::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:0.0625rem;background-color:#ecac0c;content:''}.story-card__label{position:absolute;top:0;right:0;z-index:1;padding:0.1875rem 0.3125rem;color:#313c3d;font-weight:600;font-size:0.75rem;text-transform:uppercase;background-color:#ecac0c;border-bottom-left-radius:0.4375rem}.story-card--is-admin-highlight{box-shadow:0 0 0 2px red}@media (max-width: 575px){.story-card__image-link{position:relative;display:block;width:100%;padding-top:56.25%;overflow:hidden}}.story-card__image-link:hover,.story-card__image-link:focus{opacity:1}.story-card__image-link__picture{width:100%}@media (max-width: 575px){.story-card__image-link__picture{position:absolute;top:0;right:0;bottom:0;left:0}}.story-card__kicker-wrapper{display:flex;flex-wrap:wrap}.story-card__kicker{font-weight:700;font-size:0.625rem;text-transform:uppercase}.story-card__subkicker{padding-left:0.1875rem;font-weight:400;font-size:0.625rem;text-transform:capitalize}.story-card__subkicker-separator{position:relative;top:-0.0625rem;padding-left:0.1875rem;font-size:0.5625rem}.story-card__heading-wrapper{display:flex;flex-flow:row nowrap;justify-content:flex-start}.story-card__heading-wrapper.pb__editable{background-color:transparent}.story-card__meta-container{display:inline-flex;flex-flow:row;align-items:center}.story-card__meta-container:empty{display:none}.story-card__article-video_icon{position:absolute;left:-0.25rem;width:1.25rem;height:1.25rem}.story-card__heading{margin-top:0.625rem;font-weight:400;font-family:"Stag","Georgia",serif;line-height:1.2}.story-card__heading__link{color:#4c585d}.story-card .meta-data{margin-top:0.25rem}.story-card__deck{margin-top:0.1875rem;margin-bottom:0;font-size:0.875rem;line-height:1.3}.story-card__icon{position:absolute;top:0;left:0;z-index:2;width:1.5625rem;height:1.5625rem;background-color:#4c585d}.story-card__comment-icon-wrapper,.story-card__video-icon-wrapper,.story-card__gallery-icon-wrapper{position:relative;top:0.1em;display:inline-flex;align-items:center;justify-content:center;width:1em;height:1em;margin-right:0.375rem;padding-right:0.25rem;font-size:inherit;border-right:0.0625rem solid rgba(220,225,226,0.75);fill:#121617}.story-card__headline-standalone .story-card__video-icon-wrapper{border-right:0}.story-card__comment-icon{width:0.9em;height:0.9em;fill:#38a3d7}.story-card h1.story-card__heading .story-card__comment-icon-wrapper{top:-0.25rem;width:0.75em;height:0.75em;margin-right:0.625rem;padding-right:0.4375rem}.story-card h1.story-card__heading .story-card__comment-icon{width:0.55em;height:0.55em}.story-card h2.story-card__heading .story-card__comment-icon-wrapper{top:0;width:0.8em;height:0.8em;margin-right:0.625rem;padding-right:0.5rem}.story-card h2.story-card__heading .story-card__comment-icon{width:0.7em;height:0.7em}.story-card__bookmark{margin-left:0.9375rem;padding-right:0;padding-left:0;color:#4c585d;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.story-card__bookmark--is-selected .story-card__bookmark-icon:first-of-type{display:none}.story-card__bookmark--is-selected .story-card__bookmark-icon:last-of-type{display:block}@media (max-width: 575px){.story-card__bookmark{margin-left:0.75rem}}.story-card__bookmark-icon{width:0.625rem;height:1.1875rem}.story-card__bookmark-icon:first-of-type{display:block}.story-card__bookmark-icon:last-of-type{display:none}@media (max-width: 767px){.story-card,.story-card--secondary{margin-right:0.625rem;margin-left:0.625rem}}.story-card,.story-card--secondary,.story-card--featured,.story-card--featured-medium,.story-card--featured-large,.story-card--featured-extra-large{position:relative}.story-card--landscape-text-below .story-card__kicker-wrapper,.story-card--portrait-text-below .story-card__kicker-wrapper,.story-card--headline-image .story-card__kicker-wrapper,.story-card--headline .story-card__kicker-wrapper{padding-top:0.625rem}.story-card--featured .story-card__image-link::before,.story-card--featured-medium .story-card__image-link::before,.story-card--featured-large .story-card__image-link::before,.story-card--featured-extra-large .story-card__image-link::before{position:absolute;top:0;left:0;z-index:1;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.story-card--featured .story-card__info,.story-card--featured-medium .story-card__info,.story-card--featured-large .story-card__info,.story-card--featured-extra-large .story-card__info{position:absolute;right:0;bottom:0;left:0;z-index:2;margin-bottom:1.25rem;padding-right:1.25rem;padding-left:0.625rem}.story-card--featured .story-card__kicker,.story-card--featured-medium .story-card__kicker,.story-card--featured-large .story-card__kicker,.story-card--featured-extra-large .story-card__kicker{color:#fff}.story-card--featured .story-card__subkicker,.story-card--featured-medium .story-card__subkicker,.story-card--featured-large .story-card__subkicker,.story-card--featured-extra-large .story-card__subkicker{color:#fff}.story-card--featured .story-card__subkicker-separator,.story-card--featured-medium .story-card__subkicker-separator,.story-card--featured-large .story-card__subkicker-separator,.story-card--featured-extra-large .story-card__subkicker-separator{color:#fff}.story-card--featured .story-card__heading,.story-card--featured-medium .story-card__heading,.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{color:#fff;font-size:1.125rem}.story-card--featured .story-card__label-updated,.story-card--featured-medium .story-card__label-updated,.story-card--featured-large .story-card__label-updated,.story-card--featured-extra-large .story-card__label-updated{color:#fff}.story-card--featured .story-card__label-updated::before,.story-card--featured-medium .story-card__label-updated::before,.story-card--featured-large .story-card__label-updated::before,.story-card--featured-extra-large .story-card__label-updated::before{background-color:#fff}.story-card--featured .story-card__heading__link,.story-card--featured-medium .story-card__heading__link,.story-card--featured-large .story-card__heading__link,.story-card--featured-extra-large .story-card__heading__link{color:#fff}.story-card--featured .meta-data,.story-card--featured-medium .meta-data,.story-card--featured-large .meta-data,.story-card--featured-extra-large .meta-data{margin-top:0.3125rem;color:#d5d5d5}.story-card--featured .story-card__icon,.story-card--featured-medium .story-card__icon,.story-card--featured-large .story-card__icon,.story-card--featured-extra-large .story-card__icon{top:0.625rem;left:0.625rem}.story-card--featured .story-card__article-video_icon,.story-card--featured-medium .story-card__article-video_icon,.story-card--featured-large .story-card__article-video_icon,.story-card--featured-extra-large .story-card__article-video_icon{fill:#f5f5f5}.story-card--featured-medium,.story-card--featured-large,.story-card--featured-extra-large{margin-right:0;margin-left:0}.story-card--featured-medium .story-card__heading,.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{line-height:1.07}.story-card--featured .story-card__heading,.story-card--featured-medium .story-card__heading{font-weight:500}.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{font-size:2.1875rem}@media (min-width: 576px){.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{font-size:2.8125rem}}.story-card--secondary.story-card--has-label::before{width:calc((100% - 1.25rem + 0.0625rem) / 2)}@media (min-width: 576px){.story-card--secondary.story-card--has-label::before{width:8.75rem}}.story-card--secondary .story-card__label{right:auto;left:calc((100% - 1.25rem + 0.0625rem) / 2);transform:translateX(-100%)}@media (min-width: 576px){.story-card--secondary .story-card__label{left:8.75rem}}.story-card--secondary .story-card__content{display:flex;flex-wrap:wrap}.story-card--secondary .story-card__image-link{flex-basis:calc((100% - 1.25rem) / 2)}@media (max-width: 575px){.story-card--secondary .story-card__image-link{padding-top:60.94%}}@media (min-width: 576px){.story-card--secondary .story-card__image-link{display:inline;flex-basis:8.75rem}}.story-card--secondary .story-card__info{flex-basis:calc((100% - 1.25rem) / 2);margin-left:1.25rem}@media (min-width: 576px){.story-card--secondary .story-card__info{flex-basis:calc(100% - 8.75rem - 1.25rem)}}.story-card--secondary .story-card__kicker{display:inline-block;margin-top:0}.story-card--secondary .meta-data,.story-card--secondary .meta-data__time-stamp{display:block}.story-card--secondary .meta-data__read-time{margin-top:0.3125rem}.story-card--featured .story-card__content{position:relative}.story-card--featured .meta-data__time-stamp{display:block}.story-card--featured .meta-data__read-time{margin-top:0.3125rem}@media (max-width: 575px){.story-card--featured-medium .story-card__image-link{padding-top:90%}}.story-card--featured-medium .story-card__heading{font-size:1.875rem}@media (max-width: 575px){.story-card--featured-large .story-card__image-link{padding-top:110.58%}}@media (max-width: 575px){.story-card--featured-extra-large .story-card__image-link{padding-top:127.58%}}.story-card--headline .story-card__icon,.story-card--headline-deck .story-card__icon{position:static}.story-card--headline .story-card__heading-wrapper>.story-card__icon,.story-card--headline-deck .story-card__heading-wrapper>.story-card__icon{margin:0.75rem 0.625rem 0 0}.story-card--summary .story-card__content{position:relative}.story-card--summary .story-card__icon{top:1.5rem;left:0}.story-card--summary .story-card__icon+.story-card__info .story-card__heading{margin-left:2.1875rem}.story-card--summary .story-card__heading{font-weight:500;font-size:1.125rem}.story-card--summary .meta-data{flex-direction:flex-start;margin-top:0.9375rem}.story-card--summary .meta-data__read-time{margin-left:auto}.story-card--headline-image-small{padding:0.625rem 0}.story-card--headline-image-small .story-card__icon{position:static}.story-card--headline-image-small .story-card__heading-wrapper>.story-card__icon{margin:0.9375rem 0.625rem 0 0}.story-card--headline-image-small .story-card__kicker-wrapper{position:absolute;top:0.625rem;left:0}.story-card--headline-image-small .story-card__heading{margin:0.9375rem 0 0}.story-card--headline-image-small .story-card__info{width:100%}.story-card--headline-image-small .story-card__content{display:flex;flex-flow:row nowrap}.story-card--headline-image-small .story-card__image-link{width:3.75rem;min-width:3.75rem;height:2.5rem;margin:0.9375rem 0.625rem 0 0;padding-top:0}.latest-news{box-sizing:border-box;padding:1.875rem 1.375rem;background-color:#f7f7f7}.latest-news h2{margin:0rem 0rem 0.625rem 0rem;color:#38a3d7;font-weight:600;font-size:1.375rem;font-family:"Stag","Georgia",serif;line-height:1.6875rem}.latest-news__heading{padding-bottom:0.625rem;color:#434e53;font-weight:500;font-size:0.9375rem;font-family:"Stag","Georgia",serif}.latest-news__heading__link{color:#434e53;line-height:1.1875rem}.latest-news__time-container{display:flex;flex-direction:row}.latest-news__time-container--kicker{font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.0625rem}.latest-news__time-container--kicker::before{margin:0 0.3125rem;color:#434e53;content:'•'}.latest-news__time-container--kicker.premium{color:#e9a20f}.latest-news__time-container--kicker.oneroof{color:#ff8500}.latest-news__time-container .meta-data__time-stamp{display:block;padding-bottom:0.25rem;color:#8a8f96;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.0625rem}.latest-news .latest-news__last-item h3:last-child{padding-bottom:0}.user-actions{display:flex;flex-wrap:wrap;box-sizing:content-box;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif}.user-actions__item{flex-basis:calc(100% / 2 - 1.25rem);padding:0.5rem;color:#c4cccb;line-height:1.45;text-align:center;border-top:2px solid #23292a;border-right:2px solid #23292a;border-bottom:none;border-left:2px solid #23292a}.user-actions__item:nth-of-type(2){border-right:none}.user-actions__item:hover{color:#38a3d7}.user-actions__premium-subscription-link{flex-basis:100%;margin-bottom:0.25rem;padding:0.625rem;color:#313c3d;font-weight:700;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center;background-color:#ecac0c;border:1px solid #ecac0c;transition:all 0.2s}@media (min-width: 576px){.user-actions__premium-subscription-link{margin:0.25rem}}.user-actions__premium-subscription-link:hover,.user-actions__premium-subscription-link:focus{color:#121617;background-color:#ecac0c;border-color:#000;opacity:1}.user-actions .accordion{border:0}.video-paywall{position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%;text-align:center;background-color:rgba(255,255,255,0.85)}.video-paywall__heading{color:#000;font-weight:400;font-size:1.5625rem}.video-paywall__call-to-action{display:inline-block;margin-top:1.25rem;padding:0.5rem 1.875rem;color:#fff;font-weight:700;font-size:1.125rem;background-color:#ecac0c;border-radius:0.25rem}@media (min-width: 576px){.video-paywall__call-to-action{padding:0.625rem 2.5rem}}.video-paywall__fine-text{margin-top:1.25rem;color:#313c3d;font-weight:700;font-size:1rem}.video-paywall__link{color:#313c3d;text-decoration:underline;transition:color 0.2s}.video-paywall__link:hover,.video-paywall__link:focus{color:#ecac0c}.video-outer{position:relative;display:block;max-width:100%}.video-wrapper{padding-top:56.25%}.video-wrapper.premium-video{padding-top:initial}.video-wrapper.premium-video .vjs-big-play-button{display:none}.video-js{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}#myPlayerID .vjs-icon-placeholder:before{position:relative}#myPlayerID .vjs-modal-dialog{position:relative}#myPlayerID .vjs-button>.vjs-icon-placeholder:before{position:relative}#myPlayerID .vjs-modal-dialog{position:relative}#myPlayerID .vjs-modal-dialog-content{position:relative}.vc{position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0) 100%);cursor:pointer;pointer-events:none}.vc__controls{position:absolute;top:0;display:flex;justify-content:flex-start;width:100%;padding-top:2rem;color:#fff;font-weight:900;font-size:0.75rem;text-transform:uppercase}.vc__ticker{display:flex;margin-left:2.0625rem}.vc__ticker-text-before{display:flex;align-items:center;margin-right:0.75rem}.vc__ticker-countdown{font-size:1.125rem}.vc__buttons-base,.vc__cancel,.vc__disable-autoplay,.vc__enable-autoplay{display:inline-block;pointer-events:auto;min-width:7.5rem;margin-left:0.75rem;padding:0.8125rem 1.125rem;color:#fff;line-height:1.2;text-align:center;background-color:#4a5657;border:none;border-radius:0.1875rem;cursor:pointer}.vc__buttons-base:hover,.vc__cancel:hover,.vc__disable-autoplay:hover,.vc__enable-autoplay:hover,.vc__buttons-base:focus,.vc__cancel:focus,.vc__disable-autoplay:focus,.vc__enable-autoplay:focus{background-color:#556364}.vc__cancel{color:#111617;background-color:#fff}.vc__cancel:hover,.vc__cancel:focus{background-color:#e7e9ef}.vc__enable-autoplay{margin-left:2.3125rem}@media print{.video-outer{display:none}}.recommended-articles{max-width:640px;margin:1.5rem auto;padding:0rem 0.625rem}@media (min-width: 576px){.recommended-articles{max-width:960px}}@media (min-width: 768px){.recommended-articles{margin:3rem auto}}@media (min-width: 992px){.recommended-articles{padding:0}}.recommended-articles__heading{margin:2rem 0;color:#38a3d7;font-weight:500;font-size:1.25rem;line-height:1.5625rem;text-align:center}@media (min-width: 768px){.recommended-articles__heading{margin:0}}.recommended-articles__items-wrapper{display:flex;padding:0 0.625rem 1.375rem 0.625rem}@media (max-width: 767px){.recommended-articles__items-wrapper{display:block;padding:0}}@media (max-width: 767px){.recommended-articles__items-wrapper.paid-promoted-content{margin:-0.625rem;padding:0}}.recommended-articles article[class^='story-card'],.recommended-articles div[class^='pb-ad-container']{margin-top:1.25rem;margin-right:0;margin-left:0}@media (min-width: 768px){.recommended-articles article[class^='story-card'],.recommended-articles div[class^='pb-ad-container']{width:33.33%}.recommended-articles article[class^='story-card']:nth-of-type(even),.recommended-articles div[class^='pb-ad-container']:nth-of-type(even){margin-right:1.25rem;margin-left:1.25rem}}@media print{.recommended-articles{display:none}}.section-oneroof-search-bar{box-sizing:border-box;width:100%;padding:2.5rem 0.625rem 0}@media (min-width: 992px){.section-oneroof-search-bar__wrapper{max-width:58.75rem;margin-right:auto;margin-left:auto}}.ta-module{max-width:58.75rem;margin:1.375rem auto 1rem auto;box-shadow:0 6px 18px 0 rgba(0,0,0,0.08),0 0 2px 0 rgba(0,0,0,0.06)}.ta-module *,.ta-module *::before,.ta-module *::after{box-sizing:border-box}.ta-module-header{display:flex;flex-direction:column;align-items:center;padding:1.25rem}@media (min-width: 768px){.ta-module-header{flex-direction:row;margin-bottom:0;padding:1.375rem 2rem}}.ta-module-header__icon{width:100%;max-width:13.4375rem;height:3.125rem}.ta-module-header__secondary-title{display:none;margin-left:auto;color:#4c839d;font-weight:600;font-size:0.9375rem;font-family:"Source Sans Pro","Helvetica",sans-serif;letter-spacing:1px;text-transform:uppercase}@media (min-width: 768px){.ta-module-header__secondary-title{display:block}}.ta-module__step{display:none;background-color:#004165;background-repeat:no-repeat;background-size:cover}.ta-module__step--active{display:block}@media (min-width: 768px){.ta-module__step--active{display:flex}}@media (min-width: 576px){.ta-module__step{padding:1.25rem}}.ta-module-question{display:flex;flex:1;flex-direction:column;justify-content:center;min-width:18.75rem;padding:1.25rem;padding-bottom:0}@media (min-width: 768px){.ta-module-question{padding-bottom:1.375rem}}.ta-module-question__currentstep{margin:0;margin-bottom:0.25rem;color:#fbc834;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.ta-module-question__currentstep span{color:#fff;opacity:0.7}@media (min-width: 768px){.ta-module-question__currentstep{font-size:1.25rem}}.ta-module-question__title{margin:0;color:#fff;font-weight:700;font-size:1.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.9375rem}@media (min-width: 768px){.ta-module-question__title{font-size:2.8125rem;line-height:2.875rem}}.ta-module-progress{display:none;align-items:center;padding-top:1.375rem;list-style:none}@media screen and (min-width: 450px){.ta-module-progress{display:flex}}.ta-module-progress--mobile{display:none}@media screen and (max-width: 449px){.ta-module-progress--mobile{display:flex}}.ta-module-progress__track{display:block;flex:1;height:0.125rem;background-color:#fbc834}.ta-module-progress__circle{position:relative;display:flex;width:0.875rem;height:0.875rem;padding:0.125rem;background:none;border:0.125rem solid #fbc834;border-radius:50%;outline:none;transition:box-shadow 0.15s ease-in-out}.ta-module-progress__circle:focus,.ta-module-progress__circle:hover{box-shadow:0 0 0 0.25rem rgba(251,200,52,0.5);cursor:pointer}.ta-module-progress__circle:focus::before,.ta-module-progress__circle:hover::before{background-color:#fbc834}.ta-module-progress__circle--active::before{display:block;width:100%;height:100%;background-color:#fff;border-radius:50%;transition:background-color 0.15s ease-in-out;content:''}.ta-module-progress__circle--complete{width:0.75rem;height:0.75rem;background-color:#fbc834;border:none}.ta-module-btn__arrow{width:2rem;margin-left:auto;fill:#222}.ta-module-btn{display:flex;align-items:center;width:100%;height:3.125rem;padding:1.125rem;color:#222;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;background-color:#fbc834;border:none;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem;cursor:pointer;transition:background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);-webkit-appearance:none;-moz-appearance:none;appearance:none}.ta-module-btn:hover{background-color:#f7b905}.ta-module-btn--white{background-color:#fff;border:1px solid #313c3d}.ta-module-btn--white:hover{background-color:#e6e6e6}.ta-module-btn--tile{justify-content:center;height:100%}.ta-module-btn--tile svg{margin-left:0.625rem}.ta-module-btn:disabled{color:#ababab;background-color:#d9d9d9;cursor:default}.ta-module-btn:disabled .ta-module-btn__arrow{fill:#ababab}.ta-module-answer-1{flex:1 66.6%;padding:1.375rem 0.75rem}.ta-module-carousel{display:flex;align-content:flex-start}@media (min-width: 768px){.ta-module-carousel{width:100%}}@media screen and (min-width: 450px){.ta-module-carousel{flex-wrap:wrap}}@media screen and (max-width: 449px){.ta-module-carousel{margin-right:-0.75rem;margin-left:-0.75rem;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-color:transparent transparent;scrollbar-width:0;-ms-overflow-style:none}}.ta-module-carousel::-webkit-scrollbar{width:0}.ta-module-carousel::-webkit-scrollbar-track{background:transparent}.ta-module-carousel::-webkit-scrollbar-thumb{background:transparent;border:none}.ta-module-carousel__tile{position:relative;display:flex;flex-shrink:0;align-items:center;width:calc(33.33% - 10px);margin:5px;overflow:hidden;background-color:#4c839d;border-radius:0.25rem;transform:translate3d(0, 0, 0)}.ta-module-carousel__tile:hover .ta-module-carousel__image{transform:scale(1.1);transform-origin:center center}@media screen and (max-width: 449px){.ta-module-carousel__tile{width:13.5rem;scroll-snap-align:center}.ta-module-carousel__tile:last-of-type{display:none}}.ta-module-carousel__label{position:absolute;top:0;left:0;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;width:100%;height:100%;margin:0;padding:1rem;color:#fff;font-weight:700;font-size:1.0625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center;text-transform:uppercase}.ta-module-carousel__label:hover{cursor:pointer}@media screen and (max-width: 449px){.ta-module-carousel__label{padding:1.875rem;font-size:1.375rem}}.ta-module-carousel__image{width:100%;transition:transform 0.25s cubic-bezier(0.4, 0, 0.2, 1)}.ta-module-carousel__radio{display:none}.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay .ta-module-carousel__check{opacity:1}.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay--tile-1,.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay--tile-2,.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay--tile-3,.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay--tile-4,.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay--tile-5{background:rgba(0,0,0,0.5)}.ta-module-carousel__radio:checked ~ .ta-module-carousel__image{transform:scale(1.1)}.ta-module-carousel__overlay{position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%}.ta-module-carousel__check{display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;margin-bottom:1.5rem;background-color:#fbc834;border-radius:50%;opacity:0;transition:opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1)}.ta-module-carousel__check-icon{width:1.375rem}.ta-module-answer-1__footer .ta-module-btn{border-radius:0.25rem}@media screen and (min-width: 450px){.ta-module-answer-1__footer{display:none}}.ta-module-result__footer{max-width:58.75rem;margin:auto;padding:1rem;padding-right:0.625rem;padding-left:0.625rem}@media (min-width: 768px){.ta-module-result__footer{display:flex;padding-right:1rem;padding-left:1rem}}.ta-module-result__footer .ta-module-btn{justify-content:center;width:100%;padding-right:1.5625rem;padding-left:1.5625rem;border-radius:0.25rem}.ta-module-result__footer .ta-module-btn:not(:last-child){margin-bottom:0.5rem}@media (min-width: 768px){.ta-module-result__footer .ta-module-btn{width:auto}.ta-module-result__footer .ta-module-btn:not(:last-child){margin-right:1rem;margin-bottom:0}}.ta-module-answer-2{align-items:center;justify-content:center;width:100%;padding:1.375rem 0.75rem}@media (min-width: 768px){.ta-module-answer-2{display:flex;max-width:35rem;min-height:20.625rem}}.ta-module-select{position:relative;width:100%;box-shadow:0 6px 18px 0 rgba(0,0,0,0.08),0 0 2px 0 rgba(0,0,0,0.06)}@media (min-width: 768px){.ta-module-select{max-width:26.875rem}}.ta-module-select select{width:100%;padding:0.9375rem;padding-right:2.5rem;color:#222;font-weight:300;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#fff;border:0;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.ta-module-select__arrow{position:absolute;top:0.75rem;right:0.625rem;width:1.5rem;height:1.5rem;pointer-events:none}.ta-module-answer-3{align-items:center;justify-content:center;width:100%;padding:1.375rem 0.75rem}@media (min-width: 768px){.ta-module-answer-3{display:flex;max-width:35rem;min-height:20.625rem}}.ta-module-checklist{width:100%}@media (min-width: 768px){.ta-module-checklist{max-width:26.875rem}}.ta-module-checklist__body{background-color:#fff;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.ta-module-checklist__item{display:flex;align-items:center;margin-right:1rem;margin-left:1rem;border-bottom:1px solid #e0e0e0}.ta-module-checklist__item:last-child{border-bottom:0}.ta-module-checklist__label{display:block;flex:1;padding-top:1rem;padding-bottom:1rem;color:#222;font-weight:300;font-family:"Source Sans Pro","Helvetica",sans-serif;cursor:pointer}.ta-module-checklist__check{width:1.5rem;height:1.5rem;opacity:0;transition:opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);fill:#054165}.ta-module-checklist__radio{display:none}.ta-module-checklist__radio:checked+.ta-module-checklist__check{opacity:1}.ta-module-result-options{flex:1;padding:1.5625rem;padding-bottom:2.8125rem}@media (max-width: 767px){.ta-module-result-options{display:flex;flex-wrap:wrap}}.ta-module-result-options .ta-module-question__title{display:block;width:100%;padding-bottom:1.5625rem}@media (min-width: 768px){.ta-module-result-options .ta-module-question__title{display:none}}.ta-module-result-options .ta-module-progress{display:flex;padding-top:0}@media (max-width: 767px){.ta-module-result-options .ta-module-progress{flex-direction:column;height:7.5rem}}@media (min-width: 768px){.ta-module-result-options .ta-module-progress{flex:1}}@media (max-width: 767px){.ta-module-result-options .ta-module-progress__track{width:0.125rem;height:auto}}.ta-module-result-options .ta-module-progress__circle{align-items:center}.ta-module-result-options .ta-module-progress__circle--left{justify-content:flex-start}.ta-module-result-options .ta-module-progress__circle--right{justify-content:flex-end}@media (max-width: 767px){.ta-module-result-options .ta-module-progress__circle--right{justify-content:flex-start}}.ta-module-result-options .ta-module-progress__circle--center{justify-content:center}@media (max-width: 767px){.ta-module-result-options .ta-module-progress__circle--center{justify-content:flex-start}}.ta-module-result-options .ta-module-progress__text{position:absolute;display:block;max-width:18.125rem;padding-left:1.25rem;overflow:hidden;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-transform:uppercase;text-overflow:ellipsis}@media (min-width: 768px){.ta-module-result-options .ta-module-progress__text{top:1.25rem;padding-left:0}}@font-face{font-family:'NationalBook';font-style:normal;src:url(/pf/resources/dist/fonts/NationalWebLF-Book.woff?d=484)}@font-face{font-family:'NationalBold';font-style:normal;src:url(/pf/resources/dist/fonts/NationalWebLF-Bold.woff?d=484)}.tnz-module{width:100%;max-width:58.75rem;margin:1.375rem auto 1rem auto;font-family:"NationalBold","Helvetica",sans-serif;background-color:#000;box-shadow:0 6px 18px 0 rgba(0,0,0,0.08),0 0 2px 0 rgba(0,0,0,0.06)}.tnz-module *,.tnz-module *::before,.tnz-module *::after{box-sizing:border-box}.tnz-module-header{display:flex;flex-direction:column;align-items:center;justify-content:center;height:5.625rem;padding:1.25rem}@media (min-width: 768px){.tnz-module-header{flex-direction:row;justify-content:space-between;margin-bottom:0;padding:1.375rem 2.5rem}}.tnz-module-header__pure-nz-logo{width:100%;max-width:10rem;height:1.0625rem}@media (min-width: 768px){.tnz-module-header__pure-nz-logo{max-width:12.625rem;height:1.25rem}}.tnz-module-header__secondary-title{display:none;margin-left:auto;color:#fff;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;letter-spacing:0.0375rem;text-transform:uppercase}@media (min-width: 768px){.tnz-module-header__secondary-title{display:block}}.tnz-module-body{height:100%;background-position:center;background-size:cover}.tnz-module-body--bg-questions{display:block;background-image:url(/pf/resources/dist/images/tnzBackgroundMobile.png?d=484)}@media (min-width: 768px){.tnz-module-body--bg-questions{background-image:url(/pf/resources/dist/images/tnzBackground.png?d=484)}}.tnz-module-body--bg-results{background-image:url(/pf/resources/dist/images/tnzResultsMobile.jpg?d=484)}@media (min-width: 768px){.tnz-module-body--bg-results{background-image:url(/pf/resources/dist/images/tnzResultsDesktop.jpg?d=484)}}.tnz-module__intro{display:flex;flex:1;flex-direction:column;align-items:center;justify-content:center;height:100%;padding:3.75rem 0 5.3125rem;text-align:center}@media (min-width: 768px){.tnz-module__intro{justify-content:center;margin-top:6.25rem;padding:0}}@media (max-width: 767px){.tnz-module__intro{padding:11.25rem 0 6.25rem}}.tnz-module__intro .tnz-module-btn{justify-content:center;width:100%;max-width:14.0625rem;height:2.8125rem;font-size:0.9375rem;line-height:1.1875rem;text-transform:none;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.tnz-module__intro-heading{margin:0 0 1.875rem 0;color:#fff;font-size:1.5rem;font-family:inherit;line-height:1.8125rem;text-transform:uppercase}@media (min-width: 768px){.tnz-module__intro-heading{margin:0 0 2.5rem 0;font-size:1.75rem;line-height:2.0625rem}}.tnz-module__intro-heading--emphesis{display:block;width:100%;max-height:3.4375rem;margin:0.625rem 0}@media (min-width: 768px){.tnz-module__intro-heading--emphesis{display:inline-block;width:8.75rem;max-height:2.6875rem;margin:0}}.tnz-module-btn{display:flex;align-items:center;width:100%;height:3.125rem;padding:1.125rem;color:#fff;font-size:0.75rem;letter-spacing:0.03125rem;text-transform:uppercase;background-color:#000;border:none;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem;cursor:pointer;transition:background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);-webkit-appearance:none;-moz-appearance:none;appearance:none}.tnz-module-btn:hover{background-color:#1a1a1a}.tnz-module-btn:disabled{color:rgba(34,34,34,0.25);background-color:#d9d9d9;cursor:default}.tnz-module-btn:disabled:hover{background:#ccc}.tnz-module-btn:disabled .tnz-module-btn__arrow{fill:rgba(34,34,34,0.25)}.tnz-module-btn--blue{background-color:#2aade5}.tnz-module-btn--blue:hover{background-color:#57beeb}.tnz-module-btn--white{color:#000;background-color:#fff;border:1px solid #000}.tnz-module-btn--white:hover{background-color:#f2f2f2}.tnz-module-btn__arrow{width:1.0625rem;margin-left:auto;fill:#fff}.tnz-module__step{display:none;height:100%;padding:1.5625rem 1.25rem 2.5rem;background-color:rgba(14,45,72,0.25)}@media (min-width: 768px){.tnz-module__step{height:26.25rem;padding:1.25rem 5.5rem}}.tnz-module__step--active{display:block}@media (min-width: 768px){.tnz-module__step--active{display:flex}}.tnz-module__step--intro{flex-direction:column;justify-content:center;height:29.5rem}@media (min-width: 768px){.tnz-module__step--intro{height:26.25rem;padding:1.25rem 1.25rem}}.tnz-module__step--results{position:relative;height:14.6875rem;padding:1.5625rem 1.875rem 2.1875rem;background-color:rgba(0,0,0,0.4)}@media (min-width: 768px){.tnz-module__step--results{height:7.625rem;padding:3.4375rem 2.5rem}}.tnz-module-question{display:flex;flex:1 45%;flex-direction:column;justify-content:center;font-family:inherit}@media (min-width: 768px){.tnz-module-question{padding-right:4rem}}.tnz-module-question .tnz-module-progress{display:none}@media (min-width: 768px){.tnz-module-question .tnz-module-progress{display:flex}}.tnz-module-question__currentstep{margin:0 0 0.25rem;color:#fff;font-size:1rem;line-height:1.1875rem;text-transform:uppercase}.tnz-module-question__currentstep span{letter-spacing:-0.125rem}@media (min-width: 768px){.tnz-module-question__currentstep{font-size:1.25rem;line-height:1.5rem}}.tnz-module-question__title{margin:0;color:#fff;font-size:1.875rem;font-family:inherit;line-height:1.875rem;letter-spacing:0.075rem}@media (min-width: 768px){.tnz-module-question__title{margin-bottom:2.5rem;font-size:3.4375rem;line-height:3.4375rem;letter-spacing:0.1375rem}}.tnz-module-progress{display:flex;align-items:center}.tnz-module-progress__track{display:block;flex:1;height:0.1875rem}.tnz-module-progress__bar{position:relative;flex:9 0;height:0.1875rem;background-color:rgba(255,255,255,0.4);border:none;border-radius:0.09375rem}.tnz-module-progress__bar:focus,.tnz-module-progress__bar:hover{cursor:pointer}.tnz-module-progress__bar--active,.tnz-module-progress__bar--complete{background-color:#fff}.tnz-module-progress__circle{position:relative;display:flex;width:0.75rem;height:0.75rem;padding:0.125rem;background-color:#fff;border:none;border-radius:50%;outline:none;transition:box-shadow 0.15s ease-in-out}.tnz-module-progress__circle:focus,.tnz-module-progress__circle:hover{box-shadow:0 0 0 0.25rem rgba(255,255,255,0.33);cursor:pointer}.tnz-module-answer{display:flex;flex-direction:column;justify-content:center;margin-top:1.625rem}@media (min-width: 768px){.tnz-module-answer{flex:1 55%;margin-top:0}}.tnz-module-answer__footer{display:block;width:100%;padding-top:2.5rem}@media (min-width: 768px){.tnz-module-answer__footer{display:none}}.tnz-module-select{position:relative;width:100%;box-shadow:0 6px 18px 0 rgba(0,0,0,0.08),0 0 2px 0 rgba(0,0,0,0.06)}@media (min-width: 768px){.tnz-module-select{max-width:26.875rem}}.tnz-module-select select{width:100%;padding:0.9375rem 2.5rem 0.9375rem 0.9375rem;color:#50595e;font-size:0.9375rem;font-family:"NationalBook","Helvetica",sans-serif;line-height:1.1875rem;background-color:#fff;border:0;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.tnz-module-select select::-ms-expand{display:none}.tnz-module-select__arrow{position:absolute;top:1rem;right:0.875rem;width:1rem;height:1rem;pointer-events:none}.tnz-module-checklist{width:100%}.tnz-module-checklist__body{background-color:#fff;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.tnz-module-checklist__item{display:flex;align-items:center;margin-right:1rem;margin-left:1rem;border-bottom:0.0625rem solid #e0e0e0}.tnz-module-checklist__item:last-child{border-bottom:0}.tnz-module-checklist__label{display:block;flex:1;padding-top:1rem;padding-bottom:1rem;color:#50595e;font-size:0.9375rem;font-family:"NationalBook","Helvetica",sans-serif;line-height:1.1875rem;cursor:pointer}.tnz-module-checklist__check{width:1.5rem;height:1.5rem;opacity:0;transition:opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);fill:#2aade5}.tnz-module-checklist__radio{display:none}.tnz-module-checklist__radio:checked+.tnz-module-checklist__check{opacity:1}.tnz-module-result-options{flex:1}@media (max-width: 767px){.tnz-module-result-options{display:flex;flex-wrap:wrap}}.tnz-module-result-options .tnz-module-question__title{display:block;width:100%;padding-bottom:1.5625rem}@media (min-width: 768px){.tnz-module-result-options .tnz-module-question__title{display:none}}.tnz-module-result-options .tnz-module-progress{display:flex;padding-top:0}@media (max-width: 767px){.tnz-module-result-options .tnz-module-progress{flex-direction:column;height:7.5rem}}@media (min-width: 768px){.tnz-module-result-options .tnz-module-progress{flex:1}}.tnz-module-result-options .tnz-module-progress__track{background-color:#fff}@media (max-width: 767px){.tnz-module-result-options .tnz-module-progress__track{width:0.125rem;height:auto}}.tnz-module-result-options .tnz-module-progress__circle{align-items:center}.tnz-module-result-options .tnz-module-progress__circle--left{justify-content:flex-start}.tnz-module-result-options .tnz-module-progress__circle--right{justify-content:flex-end}@media (max-width: 767px){.tnz-module-result-options .tnz-module-progress__circle--right{justify-content:flex-start}}.tnz-module-result-options .tnz-module-progress__circle--center{justify-content:center}@media (max-width: 767px){.tnz-module-result-options .tnz-module-progress__circle--center{justify-content:flex-start}}.tnz-module-result-options .tnz-module-progress__text{position:absolute;top:-0.125rem;display:block;max-width:18.125rem;padding-left:1.25rem;overflow:hidden;color:#fff;font-size:0.875rem;letter-spacing:0.03125rem;white-space:nowrap;text-transform:uppercase;text-overflow:ellipsis}@media (min-width: 768px){.tnz-module-result-options .tnz-module-progress__text{top:1.25rem;padding-left:0}.tnz-module-result-options .tnz-module-progress__text--left{left:0}.tnz-module-result-options .tnz-module-progress__text--center{left:50%;transform:translateX(-50%)}.tnz-module-result-options .tnz-module-progress__text--right{right:0}}.tnz-module-result__footer{max-width:58.75rem;margin:auto;padding:1rem;padding-right:0.625rem;padding-left:0.625rem}@media (min-width: 768px){.tnz-module-result__footer{display:flex;padding-right:1rem;padding-left:1rem}}.tnz-module-result__footer .tnz-module-btn{justify-content:center;width:100%;padding:1.125rem 1.5rem;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.tnz-module-result__footer .tnz-module-btn:first-of-type{margin:0 0 0.5rem 0}@media (min-width: 768px){.tnz-module-result__footer .tnz-module-btn{justify-content:flex-start;width:auto}.tnz-module-result__footer .tnz-module-btn:first-of-type{margin:0 1rem 0 0}}.logo-bar{padding:1rem 5rem 0.875rem;text-align:center;background-color:#f5f5f5}.logo-bar h3{display:inline;padding:0.625rem 0.9375rem;opacity:0.5}.logo-bar svg{display:inline;height:0.9375rem;padding:0.625rem 0;opacity:0.35;filter:grayscale(100%)}.logo-bar svg.nz-herald{width:10rem;height:1.25rem;padding:0.4375rem 0}.logo-bar svg.be-well{width:5.9375rem;height:1.25rem;padding:0.4375rem 0}.logo-bar svg.canvas{width:7.5rem;height:0.875rem}@media (max-width: 991px){.logo-bar{padding:1rem 0.3125rem 0.875rem;text-align:center}.logo-bar h3{display:block}}.loading-circle{display:flex;justify-content:space-around;height:2.5rem}.got-prompt___container{position:fixed;z-index:999}@media (max-width: 575px){.got-prompt___container{right:1.25rem;bottom:0.625rem;left:1.25rem}}@media (min-width: 576px){.got-prompt___container{top:3.125rem;right:0.625rem}}.got-modal__wrapper{top:45%;justify-content:initial;width:95%;max-width:36rem;min-height:initial;padding:4.0625rem 2.125rem}.got-modal__wrapper .got-newsletter-modal{background-color:#fff}@media (max-width: 575px){.got-modal__wrapper .got-newsletter-modal .heading{font-size:1.75rem;line-height:1.8125rem}}.got-modal__wrapper .got-newsletter-modal .divider{margin:1.375rem auto}@media (min-width: 576px){.got-modal__wrapper .got-newsletter-modal .divider{margin:1.875rem auto}}.got-modal__wrapper .got-newsletter-modal__setup-profile{margin-top:1.5625rem;font:normal normal 600 1rem/1.25rem "Source Sans Pro","Helvetica",sans-serif;text-align:center}@media (min-width: 576px){.got-modal__wrapper .got-newsletter-modal__setup-profile{margin-top:2rem}}.got-modal__wrapper .got-newsletter-modal__back-to-reading{width:100%;margin-top:1.0625rem;padding:0.75rem 0;font-size:0.875rem;background-color:#dce1e2;border:none}@media (min-width: 576px){.got-modal__wrapper .got-newsletter-modal__back-to-reading{padding:0.875rem 0;font-size:1rem}}.got-modal__wrapper .got-newsletter-modal__back-to-reading:hover{background-color:#c7d0d8}.got-modal__wrapper .got-newsletter-modal__continue-btn{display:block;padding:0.75rem 0;font-size:0.875rem;text-align:center}@media (min-width: 576px){.got-modal__wrapper .got-newsletter-modal__continue-btn{padding:0.875rem 0;font-size:1rem}}.got-modal__wrapper .got-newsletter-modal__continue-btn:disabled{opacity:1}.got-modal__wrapper .got-newsletter-modal .checkbox{margin-top:1.5625rem;margin-bottom:1.5625rem}@media (min-width: 576px){.got-modal__wrapper .got-newsletter-modal .checkbox{margin-top:2.125rem;margin-bottom:2.1875rem}}@media (max-width: 575px){.got-modal__wrapper .got-newsletter-modal .checkbox__label{font-size:0.875rem}}.got-modal__wrapper .exit-btn{display:flex;float:right;background-color:transparent;border:none}.got-modal__wrapper .exit-btn:hover{cursor:pointer}.got-modal__wrapper .exit-btn__container{position:absolute;top:4.5%;right:6%}@media (min-width: 576px){.got-modal__wrapper .exit-btn__container{top:5%;right:5%}}.got-modal__wrapper .exit-btn__icon{align-items:center;justify-content:center;width:1.875rem;height:1.875rem;color:#38a3d7}.got-modal__wrapper .exit-btn__container::after{display:table;clear:both;content:''}.got-modal__wrapper .user-agreement{margin-top:0.9375rem;padding:0}.got-modal__wrapper .user-agreement a{color:#38a3d7}@media (min-width: 375px){.got-modal__wrapper{padding:5.3125rem 2.5rem}}@media (min-width: 576px){.got-modal__wrapper{width:100%;min-height:42.75rem;padding:8.25rem 6.375rem}}@media (min-width: 768px){.cancel-form.cancel-form-survey{padding-top:6.5625rem;padding-bottom:6.625rem}}.cancel-form__container{max-width:32.4375rem}@media (min-width: 768px){.cancel-form__container{padding:9.25rem 4.625rem 4.125rem 4.625rem}}.cancel-form__form-feedback{margin-top:0}.cancel-form__btn{width:100%;padding:0.8125rem 0;font-weight:700;font-size:1rem;border:none;border-radius:0.125rem;cursor:pointer}@media (max-width: 575px){.cancel-form__btn{padding:0.875rem 0 0.8125rem 0;font-size:0.875rem}}.cancel-form__redirect-btn{position:relative;display:flex;margin-bottom:9.25rem;color:#fff;font-weight:700;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#38a3d7}.cancel-form__redirect-btn:hover{background:#2b7199;border-color:#2b7199}.cancel-form__redirect-btn:focus{background:#2b7199;border-color:#2b7199}.cancel-form__redirect-btn__text{width:100%;text-align:center}.cancel-form__redirect-btn__icon{position:absolute;top:1.125rem;right:0.9375rem;bottom:1.0625rem;width:1.125rem;height:0.625rem;fill:#fff}@media (max-width: 575px){.cancel-form__redirect-btn{margin-bottom:0}}.cancel-form__cancel-btn{margin-bottom:1rem;background-color:#dce1e2}.cancel-form__cancel-btn:hover{background-color:#c7d0d8}.cancel-form .manage-account{margin-top:0.4375rem}@media (max-width: 575px){.cancel-form .manage-account{margin-top:1.5rem}}@media (min-width: 768px){.cancel-form .manage-account{padding:0 0.9375rem}}@media (max-width: 575px){.cancel-form .divider.hr{margin:1.5rem 0}}.cancel-form .survey-heading{margin-top:3.9375rem;color:#000;font-weight:500;font-size:1.375rem;font-family:"Stag","Georgia",serif;line-height:1.6875rem;text-align:center}@media (max-width: 575px){.cancel-form .survey-heading{font-size:1.0625rem;line-height:1.3125rem}}.cancel-form__logo-wrapper{display:flex;align-items:center;justify-content:center;width:4.5rem;height:4.5rem;background:#000;border-radius:50%}.cancel-form__logo{width:1.4375rem;height:1.9375rem;color:#fff}.cancel-form__radio-group{display:flex;flex-direction:column;width:100%;margin-top:1.1875rem}.cancel-form__text-input{box-sizing:border-box;width:100%;min-width:100%;max-width:100%;height:2.8125rem;min-height:2.8125rem;max-height:4.6875rem;margin-bottom:1rem;padding:0.9375rem;overflow:hidden;color:#000;font-weight:600;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border:0.0625rem solid #ddd;border-radius:0.25rem;outline:none}.cancel-form__text-input::-moz-placeholder{color:#ddd}.cancel-form__text-input:-ms-input-placeholder{color:#ddd}.cancel-form__text-input::placeholder{color:#ddd}.cancel-form__text-input:focus{border-color:#38a3d7}.cancel-form__form-feedback--survey+.cancel-form__submit-button{margin-top:0}.cancel-form__submit-button{display:flex;align-items:center;justify-content:center;height:2.8125rem;margin-top:1.125rem;color:#fff;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#38a3d7;border:none;cursor:pointer}.cancel-form__submit-button:disabled{opacity:0.5;pointer-events:none}.cancel-form__submit-button:hover,.cancel-form__submit-button:focus{background-color:#2aaae8}.journalistcarousel-chain__journalistcarouselwrapper .arrow-icon{width:100%;height:100%}.journalistcarousel-chain__journalistcarouselwrapper .slick-dots{position:absolute;bottom:3.125rem}@media (max-width: 767px){.journalistcarousel-chain__journalistcarouselwrapper .slick-dots{bottom:1.875rem}}.journalistcarousel-chain__journalistcarouselwrapper .slick-prev{left:4.5rem}.journalistcarousel-chain__journalistcarouselwrapper .slick-prev,.journalistcarousel-chain__journalistcarouselwrapper .slick-next{width:1.25rem;height:1.25rem;background-color:transparent !important;border-radius:0%}.journalistcarousel-chain__journalistcarouselwrapper .slick-next{right:4.5rem}.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li button::before{color:#8a8f96;opacity:1}.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li,.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li button,.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li button::before{width:0.5rem;height:0.5rem}.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li.slick-active,.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li.slick-active button,.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li.slick-active button::before{width:0.625rem;height:0.625rem}.journalistcarousel-chain__journalistcarouselwrapper .slick-dots li.slick-active button::before{color:#fff}.journalistcarousel-chain__journalistcarouselwrapper .slick-list,.journalistcarousel-chain__journalistcarouselwrapper .slick-track,.journalistcarousel-chain__journalistcarouselwrapper .slick-slide,.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div,.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div img{width:100%;height:100%}.journalistcarousel-chain__journalistcarouselwrapper .slick-slide img{-o-object-fit:cover;object-fit:cover}.journalistcarousel-chain__journalistcarouselwrapper .journalist-carousel-image::after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:transparent linear-gradient(226deg, rgba(0,0,0,0.67) 0%, rgba(33,33,33,0.36) 60%, rgba(84,84,84,0) 100%) 0% 0% no-repeat padding-box;content:""}.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div{position:relative}.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info{position:absolute;top:86%;left:26.875rem;z-index:2;width:35.9375rem;transform:translate(-50%, -50%)}@media (min-width: 768px) and (max-width: 992px){.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info{top:80%;left:18.75rem}}@media (min-width: 576px) and (max-width: 768px){.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info{top:75%;left:16.875rem;width:31.25rem}}@media (min-width: 320px) and (max-width: 576px){.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info{top:70%;left:10.625rem;width:18.75rem}}@media (max-width: 319px){.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info{top:55%;left:38%;width:12.5rem}}.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info .journalist-carousel-headline{color:#fff;font-weight:500;font-size:3rem}@media (max-width: 575px){.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info .journalist-carousel-headline{font-size:2.25rem}}.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info .journalist-carousel-description{width:95%;margin-top:0.75rem;color:#fff;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.375rem}@media (max-width: 575px){.journalistcarousel-chain__journalistcarouselwrapper .slick-slide div .journalist-carousel-info .journalist-carousel-description{width:100%;font-size:0.9375rem}}.personalized-stories{position:relative;background-color:#f6f6f6}.personalized-stories.section-chain{padding-top:1.5rem;padding-bottom:1.5rem}@media (max-width: 767px){.personalized-stories.section-chain{padding-top:2.5rem;padding-bottom:2.5rem}}.personalized-stories__top{position:relative;left:50%;max-width:58.75rem;margin-bottom:1.5rem;transform:translateX(-50%)}@media (max-width: 767px){.personalized-stories__top{text-align:center}}.personalized-stories__topheading{color:#096de2;font-weight:900;font-size:0.625rem;line-height:0.78125rem}.personalized-stories__heading{margin-top:1rem;margin-bottom:1rem;overflow:hidden;color:#000;font-weight:600;font-size:1.875rem;line-height:1.875rem;white-space:nowrap;text-overflow:ellipsis}@media (max-width: 767px){.personalized-stories__heading{max-width:none}}.personalized-stories__subheading{font-size:1rem;line-height:1.125rem}.personalized-stories__subheading a{color:#38a3d7;text-decoration:underline}@media (max-width: 767px){.personalized-stories .story-card{padding:0}.personalized-stories .story-card:not(:last-child){margin-bottom:1.25rem}}.personalized-stories .story-card__content{position:relative}.personalized-stories .story-card__info{margin-top:0.625rem}.anchors-link{font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:left;opacity:1}.anchors-link__header{color:#111617;font-weight:900;font-size:0.75rem;letter-spacing:0;text-transform:uppercase}.anchors-link__anchor{display:inline-block;margin:0 0.3125rem 0.3125rem;padding:0.4375rem;color:#000;font-weight:600;font-size:0.9375rem;text-transform:capitalize;background-color:#f1f3f4;background-clip:padding-box;border-radius:1.5rem}.anchors-link__anchors{margin-left:-0.3125rem}.date-select-field{position:relative}.date-select-field .select-field,.date-select-field .select-field2{display:inline-block;width:6.25rem}.date-select-field__select{display:flex;justify-content:space-between}.viva-premium-tag-on-nzh{width:3.5625rem}.viva-premium-tag-on-nzh svg{display:block;width:100%;min-width:100%}.viva-premium-tag-on-nzh.sm{width:5rem}.viva-premium-tag-on-nzh.md{width:6.4375rem}.viva-premium-tag-on-nzh.lg{width:7.8125rem}.viva-premium-tag-on-nzh.story-card__label{padding:0;background:none}.viva-premium-tag-on-nzh.latest-news-content{position:relative;top:-2px;display:flex;width:3.9375rem;padding-left:0.375rem}.viva-premium-tag-on-nzh.latest-news-content::before{margin:0 0.3125rem;color:#434e53;content:'•'}.viva-premium-tag-on-nzh.cmp-bookmarks-meta{display:flex;align-items:center;padding-top:0.0625rem;padding-left:0.5625rem}.viva-premium-tag-on-nzh.cmp-bookmarks-meta::before{display:block;min-width:0.0625rem;height:0.625rem;margin-right:0.5625rem;background-color:#9e9f9f;content:''}.gift-offer-section__background{padding-top:4.8125rem;padding-bottom:10.125rem;background-color:#f8f7f5}@media (min-width: 768px){.gift-offer-section__background{padding-bottom:13.625rem}}.gift-offer-section__header{max-width:48.4375rem;margin:0 auto;padding:0 1rem;color:#000;text-align:center}.gift-offer-section .gift-offer-header__logo{display:inline-block;max-width:17.8125rem;max-height:5.75rem;padding-bottom:2.375rem}.gift-offer-section .gift-offer-header__title{padding-bottom:1.125rem;color:#000;font-size:1.125rem;line-height:1.5}@media (min-width: 768px){.gift-offer-section .gift-offer-header__title{font-size:1.375rem}}@media (min-width: 768px){.gift-offer-section--print .gift-offer-section__header .gift-offer-header__logo{max-width:unset}}@media (min-width: 768px){.gift-offer-section .subs-card__content .subs-card__title{font-size:1.4375rem}}@media (min-width: 992px){.gift-offer-section .subs-card__content .subs-card__title{height:auto}}@media (min-width: 1200px){.gift-offer-section .subs-card__content .subs-card__title{font-size:1.5625rem}}.container--customer-management-page .textarea,.container--myaccount-v2-page .textarea,.container--help-and-support-page .textarea{position:relative}.container--customer-management-page .textarea__content,.container--myaccount-v2-page .textarea__content,.container--help-and-support-page .textarea__content{padding:1.5625rem 1rem 0.5625rem;background-color:#f1f3f4;border:0.0625rem solid #f1f3f4;border-radius:0.1875rem}.container--customer-management-page .textarea__content--with-focused,.container--myaccount-v2-page .textarea__content--with-focused,.container--help-and-support-page .textarea__content--with-focused{background-color:#fff;border:0.0625rem solid #bfc5c6;outline:none}.container--customer-management-page .textarea__content--error,.container--myaccount-v2-page .textarea__content--error,.container--help-and-support-page .textarea__content--error{background-color:#fef9f6;border-color:#c13615}.container--customer-management-page .textarea__input,.container--myaccount-v2-page .textarea__input,.container--help-and-support-page .textarea__input{box-sizing:border-box;width:100%;height:9.375rem;color:#111617;font-size:1rem;line-height:1.25rem;background:none;border:none;resize:none}.container--customer-management-page .textarea__input:focus,.container--myaccount-v2-page .textarea__input:focus,.container--help-and-support-page .textarea__input:focus{outline:none}.container--customer-management-page .textarea__input:disabled,.container--customer-management-page .textarea__input:disabled+.input-field__label,.container--myaccount-v2-page .textarea__input:disabled,.container--myaccount-v2-page .textarea__input:disabled+.input-field__label,.container--help-and-support-page .textarea__input:disabled,.container--help-and-support-page .textarea__input:disabled+.input-field__label{opacity:0.4}.container--customer-management-page .textarea__input--password::-ms-reveal,.container--customer-management-page .textarea__input--password::-ms-clear,.container--myaccount-v2-page .textarea__input--password::-ms-reveal,.container--myaccount-v2-page .textarea__input--password::-ms-clear,.container--help-and-support-page .textarea__input--password::-ms-reveal,.container--help-and-support-page .textarea__input--password::-ms-clear{display:none}.container--customer-management-page .textarea__label,.container--myaccount-v2-page .textarea__label,.container--help-and-support-page .textarea__label{position:absolute;top:1rem;left:1rem;color:#727579;font-size:1rem;line-height:1.25rem;text-transform:none;cursor:text;transition:0.2s ease-in-out}.container--customer-management-page .textarea__label--with-value,.container--customer-management-page .textarea__label--with-focused,.container--myaccount-v2-page .textarea__label--with-value,.container--myaccount-v2-page .textarea__label--with-focused,.container--help-and-support-page .textarea__label--with-value,.container--help-and-support-page .textarea__label--with-focused{top:0.25rem;left:1rem;font-size:0.75rem}.container--customer-management-page .textarea__label--error,.container--myaccount-v2-page .textarea__label--error,.container--help-and-support-page .textarea__label--error{color:#c13615}.container--customer-management-page .textarea__show,.container--myaccount-v2-page .textarea__show,.container--help-and-support-page .textarea__show{position:absolute;top:1.1875rem;right:1.625rem;font-size:0.8125rem;cursor:pointer}.container--customer-management-page .textarea__show--error,.container--myaccount-v2-page .textarea__show--error,.container--help-and-support-page .textarea__show--error{color:#c13615}.container--customer-management-page .textarea__error,.container--myaccount-v2-page .textarea__error,.container--help-and-support-page .textarea__error{margin-top:0.5rem;margin-bottom:0;color:#c13615;font-weight:700;font-size:0.875rem;text-align:left}.latest-from-articles__section{margin:0;padding-bottom:0rem;background-color:#38a3d7}.latest-from-articles__section .latest-from-articles-title{margin-bottom:0;padding:2rem 0;color:#fff;font-weight:400;font-size:2rem;line-height:2.25rem}@media (max-width: 767px){.latest-from-articles__section .latest-from-articles-title{font-size:1.75rem;line-height:2rem}}.latest-from-articles__section .story-card--secondary.story-card--has-label::before{left:0;width:100%}@media (min-width: 768px){.latest-from-articles__section .story-card--secondary.story-card--has-label::before{width:67%}}.latest-from-articles__section .latest-from-articles-hero__section{padding-bottom:2.1875rem}@media (min-width: 768px){.latest-from-articles__section .latest-from-articles-hero__section{margin:0 0.625rem}}@media (min-width: 992px){.latest-from-articles__section .latest-from-articles-hero__section{max-width:58.75rem;margin-right:auto;margin-left:auto}}.latest-from-articles__section .latest-from-articles-hero__section .story-card__info{flex:1;margin-left:0rem}@media (min-width: 768px){.latest-from-articles__section .latest-from-articles-hero__section .story-card__info{margin-left:1.25rem}}.latest-from-articles__section .latest-from-articles-hero__section .story-card__label{left:100%}@media (min-width: 768px){.latest-from-articles__section .latest-from-articles-hero__section .story-card__label{left:67%}}.latest-from-articles__section .latest-from-articles-hero__section .story-card__heading{color:#fff;font-size:1rem;line-height:1.2rem}@media (min-width: 768px){.latest-from-articles__section .latest-from-articles-hero__section .story-card__heading{margin-top:0;font-size:2rem;line-height:2.25rem}}.latest-from-articles__section .latest-from-articles-hero__section .meta-data__time-stamp{color:#fff;font-weight:400}.latest-from-articles__section .latest-from-articles-hero__section .story-card__deck{display:none;color:#fff;font-weight:400;font-size:1rem;line-height:1.5rem}@media (min-width: 768px){.latest-from-articles__section .latest-from-articles-hero__section .story-card__deck{display:block}}.latest-from-articles__section .latest-from-articles-hero__section .story-card__image-link{flex-basis:100%}@media (min-width: 768px){.latest-from-articles__section .latest-from-articles-hero__section .story-card__image-link{flex-basis:67%}}@media (max-width: 575px){.latest-from-articles__section .latest-from-articles-hero__section .story-card__image-link{padding-top:56.25%}}.latest-from-articles__container{padding:0 0.625rem}@media (min-width: 992px){.latest-from-articles__container{max-width:58.75rem;margin-right:auto;margin-left:auto;padding:0}}.latest-from-articles__wrapper{display:flex;flex-wrap:wrap;margin:0 -0.625rem;padding-bottom:2.1875rem}.latest-from-articles__wrapper .story-card{flex:0 1 calc(50% - 1.25rem);margin:0 0.625rem}@media (min-width: 768px){.latest-from-articles__wrapper .story-card{flex:1}}.latest-from-articles__wrapper .story-card .story-card__info{padding-bottom:1.5625rem}@media (min-width: 768px){.latest-from-articles__wrapper .story-card .story-card__info{padding-bottom:0}}.latest-from-articles__wrapper .story-card .story-card__heading,.latest-from-articles__wrapper .story-card .meta-data__time-stamp{color:#fff}@media (min-width: 768px){.latest-from-articles__wrapper .story-card.latest-from-articles-hero__section{flex-basis:100%}}@media (max-width: 767px){.latest-from-articles__wrapper article:last-child{display:none}}.latest-from-articles__wrapper .story-card__video-icon-wrapper,.latest-from-articles__wrapper .story-card__comment-icon-wrapper,.latest-from-articles__wrapper .story-card__comment-icon{fill:#fff}.input-radio-list .input-radio-item__label{display:flex;align-items:center;font-weight:400;font-size:1rem;line-height:1.5rem}.input-radio-list .input-radio-item__radio{width:1.25rem;height:1.25rem;margin:0.375rem 0.75rem 0.375rem 0}.queryly--search{display:flex !important;align-items:center;justify-content:center;min-width:2.25rem;height:2.25rem;margin-left:0.63rem;background:#303b3c 0% 0% no-repeat padding-box;border-radius:0.3125rem;cursor:pointer}.queryly--search__button{width:1.125rem;height:1.125rem;padding:0.5rem;border-radius:0.3125rem;cursor:pointer}.queryly--search__button:hover{opacity:0.8;transition:opacity 0.2s}@media (max-width: 575px){.queryly--search__button{width:1rem;height:1rem}}@media (max-width: 575px){.queryly--search{min-width:2rem;height:2rem}}.queryly_search_header__logo{position:relative;top:0.4375rem;width:9.0625rem;height:2.25rem}@media (max-width: 767px){.queryly_search_header__logo{width:5rem;height:1.25rem;margin-left:0.625rem}}.queryly_search_header__input-icon{position:absolute;top:2.2rem;left:15rem;z-index:99999;padding:0.4375rem}@media (max-width: 767px){.queryly_search_header__input-icon{top:0.5rem;left:5.9375rem}}.queryly_search_header__input-icon img{cursor:default;pointer-events:none}.queryly_search_header__filter-icon{float:left;width:1.25rem;height:1.25rem}.queryly_search_header__filter-text{margin-left:0.3125rem;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.story-result-header{margin-bottom:2rem;padding-bottom:0.625rem;border-bottom:0.03125rem solid #9e9f9f}.story-result-header__title{font-size:2rem}@media (max-width: 767px){.story-result-header__title{font-size:1.5rem}}.queryly_item_container{border-bottom:0.03125rem solid #9e9f9f}.queryly_item_container .story-card__label{font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:initial}.queryly_item_container .queryly_item_description{font-family:"Source Sans Pro","Helvetica",sans-serif}.queryly_item_container .story-card-type__premium::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:0.0625rem;background-color:#ecac0c;content:''}.shortcuts-widgest,.related-topics,.popular-search{padding:1.25rem;background:#dce1e2}.shortcuts-widgest{margin-top:2rem}.related_topics{padding-bottom:0}.article_description{display:flex;flex-flow:column wrap;justify-content:start}.article_description .story-card__kicker{margin-bottom:0.625rem;line-height:initial}.search-box__title_box{margin-bottom:1.25rem;padding:0.5rem;border-bottom:0.03125rem solid #9e9f9f}.search-box__title{display:inline-block;color:#313c3d;font-weight:500;font-size:1.5rem}.queryly-search{width:100%}.queryly-search button{cursor:pointer}.queryly-search__title{margin-bottom:3.125rem;padding-top:1.25rem;font-weight:500;border-bottom:0.03125rem solid #9e9f9f}@media (max-width: 767px){.queryly-search__title{display:none}}.queryly-search__title h2{font-size:2rem}.queryly-search__container{display:flex;justify-content:space-between;margin:0 auto;padding-bottom:1.25rem}.queryly-search__trigger-tracking{display:none}.queryly-search__filter-box{width:13.75rem;margin-right:1.875rem}.queryly-search__filter-box .queryly_advanced__filter{margin:1.125rem 0;padding:0.625rem 1.125rem;color:#fff;font-weight:400;font-size:0.875rem;background-color:#1e1e1e}.queryly-search__filter-box .queryly_advanced__filter.first-filter{margin-top:0}.queryly-search__filter-box .filter_item{margin-bottom:0.5rem;padding-left:0.625rem;color:#000;font-weight:400;font-size:0.875rem;line-height:1.125rem;cursor:pointer}.queryly-search__filter-box .filter_item a{color:#000}.queryly-search__filter-box .filter_date_range{background:#efefef;border:0.03125rem solid #5f5f5f}@media (min-width: 768px) and (max-width: 992px){.queryly-search__filter-box{width:11.25rem}}@media (max-width: 767px){.queryly-search__filter-box{display:none}}.queryly-search__result-box{width:100%}.queryly-search__result-box .queryly_advanced__results{display:flex;align-items:center;justify-content:space-between;margin-top:0;margin-bottom:1.5rem;padding-bottom:0.625rem;border-bottom:0.03125rem solid #9e9f9f}.queryly-search__result-box .filterbar{margin-left:1.25rem;padding:0.3125rem;font-weight:700;font-size:1.25rem}@media (max-width: 767px){.queryly-search__result-box .filterbar{display:none}}.queryly-search__result-box .filterbar select{padding:0.6875rem 0.75rem;font-weight:400;font-size:1rem;background-color:#fff;cursor:pointer}.queryly-search__result-box .filterbar select:focus-visible{outline:none;box-shadow:none}.queryly-search__result-box .result-text{color:#000;font-weight:700;font-size:1.25rem}@media (max-width: 767px){.queryly-search__result-box .result-text{font-size:1rem}}.queryly_advanced__date-filter input{width:12.5rem;margin:0.9375rem 0;padding:0.5rem;font-size:0.875rem}@media (min-width: 768px) and (max-width: 992px){.queryly_advanced__date-filter input{width:10rem}}.queryly_advanced__date-filter input.first{margin-bottom:0}.queryly_advanced__date-filter input:focus-visible{outline:none;box-shadow:none}.queryly_advanced__date-filter .filter_date_range{padding:0.375rem;color:#000;font-weight:700;font-size:1rem;text-transform:none}.queryly_advance_clear-filter{margin-bottom:0.625rem}.queryly_advance_clear-filter a{color:#000;font-size:0.875rem;line-height:0;cursor:pointer}.queryly_advance_clear-filter a::before{position:relative;top:0.0625rem;margin-right:0.3125rem;font-size:1.125rem;content:'\d7'}.queryly_advanced__input-form{padding-bottom:2.5rem}@media (max-width: 767px){.queryly_advanced__input-form{padding-bottom:1.5rem}}.queryly_advanced__search-box{display:flex;justify-content:flex-start}.queryly_advanced__search-box input{border:0.03125rem solid #313c3d;border-radius:0.1875rem 0 0 0.1875rem;border-top-right-radius:0;border-bottom-right-radius:0}.queryly_advanced__search-box input:focus-visible{outline:none;box-shadow:none}.queryly_advanced__search-box button{padding:0.625rem 2.8125rem;font-size:1.5rem;line-height:1rem;background-color:#1e1e1e}@media (max-width: 767px){.queryly_advanced__search-box button{padding:0.75rem 1rem;font-size:1rem}}.queryly_item_row{position:relative;width:100%;margin-bottom:0.75rem;padding-bottom:0.75rem;overflow:hidden;border-bottom:0.5px solid #9e9f9f}.queryly_item_row .queryly_advanced_item_imagecontainer{position:relative;width:12.5rem;height:7.25rem;margin-right:1.25rem;padding-bottom:0;overflow:hidden;background-position:50% 50%;background-size:cover}@media (max-width: 767px){.queryly_item_row .queryly_advanced_item_imagecontainer{width:8.25rem;height:5.5rem;margin-right:0.9375rem}}.queryly_item_row .queryly_item_title{margin-top:0;margin-bottom:0.375rem;overflow:hidden;color:#313c3d;font-weight:500;font-size:1.125rem;line-height:1.375rem}@media (max-width: 767px){.queryly_item_row .queryly_item_title{font-size:1rem}}.queryly_item_row .queryly_item_description{overflow:hidden;color:#5f5f5f;font-weight:400;font-size:0.875rem;line-height:1.3125rem}@media (max-width: 767px){.queryly_item_row .queryly_item_description{display:none}}.queryly_item_row .story-card-type__premium::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:0.0625rem;background-color:#ecac0c;content:''}.article-bigread__header{position:relative;width:100%;margin:0 auto;padding-top:calc(100vh - 4.0625rem)}@media (min-width: 576px){.article-bigread__header{padding-top:56.25%}}.article-bigread__header::after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.article-bigread__header.article-bigread--has-label::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:0.0625rem;background-color:#ecac0c;content:''}.article-bigread__header .article-bigread__label{position:absolute;top:0;right:0;z-index:1;padding:0.1875rem 0.3125rem;color:#313c3d;font-weight:600;font-size:0.75rem;text-transform:uppercase;background-color:#ecac0c;border-bottom-left-radius:0.4375rem}.article-bigread__header .article-bigread__info{position:absolute;right:0;bottom:0;left:0;z-index:2;max-width:58.75rem;margin:0 auto 1.25rem auto;padding:0 0.625rem}@media (max-width: 991px){.article-bigread__header .article-bigread__info{max-width:39.375rem}}.article-bigread__header .article-bigread__heading{margin-top:0.375rem;font-weight:400;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.07}@media (min-width: 576px){.article-bigread__header .article-bigread__heading{font-size:2.8125rem;line-height:3rem}}.article-bigread__header .article-bigread__heading__link{color:#fff}.article-bigread__header .article-bigread__kicker{margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.625rem;text-transform:uppercase}@media (max-width: 575px){.article-bigread__header .article-media__image{height:calc(100vh - 4.0625rem)}}@media (min-width: 576px){.article-bigread__header .article-media__caption{line-height:1.125rem}}.article-bigread__header+.article__action-bar{border-bottom:1px solid #dde2e3}.article-bigread__header .figure{position:absolute;top:0;width:100%}.article-bigread .article__action-bar{margin-right:0.625rem;margin-left:0.625rem;padding:0 0 0.625rem}@media (min-width: 576px){.article-bigread .article__action-bar{padding:0 0 1.25rem}}.article-bigread__wrapper{margin:0 0.625rem}.article-bigread .article__body{max-width:39.375rem;margin:0 auto;font-weight:400;border-top:none}.article-bigread .article__body p strong,.article-bigread .article__body p i{font-size:1.1875rem}@media (min-width: 576px){.article-bigread .article__body p{line-height:1.5rem}.article-bigread .article__body p strong,.article-bigread .article__body p i{font-size:1.0625rem;line-height:1.5rem}.article-bigread .article__body .article-media__caption{line-height:1.125rem}}.article-bigread .article__body .article__action-bar{margin-right:0;margin-left:0;padding:0.625rem 0}.article-bigread .wntRYUsu .ellipsis::after{content:'...'}.article-bigread .meta-data{margin-top:0.625rem;color:#d5d5d5}.article-bigread .gsiyZQgemWNsi{display:none;color:#fff;opacity:0}@media print{.article-bigread .article__body{max-width:none}.article-bigread .article-bigread__header::after{background-image:none}.article-bigread .article-bigread__header .article-bigread__info{position:static;max-width:none;margin:0}.article-bigread .article-bigread__heading__link{color:#1c2122}}@media (max-width: 575px){.main-brandinsight .article{margin:0;padding:0}.main-brandinsight .article .article__heading-caption{padding:0.625rem}.main-brandinsight .article .article__body{padding:0.625rem;font-weight:400}.main-brandinsight .article .article__body p strong,.main-brandinsight .article .article__body p i{font-size:1.1875rem}}@media (max-width: 575px) and (min-width: 576px){.main-brandinsight .article .article__body p{line-height:1.5rem}.main-brandinsight .article .article__body p strong,.main-brandinsight .article .article__body p i{font-size:1.0625rem;line-height:1.5rem}.main-brandinsight .article .article__body .article-media__caption{line-height:1.125rem}}.article-brandinsight__header-wrapper{width:100%}.article-brandinsight__header{position:relative;width:100%;margin:0 auto}@media (max-width: 575px){.article-brandinsight__header .article__heading-caption{padding:0 0.625rem}}.article-brandinsight__header .hero-wrapper{position:relative;margin-top:1.25rem;padding-top:56.25%}@media (max-width: 575px){.article-brandinsight__header .hero-wrapper.no-video{padding-top:106.42%}}.article-brandinsight__header .hero-wrapper.placeholder-image{overflow:hidden}.article-brandinsight__header .hero-wrapper .header__figure{margin-top:0}.article-brandinsight__header .hero-wrapper .article-media__image{position:absolute;top:0;left:0;width:100%;margin-top:0}.article-brandinsight__header .hero-wrapper .video-outer{position:absolute;top:0;width:100%;height:100%}.article-brandinsight__header--hero-video .article-brandinsight__info{position:relative}@media (max-width: 575px){.article-brandinsight__header--hero-video .article-brandinsight__info{padding:0 0.625rem}}@media (max-width: 575px){.article-brandinsight__header--hero-video .hero-container{padding:0 0.625rem}}.article-brandinsight__header--hero-image .article-brandinsight__info{position:absolute;right:0;bottom:1.6875rem;left:0;z-index:2;max-width:58.75rem;margin:0 auto 1.25rem auto;padding:0 0.625rem}@media (max-width: 991px){.article-brandinsight__header--hero-image .article-brandinsight__info{max-width:39.375rem}}.article-brandinsight__header--hero-image .article-brandinsight__heading__link{color:#fff}.article-brandinsight__header--hero-image::after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.article-brandinsight__heading{margin-top:0.375rem;font-weight:400;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.07}@media (min-width: 576px){.article-brandinsight__heading{font-size:2.8125rem;line-height:3rem}}.article-brandinsight__kicker{margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.625rem;text-transform:uppercase}@media (max-width: 575px){.article-brandinsight .article-media__image{height:calc(100vh - 4.0625rem)}}.article-brandinsight .meta-data{margin-top:0.625rem;color:#d5d5d5}@media print{.article-brandinsight__header--hero-video .article-brandinsight__heading__link{color:#1c2122}.article-brandinsight__header--hero-image .article-brandinsight__info{position:static;max-width:none;margin:0 0 1.25rem 0}.article-brandinsight__header--hero-image .article-brandinsight__heading__link{color:#1c2122}.article-brandinsight__header--hero-image::after{background-image:none}}.article-shorthand{background-color:transparent}.article-shorthand__header{position:relative}.article-shorthand__header.article-shorthand__header-premium{position:relative;border-top:0.0625rem solid #ecac0c}.article-shorthand__header.article-shorthand__header-premium::before{position:absolute;top:-0.0625rem;right:0;z-index:1;width:auto;height:auto;padding:0.1875rem 0.3125rem;color:#333;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1;background-color:#ecac0c;border-bottom-left-radius:0.4375rem;content:'PREMIUM'}.article-shorthand__heading{position:absolute;top:50%;left:50%;margin:0;color:#fff;font-weight:400;font-size:2.1875rem;font-kerning:normal;text-align:center;transform:translate(-50%, -50%)}@media (min-width: 576px){.article-shorthand__heading{max-width:58.75rem;font-size:3.1875rem}}.article-shorthand__figure{width:100%;height:calc(100vh - $header-height);margin:0}@media (min-width: 576px){.article-shorthand__figure{height:auto}}.article-shorthand__figure img{width:100%}.article-shorthand__shorthandcontent{position:relative}.article-shorthand__content{position:relative}.article-shorthand .article-offer__inner{box-sizing:content-box}.article-shorthand .article-offer p.article-offer__price{display:flex;align-items:flex-end;justify-content:center;margin-bottom:1.5rem;font-weight:700;font-size:3rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:3.75rem;letter-spacing:-0.0625rem}@media (max-width: 767px){.article-shorthand .article-offer p.article-offer__price{margin-bottom:1.6875rem}}.article-shorthand .article-offer__price-sign{position:relative;font-size:3rem;line-height:3.75rem;letter-spacing:-0.0625rem}.article-shorthand .article-offer a.article-offer__call-to-action{padding:0.5rem 3.75rem;color:#000;font-weight:600;font-size:1.125rem;background-color:#ecac0c;border-bottom:none;border-radius:0.25rem}@media (min-width: 576px){.article-shorthand .article-offer a.article-offer__call-to-action{padding:0.5rem 7rem}}.article-shorthand .article-offer a.article-offer__call-to-action:hover{color:#000;border-bottom:none}.article-shorthand .article-offer a.article-offer__call-to-action:visited{color:#000}.article-shorthand .article-offer a.article-offer__call-to-action:visited:hover,.article-shorthand .article-offer a.article-offer__call-to-action:visited:focus{color:#000}.article-shorthand .article-offer a{border-bottom:0}.article-shorthand .article-offer a:visited{color:inherit}.article-shorthand .article-offer p{margin:0 0 0.625rem}@media (min-width: 576px){.article-shorthand .article-offer--signed-in p.article-offer__action-bar-item{text-align:center}}@media (min-width: 576px){.article-shorthand .article-offer--signed-in a.article-offer__action-bar-item-link{display:inline-block;padding-left:0.1875rem}}.article-shorthand .wntRYUsu .ellipsis::after{content:'...'}.article-shorthand .gsiyZQgemWNsi{display:none;color:#fff;opacity:0}.article-shorthand .Theme-Caption .article-offer a,.article-shorthand .Theme-Layer-BodyText .article-offer a:not(.Theme-Layer-BodyText-Button),.article-shorthand .Theme-Layer-TextBlock-Inner .article-offer a{border-bottom:0}.article-shorthand .Theme-Footer .Theme-FooterTopLink,.article-shorthand .Theme-Footer .Theme-FooterLogo--container{color:#38a3d7}.article-shorthand .PositionSticky.HeaderBarContainer{height:4.0625rem}@media (max-width: 767px){.container--shorthand-page .breaking-news{z-index:104}}.container--shorthand-page .container--sidebar-is-active .nav-control-overlay{width:calc(100vw - 18.75rem)}@media (max-width: 767px){.container--shorthand-page .article-shorthand header,.container--shorthand-page .PositionSticky.HeaderBarContainer{z-index:100}.container--shorthand-page .Levels--header{z-index:100}}.container--shorthand-page .Levels--header{z-index:101}.container--shorthand-page .back-to-top{z-index:102}@media print{body.shorthand-embed-body{min-height:0 !important}.fusion-app--shorthand-page>.main{height:0;min-height:0}.article-shorthand{display:none;visibility:hidden}}.article-sidebar{margin-top:1.25rem}@media (min-width: 992px){.article-sidebar:first-child{margin-top:0}}@media (min-width: 992px){.article-sidebar{margin-top:0}}.article-sidebar__section{margin-top:1.875rem}.article-sidebar__section-heading{margin-top:0;margin-bottom:1.25rem;font-weight:300;font-size:1.875rem}.article-sidebar .ordered-list__item,.article-sidebar .ordered-list__item-link{font-size:0.875rem}.article-sidebar .ordered-list__item{padding-left:0}.article-sidebar .ordered-list__item-link{color:inherit}.article-sidebar .story-card,.article-sidebar .story-card--secondary{margin-bottom:0;padding-bottom:0.625rem}@media (max-width: 767px){.article-sidebar .story-card,.article-sidebar .story-card--secondary{margin-right:0;margin-left:0}}.article-sidebar .story-card:last-of-type,.article-sidebar .story-card--secondary:last-of-type{margin-bottom:0;border-bottom:none}.article-sidebar .story-card--headline,.article-sidebar .story-card--headline-image-small{border-bottom:1px solid #d5d5d5}.article-sidebar .story-card--has-label::before{top:-0.0625rem}.article-sidebar .story-card__label{top:-0.0625rem}.article-sidebar .ad{margin-top:1.25rem}.article-sidebar .ad.ad-native{margin-top:0}.article-sponsored__header-wrapper{width:100%}.article-sponsored__header{position:relative;width:100%;margin:0 auto}.article-sponsored__header .figure{margin-top:0}.article-sponsored__header .article-media__caption{display:none}.article-sponsored__header .hero-wrapper{position:relative;padding-top:56.25%}@media (max-width: 575px){.article-sponsored__header .hero-wrapper.no-video{margin-top:0;padding-top:106.42%}}.article-sponsored__header .hero-wrapper.placeholder-image{overflow:hidden}.article-sponsored__header .hero-wrapper .header__figure{margin-top:0}.article-sponsored__header .hero-wrapper .article-media__image{position:absolute;top:0;left:0;width:100%;margin-top:0}.article-sponsored__header .hero-wrapper .video-outer{position:absolute;top:0;width:100%;height:100%}.article-sponsored__header--hero-video .article-sponsored__info{position:relative;margin-bottom:0.625rem}.article-sponsored__header--hero-image .article-sponsored__info{position:absolute;right:0;bottom:3.125rem;left:0;z-index:2;max-width:35.9375rem;margin-left:1.875rem;padding:0 0.625rem}@media (max-width: 991px){.article-sponsored__header--hero-image .article-sponsored__info{bottom:1.6875rem;max-width:39.375rem;padding:0}}.article-sponsored__header--hero-image .article-sponsored__heading__link{color:#fff}.article-sponsored__header--hero-image::after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.article-sponsored__heading{margin-top:0.375rem;color:#111617;font-weight:400;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.07}@media (min-width: 576px){.article-sponsored__heading{font-size:2.8125rem;line-height:3rem}}.article-sponsored__kicker{margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.625rem;text-transform:uppercase}@media (max-width: 575px){.article-sponsored .article-media__image{height:calc(100vh - 4.0625rem)}}.article-sponsored .meta-data{margin-top:0.625rem;color:#d5d5d5}@media print{.article-sponsored__header--hero-video .article-sponsored__heading__link{color:#1c2122}.article-sponsored__header--hero-image .article-sponsored__info{position:static;max-width:none;margin:0 0 1.25rem 0}.article-sponsored__header--hero-image .article-sponsored__heading__link{color:#1c2122}.article-sponsored__header--hero-image::after{background-image:none}}.article-weather__header{padding:1.25rem}@media (max-width: 575px){.article-weather__header{margin:0 0.625rem;border-bottom:1px solid #d5d5d5}}@media (min-width: 576px){.article-weather__header{position:relative;padding:3.125rem 2.5rem 2.5rem;background-position:center center;background-size:cover}}@media (min-width: 1200px){.article-weather__header{padding:3.75rem 6.25rem 2.5rem}}@media (min-width: 576px){.article-weather__header::before{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 0%, rgba(18,22,23,0.8) 100%);content:''}}@media (min-width: 576px){.article-weather__header .article-weather__forecast{margin-top:2.5rem}}@media (min-width: 576px){.article-weather__header .article-weather__forecast--secondary{margin-top:0.625rem}}@media (min-width: 576px){.article-weather__header .day-forecast__temperature{color:#fff}}@media (min-width: 576px){.article-weather__header .day-forecast__temperature--secondary{color:#9e9f9f}}@media (min-width: 576px){.article-weather__header .day-forecast__description{color:#fff}}.article-weather__header-heading,.article-weather__header-time,.article-weather__header-temperature,.article-weather__header-link,.article-weather__header-description-list,.article-weather__forecast{position:relative}.article-weather__header-heading{margin-bottom:0;color:#313c3d;font-weight:700;font-size:2rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (min-width: 576px){.article-weather__header-heading{color:#fff}}.article-weather__header-time{color:#313c3d;font-weight:700;font-size:1.125rem}@media (min-width: 576px){.article-weather__header-time{color:#fff}}.article-weather__header-temperature{color:#313c3d;font-weight:500;font-size:3rem;font-family:"Stag","Georgia",serif;line-height:1}@media (min-width: 576px){.article-weather__header-temperature{color:#fff}}.article-weather__header-link{display:flex;align-items:center;justify-content:space-between;width:calc(100% - 1.25rem * 2);margin-top:1.25rem;padding:0.9375rem 1.25rem;color:#fff;font-size:1.0625rem;background-color:#38a3d7;border-radius:0.25rem}@media (min-width: 576px){.article-weather__header-link{width:calc((100% / 3 - 1.875rem * 2 / 3 - 1.25rem * 2) * 2);font-size:1.25rem}}@media (min-width: 768px){.article-weather__header-link{width:calc(100% / 3 - 1.875rem * 2 / 3 - 1.25rem * 2)}}.article-weather__header-location-icon{width:1.25rem;height:1.25rem}.article-weather__header-description-list{margin-top:1.5625rem;margin-bottom:0}@media (min-width: 576px){.article-weather__header-description-list{color:#fff}}.article-weather__header-description-list-item{margin-top:0.3125rem;font-size:1.0625rem}.article-weather__header-description-list-title,.article-weather__header-description-list-description{display:inline-block}.article-weather__header-description-list-title{font-weight:700}.article-weather__header-description-list-description{margin-left:0.1875rem}.article-weather__header-description-list-time{font-size:1.0625rem}@media (min-width: 576px){.article-weather__forecast{display:flex;flex-wrap:wrap;align-items:center}}.article-weather__locations{padding:1.875rem 1.875rem 0}@media (min-width: 576px){.article-weather__locations{padding:2.5rem 2.5rem 0}}@media (min-width: 1200px){.article-weather__locations{padding:2.5rem 6.25rem 0}}.article-weather__locations-heading{color:#4c585d}.article-weather .day-forecast{margin-top:1.875rem}@media (min-width: 576px){.article-weather .day-forecast{flex-basis:calc(100% / 3 - 1.875rem * 2 / 3)}}@media (min-width: 576px){.article-weather .day-forecast:not(:nth-of-type(3n+1)){margin-left:1.875rem}}.article-weather__body{padding:0 0.625rem 1.875rem}@media (min-width: 576px){.article-weather__body{padding:0 2.5rem 2.5rem}}@media (min-width: 992px){.article-weather__body{display:flex;flex-wrap:wrap}}@media (min-width: 1200px){.article-weather__body{padding:0 6.25rem 2.5rem}}.article-weather__branding{display:flex;align-items:center;margin-top:2.1875rem;padding-bottom:0.625rem;border-bottom:1px solid #dde2e3}@media (min-width: 576px){.article-weather__branding{flex-basis:100%}}.article-weather__branding+.article-weather__body-main{margin-top:1.5625rem}.article-weather__branding+.article-weather__body-main+.article-weather__body-sidebar{margin-top:1.5625rem}.article-weather__branding-icon{width:5.625rem;height:1.0625rem}@media (min-width: 576px){.article-weather__branding-icon{width:8.125rem;height:1.5625rem;padding-left:0.625rem}}.article-weather__branding-fine-text{margin:0 0.9375rem;color:#9e9f9f;font-size:0.75rem;line-height:1.25}.article-weather__branding-link{color:#9e9f9f;text-decoration:underline}.article-weather__body-main{margin-top:2.5rem}@media (min-width: 992px){.article-weather__body-main{flex-basis:calc(100% / 3 * 2 - 1.25rem / 2 - 0.625rem * 2);margin-top:3.75rem}}.article-weather__body-heading--secondary{font-weight:400;font-size:2.1875rem}.article-weather__body-subheading{margin-top:1.25rem;color:#313c3d;font-weight:600;font-size:1.0625rem}.article-weather__body-description{margin-top:0.1875rem;color:#313c3d;font-size:1.0625rem}.article-weather__body-time{color:#9e9f9f}.article-weather__body-image{margin-top:0.625rem}.article-weather__body-api-wrapper strong{display:block;padding-top:1.25rem;color:#4c585d;font-weight:600;font-size:1.0625rem;line-height:1.4}.article-weather__body-api-wrapper p{margin-top:0.3125rem;margin-bottom:0;padding-bottom:1.25rem;color:#313c3d;font-size:1.0625rem;line-height:1.4}.article-weather__body-api-wrapper p:not(:last-of-type){border-bottom:1px solid #d5d5d5}.article-weather__body-sidebar{margin-top:2.5rem}@media (min-width: 992px){.article-weather__body-sidebar{flex-basis:calc(100% / 3 - 1.25rem / 2);margin-top:3.75rem;margin-left:1.25rem}}.article-weather__body-sidebar .story-card,.article-weather__body-sidebar .story-card--secondary{margin-bottom:0;padding-top:0.3125rem;padding-bottom:0.625rem}@media (max-width: 767px){.article-weather__body-sidebar .story-card,.article-weather__body-sidebar .story-card--secondary{margin-right:0;margin-left:0}}.article-weather__body-sidebar .story-card:last-of-type,.article-weather__body-sidebar .story-card--secondary:last-of-type{margin-bottom:0;border-bottom:none}.article-weather__tides-heading{font-weight:300}.article-weather__tides-subheading{margin-top:1.25rem;color:#313c3d;font-size:1.0625rem}.article-weather__tides-description-list{margin-top:0.9375rem}.article-weather__tides-description-list-item{display:flex}.article-weather__tides-description-list-item:not(:first-of-type){margin-top:0.625rem}.article-weather__tides-description-list-description{margin-left:0.3125rem;padding-left:0}.article-weather__tides-description-list-time{padding-right:0.9375rem;font-size:1.0625rem}.article-weather__body-sidebar-section{margin-top:1.875rem}.article-weather__body-sidebar-section-heading{margin-top:0;margin-bottom:1.25rem;font-weight:300;font-size:1.875rem}.article-weather__body-sidebar-section-heading--weather-news{color:#38a3d7}.article{max-width:60rem;margin:0 auto;padding:1.25rem 0.625rem 0}@media (min-width: 992px){.article{display:flex;flex-wrap:wrap;align-items:stretch;padding:2.5rem 0 0}}.article .article__header-premium{position:relative;border-top:0.0625rem solid #ecac0c}@media (min-width: 576px){.article .article__header-premium{padding-top:0.625rem}}.article .article__header-premium::before{position:absolute;top:-0.0625rem;right:0;z-index:1;width:auto;height:auto;padding:0.1875rem 0.3125rem;color:#333;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1;background-color:#ecac0c;border-bottom-left-radius:0.4375rem;content:'PREMIUM'}.article .article__header-sponsored .article__kicker,.article .article__header-sponsored .article__subkicker-separator,.article .article__header-sponsored .article__subkicker{display:none}@media (max-width: 575px){.article .article__action-bar-simple{padding:0 0.625rem}}@media (max-width: 575px){.article .article__header-simple .article__header-info{padding:0 0.625rem}}@media (max-width: 575px){.article .article__header-simple .article__action-bar{padding:0 0.625rem}}@media (min-width: 992px){.article__main{flex-basis:calc(100% / 3 * 2 - 1.25rem / 2)}}@media (max-width: 991px){.article--sidebar-hidden .article-sidebar{display:none}}@media (max-width: 575px){.article--header-is-sponsored{margin:0;padding:0}}@media (max-width: 575px){.article--header-is-sponsored .article__heading-caption{padding-left:0.625rem}}@media (max-width: 575px){.article--header-is-sponsored .article-sponsored__header .figure{margin-top:0}}@media (max-width: 575px){.article--header-is-sponsored .article__body{padding:1.375rem 0.625rem 0}}@media (max-width: 575px){.article--header-has-image{margin:0;padding:0}}@media (max-width: 575px){.article--header-has-image .article__header{position:relative}}@media (max-width: 575px){.article--header-has-image .article__action-bar{padding-right:0.625rem;padding-left:0.625rem}}@media (max-width: 575px){.article--header-has-image .article__body{padding:1.375rem 0.625rem 0}}@media (max-width: 575px){.article--header-has-image .article__header-info{position:absolute;right:0;bottom:0;left:0;z-index:2;margin-bottom:1.25rem;padding-right:0.625rem;padding-left:0.625rem}.article--header-has-image .article__header-info .article__kicker,.article--header-has-image .article__header-info .article__subkicker,.article--header-has-image .article__header-info .article__subkicker-separator,.article--header-has-image .article__header-info .article__heading,.article--header-has-image .article__header-info .article__label-updated{color:#fff}.article--header-has-image .article__header-info .article__label-updated::before{background-color:#fff}}@media (max-width: 575px){.article--header-has-image .article__heading-caption{padding:0 0.625rem}}@media (max-width: 575px){.article--header-has-image .article__header .figure{margin-top:0}}@media (max-width: 575px){.article--header-has-image .article__header .figure::before,.article--header-has-image .header__figure::before{position:absolute;top:0;left:0;z-index:1;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}}.article .article__heading-caption{display:block;margin-top:0.3125rem;margin-bottom:0.625rem;color:#707c83;font-weight:400;font-size:0.875rem;line-height:1.6}@media (min-width: 576px){.article .article__heading-caption{line-height:1.125rem}}.article .article-media__caption.hero{display:none}@media (max-width: 575px){.article .article-sidebar{padding-right:0.625rem;padding-left:0.625rem}}@media (min-width: 992px){.article .article-sidebar{flex-basis:calc(100% / 3 - 1.25rem);margin-left:1.25rem}}.article__kicker{font-weight:700;font-size:0.8125rem;text-transform:uppercase}.article__subkicker{padding-left:0.125rem;font-weight:400;font-size:0.8125rem;text-transform:capitalize}.article__subkicker-separator{padding-left:0.125rem}.article__heading{color:#111617;font-weight:400;line-height:3rem}@media (max-width: 575px){.article__heading{margin-top:0.625rem;font-size:1.625rem;line-height:1.2}}@media (min-width: 576px){.article__heading{margin-top:1.25rem}}.article__label-updated{margin-left:0.625rem;font-size:0.8125rem}@media (max-width: 575px){.article .meta-data{font-weight:600}}@media (max-width: 575px){.article .meta-data__time-stamp{font-weight:600}}@media (max-width: 575px){.article .meta-data__read-time__icon{display:none}}.article .figure{margin-top:2rem;margin-bottom:2rem}.article__action-bar{margin-top:1.25rem;margin-bottom:1.0625rem}@media (min-width: 576px){.article__action-bar{display:flex;justify-content:space-between;margin-bottom:2rem}}.article__sponsored-action-bar,.article__brandinsight-action-bar{margin-top:1.25rem;margin-bottom:0.625rem}@media (max-width: 575px){.article__sponsored-action-bar,.article__brandinsight-action-bar{margin-top:0.625rem;padding-right:0.625rem;padding-left:0.625rem}}@media (min-width: 576px){.article__sponsored-action-bar,.article__brandinsight-action-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.25rem}}.article__body{padding-top:1.375rem;font-weight:400;border-top:1px solid #dde2e3}.article__body p{margin-bottom:1rem}.article__body p strong,.article__body p i{font-size:1.1875rem}@media (min-width: 576px){.article__body p{line-height:1.5rem}.article__body p strong,.article__body p i{font-size:1.0625rem;line-height:1.5rem}.article__body .article-media__caption{line-height:1.125rem}}.article .wntRYUsu .ellipsis::after{content:'...'}.article__subheading{margin-top:1.25rem;color:#313c3d;font-weight:400}.article__subheading--small{color:#000;font-family:inherit;text-transform:uppercase}.article__unordered-list,.article__ordered-list{margin-bottom:1.25rem;font-size:1.0625rem}.article__unordered_list,.article__order_list{margin-bottom:0.625rem}.article__unordered_list li,.article__order_list li{margin-top:0rem}.article__button{display:flex;align-items:center;justify-content:center;margin:1.25rem auto;padding:0.625rem 1rem;color:#fff;font-weight:700;font-size:0.875rem;text-align:center;text-transform:uppercase;border-radius:0.25rem}@media (min-width: 576px){.article__button{display:table}}.article__button--default{background-color:#0076b5}.article__oembed{display:flex;flex-direction:column;align-items:center}@media all and (-ms-high-contrast: active), (-ms-high-contrast: none){.article__oembed{display:inline}}.article__raw-html{padding:0.625rem 0}.article__raw-html__top{margin-top:0.3125rem;margin-bottom:1.25rem}.article__raw-html__bottom{margin-bottom:0.625rem}.article__blockquote{margin:1.25rem 0;padding:1.25rem 0;border-top-width:2px;border-top-style:solid;border-bottom-width:2px;border-bottom-style:solid}.article__blockquote p{font-weight:500;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.15}.article__blockquote p::before{display:inline-block;margin-right:0.3125rem;line-height:0;content:open-quote}.article__blockquote p::after{margin-left:0.3125rem;line-height:0;content:close-quote}.article__blockquote footer{color:#4c585d;font-weight:400;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.article__blockquote--default{border-color:#d5d5d5}.article__print-button{display:none}@media (min-width: 576px){.article__print-button{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;color:#fff;background-color:#4c585d;border-radius:0.25rem;cursor:pointer}}.article__print-button-icon{width:1.5rem;height:1.5rem}.article--horoscope .author{display:block}.article--horoscope__date{display:block}.article--photo-gallery .article__header{width:100%;border-bottom:1px solid #dde2e3}.article--photo-gallery .gallery{max-width:60rem;margin-top:0}.article--photo-gallery .gallery::before{display:none}.article--photo-gallery .gallery__caption{padding-bottom:0;border-bottom:none}.article--photo-gallery .slick-list{width:100%}.article--photo-gallery+.section-chain.section-chain--triple-image{margin-top:1.25rem}.article--photo-gallery+.section-chain--triple-image .section-chain__wrapper{width:100%;max-width:60rem}@media (min-width: 768px){.article--photo-gallery+.section-chain--triple-image .section-chain__wrapper article[class^='story-card'],.article--photo-gallery+.section-chain--triple-image .section-chain__wrapper .ad{flex-basis:calc(100% / 3 - 1.25rem * 2 / 3 - 0.0625rem / 3)}}.article__photo-gallery-caption{margin:1.25rem 0;color:#4c585d;font-size:0.9375rem}@media (min-width: 576px){.article__photo-gallery-caption{font-size:0.875rem}}@media (max-width: 991px){.article--video-gallery{display:flex;flex-direction:column}}@media (max-width: 991px){.article--video-gallery .article__main{order:1}}@media (max-width: 575px){.article--video-gallery .article__action-bar{padding:0.625rem 0 0}}.article--video-gallery .article__body{padding-top:0}@media (max-width: 575px){.article--video-gallery .article__body{margin-right:0;margin-left:0}}@media (max-width: 991px){.article--video-gallery .article-sidebar{order:3;margin-bottom:1.25rem}}@media (max-width: 991px){.article--video-gallery .figure{order:2}}@media (min-width: 992px){.article--video-gallery .figure{width:60rem;margin-bottom:1.25rem}}.article strong{margin-bottom:1.25rem;font-weight:700;font-size:1rem;line-height:1.6}.article strong a,.article strong strong{display:inline;font-weight:300}.article i{font-weight:700;line-height:1.6}.article .element-action-button{margin:0.625rem 0;border-top:1px solid #d5d5d5;border-bottom:1px solid #d5d5d5}@media (min-width: 576px){.article .element-action-button{padding:0 1.875rem}}.article .gsiyZQgemWNsi{display:none;color:#fff;opacity:0}.article .whisk-widget{margin:1.25rem 0}.article .whisk-widget iframe{display:block !important}.article .article__header-info--apo{position:initial;color:#111617}@media (min-width: 320px) and (max-width: 992px){.article .article__header-info--apo .article__heading{color:inherit}}.article__ad-wrapper{margin-top:1rem;margin-bottom:1rem}@media print{.article{padding:0}.article__main{flex-basis:100%}.article .article-sidebar,.article__action-bar .share-bar,.article__print-button{display:none}.article__header .article-media__image,.article__header .article-media__caption{display:block}.article__oembed{page-break-inside:avoid}.article__oembed iframe[src*='player.vimeo.com']{display:none}}.section-chain__header{margin-bottom:1.25rem;text-align:center}@media (min-width: 576px){.section-chain__header{margin-bottom:2.1875rem;text-align:left}}@media (min-width: 576px){.section-chain__header--has-branding{display:flex;align-items:center;justify-content:space-between}}@media (max-width: 575px){.section-chain__header--has-branding h2.section-chain__heading{display:none}}.section-chain--journalist-page .section-chain__wrapper{max-width:68.75rem}.section-chain--journalist-page .chain-main{flex-direction:column;padding-bottom:4.375rem}.section-chain--journalist-page .chain-main.anchors-link{padding-bottom:1.25rem}@media (min-width: 992px){.section-chain--journalist-page .chain-main{padding:0 3.25rem 2rem}}@media (max-width: 767px){.section-chain--journalist-page .chain-main{margin:0 1.25rem}}@media (min-width: 768px){.section-chain--journalist-page .chain-main.anchors-link{padding-bottom:0}}.section-chain--journalist-page .journalist-main-header{width:100%}.section-chain--journalist-page .journalist-page{display:flex;flex-wrap:wrap}.section-chain--journalist-page .journalist-page__header{margin-bottom:3.875rem;padding-bottom:1rem;color:#000;font-weight:500;font-size:1.875rem;font-family:"Stag","Georgia",serif;border-bottom:0.0625rem solid #dde2e3}@media (max-width: 767px){.section-chain--journalist-page .journalist-page__header{margin-bottom:2rem;padding-bottom:0.875rem;font-size:1.375rem}}.section-chain--journalist-page .journalist-page__header-featured{margin-right:0.25rem;font-weight:700}.section-chain--journalist-page .journalist-page__main{display:flex;flex-wrap:wrap;justify-content:space-between}.section-chain--journalist-page .journalist-page__main>.journalist-card{width:100%;margin-bottom:3.5625rem}@media (min-width: 768px){.section-chain--journalist-page .journalist-page__main>.journalist-card{margin-bottom:4.8125rem}}@media (min-width: 992px){.section-chain--journalist-page .journalist-page__main>.journalist-card{width:calc(50% - 2rem);margin-bottom:5.75rem}}@media (min-width: 1200px){.section-chain--journalist-page .journalist-page__main>.journalist-card{margin-bottom:6.5625rem}}.section-chain--journalist-page .journalist-page__main>.journalist-card .journalist-card__body-wrapper::after{position:absolute;bottom:-1.5rem;width:5.3125rem;border-top:0.0625rem solid #dde2e3;content:''}@media (min-width: 992px){.chain-main{display:flex;flex-basis:620px}}@media (min-width: 768px){.section-chain--hero-list .chain-main,.section-chain--hero-list-extra .chain-main,.section-chain--subhero .chain-main,.section-chain-with-native--subhero .chain-main,.section-chain-with-native--subheronew .chain-main,.section-chain--triple-image-with-ad .chain-main,.section-chain--hero-text-link .chain-main{display:flex;flex-wrap:wrap}}.section-chain--hero-list .chain-main article[class^='story-card'],.section-chain--hero-list-extra .chain-main article[class^='story-card'],.section-chain--subhero .chain-main article[class^='story-card'],.section-chain-with-native--subhero .chain-main article[class^='story-card'],.section-chain-with-native--subheronew .chain-main article[class^='story-card'],.section-chain--triple-image-with-ad .chain-main article[class^='story-card'],.section-chain--hero-text-link .chain-main article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2)}@media (min-width: 992px){.section-chain--hero-list .chain-main article[class^='story-card'],.section-chain--hero-list-extra .chain-main article[class^='story-card'],.section-chain--subhero .chain-main article[class^='story-card'],.section-chain-with-native--subhero .chain-main article[class^='story-card'],.section-chain-with-native--subheronew .chain-main article[class^='story-card'],.section-chain--triple-image-with-ad .chain-main article[class^='story-card'],.section-chain--hero-text-link .chain-main article[class^='story-card']{flex-basis:300px}}@media (max-width: 767px){.section-chain--hero-list .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--hero-list-extra .chain-main article[class^='story-card']:not(:first-of-type){margin-top:1.25rem}}@media (min-width: 768px){.section-chain--hero-list .chain-main article[class^='story-card']:nth-of-type(n+2),.section-chain--hero-list-extra .chain-main article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}}@media (max-width: 767px){.section-chain--hero-list-extra .chain-main article[class^='story-card'].story-card{margin-top:0}}@media (min-width: 768px){.section-chain--hero-list-extra .chain-main article[class^='story-card'].story-card:nth-of-type(n+6){margin-top:0}}.section-chain--hero-list .chain-main article[class^='story-card']:first-of-type,.section-chain--hero-list-extra .chain-main article[class^='story-card']:first-of-type,.section-chain--hero-text-link .chain-main article[class^='story-card']:first-of-type{flex-basis:100%}@media (min-width: 768px){.section-chain--hero-list .chain-main article[class^='story-card']:not(:first-of-type):nth-of-type(odd),.section-chain--hero-list-extra .chain-main article[class^='story-card']:not(:first-of-type):nth-of-type(odd),.section-chain--hero-text-link .chain-main article[class^='story-card']:not(:first-of-type):nth-of-type(odd){margin-left:1.25rem}}.section-chain--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subheronew .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--gallery-hero .chain-main article[class^='story-card']:not(:first-of-type){margin-top:1.25rem}@media (min-width: 768px){.section-chain--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subheronew .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--gallery-hero .chain-main article[class^='story-card']:not(:first-of-type){margin-top:0}}.section-chain--subhero .chain-main article[class^='story-card']:first-of-type,.section-chain-with-native--subhero .chain-main article[class^='story-card']:first-of-type,.section-chain-with-native--subheronew .chain-main article[class^='story-card']:first-of-type,.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:first-of-type,.section-chain--gallery-hero .chain-main article[class^='story-card']:first-of-type{margin-top:0}@media (min-width: 768px){.section-chain--subhero .chain-main article[class^='story-card']:nth-of-type(even),.section-chain-with-native--subhero .chain-main article[class^='story-card']:nth-of-type(even),.section-chain-with-native--subheronew .chain-main article[class^='story-card']:nth-of-type(even),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:nth-of-type(even),.section-chain--gallery-hero .chain-main article[class^='story-card']:nth-of-type(even){margin-left:1.25rem}}@media (min-width: 768px){.section-chain--subhero .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain-with-native--subhero .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain-with-native--subheronew .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain--gallery-hero .chain-main article[class^='story-card']:nth-of-type(n+3){margin-top:1.25rem}}@media (max-width: 991px){.section-chain--gallery-hero .chain-main{display:block}}@media (max-width: 767px){.section-chain--hero-text-link .chain-main article[class^='story-card']:nth-of-type(2){margin-top:0.625rem}}@media (min-width: 768px){.section-chain--hero-text-link .chain-main article[class^='story-card']:nth-of-type(n+2):nth-of-type(-n+3){margin-top:0.625rem}}.section-chain--hero-text-link .chain-main article[class^='story-card']:first-of-type{margin-top:0}.chain-sidebar{display:block}@media (min-width: 768px){.chain-sidebar{display:flex;flex-wrap:wrap}}@media (min-width: 992px){.chain-sidebar{display:block;flex-basis:300px}}.chain-sidebar .story-card:first-of-type:not(.story-card--has-label) .story-card__kicker-wrapper{padding-top:0}@media (min-width: 768px){.chain-sidebar .story-card{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2);padding-bottom:0.625rem}}@media (min-width: 768px){.chain-sidebar .story-card:nth-child(even){margin-left:1.25rem}}@media (min-width: 992px){.chain-sidebar .story-card:nth-child(even){margin-left:0}}.section-chain--hero-list .chain-sidebar{margin-top:1.25rem}@media (min-width: 992px){.section-chain--hero-list .chain-sidebar{margin-top:0}}@media (min-width: 768px){.section-chain--hero-list .chain-sidebar .story-card:first-child{padding-top:0.3125rem}}@media (min-width: 992px){.section-chain--hero-list .chain-sidebar .story-card:first-child{padding-top:0}}.section-chain--hero-list-extra .chain-sidebar{margin-top:0}.section-chain--subhero .chain-sidebar,.section-chain-with-native--subhero .chain-sidebar,.section-chain-with-native--subheronew .chain-sidebar,.section-chain--triple-image-with-ad .chain-sidebar,.section-chain--hero-text-link .chain-sidebar,.section-chain--gallery-hero .chain-sidebar{display:block;margin-top:1.25rem}@media (min-width: 992px){.section-chain--subhero .chain-sidebar,.section-chain-with-native--subhero .chain-sidebar,.section-chain-with-native--subheronew .chain-sidebar,.section-chain--triple-image-with-ad .chain-sidebar,.section-chain--hero-text-link .chain-sidebar,.section-chain--gallery-hero .chain-sidebar{margin-top:0}}.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left{display:-ms-grid;display:grid;grid-gap:10px;grid-template-areas:'main' 'sidebar' 'secondary'}@media (min-width: 768px){.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left{grid-gap:20px;-ms-grid-rows:auto 20px auto;grid-template-areas:'main main' 'secondary sidebar';-ms-grid-columns:1fr 20px 1fr;grid-template-columns:1fr 1fr}}@media (min-width: 992px){.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left{-ms-grid-rows:370px 20px auto;-ms-grid-columns:620px 20px 300px;grid-template:"main sidebar" 370px "secondary sidebar" auto/620px 300px}}.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar .chain-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left .chain-sidebar{margin-left:0}.section-chain--triple-hero-list .chain-main{-ms-grid-row:1;-ms-grid-column:1;grid-area:main}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main{display:flex;flex-wrap:wrap}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main>article{height:23.125rem}.section-chain--triple-hero-list .chain-main>article img{height:23.125rem}}.section-chain--triple-hero-list .chain-main article[class^='story-card']{flex-basis:100%}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2)}.section-chain--triple-hero-list .chain-main article[class^='story-card']:not(:first-of-type){margin-top:1.25rem}.section-chain--triple-hero-list .chain-main article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main article[class^='story-card']{flex-basis:300px}}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2);margin-left:1.25rem}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article{padding:0;border:0}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper{flex-basis:300px}}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']{margin-top:1.25rem}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']{margin-top:0}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']{height:10.9375rem}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card'] .story-card__content{height:100%}}.section-chain--triple-hero-list .chain-secondary{-ms-grid-row:5;-ms-grid-column:1;grid-area:secondary;align-content:start}@media (min-width: 768px){.section-chain--triple-hero-list .chain-secondary{display:flex;flex-wrap:wrap}}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']{flex-basis:100%}@media (max-width: 991px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:last-child{margin-top:0}}@media (max-width: 767px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(1){margin-top:1.25rem}}@media (min-width: 768px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']{margin-left:0}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']{flex-basis:300px}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(even){margin-left:1.25rem}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(n+3){margin-top:1.25rem}}.section-chain--triple-hero-list .chain-sidebar{-ms-grid-row:3;-ms-grid-column:1;grid-area:sidebar;align-content:start}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:3}.section-chain--triple-hero-list .chain-secondary{-ms-grid-row:3;-ms-grid-column:1}.section-chain--triple-hero-list .chain-sidebar{-ms-grid-row:3;-ms-grid-column:3}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.section-chain--triple-hero-list .chain-secondary{-ms-grid-row:3;-ms-grid-column:1}.section-chain--triple-hero-list .chain-sidebar{-ms-grid-row:1;-ms-grid-row-span:3;-ms-grid-column:3}}.section-chain--triple-hero-list .chain-sidebar div[class^='content']{margin-top:0.3125rem}@media (max-width: 767px){.section-chain--triple-hero-list .chain-sidebar div[class^='content']{margin:0.5rem 0.625rem 0;border-bottom:1px solid #d5d5d5}}@media (max-width: 767px){.section-chain--triple-hero-list .chain-sidebar div[class^='ad']{margin:0.625rem;padding-bottom:1.25rem;border-bottom:1px solid #d5d5d5}}@media (max-width: 767px){.section-chain--triple-hero-list .chain-sidebar:nth-of-type(1){margin-top:1.25rem}}.section-chain--triple-hero-list .chain-sidebar article[class^='story-card']{flex-basis:100%}@media (max-width: 575px){.section-chain--triple-hero-list .chain-sidebar article[class^='story-card']:first-of-type{margin-top:0}}@media (min-width: 768px){.section-chain--triple-hero-list .chain-sidebar article[class^='story-card']{margin-left:0}}.footer{margin:0 auto;padding:2.1875rem 2.5rem 3.125rem;font-family:"Stag Sans","Helvetica",sans-serif;background-color:#121617}@media (min-width: 992px){.footer{position:relative;display:flex;flex-wrap:wrap;width:calc(100% - 2.5rem * 2);padding:1.875rem 2.5rem}}@media (min-width: 992px){.footer{width:calc(100% - 5rem * 2);padding:3.75rem 5rem}}@media (max-width: 991px){.footer__logo-link{display:table;margin:0 auto 2.1875rem}}@media (min-width: 992px){.footer__logo-link{position:absolute;top:4.0625rem;right:5rem}}.footer__logo-icon{width:6.5rem;height:1.625rem}@media (min-width: 576px){.footer__navigation{display:flex;flex-wrap:wrap}}@media (min-width: 768px){.footer__navigation{flex-basis:calc(100% / 4 * 3)}}@media (min-width: 576px){.footer__navigation-inner{flex-basis:calc(100% / 3)}}.footer__navigation-link{display:table;margin-top:0.625rem;color:#fff;font-size:0.75rem;line-height:1.4}@media (min-width: 768px){.footer__navigation-link{flex-basis:calc(100% / 2);margin-top:0.3125rem}}.footer__copyright{display:flex;flex-direction:row;align-items:center;color:#dce1e2;font-size:0.625rem;text-align:center}.footer__copyright .shielded{margin-left:0.5rem}@media (max-width: 991px){.footer__copyright{justify-content:center;margin-top:2.8125rem}}@media (min-width: 992px){.footer__copyright{flex-basis:calc(100% / 4);align-self:flex-end;justify-content:flex-end;text-align:right}}@media print{.footer{display:none}}.header{position:fixed;top:0;left:0;z-index:3;display:flex;align-items:center;width:calc(100% - 0.625rem);height:4.0625rem;padding:0 0.625rem 0 0;box-shadow:0 0.1875rem 0.3125rem rgba(28,33,34,0.3)}@media (min-width: 576px){.header{position:static;flex-wrap:wrap;box-shadow:none}}.header--myaccount{width:100%;padding:0}.header--default{background-color:#121617}.header__navigation-wrapper{display:flex}.header__navigation-toggle-button{position:relative;z-index:40;width:3.125rem;height:3.125rem;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.header__navigation-toggle-button-inner,.header__navigation-toggle-button-inner::before,.header__navigation-toggle-button-inner::after{position:absolute;top:1.4375rem;left:0.875rem;width:1.375rem;height:0.1875rem;background-color:#fff;transition-duration:0.2s;transition-property:none}@media (min-width: 576px){.header__navigation-toggle-button-inner,.header__navigation-toggle-button-inner::before,.header__navigation-toggle-button-inner::after{transition-duration:0.3s}}.header__navigation-toggle-button-inner::before,.header__navigation-toggle-button-inner::after{content:''}.header__navigation-toggle-button-inner::before{top:-0.4375rem;left:0}.header__navigation-toggle-button-inner::after{top:0.4375rem;left:0}.header__logo{display:flex;align-items:center;margin:0 auto 0 0.75rem}@media (min-width: 576px){.header__logo{margin-left:0.9375rem}}.header__home-link,.header__logo-link{display:flex;align-items:center;color:#fff}.header__home-link:hover,.header__home-link:focus,.header__logo-link:hover,.header__logo-link:focus{opacity:1}.header__home-link{width:3.125rem;height:3.125rem;background-color:#000}.header__logo-link{margin-left:0}.header__logo-image{width:2.0625rem;height:2.25rem;margin:auto}@media (max-width: 575px){.header__logo-image{max-width:9.375rem}}.header__logo-image--bay-of-plenty-times{width:16.25rem;height:2rem}.header__logo-image--waikato-news{width:15rem;height:2.1875rem}.header__logo-image--hawkes-bay-today{width:10.5625rem;height:2.1875rem}.header__logo-image--horowhenua-chronicle{width:9.8125rem;height:2.1875rem}.header__logo-image--kapiti-news{width:9.5625rem;height:2.1875rem}.header__logo-image--manawatu-guardian{width:12.375rem;height:2.1875rem}.header__logo-image--northern-advocate{width:13rem;height:2.1875rem}.header__logo-image--northland-age{width:16.25rem;height:2.0625rem}.header__logo-image--rotorua-daily-post{width:16.25rem;height:1.6875rem}.header__logo-image--stratford-press{width:8.8125rem;height:2.1875rem}.header__logo-image--te-awamutu-courier{width:10.9375rem;height:2.1875rem}.header__logo-image--aucklander{width:15.875rem;height:2.1875rem}.header__logo-image--whanganui-chronicle{width:16.25rem;height:1.6875rem}.header__logo-image--trailblazers{width:14.4375rem;height:2.5rem}.header__logo-image--the-vision-is-clear{width:16.25rem;height:2.8125rem}.header__logo-image--the-country{width:15.0625rem;height:2.1875rem}.header__logo-image--eatwell{width:8.8125rem;height:2.25rem}.header__logo-text{font-weight:300;font-size:1.625rem;font-family:"Stag","Georgia",serif}.header__center-logo-link{display:none;margin-right:0.5rem}@media (min-width: 992px){.header__center-logo-link{display:block}}.header__center-logo-icon{width:1.625rem;height:2.25rem}.header__next-section-link{display:none}@media (min-width: 576px){.header__next-section-link{display:flex;align-items:center;color:#fff;font-weight:400;font-size:0.75rem;text-align:right}}.header__next-section-link-category{display:block;font-size:1rem;font-family:"Stag","Georgia",serif;text-align:left}.header__next-section-link-chevron{width:1.5625rem;height:1.5625rem;margin-left:0.625rem;padding:calc(0.3125rem / 2);background-color:rgba(158,159,159,0.3);border-radius:50%}.header__search{position:relative;display:none;margin-left:0.625rem}@media (min-width: 576px){.header__search{display:flex;align-items:center;justify-content:center}}.header__search-input{position:absolute;top:0.125rem;right:2.25rem;box-sizing:border-box;width:0rem;height:2rem;padding-left:0.625rem;color:#fff;font-weight:300;font-size:0.875rem;border:0;opacity:0;transition:width 0.1s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}.header__search-input::-moz-placeholder{color:#fff}.header__search-input:-ms-input-placeholder{color:#fff}.header__search-input::placeholder{color:#fff}.header__search-submit{width:2.25rem;height:2.25rem;padding:0.625rem;color:#fff;border-style:solid;border-width:1px;border-radius:0.125rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.header__search-submit:hover{border-color:#fff}.header__search-icon{width:0.875rem;height:0.875rem;margin:auto}.header__search-is-active .header__search-input{width:12.5rem;opacity:1}.header__search-is-active .header__search-submit{border-color:#fff}.header__sub-btn{display:inline-block;margin:0 auto 1.25rem;padding:0.5rem 0.75rem;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-align:center;text-decoration:none;vertical-align:middle;background-color:#ecac0d;border:0.0625rem solid #ecac0d;border-radius:0.25rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;height:2.25rem;margin:0.625rem 0 0.625rem 0.625rem;color:#000;line-height:1;text-transform:uppercase;border-radius:0.125rem}.header__sub-btn:hover{background-color:#d49b0b;border-color:#d49b0b}@media (max-width: 767px){.header__sub-btn{display:none}}.header__close-btn{display:flex;align-items:center;justify-content:center;width:50px;height:50px;color:#fff;background-color:#38a3d7}.header__close-btn-icon{width:1.875rem;height:1.875rem}.login-state__link{display:flex;align-items:center;justify-content:center;min-width:2.25rem;height:2.25rem;margin-left:0.63rem;background:#303b3c 0% 0% no-repeat padding-box;border-radius:1.5rem}.login-state__link--signed-in{cursor:pointer}@media (min-width: 576px){.login-state__link--signed-in{width:auto;padding-right:1rem;padding-left:1rem}}.login-state__link--cmp{cursor:auto}.login-state__link--not-signed-in-wrapper{padding-right:1rem;padding-left:1rem}.login-state__link--not-signed-in-icon{display:none}@media (min-width: 834px){.login-state__link--not-signed-in-icon{display:block;margin-right:0.5rem}}.login-state__link--not-signed-in-text{display:inline-block;color:#fff;font-weight:600;font-size:0.75rem;font-family:'Source Sans Pro', ui-sans-serif, system-ui;line-height:16;letter-spacing:0}.login-state__image{width:0.75rem;height:0.75rem;fill:#fff}.login-state__image--signed-in{display:none;fill:#38a3d7}@media (min-width: 576px){.login-state__image--signed-in{display:block}}.login-state__image--blank-user{display:block}.login-state__image--premium{fill:#ecac0d}.login-state__user-name{color:#fff;letter-spacing:0}.login-state__user-name--desktop{display:none}@media (min-width: 576px){.login-state__user-name--desktop{display:inline;padding-left:0.5rem;font-weight:600;font-size:0.875rem}}.login-state__user-name--mobile{display:inline-block;color:#38a3d7;font-weight:700;font-size:1rem}@media (min-width: 576px){.login-state__user-name--mobile{display:none}}.login-state__user-name--mobile-blank-user{display:none}.login-state__user-name--mobile-premium{color:#ecac0d}@media (min-width: 576px){.fusion-app--myaccount-page .header{position:relative;max-width:1100px;margin:0 auto}}.fusion-app--myaccount-page .header__logo{width:auto;margin-right:auto}.container--sidebar-is-active .header__navigation-toggle-button-inner{background-color:transparent}.container--sidebar-is-active .header__navigation-toggle-button-inner::before,.container--sidebar-is-active .header__navigation-toggle-button-inner::after{top:0;transition-property:all}.container--sidebar-is-active .header__navigation-toggle-button-inner::before{transform:rotate(135deg)}.container--sidebar-is-active .header__navigation-toggle-button-inner::after{transform:rotate(225deg)}@media print{.header{display:none}}.section__logo-image{height:2.25rem}.section-bushtelegraph-news-bg-color{background-color:#006c32 !important}.section-chbmail-news-bg-color{background-color:#f03c36 !important}.section-hastingsleader-news-bg-color{background-color:#00a158 !important}.section-hcpost-news-bg-color{background-color:#204c96 !important}.section-napiercourier-news-bg-color{background-color:#009dd0 !important}.section-rotweekender-news-bg-color{background-color:#001553 !important}.section-taupoherald-news-bg-color{background-color:#275aa9 !important}.section-tepuketimes-news-bg-color{background-color:#356d1f !important}.section-wanganuimidweek-news-bg-color{background-color:#004a3b !important}.section-katikatiadvertiser-news-bg-color{background-color:#62a646 !important}.moon-phases{display:flex;flex-wrap:wrap;padding:1.25rem 0.625rem 2.5rem;background-color:#42555b}@media (min-width: 576px){.moon-phases{padding:1.25rem 1.25rem 2.5rem}}.moon-phases__heading{flex-basis:100%;color:#fff;font-weight:300;text-align:center}.moon-phases .moon{flex-basis:calc(100% / 2);margin-top:1.875rem}@media (min-width: 768px){.moon-phases .moon{flex-basis:calc(100% / 4)}}.container--myaccount-v2-page .font-size-xxl,.container--myprofile-v2-page .font-size-xxl,.container--customer-management-page .font-size-xxl{font-size:2.625rem;line-height:3.25rem}.container--myaccount-v2-page .font-size-xl,.container--myprofile-v2-page .font-size-xl,.container--customer-management-page .font-size-xl,.container--myaccount-v2-page .activate-form__heading,.container--myprofile-v2-page .activate-form__heading,.container--customer-management-page .activate-form__heading,.my-benefits .heading-center__title,.e-editions-page .heading-center__title{font-size:1.875rem;line-height:2.375rem}.container--myaccount-v2-page .font-size-lg,.container--myprofile-v2-page .font-size-lg,.container--customer-management-page .font-size-lg,.container--myaccount-v2-page .content-card__heading,.container--myprofile-v2-page .content-card__heading,.container--customer-management-page .content-card__heading,.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__title,.container--customer-management-page .payment-details-edit__heading,.heading-section__top,.welcome-header__greeting,.special-offer__price-subs-name,.my-benefits .block-section__title,.e-editions-page .block-section__title,.cancellation-faq__heading,.cancellation-confirmation__heading,.container--customer-management-page .cancellation-subscription__heading{font-size:1.5rem;line-height:1.875rem}.pagination__item,.container--myaccount-v2-page .font-size-md,.container--myprofile-v2-page .font-size-md,.container--customer-management-page .font-size-md,.container--myaccount-v2-page .sub-heading,.container--myprofile-v2-page .sub-heading,.container--customer-management-page .sub-heading,.container--myaccount-v2-page .input-field__input,.container--myprofile-v2-page .input-field__input,.container--customer-management-page .input-field__input,.container--myaccount-v2-page .input-field__label,.container--myprofile-v2-page .input-field__label,.container--customer-management-page .input-field__label,.container--myaccount-v2-page .form-button--submit,.container--myprofile-v2-page .form-button--submit,.container--customer-management-page .form-button--submit,.container--myaccount-v2-page .select-field__select,.container--myaccount-v2-page .select-field__select--selected,.container--myprofile-v2-page .select-field__select,.container--myprofile-v2-page .select-field__select--selected,.container--customer-management-page .select-field__select,.container--customer-management-page .select-field__select--selected,.container--myaccount-v2-page .select-field__option-item,.container--myprofile-v2-page .select-field__option-item,.container--customer-management-page .select-field__option-item,.container--myaccount-v2-page .select-field2__select,.container--myaccount-v2-page .select-field2__select--selected,.container--myprofile-v2-page .select-field2__select,.container--myprofile-v2-page .select-field2__select--selected,.container--customer-management-page .select-field2__select,.container--customer-management-page .select-field2__select--selected,.container--myaccount-v2-page .select-field2__option,.container--myprofile-v2-page .select-field2__option,.container--customer-management-page .select-field2__option,.container--myaccount-v2-page .form-button,.container--myprofile-v2-page .form-button,.container--customer-management-page .form-button,.container--myaccount-v2-page .social-button,.container--myprofile-v2-page .social-button,.container--customer-management-page .social-button,.container--myaccount-v2-page .newsletter-filters-button__text,.container--myprofile-v2-page .newsletter-filters-button__text,.container--customer-management-page .newsletter-filters-button__text,.container--myaccount-v2-page .newsletter-card__title,.container--myprofile-v2-page .newsletter-card__title,.container--customer-management-page .newsletter-card__title,.container--myaccount-v2-page .activate-form__description,.container--myprofile-v2-page .activate-form__description,.container--customer-management-page .activate-form__description,.container--myaccount-v2-page .subs-hyperlink-card,.container--myprofile-v2-page .subs-hyperlink-card,.container--customer-management-page .subs-hyperlink-card,.container--myaccount-v2-page .subs-card__description,.container--myprofile-v2-page .subs-card__description,.container--customer-management-page .subs-card__description,.container--myaccount-v2-page .subs-black-banner__sub-title,.container--myprofile-v2-page .subs-black-banner__sub-title,.container--customer-management-page .subs-black-banner__sub-title,.modal--reauthenticate.container--myaccount-v2-page .forgot-password,.container--myaccount-v2-page .gift-offers .subs-card__description p,.container--customer-management-page .button--link,.transaction-item__description--mobile,.transaction-item__second-line,.transaction-item__payment-method-text--mobile,.welcome-header__text,.sidebar-profile__help,.sidebar-profile__today-paper,.sidebar-profile-button__text,.my-details__password-hidden,.my-details__marketing-checkbox .checkbox__label,.my-saved-articles__page-info-footer,.my-benefits .heading-center__text,.e-editions-page .heading-center__text,.my-benefits .block-section:nth-child(3) .block-section__text,.e-editions-page .block-section:nth-child(3) .block-section__text,.my-subscriptions__upgrade-offers .subs-card-upgrade__description,.cancellation-subscription__offers .subs-card-upgrade__description,.e-editions-page__heading .welcome-header__text,.container--customer-management-page .cancellation-subscription__description{font-size:1rem;line-height:1.25rem}.login-v2 .login-form__password-reset-link,.container--myaccount-v2-page .font-size-sm,.container--myprofile-v2-page .font-size-sm,.container--customer-management-page .font-size-sm,.container--myaccount-v2-page .subscriber-benefit,.container--myprofile-v2-page .subscriber-benefit,.container--customer-management-page .subscriber-benefit,.container--myaccount-v2-page .newsletter-card__description,.container--myprofile-v2-page .newsletter-card__description,.container--customer-management-page .newsletter-card__description,.container--myaccount-v2-page .help-desk,.container--myprofile-v2-page .help-desk,.container--customer-management-page .help-desk,.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__incorrect-password,.container--customer-management-page .typography-content,.container--customer-management-page .social-account__label,.container--customer-management-page .social-account__title,.container--customer-management-page__title,.transaction-item__view-invoice--mobile,.transaction-history td,.user-subscription__text,.my-newsletter-section__newsletters-state-message,.redeem-code__sub-text,.my-subscriptions__text,.my-saved-articles__sub-heading,.my-saved-articles__page-info,.special-offer__attributes-text p,.my-benefits .block-section__text,.e-editions-page .block-section__text,.subs-upgrade .payment-info>p,.e-editions-page .heading-center__text{font-size:0.875rem;line-height:1.125rem}.pagination,.container--myaccount-v2-page .font-size-xs,.container--myprofile-v2-page .font-size-xs,.container--customer-management-page .font-size-xs,.container--myaccount-v2-page .input-field-with-label__label,.container--myprofile-v2-page .input-field-with-label__label,.container--customer-management-page .input-field-with-label__label,.container--myaccount-v2-page .select-field.select-field--separate-label .input-field__label,.container--myaccount-v2-page .select-field2.select-field--separate-label .input-field__label,.container--myaccount-v2-page .date-select-field.date-select-field--separate-label .input-field__label,.container--myprofile-v2-page .select-field.select-field--separate-label .input-field__label,.container--myprofile-v2-page .select-field2.select-field--separate-label .input-field__label,.container--myprofile-v2-page .date-select-field.date-select-field--separate-label .input-field__label,.container--customer-management-page .select-field.select-field--separate-label .input-field__label,.container--customer-management-page .select-field2.select-field--separate-label .input-field__label,.container--customer-management-page .date-select-field.date-select-field--separate-label .input-field__label,.container--myaccount-v2-page .newsletter-card__subTitle,.container--myprofile-v2-page .newsletter-card__subTitle,.container--customer-management-page .newsletter-card__subTitle,.container--myaccount-v2-page .newsletter-card__premium,.container--myprofile-v2-page .newsletter-card__premium,.container--customer-management-page .newsletter-card__premium,.container--myaccount-v2-page .newsletter-footer__description,.container--myprofile-v2-page .newsletter-footer__description,.container--customer-management-page .newsletter-footer__description,.container--myaccount-v2-page .subs-card__label,.container--myprofile-v2-page .subs-card__label,.container--customer-management-page .subs-card__label,.container--myaccount-v2-page .subs-card__time,.container--myprofile-v2-page .subs-card__time,.container--customer-management-page .subs-card__time,.container--myaccount-v2-page .offer-card .price__extra,.container--myaccount-v2-page .offer-card .price__description,.container--myaccount-v2-page .your-offer__label,.container--myaccount-v2-page .your-offer__change-offer,.container--customer-management-page .typography-title,.container--customer-management-page .payment-details-edit__header,.container--customer-management-page .my-details-page__description,.transaction-item__payment-method-text,.transaction-item__view-invoice,.transaction-history th,.my-newsletter-section__subheading,.my-subscriptions h4,.my-subscriptions__subtitle,.my-benefits .block-section__link,.e-editions-page .block-section__link,.my-subscriptions__upgrade-offers .subs-card-upgrade__label,.cancellation-subscription__offers .subs-card-upgrade__label,.my-subscriptions__upgrade-offers .subs-card-upgrade__time,.cancellation-subscription__offers .subs-card-upgrade__time,.subs-upgrade .order-detail__title,.subs-upgrade .order-detail__val,.subs-upgrade .offer-card .price__extra,.subs-upgrade .offer-card .price__description,.e-editions-page__name,.cancellation-faq__download-text{font-size:0.75rem;line-height:0.9375rem}.pagination,.gift-offer-section .gift-offer-header__title,.container--customer-management-page .textarea__input,.container--myaccount-v2-page .textarea__input,.container--help-and-support-page .textarea__input,.container--customer-management-page .textarea__label,.container--myaccount-v2-page .textarea__label,.container--help-and-support-page .textarea__label,.container--customer-management-page .textarea__show,.container--myaccount-v2-page .textarea__show,.container--help-and-support-page .textarea__show,.container--customer-management-page .textarea__error,.container--myaccount-v2-page .textarea__error,.container--help-and-support-page .textarea__error,.container--myaccount-v2-page .font-primary,.container--myprofile-v2-page .font-primary,.container--customer-management-page .font-primary,.container--myaccount-v2-page .sub-heading,.container--myprofile-v2-page .sub-heading,.container--customer-management-page .sub-heading,.container--myaccount-v2-page .input-field__input,.container--myprofile-v2-page .input-field__input,.container--customer-management-page .input-field__input,.container--myaccount-v2-page .input-field__label,.container--myprofile-v2-page .input-field__label,.container--customer-management-page .input-field__label,.container--myaccount-v2-page .input-field__show,.container--myprofile-v2-page .input-field__show,.container--customer-management-page .input-field__show,.container--myaccount-v2-page .input-field__error,.container--myprofile-v2-page .input-field__error,.container--customer-management-page .input-field__error,.container--myaccount-v2-page .checkbox__label,.container--myprofile-v2-page .checkbox__label,.container--customer-management-page .checkbox__label,.container--myaccount-v2-page .form-button--submit,.container--myprofile-v2-page .form-button--submit,.container--customer-management-page .form-button--submit,.container--myaccount-v2-page .subscriber-benefit,.container--myprofile-v2-page .subscriber-benefit,.container--customer-management-page .subscriber-benefit,.container--myaccount-v2-page .email-view__edit,.container--myprofile-v2-page .email-view__edit,.container--customer-management-page .email-view__edit,.container--myaccount-v2-page .registration-success__message-text,.container--myprofile-v2-page .registration-success__message-text,.container--customer-management-page .registration-success__message-text,.container--myaccount-v2-page .password-validation,.container--myprofile-v2-page .password-validation,.container--customer-management-page .password-validation,.container--myaccount-v2-page .password-strength,.container--myprofile-v2-page .password-strength,.container--customer-management-page .password-strength,.container--myaccount-v2-page .form-error,.container--myprofile-v2-page .form-error,.container--customer-management-page .form-error,.container--myaccount-v2-page .select-field__select,.container--myaccount-v2-page .select-field__select--selected,.container--myprofile-v2-page .select-field__select,.container--myprofile-v2-page .select-field__select--selected,.container--customer-management-page .select-field__select,.container--customer-management-page .select-field__select--selected,.container--myaccount-v2-page .select-field__option-list,.container--myprofile-v2-page .select-field__option-list,.container--customer-management-page .select-field__option-list,.container--myaccount-v2-page .select-field2__select,.container--myaccount-v2-page .select-field2__select--selected,.container--myprofile-v2-page .select-field2__select,.container--myprofile-v2-page .select-field2__select--selected,.container--customer-management-page .select-field2__select,.container--customer-management-page .select-field2__select--selected,.container--myaccount-v2-page .form-button,.container--myprofile-v2-page .form-button,.container--customer-management-page .form-button,.container--myaccount-v2-page .social-button,.container--myprofile-v2-page .social-button,.container--customer-management-page .social-button,.container--myaccount-v2-page .radio-item__content,.container--myprofile-v2-page .radio-item__content,.container--customer-management-page .radio-item__content,.container--myaccount-v2-page .newsletter-filters-button__text,.container--myprofile-v2-page .newsletter-filters-button__text,.container--customer-management-page .newsletter-filters-button__text,.container--myaccount-v2-page .newsletter-filter__text,.container--myprofile-v2-page .newsletter-filter__text,.container--customer-management-page .newsletter-filter__text,.container--myaccount-v2-page .help-desk,.container--myprofile-v2-page .help-desk,.container--customer-management-page .help-desk,.container--myaccount-v2-page .subs-card__title,.container--myprofile-v2-page .subs-card__title,.container--customer-management-page .subs-card__title,.container--myaccount-v2-page .offers__heading__subtext,.container--myprofile-v2-page .offers__heading__subtext,.container--customer-management-page .offers__heading__subtext,.container--myaccount-v2-page .offer-card__title,.sidebar-profile-button__text,.my-subscriptions__upgrade-offers .subs-card-upgrade__title,.cancellation-subscription__offers .subs-card-upgrade__title,.subs-upgrade-header h1,.subs-upgrade .offer-card__title{font-family:"Source Sans Pro","Helvetica",sans-serif}.container--myaccount-v2-page .font-secondary,.container--myprofile-v2-page .font-secondary,.container--customer-management-page .font-secondary,.container--myaccount-v2-page .heading,.container--myprofile-v2-page .heading,.container--customer-management-page .heading,.container--myaccount-v2-page .registration-success__heading,.container--myprofile-v2-page .registration-success__heading,.container--customer-management-page .registration-success__heading,.container--myaccount-v2-page .subs-steps__title,.container--myprofile-v2-page .subs-steps__title,.container--customer-management-page .subs-steps__title,.container--myaccount-v2-page .subs-black-banner__title,.container--myprofile-v2-page .subs-black-banner__title,.container--customer-management-page .subs-black-banner__title,.container--myaccount-v2-page .offers__title,.container--myprofile-v2-page .offers__title,.container--customer-management-page .offers__title,.container--customer-management-page .payment-details-edit__heading,.special-offer__price-subs-name,.cancellation-faq__heading,.cancellation-confirmation__heading,.container--customer-management-page .cancellation-subscription__heading{font-family:"Stag","Georgia",serif}.container--myaccount-v2-page .font-weight-light,.container--myprofile-v2-page .font-weight-light,.container--customer-management-page .font-weight-light,.container--myaccount-v2-page .checkbox__label,.container--myprofile-v2-page .checkbox__label,.container--customer-management-page .checkbox__label{font-weight:300}.pagination,.container--myaccount-v2-page .font-weight-regular,.container--myprofile-v2-page .font-weight-regular,.container--customer-management-page .font-weight-regular,.container--myaccount-v2-page .select-field__option-item,.container--myprofile-v2-page .select-field__option-item,.container--customer-management-page .select-field__option-item,.container--myaccount-v2-page .select-field2__option,.container--myprofile-v2-page .select-field2__option,.container--customer-management-page .select-field2__option,.container--myaccount-v2-page .newsletter-card__description,.container--myprofile-v2-page .newsletter-card__description,.container--customer-management-page .newsletter-card__description,.container--myaccount-v2-page .activate-form__description,.container--myprofile-v2-page .activate-form__description,.container--customer-management-page .activate-form__description,.container--myaccount-v2-page .feedback__content,.container--myprofile-v2-page .feedback__content,.container--customer-management-page .feedback__content,.container--myaccount-v2-page .subs-steps__form-confirmation .price__extra,.container--myprofile-v2-page .subs-steps__form-confirmation .price__extra,.container--customer-management-page .subs-steps__form-confirmation .price__extra,.modal--reauthenticate.container--myaccount-v2-page .forgot-password,.fusion-app.fusion-app--customer-management-page .header__logo-text,.container--customer-management-page .typography-content,.container--customer-management-page .my-details-page__description,.transaction-item__second-line,.transaction-history td,.sidebar-profile__child-item,.sidebar-profile__help,.sidebar-profile__today-paper,.my-newsletter-section__newsletters-state-message,.confirmation-modal--my-details-notification .confirm-modal__body,.confirmation-modal--my-details-notification .confirm-modal__footer,.my-details__marketing-checkbox .checkbox__label,.my-saved-articles__sub-heading,.my-saved-articles__page-info,.subs-upgrade .order-details-section,.cancellation-faq__contents,.cancellation-confirmation{font-weight:400}.gift-offer-section .gift-offer-header__title,.container--customer-management-page .textarea__input,.container--myaccount-v2-page .textarea__input,.container--help-and-support-page .textarea__input,.container--customer-management-page .textarea__label,.container--myaccount-v2-page .textarea__label,.container--help-and-support-page .textarea__label,.container--myaccount-v2-page .font-weight-medium,.container--myprofile-v2-page .font-weight-medium,.container--customer-management-page .font-weight-medium,.container--myaccount-v2-page .sub-heading,.container--myprofile-v2-page .sub-heading,.container--customer-management-page .sub-heading,.container--myaccount-v2-page .input-field__input,.container--myprofile-v2-page .input-field__input,.container--customer-management-page .input-field__input,.container--myaccount-v2-page .input-field__label,.container--myprofile-v2-page .input-field__label,.container--customer-management-page .input-field__label,.container--myaccount-v2-page .registration-success__heading,.container--myprofile-v2-page .registration-success__heading,.container--customer-management-page .registration-success__heading,.container--myaccount-v2-page .select-field__select,.container--myaccount-v2-page .select-field__select--selected,.container--myprofile-v2-page .select-field__select,.container--myprofile-v2-page .select-field__select--selected,.container--customer-management-page .select-field__select,.container--customer-management-page .select-field__select--selected,.container--myaccount-v2-page .select-field2__select,.container--myaccount-v2-page .select-field2__select--selected,.container--myprofile-v2-page .select-field2__select,.container--myprofile-v2-page .select-field2__select--selected,.container--customer-management-page .select-field2__select,.container--customer-management-page .select-field2__select--selected{font-weight:500}.container--customer-management-page .textarea__show,.container--myaccount-v2-page .textarea__show,.container--help-and-support-page .textarea__show,.container--myaccount-v2-page .font-weight-semibold,.container--myprofile-v2-page .font-weight-semibold,.container--customer-management-page .font-weight-semibold,.container--myaccount-v2-page .heading,.container--myprofile-v2-page .heading,.container--customer-management-page .heading,.container--myaccount-v2-page .input-field__show,.container--myprofile-v2-page .input-field__show,.container--customer-management-page .input-field__show,.container--myaccount-v2-page .form-button--submit,.container--myprofile-v2-page .form-button--submit,.container--customer-management-page .form-button--submit,.container--myaccount-v2-page .subscriber-benefit,.container--myprofile-v2-page .subscriber-benefit,.container--customer-management-page .subscriber-benefit,.container--myaccount-v2-page .email-view__edit,.container--myprofile-v2-page .email-view__edit,.container--customer-management-page .email-view__edit,.container--myaccount-v2-page .password-strength,.container--myprofile-v2-page .password-strength,.container--customer-management-page .password-strength,.container--myaccount-v2-page .form-error,.container--myprofile-v2-page .form-error,.container--customer-management-page .form-error,.container--myaccount-v2-page .form-button,.container--myprofile-v2-page .form-button,.container--customer-management-page .form-button,.container--myaccount-v2-page .social-button,.container--myprofile-v2-page .social-button,.container--customer-management-page .social-button,.container--myaccount-v2-page .radio-item__content,.container--myprofile-v2-page .radio-item__content,.container--customer-management-page .radio-item__content,.container--myaccount-v2-page .newsletter-filters-button__text,.container--myprofile-v2-page .newsletter-filters-button__text,.container--customer-management-page .newsletter-filters-button__text,.container--myaccount-v2-page .newsletter-filter__text,.container--myprofile-v2-page .newsletter-filter__text,.container--customer-management-page .newsletter-filter__text,.container--myaccount-v2-page .newsletter-card__title,.container--myprofile-v2-page .newsletter-card__title,.container--customer-management-page .newsletter-card__title,.container--myaccount-v2-page .content-card__heading,.container--myprofile-v2-page .content-card__heading,.container--customer-management-page .content-card__heading,.container--myaccount-v2-page .activate-form__heading,.container--myprofile-v2-page .activate-form__heading,.container--customer-management-page .activate-form__heading,.container--myaccount-v2-page .feedback--success,.container--myprofile-v2-page .feedback--success,.container--customer-management-page .feedback--success,.container--myaccount-v2-page .subs-steps__title,.container--myprofile-v2-page .subs-steps__title,.container--customer-management-page .subs-steps__title,.container--myaccount-v2-page .subs-steps-confirmation .sub-heading,.container--myprofile-v2-page .subs-steps-confirmation .sub-heading,.container--customer-management-page .subs-steps-confirmation .sub-heading,.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__info p,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__info p,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__info p,.container--myaccount-v2-page .subs-hyperlink-card,.container--myprofile-v2-page .subs-hyperlink-card,.container--customer-management-page .subs-hyperlink-card,.container--myaccount-v2-page .subs-card__description,.container--myprofile-v2-page .subs-card__description,.container--customer-management-page .subs-card__description,.container--myaccount-v2-page .subs-card__time,.container--myprofile-v2-page .subs-card__time,.container--customer-management-page .subs-card__time,.container--myaccount-v2-page .subs-black-banner__title,.container--myprofile-v2-page .subs-black-banner__title,.container--customer-management-page .subs-black-banner__title,.container--myaccount-v2-page .subs-black-banner__sub-title,.container--myprofile-v2-page .subs-black-banner__sub-title,.container--customer-management-page .subs-black-banner__sub-title,.container--myaccount-v2-page .offers__heading__title,.container--myprofile-v2-page .offers__heading__title,.container--customer-management-page .offers__heading__title,.container--myaccount-v2-page .offers__heading__subtext,.container--myprofile-v2-page .offers__heading__subtext,.container--customer-management-page .offers__heading__subtext,.container--myaccount-v2-page .offers__benefits__title,.container--myprofile-v2-page .offers__benefits__title,.container--customer-management-page .offers__benefits__title,.container--myaccount-v2-page .offer-card .price__extra,.container--myaccount-v2-page .offer-card .price__description,.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__title,.container--customer-management-page .payment-details-edit__heading,.transaction-item__description--mobile,.sidebar-profile-button__text,.my-benefits .heading-center,.e-editions-page .heading-center,.my-benefits .heading-center__title,.e-editions-page .heading-center__title,.my-benefits .block-section__title,.e-editions-page .block-section__title,.my-benefits .block-section__text,.e-editions-page .block-section__text,.my-subscriptions__upgrade-offers .subs-card-upgrade__description,.cancellation-subscription__offers .subs-card-upgrade__description,.my-subscriptions__upgrade-offers .subs-card-upgrade__time,.cancellation-subscription__offers .subs-card-upgrade__time,.subs-upgrade .product-label,.subs-upgrade .product-label>p,.subs-upgrade .rate-period,.subs-upgrade .subs-upgrade-confirmation-view .sub-heading,.subs-upgrade .offer-card .price__extra,.subs-upgrade .offer-card .price__description,.e-editions-page__heading .welcome-header__text,.cancellation-faq__heading,.cancellation-confirmation__heading,.cancellation-confirmation__message,.container--customer-management-page .cancellation-subscription__heading,.container--customer-management-page .cancellation-subscription__description{font-weight:600}.container--myaccount-v2-page .font-weight-bold,.container--myprofile-v2-page .font-weight-bold,.container--customer-management-page .font-weight-bold,.container--myaccount-v2-page .input-field__error,.container--myprofile-v2-page .input-field__error,.container--customer-management-page .input-field__error,.container--myaccount-v2-page .newsletter-card__subTitle,.container--myprofile-v2-page .newsletter-card__subTitle,.container--customer-management-page .newsletter-card__subTitle,.container--myaccount-v2-page .newsletter-card__premium,.container--myprofile-v2-page .newsletter-card__premium,.container--customer-management-page .newsletter-card__premium,.container--myaccount-v2-page .subs-card__label,.container--myprofile-v2-page .subs-card__label,.container--customer-management-page .subs-card__label,.container--myaccount-v2-page .subs-card__title,.container--myprofile-v2-page .subs-card__title,.container--customer-management-page .subs-card__title,.container--myaccount-v2-page .subs-card__price,.container--myprofile-v2-page .subs-card__price,.container--customer-management-page .subs-card__price,.container--myaccount-v2-page .offer-card__title,.container--myaccount-v2-page .offer-card .price__big,.container--myaccount-v2-page .offer-card .price__currency,.container--myaccount-v2-page .your-offer__change-offer,.container--customer-management-page .typography-content--bold,.container--customer-management-page .social-account__label,.container--customer-management-page .button--link,.heading-section__top,.sidebar-profile__item,.special-offer__btn-subcribe-now,.my-subscriptions__upgrade-offers .subs-card-upgrade__label,.cancellation-subscription__offers .subs-card-upgrade__label,.my-subscriptions__upgrade-offers .subs-card-upgrade__title,.cancellation-subscription__offers .subs-card-upgrade__title,.my-subscriptions__upgrade-offers .subs-card-upgrade__price,.cancellation-subscription__offers .subs-card-upgrade__price,.subs-upgrade-header h1,.subs-upgrade .product-name,.subs-upgrade .price-val,.subs-upgrade .order-detail__val.order-detail__bold,.subs-upgrade .offer-card__title,.subs-upgrade .offer-card .price__big,.subs-upgrade .offer-card .price__currency{font-weight:700}.container--myaccount-v2-page .input-field-with-label__label,.container--myprofile-v2-page .input-field-with-label__label,.container--customer-management-page .input-field-with-label__label,.container--myaccount-v2-page .select-field.select-field--separate-label .input-field__label,.container--myaccount-v2-page .select-field2.select-field--separate-label .input-field__label,.container--myaccount-v2-page .date-select-field.date-select-field--separate-label .input-field__label,.container--myprofile-v2-page .select-field.select-field--separate-label .input-field__label,.container--myprofile-v2-page .select-field2.select-field--separate-label .input-field__label,.container--myprofile-v2-page .date-select-field.date-select-field--separate-label .input-field__label,.container--customer-management-page .select-field.select-field--separate-label .input-field__label,.container--customer-management-page .select-field2.select-field--separate-label .input-field__label,.container--customer-management-page .date-select-field.date-select-field--separate-label .input-field__label,.container--myaccount-v2-page .subs-steps__content--title,.container--myprofile-v2-page .subs-steps__content--title,.container--customer-management-page .subs-steps__content--title,.container--myaccount-v2-page .your-order__total,.container--myprofile-v2-page .your-order__total,.container--customer-management-page .your-order__total,.container--myaccount-v2-page .your-order label,.container--myprofile-v2-page .your-order label,.container--customer-management-page .your-order label,.container--myaccount-v2-page .payment-method h4,.container--myprofile-v2-page .payment-method h4,.container--customer-management-page .payment-method h4,.container--customer-management-page .typography-title,.container--customer-management-page .payment-details-edit__header,.transaction-item__view-invoice,.transaction-history th,.my-newsletter-section__subheading,.subs-upgrade .order-detail__title,.subs-upgrade .subs-upgrade-confirmation-view .pre-heading,.subs-upgrade .offer-card::before,.e-editions-page__name,.cancellation-faq__download-text{font-weight:900}.container--myaccount-v2-page .message-modal,.container--myprofile-v2-page .message-modal,.container--customer-management-page .message-modal,.container--myaccount-v2-page .confirm-modal,.container--myprofile-v2-page .confirm-modal,.container--customer-management-page .confirm-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:110;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.4);opacity:0;transition:all 0.2s ease-in-out;pointer-events:none}.container--myaccount-v2-page .font-color-primary,.container--myprofile-v2-page .font-color-primary,.container--customer-management-page .font-color-primary{color:#111617}.container--myaccount-v2-page .font-color-secondary,.container--myprofile-v2-page .font-color-secondary,.container--customer-management-page .font-color-secondary{color:#8a8f96}.container--myaccount-v2-page .text-center,.container--myprofile-v2-page .text-center,.container--customer-management-page .text-center{text-align:center}.container--myaccount-v2-page .heading,.container--myprofile-v2-page .heading,.container--customer-management-page .heading{width:100%;margin-top:0;margin-bottom:0;color:#111617;font-size:1.375rem;line-height:1.6875rem;text-align:center}@media (min-width: 768px){.container--myaccount-v2-page .heading,.container--myprofile-v2-page .heading,.container--customer-management-page .heading{font-size:1.5rem;line-height:1.875rem}}.container--myaccount-v2-page .sub-heading,.container--myprofile-v2-page .sub-heading,.container--customer-management-page .sub-heading{color:#111617;text-align:center}@media (min-width: 576px){.container--myaccount-v2-page .main--full-bg,.container--myprofile-v2-page .main--full-bg,.container--customer-management-page .main--full-bg{background-image:url(/pf/resources/dist/images/registration--bg.png?d=484);background-repeat:no-repeat;background-size:cover}}.container--myaccount-v2-page .input-field,.container--myprofile-v2-page .input-field,.container--customer-management-page .input-field{position:relative}.container--myaccount-v2-page .input-field__input,.container--myprofile-v2-page .input-field__input,.container--customer-management-page .input-field__input{box-sizing:border-box;width:100%;height:3.25rem;padding:1.25rem 1rem 0.5625rem;color:#111617;background-color:#f1f3f4;border:0.0625rem solid #f1f3f4;border-radius:0.1875rem}.container--myaccount-v2-page .input-field__input:focus,.container--myprofile-v2-page .input-field__input:focus,.container--customer-management-page .input-field__input:focus{background-color:#fff;border:0.0625rem solid #bfc5c6;outline:none}.container--myaccount-v2-page .input-field__input:disabled,.container--myaccount-v2-page .input-field__input:disabled+.input-field__label,.container--myprofile-v2-page .input-field__input:disabled,.container--myprofile-v2-page .input-field__input:disabled+.input-field__label,.container--customer-management-page .input-field__input:disabled,.container--customer-management-page .input-field__input:disabled+.input-field__label{opacity:0.4}.container--myaccount-v2-page .input-field__input--password::-ms-reveal,.container--myaccount-v2-page .input-field__input--password::-ms-clear,.container--myprofile-v2-page .input-field__input--password::-ms-reveal,.container--myprofile-v2-page .input-field__input--password::-ms-clear,.container--customer-management-page .input-field__input--password::-ms-reveal,.container--customer-management-page .input-field__input--password::-ms-clear{display:none}.container--myaccount-v2-page .input-field__input--error,.container--myaccount-v2-page .input-field__input--error:focus,.container--myprofile-v2-page .input-field__input--error,.container--myprofile-v2-page .input-field__input--error:focus,.container--customer-management-page .input-field__input--error,.container--customer-management-page .input-field__input--error:focus{background-color:#fef9f6;border-color:#c13615}.container--myaccount-v2-page .input-field__input--child-error,.container--myprofile-v2-page .input-field__input--child-error,.container--customer-management-page .input-field__input--child-error{border-color:#fef9f6}.container--myaccount-v2-page .input-field__label,.container--myprofile-v2-page .input-field__label,.container--customer-management-page .input-field__label{position:absolute;top:1rem;left:1rem;z-index:1;color:#727579;text-transform:none;cursor:text;transition:0.2s ease-in-out}.container--myaccount-v2-page .input-field__label--with-value,.container--myaccount-v2-page .container--customer-management-page .textarea__input:focus+.input-field__label,.container--myaccount-v2-page .textarea__input:focus+.input-field__label,.container--myaccount-v2-page .container--help-and-support-page .textarea__input:focus+.input-field__label,.container--myaccount-v2-page .input-field__input:focus+.input-field__label,.container--myaccount-v2-page .input-field__input:-webkit-autofill+.input-field__label,.container--myaccount-v2-page .container--myprofile-v2-page .input-field__input:focus+.input-field__label,.container--myaccount-v2-page .container--myprofile-v2-page .input-field__input:-webkit-autofill+.input-field__label,.container--myaccount-v2-page .container--customer-management-page .input-field__input:focus+.input-field__label,.container--myaccount-v2-page .container--customer-management-page .input-field__input:-webkit-autofill+.input-field__label,.container--myprofile-v2-page .input-field__label--with-value,.container--myprofile-v2-page .container--customer-management-page .textarea__input:focus+.input-field__label,.container--customer-management-page .container--myprofile-v2-page .textarea__input:focus+.input-field__label,.container--myprofile-v2-page .container--myaccount-v2-page .textarea__input:focus+.input-field__label,.container--myaccount-v2-page .container--myprofile-v2-page .textarea__input:focus+.input-field__label,.container--myprofile-v2-page .container--help-and-support-page .textarea__input:focus+.input-field__label,.container--help-and-support-page .container--myprofile-v2-page .textarea__input:focus+.input-field__label,.container--myprofile-v2-page .container--myaccount-v2-page .input-field__input:focus+.input-field__label,.container--myprofile-v2-page .container--myaccount-v2-page .input-field__input:-webkit-autofill+.input-field__label,.container--myprofile-v2-page .input-field__input:focus+.input-field__label,.container--myprofile-v2-page .input-field__input:-webkit-autofill+.input-field__label,.container--myprofile-v2-page .container--customer-management-page .input-field__input:focus+.input-field__label,.container--myprofile-v2-page .container--customer-management-page .input-field__input:-webkit-autofill+.input-field__label,.container--customer-management-page .input-field__label--with-value,.container--customer-management-page .textarea__input:focus+.input-field__label,.container--customer-management-page .container--myaccount-v2-page .textarea__input:focus+.input-field__label,.container--customer-management-page .container--help-and-support-page .textarea__input:focus+.input-field__label,.container--customer-management-page .container--myaccount-v2-page .input-field__input:focus+.input-field__label,.container--customer-management-page .container--myaccount-v2-page .input-field__input:-webkit-autofill+.input-field__label,.container--customer-management-page .container--myprofile-v2-page .input-field__input:focus+.input-field__label,.container--customer-management-page .container--myprofile-v2-page .input-field__input:-webkit-autofill+.input-field__label,.container--customer-management-page .input-field__input:focus+.input-field__label,.container--customer-management-page .input-field__input:-webkit-autofill+.input-field__label{top:0.1875rem;left:1rem;font-size:0.75rem}.container--myaccount-v2-page .input-field__label--error,.container--myprofile-v2-page .input-field__label--error,.container--customer-management-page .input-field__label--error{color:#c13615}.container--myaccount-v2-page .input-field__show,.container--myprofile-v2-page .input-field__show,.container--customer-management-page .input-field__show{position:absolute;top:1.1875rem;right:1.625rem;font-size:0.8125rem;cursor:pointer}.container--myaccount-v2-page .input-field__show--error,.container--myprofile-v2-page .input-field__show--error,.container--customer-management-page .input-field__show--error{color:#c13615}.container--myaccount-v2-page .input-field__error,.container--myprofile-v2-page .input-field__error,.container--customer-management-page .input-field__error{margin-top:0.5rem;margin-bottom:0;color:#c13615;font-size:0.875rem}.container--myaccount-v2-page .input-field--label-overlay .input-field__label,.container--myprofile-v2-page .input-field--label-overlay .input-field__label,.container--customer-management-page .input-field--label-overlay .input-field__label{min-width:5.9375rem;padding-bottom:0.625rem;background-color:#f1f3f4}.container--myaccount-v2-page .input-field--label-overlay .input-field__label--error,.container--myprofile-v2-page .input-field--label-overlay .input-field__label--error,.container--customer-management-page .input-field--label-overlay .input-field__label--error{background-color:#fef9f6}.container--myaccount-v2-page .input-field--date .input-field__input,.container--myprofile-v2-page .input-field--date .input-field__input,.container--customer-management-page .input-field--date .input-field__input{padding:1.25rem 1rem 0.5625rem 0.875rem;-webkit-appearance:none}.container--myaccount-v2-page .input-field--date .input-field__input::-webkit-calendar-picker-indicator,.container--myprofile-v2-page .input-field--date .input-field__input::-webkit-calendar-picker-indicator,.container--customer-management-page .input-field--date .input-field__input::-webkit-calendar-picker-indicator{position:relative;top:-0.3125rem}.container--myaccount-v2-page .input-field--date .input-field__input::-webkit-date-and-time-value,.container--myprofile-v2-page .input-field--date .input-field__input::-webkit-date-and-time-value,.container--customer-management-page .input-field--date .input-field__input::-webkit-date-and-time-value{width:100%;text-align:left}.container--myaccount-v2-page .input-field-with-label .input-field__input,.container--myprofile-v2-page .input-field-with-label .input-field__input,.container--customer-management-page .input-field-with-label .input-field__input{padding:1rem;background-color:#fff}.container--myaccount-v2-page .input-field-with-label__label,.container--myprofile-v2-page .input-field-with-label__label,.container--customer-management-page .input-field-with-label__label{display:block;margin-bottom:0.5rem;text-transform:uppercase;overflow-wrap:break-word}.container--myaccount-v2-page .checkbox,.container--myprofile-v2-page .checkbox,.container--customer-management-page .checkbox{display:flex}.container--myaccount-v2-page .checkbox__input,.container--myprofile-v2-page .checkbox__input,.container--customer-management-page .checkbox__input{position:relative;flex-shrink:0;width:1.1875rem;height:1.1875rem;margin-right:0.5rem;border:0.0625rem solid #bcbcbc;border-radius:0.1875rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.container--myaccount-v2-page .checkbox__input[disabled],.container--myprofile-v2-page .checkbox__input[disabled],.container--customer-management-page .checkbox__input[disabled]{cursor:inherit;opacity:0.35}.container--myaccount-v2-page .checkbox__input::after,.container--myprofile-v2-page .checkbox__input::after,.container--customer-management-page .checkbox__input::after{position:absolute;top:0.25rem;left:0.125rem;display:none;width:0.8125rem;height:0.5625rem;background:url(/pf/resources/dist/fonts/check-rounded.svg?d=484);background-repeat:no-repeat;background-size:0.8125rem 0.5625rem;content:''}.container--myaccount-v2-page .checkbox__input:checked,.container--myprofile-v2-page .checkbox__input:checked,.container--customer-management-page .checkbox__input:checked{background-color:#38a3d7;border-color:#38a3d7}.container--myaccount-v2-page .checkbox__input:checked::after,.container--myprofile-v2-page .checkbox__input:checked::after,.container--customer-management-page .checkbox__input:checked::after{display:block}.container--myaccount-v2-page .checkbox__label,.container--myprofile-v2-page .checkbox__label,.container--customer-management-page .checkbox__label{color:#8a8f96;font-size:0.875rem;line-height:1.125rem;cursor:pointer}.container--myaccount-v2-page .checkbox.disabled .checkbox__label,.container--myprofile-v2-page .checkbox.disabled .checkbox__label,.container--customer-management-page .checkbox.disabled .checkbox__label{cursor:inherit}.container--myaccount-v2-page .form-button--submit,.container--myprofile-v2-page .form-button--submit,.container--customer-management-page .form-button--submit{width:100%;height:3.25rem;color:#fff;background-color:#38a3d7;border:none;border-radius:0.1875rem;cursor:pointer}.container--myaccount-v2-page .form-button--submit:hover,.container--myaccount-v2-page .form-button--submit:active,.container--myprofile-v2-page .form-button--submit:hover,.container--myprofile-v2-page .form-button--submit:active,.container--customer-management-page .form-button--submit:hover,.container--customer-management-page .form-button--submit:active{background-color:#228fc4}.container--myaccount-v2-page .subscriber-benefit,.container--myprofile-v2-page .subscriber-benefit,.container--customer-management-page .subscriber-benefit{display:flex;padding:1.5rem 0}.container--myaccount-v2-page .subscriber-benefit__container,.container--myprofile-v2-page .subscriber-benefit__container,.container--customer-management-page .subscriber-benefit__container{display:flex;flex-flow:column wrap;align-items:center;justify-content:space-between;margin:1.25rem 0 2.5rem;padding:0 0.5rem}@media (min-width: 576px){.container--myaccount-v2-page .subscriber-benefit__container,.container--myprofile-v2-page .subscriber-benefit__container,.container--customer-management-page .subscriber-benefit__container{height:15.625rem}}@media (min-width: 768px){.container--myaccount-v2-page .subscriber-benefit__container,.container--myprofile-v2-page .subscriber-benefit__container,.container--customer-management-page .subscriber-benefit__container{padding:0 4rem}}@media (min-width: 992px){.container--myaccount-v2-page .subscriber-benefit__container,.container--myprofile-v2-page .subscriber-benefit__container,.container--customer-management-page .subscriber-benefit__container{width:100%;height:10rem;padding:0 2rem}}.container--myaccount-v2-page .subscriber-benefit__item,.container--myprofile-v2-page .subscriber-benefit__item,.container--customer-management-page .subscriber-benefit__item{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:3.75rem;margin-bottom:1rem}@media (min-width: 576px){.container--myaccount-v2-page .subscriber-benefit__item,.container--myprofile-v2-page .subscriber-benefit__item,.container--customer-management-page .subscriber-benefit__item{width:50%}}@media (min-width: 992px){.container--myaccount-v2-page .subscriber-benefit__item,.container--myprofile-v2-page .subscriber-benefit__item,.container--customer-management-page .subscriber-benefit__item{width:33%}}.container--myaccount-v2-page .subscriber-benefit__icon,.container--myprofile-v2-page .subscriber-benefit__icon,.container--customer-management-page .subscriber-benefit__icon{display:flex}.container--myaccount-v2-page .subscriber-benefit__svg-icon__container,.container--myprofile-v2-page .subscriber-benefit__svg-icon__container,.container--customer-management-page .subscriber-benefit__svg-icon__container{height:0.875rem;margin:auto;padding:0.875rem;background:#f8f9fa;border-radius:50%}.container--myaccount-v2-page .subscriber-benefit__svg-icon,.container--myprofile-v2-page .subscriber-benefit__svg-icon,.container--customer-management-page .subscriber-benefit__svg-icon{width:0.875rem;min-width:0.875rem;height:0.875rem;margin:auto}.container--myaccount-v2-page .subscriber-benefit__text,.container--myprofile-v2-page .subscriber-benefit__text,.container--customer-management-page .subscriber-benefit__text{box-sizing:border-box;width:90%;padding:0 0 0 2rem}@media (min-width: 576px){.container--myaccount-v2-page .subscriber-benefit__text,.container--myprofile-v2-page .subscriber-benefit__text,.container--customer-management-page .subscriber-benefit__text{padding:0 1.5rem}}.container--myaccount-v2-page .subscriber-benefit__link,.container--myprofile-v2-page .subscriber-benefit__link,.container--customer-management-page .subscriber-benefit__link{color:#000;text-decoration:underline}.container--myaccount-v2-page .email-view,.container--myprofile-v2-page .email-view,.container--customer-management-page .email-view{position:relative;display:flex;align-items:center;height:3.125rem;padding-left:1rem;color:#111617;font-weight:normal;border-color:#f6f6f6;border-width:0.0625rem;border-top-style:solid;border-bottom-style:solid}.container--myaccount-v2-page .email-view__svg--profile,.container--myprofile-v2-page .email-view__svg--profile,.container--customer-management-page .email-view__svg--profile{position:absolute;top:1.125rem;left:1rem;width:0.875rem;height:0.9375rem}.container--myaccount-v2-page .email-view__text,.container--myprofile-v2-page .email-view__text,.container--customer-management-page .email-view__text{margin-left:1.25rem;padding-right:1rem;word-break:break-all}@media (max-width: 575px){.container--myaccount-v2-page .email-view__text,.container--myprofile-v2-page .email-view__text,.container--customer-management-page .email-view__text{padding-right:3.5rem}}.container--myaccount-v2-page .email-view__text--right-icon,.container--myprofile-v2-page .email-view__text--right-icon,.container--customer-management-page .email-view__text--right-icon{padding-right:2.5rem}.container--myaccount-v2-page .email-view__svg--tick,.container--myprofile-v2-page .email-view__svg--tick,.container--customer-management-page .email-view__svg--tick{position:absolute;top:1rem;right:1rem;width:1rem;height:1rem;fill:#38a3d7}.container--myaccount-v2-page .email-view__edit,.container--myprofile-v2-page .email-view__edit,.container--customer-management-page .email-view__edit{position:absolute;top:1.1875rem;right:1.625rem;font-size:0.8125rem;cursor:pointer}.container--myaccount-v2-page .email-view--clickable,.container--myprofile-v2-page .email-view--clickable,.container--customer-management-page .email-view--clickable{cursor:pointer}.container--myaccount-v2-page .registration-success,.container--myprofile-v2-page .registration-success,.container--customer-management-page .registration-success{width:100%;text-align:center;-webkit-animation-name:message-animation;animation-name:message-animation;-webkit-animation-duration:0.8s;animation-duration:0.8s}.container--myaccount-v2-page .registration-success__message,.container--myprofile-v2-page .registration-success__message,.container--customer-management-page .registration-success__message{display:flex;justify-content:center;margin-bottom:1.5rem}.container--myaccount-v2-page .registration-success__message-text,.container--myprofile-v2-page .registration-success__message-text,.container--customer-management-page .registration-success__message-text{margin-left:0.5rem;font-size:1.25rem;line-height:1.5625rem}.container--myaccount-v2-page .registration-success__message-svg-tick,.container--myprofile-v2-page .registration-success__message-svg-tick,.container--customer-management-page .registration-success__message-svg-tick{width:1.125rem;height:1.125rem;margin-top:0.1875rem}.container--myaccount-v2-page .registration-success__heading,.container--myprofile-v2-page .registration-success__heading,.container--customer-management-page .registration-success__heading{margin:0 auto;color:#3c3d31;font-size:2.625rem;line-height:3.25rem}.container--myaccount-v2-page .password-validation,.container--myprofile-v2-page .password-validation,.container--customer-management-page .password-validation{margin-left:0;line-height:1.875rem;list-style:none}.container--myaccount-v2-page .password-validation__item,.container--myprofile-v2-page .password-validation__item,.container--customer-management-page .password-validation__item{margin-top:0;margin-bottom:0;font-weight:normal;font-size:0.875rem;letter-spacing:0}.container--myaccount-v2-page .password-validation__item-icon,.container--myprofile-v2-page .password-validation__item-icon,.container--customer-management-page .password-validation__item-icon{position:relative;top:-0.125rem;display:inline-block;width:1.3125rem;height:1.3125rem;margin-right:0.625rem}.container--myaccount-v2-page .password-strength,.container--myprofile-v2-page .password-strength,.container--customer-management-page .password-strength{font-size:0.875rem}.container--myaccount-v2-page .password-strength--low,.container--myprofile-v2-page .password-strength--low,.container--customer-management-page .password-strength--low{color:#c13615}.container--myaccount-v2-page .password-strength--medium,.container--myprofile-v2-page .password-strength--medium,.container--customer-management-page .password-strength--medium{color:#ecac0d}.container--myaccount-v2-page .password-strength--high,.container--myprofile-v2-page .password-strength--high,.container--customer-management-page .password-strength--high{color:#53af47}.container--myaccount-v2-page .form-error,.container--myprofile-v2-page .form-error,.container--customer-management-page .form-error{position:-webkit-sticky;position:sticky;top:3.75rem;z-index:2;display:flex;align-items:center;box-sizing:border-box;max-width:23.75rem;height:3.5rem;margin-right:auto;margin-bottom:1.5625rem;margin-left:auto;padding:0 1rem;color:#fff;font-size:0.9375rem;background-color:#c13615;border-radius:0.1875rem;box-shadow:0 3px 24px rgba(0,0,0,0.13);-webkit-animation-name:form-error-animation;animation-name:form-error-animation;-webkit-animation-duration:0.5s;animation-duration:0.5s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@media (max-width: 575px){.container--myaccount-v2-page .form-error,.container--myprofile-v2-page .form-error,.container--customer-management-page .form-error{top:5rem}}.container--myaccount-v2-page .form-error__close,.container--myprofile-v2-page .form-error__close,.container--customer-management-page .form-error__close{margin:0;padding:0;color:#fff;background-color:transparent;border:none;cursor:pointer}.container--myaccount-v2-page .form-error__icon,.container--myprofile-v2-page .form-error__icon,.container--customer-management-page .form-error__icon{width:1.5rem;height:1.5rem;margin-right:0.5rem;fill:#fff}.container--myaccount-v2-page .form-error__message,.container--myprofile-v2-page .form-error__message,.container--customer-management-page .form-error__message{width:100%}.container--myaccount-v2-page .form-error--hide,.container--myprofile-v2-page .form-error--hide,.container--customer-management-page .form-error--hide{display:none}.container--myaccount-v2-page .select-field,.container--myprofile-v2-page .select-field,.container--customer-management-page .select-field{position:relative}.container--myaccount-v2-page .select-field__select,.container--myaccount-v2-page .select-field__select--selected,.container--myprofile-v2-page .select-field__select,.container--myprofile-v2-page .select-field__select--selected,.container--customer-management-page .select-field__select,.container--customer-management-page .select-field__select--selected{box-sizing:border-box;width:100%;height:3.25rem;padding:1rem 0.875rem 1rem 1rem;color:#727579;background-color:#f1f3f4;background-image:url(/pf/resources/dist/fonts/chevron-dropdown.svg?d=484);background-repeat:no-repeat;background-position:center right 1rem;border:0.0625rem solid #f1f3f4;border-radius:0.1875rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.container--myaccount-v2-page .select-field__select:focus,.container--myaccount-v2-page .select-field__select--selected:focus,.container--myprofile-v2-page .select-field__select:focus,.container--myprofile-v2-page .select-field__select--selected:focus,.container--customer-management-page .select-field__select:focus,.container--customer-management-page .select-field__select--selected:focus{background-color:#fff;border:0.0625rem solid #bfc5c6;outline:none}.container--myaccount-v2-page .select-field__select--selected,.container--myprofile-v2-page .select-field__select--selected,.container--customer-management-page .select-field__select--selected{color:#111617}.container--myaccount-v2-page .select-field--error,.container--myprofile-v2-page .select-field--error,.container--customer-management-page .select-field--error{color:#c13615;background-color:#fef9f6;border-color:#c13615}.container--myaccount-v2-page .select-field__option-list-wrapper,.container--myprofile-v2-page .select-field__option-list-wrapper,.container--customer-management-page .select-field__option-list-wrapper{position:absolute;top:0;left:0;z-index:2;display:block;width:100%;max-height:16.25rem;overflow-y:auto;background-color:#fff;border:0.0625rem solid #bfc5c6;box-shadow:0 0.1875rem 1.5rem rgba(162,173,185,0.2)}.container--myaccount-v2-page .select-field__option-list-wrapper--drop-up,.container--myprofile-v2-page .select-field__option-list-wrapper--drop-up,.container--customer-management-page .select-field__option-list-wrapper--drop-up{top:auto;bottom:0}.container--myaccount-v2-page .select-field__option-list,.container--myprofile-v2-page .select-field__option-list,.container--customer-management-page .select-field__option-list{margin:0.625rem 0;line-height:1.5625rem;list-style:none}.container--myaccount-v2-page .select-field__option-item,.container--myprofile-v2-page .select-field__option-item,.container--customer-management-page .select-field__option-item{margin-top:0;margin-bottom:0;color:#111617;letter-spacing:0;cursor:context-menu}.container--myaccount-v2-page .select-field__option-item::before,.container--myprofile-v2-page .select-field__option-item::before,.container--customer-management-page .select-field__option-item::before{position:relative;top:0.21875rem;display:inline-block;width:1.3125rem;height:1rem;margin-right:0.5rem;background-repeat:no-repeat;background-position:center right;background-size:0.625rem 0.4375rem;content:''}.container--myaccount-v2-page .select-field__option-item--active::before,.container--myprofile-v2-page .select-field__option-item--active::before,.container--customer-management-page .select-field__option-item--active::before{background-image:url(/pf/resources/dist/fonts/check-rounded-national.svg?d=484)}.container--myaccount-v2-page .select-field2,.container--myprofile-v2-page .select-field2,.container--customer-management-page .select-field2{position:relative}.container--myaccount-v2-page .select-field2__select,.container--myaccount-v2-page .select-field2__select--selected,.container--myprofile-v2-page .select-field2__select,.container--myprofile-v2-page .select-field2__select--selected,.container--customer-management-page .select-field2__select,.container--customer-management-page .select-field2__select--selected{box-sizing:border-box;width:100%;height:3.25rem;padding:1rem 0.875rem 0.875rem 1rem;color:#727579;background-color:#f1f3f4;background-image:url(/pf/resources/dist/fonts/chevron-dropdown.svg?d=484);background-repeat:no-repeat;background-position:center right 1rem;border:0.0625rem solid #f1f3f4;border-radius:0.1875rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.container--myaccount-v2-page .select-field2__select:focus,.container--myaccount-v2-page .select-field2__select--selected:focus,.container--myprofile-v2-page .select-field2__select:focus,.container--myprofile-v2-page .select-field2__select--selected:focus,.container--customer-management-page .select-field2__select:focus,.container--customer-management-page .select-field2__select--selected:focus{background-color:#fff;border:0.0625rem solid #bfc5c6;outline:none}.container--myaccount-v2-page .select-field2__select--selected,.container--myprofile-v2-page .select-field2__select--selected,.container--customer-management-page .select-field2__select--selected{color:#111617}.container--myaccount-v2-page .select-field2__option,.container--myprofile-v2-page .select-field2__option,.container--customer-management-page .select-field2__option{margin-top:1.5625rem;margin-bottom:1.5625rem;color:#111617;letter-spacing:0;cursor:context-menu}.container--myaccount-v2-page .select-field2__option--active,.container--myprofile-v2-page .select-field2__option--active,.container--customer-management-page .select-field2__option--active{color:#8a8f96}.container--myaccount-v2-page .select-field2__option::before,.container--myprofile-v2-page .select-field2__option::before,.container--customer-management-page .select-field2__option::before{position:relative;top:0.5rem;display:inline-block;width:1.3125rem;height:1rem;margin-right:0.5rem;background-repeat:no-repeat;background-position:center right;background-size:0.625rem 0.4375rem;content:''}.container--myaccount-v2-page .select-field2__option--active::before,.container--myprofile-v2-page .select-field2__option--active::before,.container--customer-management-page .select-field2__option--active::before{background-image:url(/pf/resources/dist/fonts/check-rounded-national.svg?d=484)}.container--myaccount-v2-page .select-field.select-field--separate-label .input-field__label,.container--myaccount-v2-page .select-field2.select-field--separate-label .input-field__label,.container--myaccount-v2-page .date-select-field.date-select-field--separate-label .input-field__label,.container--myprofile-v2-page .select-field.select-field--separate-label .input-field__label,.container--myprofile-v2-page .select-field2.select-field--separate-label .input-field__label,.container--myprofile-v2-page .date-select-field.date-select-field--separate-label .input-field__label,.container--customer-management-page .select-field.select-field--separate-label .input-field__label,.container--customer-management-page .select-field2.select-field--separate-label .input-field__label,.container--customer-management-page .date-select-field.date-select-field--separate-label .input-field__label{position:initial;display:inline-block;margin-bottom:0.5rem;color:#000}.container--myaccount-v2-page .form-button,.container--myprofile-v2-page .form-button,.container--customer-management-page .form-button{width:100%;height:3.25rem;color:#fff;line-height:1.375rem;background-color:#38a3d7;border:none;border-radius:0.1875rem;cursor:pointer}.container--myaccount-v2-page .form-button:hover,.container--myprofile-v2-page .form-button:hover,.container--customer-management-page .form-button:hover{background-color:#228fc4}.container--myaccount-v2-page .form-button:disabled,.container--myprofile-v2-page .form-button:disabled,.container--customer-management-page .form-button:disabled{cursor:default;opacity:0.35}.container--myaccount-v2-page .form-button--loading,.container--myprofile-v2-page .form-button--loading,.container--customer-management-page .form-button--loading{cursor:not-allowed}.container--myaccount-v2-page .form-button--default,.container--myprofile-v2-page .form-button--default,.container--customer-management-page .form-button--default{color:#111617;background:#fff;border:0.0625rem solid #dde2e3}.container--myaccount-v2-page .form-button--default:hover,.container--myprofile-v2-page .form-button--default:hover,.container--customer-management-page .form-button--default:hover{background:#f7f7f7}.container--myaccount-v2-page .form-button--premium,.container--myprofile-v2-page .form-button--premium,.container--customer-management-page .form-button--premium{color:#000;background-color:#ecac0d}.container--myaccount-v2-page .form-button--premium:hover,.container--myprofile-v2-page .form-button--premium:hover,.container--customer-management-page .form-button--premium:hover{background-color:#e5a300}.container--myaccount-v2-page .form-button__spinner,.container--myprofile-v2-page .form-button__spinner,.container--customer-management-page .form-button__spinner{width:1.5rem;height:1.5rem;margin:auto;font-size:0.625rem;border-top:0.1875rem solid rgba(230,247,255,0.35);border-right:0.1875rem solid rgba(230,247,255,0.35);border-bottom:0.1875rem solid rgba(230,247,255,0.35);border-left:0.1875rem solid #fff;border-radius:50%;transform:translateZ(0);-webkit-animation:load8 1.1s infinite linear;animation:load8 1.1s infinite linear}.container--myaccount-v2-page .form-button__spinner--premium,.container--myprofile-v2-page .form-button__spinner--premium,.container--customer-management-page .form-button__spinner--premium{width:1.5rem;height:1.5rem;margin:auto;font-size:0.625rem;border-top:0.1875rem solid #ecac0d;border-right:0.1875rem solid #ecac0d;border-bottom:0.1875rem solid #ecac0d;border-left:0.1875rem solid #fff;border-radius:50%;transform:translateZ(0);-webkit-animation:load8 1.1s infinite linear;animation:load8 1.1s infinite linear}.container--myaccount-v2-page .form-button--white,.container--myprofile-v2-page .form-button--white,.container--customer-management-page .form-button--white{color:#111617;background-color:#fff;border:0.0625rem solid #dde2e3}.container--myaccount-v2-page .form-button--white:hover,.container--myprofile-v2-page .form-button--white:hover,.container--customer-management-page .form-button--white:hover{background-color:#f7f7f7;border-color:#dddede}.container--myaccount-v2-page .social-button,.container--myprofile-v2-page .social-button,.container--customer-management-page .social-button{display:flex;align-items:center;justify-content:center;width:100%;height:3.25rem;color:#111617;line-height:1.375rem;background:#fff;border:0.0625rem solid #dde2e3;cursor:pointer}.container--myaccount-v2-page .social-button:hover,.container--myprofile-v2-page .social-button:hover,.container--customer-management-page .social-button:hover{background:#f7f7f7}.container--myaccount-v2-page .social-button:disabled,.container--myprofile-v2-page .social-button:disabled,.container--customer-management-page .social-button:disabled{color:#8a8f96;background:#bfc5c6;cursor:not-allowed}.container--myaccount-v2-page .social-button--loading,.container--myprofile-v2-page .social-button--loading,.container--customer-management-page .social-button--loading{cursor:not-allowed}.container--myaccount-v2-page .social-button__icon,.container--myprofile-v2-page .social-button__icon,.container--customer-management-page .social-button__icon{width:1.125rem;height:1.125rem;margin-right:0.625rem}.container--myaccount-v2-page .social-button__spinner,.container--myprofile-v2-page .social-button__spinner,.container--customer-management-page .social-button__spinner{width:1.5rem;height:1.5rem;margin:auto;font-size:0.625rem;border-top:0.1875rem solid #f7f7f7;border-right:0.1875rem solid #f7f7f7;border-bottom:0.1875rem solid #f7f7f7;border-left:0.1875rem solid #38a3d7;border-radius:50%;transform:translateZ(0);-webkit-animation:load8 1.1s infinite linear;animation:load8 1.1s infinite linear}.container--myaccount-v2-page .text-divider,.container--myprofile-v2-page .text-divider,.container--customer-management-page .text-divider{display:flex;align-items:center;width:100%;color:#111617}.container--myaccount-v2-page .text-divider__before,.container--myprofile-v2-page .text-divider__before,.container--customer-management-page .text-divider__before{width:100%;height:0.0625rem;margin-right:0.625rem;border-top:0.0625rem solid #dde2e3}.container--myaccount-v2-page .text-divider__after,.container--myprofile-v2-page .text-divider__after,.container--customer-management-page .text-divider__after{width:100%;height:0.0625rem;margin-left:0.625rem;border-top:0.0625rem solid #dde2e3}.container--myaccount-v2-page .text-divider__text,.container--myprofile-v2-page .text-divider__text,.container--customer-management-page .text-divider__text{margin-bottom:0.25rem;line-height:1rem}.container--myaccount-v2-page .radio-item,.container--myprofile-v2-page .radio-item,.container--customer-management-page .radio-item{margin:1.5rem 0}.container--myaccount-v2-page .radio-item__label,.container--myprofile-v2-page .radio-item__label,.container--customer-management-page .radio-item__label{display:flex;align-items:center;justify-content:space-between;width:100%;cursor:pointer}.container--myaccount-v2-page .radio-item__icon-container,.container--myprofile-v2-page .radio-item__icon-container,.container--customer-management-page .radio-item__icon-container{width:1.25rem;height:1.25rem;margin-right:1rem}.container--myaccount-v2-page .radio-item__icon,.container--myprofile-v2-page .radio-item__icon,.container--customer-management-page .radio-item__icon{width:100%;stroke:#111617}.container--myaccount-v2-page .radio-item__radio:checked,.container--myaccount-v2-page .radio-item__radio:not(:checked),.container--myprofile-v2-page .radio-item__radio:checked,.container--myprofile-v2-page .radio-item__radio:not(:checked),.container--customer-management-page .radio-item__radio:checked,.container--customer-management-page .radio-item__radio:not(:checked){position:absolute;left:6249.9375rem}.container--myaccount-v2-page .radio-item__radio:checked+label,.container--myaccount-v2-page .radio-item__radio:not(:checked)+label,.container--myprofile-v2-page .radio-item__radio:checked+label,.container--myprofile-v2-page .radio-item__radio:not(:checked)+label,.container--customer-management-page .radio-item__radio:checked+label,.container--customer-management-page .radio-item__radio:not(:checked)+label{position:relative;display:inline-block;line-height:1.5rem;cursor:pointer}.container--myaccount-v2-page .radio-item__content,.container--myprofile-v2-page .radio-item__content,.container--customer-management-page .radio-item__content{position:relative;display:flex;flex:1;align-items:center;color:#111617;font-size:0.9375rem}.container--myaccount-v2-page .radio-item__content::before,.container--myprofile-v2-page .radio-item__content::before,.container--customer-management-page .radio-item__content::before{position:absolute;top:0;right:0;width:1.375rem;height:1.375rem;background:#fff;border:0.0625rem solid #bcbcbc;border-radius:100%;content:''}.container--myaccount-v2-page .radio-item__content::after,.container--myprofile-v2-page .radio-item__content::after,.container--customer-management-page .radio-item__content::after{position:absolute;top:0.4375rem;right:0.4375rem;width:0.625rem;height:0.625rem;background:#38a3d7;border-radius:100%;transform:scale(0);opacity:0;transition:all 0.2s ease;content:''}.container--myaccount-v2-page .radio-item__radio:checked+.radio-item__content::after,.container--myprofile-v2-page .radio-item__radio:checked+.radio-item__content::after,.container--customer-management-page .radio-item__radio:checked+.radio-item__content::after{transform:scale(1);opacity:1}.container--myaccount-v2-page .message-modal__content,.container--myprofile-v2-page .message-modal__content,.container--customer-management-page .message-modal__content{width:100%;max-width:26.75rem;margin:0 1rem;background-color:#fff;border-radius:0.1875rem;transform:translateY(-12.5rem);transition:all 0.2s ease-in-out}.container--myaccount-v2-page .message-modal__body,.container--myprofile-v2-page .message-modal__body,.container--customer-management-page .message-modal__body{padding:2.375rem 3rem 2.75rem}@media (max-width: 575px){.container--myaccount-v2-page .message-modal__body,.container--myprofile-v2-page .message-modal__body,.container--customer-management-page .message-modal__body{padding:2rem}}.container--myaccount-v2-page .message-modal__header,.container--myprofile-v2-page .message-modal__header,.container--customer-management-page .message-modal__header{position:relative}.container--myaccount-v2-page .message-modal__close-button,.container--myprofile-v2-page .message-modal__close-button,.container--customer-management-page .message-modal__close-button{position:absolute;top:1.1875rem;right:1.4375rem;padding:0;background-color:transparent;border:none;cursor:pointer}.container--myaccount-v2-page .message-modal__close-button-icon,.container--myprofile-v2-page .message-modal__close-button-icon,.container--customer-management-page .message-modal__close-button-icon{width:1.3125rem;height:1.3125rem;color:#111617}.container--myaccount-v2-page .message-modal--show,.container--myprofile-v2-page .message-modal--show,.container--customer-management-page .message-modal--show{opacity:1;pointer-events:visible}.container--myaccount-v2-page .message-modal--show .message-modal__content,.container--myprofile-v2-page .message-modal--show .message-modal__content,.container--customer-management-page .message-modal--show .message-modal__content{transform:translateY(0)}.container--myaccount-v2-page .confirm-modal,.container--myprofile-v2-page .confirm-modal,.container--customer-management-page .confirm-modal{align-items:flex-start}.container--myaccount-v2-page .confirm-modal__content,.container--myprofile-v2-page .confirm-modal__content,.container--customer-management-page .confirm-modal__content{width:100%;max-width:31.25rem;margin:2.25rem 1.5625rem 0;padding:1.5rem;background-color:#fff;border-radius:1rem;transform:translateY(-12.5rem);transition:all 0.2s ease-in-out}.container--myaccount-v2-page .confirm-modal__header,.container--myprofile-v2-page .confirm-modal__header,.container--customer-management-page .confirm-modal__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:0.3125rem;padding-bottom:1rem;border-bottom:solid 1px #f3f3f3}.container--myaccount-v2-page .confirm-modal__title,.container--myprofile-v2-page .confirm-modal__title,.container--customer-management-page .confirm-modal__title{flex:1;margin-left:1.25rem;font-size:0.9375rem;text-align:center}.container--myaccount-v2-page .confirm-modal__close-button,.container--myprofile-v2-page .confirm-modal__close-button,.container--customer-management-page .confirm-modal__close-button{padding:0;background-color:transparent;border:none;cursor:pointer}.container--myaccount-v2-page .confirm-modal__close-button-icon,.container--myprofile-v2-page .confirm-modal__close-button-icon,.container--customer-management-page .confirm-modal__close-button-icon{width:1.3125rem;height:1.3125rem;color:#111617}.container--myaccount-v2-page .confirm-modal__body,.container--myprofile-v2-page .confirm-modal__body,.container--customer-management-page .confirm-modal__body{border-top:1px solid #fff;border-bottom:1px solid #fff}.container--myaccount-v2-page .confirm-modal--show,.container--myprofile-v2-page .confirm-modal--show,.container--customer-management-page .confirm-modal--show{opacity:1;pointer-events:visible}.container--myaccount-v2-page .confirm-modal--show .confirm-modal__content,.container--myprofile-v2-page .confirm-modal--show .confirm-modal__content,.container--customer-management-page .confirm-modal--show .confirm-modal__content{transform:translateY(0)}.container--myaccount-v2-page .newsletter-setup-v2,.container--myprofile-v2-page .newsletter-setup-v2,.container--customer-management-page .newsletter-setup-v2{display:flex;flex-direction:column;min-height:calc(100vh - 7.5rem);padding-top:0}.container--myaccount-v2-page .newsletter-setup-v2 .progression-header,.container--myprofile-v2-page .newsletter-setup-v2 .progression-header,.container--customer-management-page .newsletter-setup-v2 .progression-header{margin-bottom:1.5rem}@media (min-width: 768px){.container--myaccount-v2-page .newsletter-setup-v2 .progression-header,.container--myprofile-v2-page .newsletter-setup-v2 .progression-header,.container--customer-management-page .newsletter-setup-v2 .progression-header{margin-bottom:3rem}}.container--myaccount-v2-page .newsletter-filters-button,.container--myprofile-v2-page .newsletter-filters-button,.container--customer-management-page .newsletter-filters-button{display:flex;align-items:center;justify-content:center;width:100%;height:3.25rem;padding:1rem 0;background-color:#fff;border:0.0625rem solid #dde2e3;border-radius:0.1875rem;cursor:pointer}@media (min-width: 1100px){.container--myaccount-v2-page .newsletter-filters-button,.container--myprofile-v2-page .newsletter-filters-button,.container--customer-management-page .newsletter-filters-button{display:none}}@media (min-width: 625px){.container--myaccount-v2-page .newsletter-filters-button,.container--myprofile-v2-page .newsletter-filters-button,.container--customer-management-page .newsletter-filters-button{margin-bottom:1rem}}.container--myaccount-v2-page .newsletter-filters-button:hover,.container--myprofile-v2-page .newsletter-filters-button:hover,.container--customer-management-page .newsletter-filters-button:hover{background-color:#f7f7f7}.container--myaccount-v2-page .newsletter-filters-button__icon,.container--myprofile-v2-page .newsletter-filters-button__icon,.container--customer-management-page .newsletter-filters-button__icon{width:1.5rem;height:1.5rem}.container--myaccount-v2-page .newsletter-filters-button__text,.container--myprofile-v2-page .newsletter-filters-button__text,.container--customer-management-page .newsletter-filters-button__text{display:flex;align-items:center;margin-bottom:0;color:#111617}.container--myaccount-v2-page .newsletter-filters-button__spacer,.container--myprofile-v2-page .newsletter-filters-button__spacer,.container--customer-management-page .newsletter-filters-button__spacer{display:block;width:0.3125rem;height:0.3125rem;background-color:#bfc5c6;border-radius:50%}.container--myaccount-v2-page .newsletter-filters-button__text--blue,.container--myprofile-v2-page .newsletter-filters-button__text--blue,.container--customer-management-page .newsletter-filters-button__text--blue{color:#38a3d7}.container--myaccount-v2-page .newsletter-filters,.container--myprofile-v2-page .newsletter-filters,.container--customer-management-page .newsletter-filters{display:none;justify-content:space-between;width:100%;max-width:71.875rem;margin-right:auto;margin-left:auto}@media (min-width: 1100px){.container--myaccount-v2-page .newsletter-filters,.container--myprofile-v2-page .newsletter-filters,.container--customer-management-page .newsletter-filters{display:flex}}.container--myaccount-v2-page .newsletter-filter,.container--myprofile-v2-page .newsletter-filter,.container--customer-management-page .newsletter-filter{display:flex;flex-direction:column;align-items:center;justify-content:center;width:9.4375rem;height:5rem;background-color:#fff;border-radius:0.1875rem;box-shadow:0 0.1875rem 1.25rem rgba(129,131,136,0.16);cursor:pointer}.container--myaccount-v2-page .newsletter-filter--checked,.container--myprofile-v2-page .newsletter-filter--checked,.container--customer-management-page .newsletter-filter--checked{background-color:#38a3d7}.container--myaccount-v2-page .newsletter-filter__icon-container,.container--myprofile-v2-page .newsletter-filter__icon-container,.container--customer-management-page .newsletter-filter__icon-container{display:flex;width:1.25rem;height:1.25rem}.container--myaccount-v2-page .newsletter-filter__icon,.container--myprofile-v2-page .newsletter-filter__icon,.container--customer-management-page .newsletter-filter__icon{width:100%;stroke:#111617}.container--myaccount-v2-page .newsletter-filter__icon--checked,.container--myprofile-v2-page .newsletter-filter__icon--checked,.container--customer-management-page .newsletter-filter__icon--checked{fill:#fff;stroke:#fff}.container--myaccount-v2-page .newsletter-filter__text,.container--myprofile-v2-page .newsletter-filter__text,.container--customer-management-page .newsletter-filter__text{color:#111617;font-size:0.9375rem;line-height:1.3125rem}.container--myaccount-v2-page .newsletter-filter__text--checked,.container--myprofile-v2-page .newsletter-filter__text--checked,.container--customer-management-page .newsletter-filter__text--checked{color:#fff}.container--myaccount-v2-page .newsletter-list,.container--myprofile-v2-page .newsletter-list,.container--customer-management-page .newsletter-list{display:flex;flex-wrap:wrap;width:100%;max-width:71.875rem;margin-right:auto;margin-bottom:auto;margin-left:auto}@media (max-width: 1100px){.container--myaccount-v2-page .newsletter-list,.container--myprofile-v2-page .newsletter-list,.container--customer-management-page .newsletter-list{justify-content:space-between}}.container--myaccount-v2-page .newsletter-card,.container--myprofile-v2-page .newsletter-card,.container--customer-management-page .newsletter-card{display:flex;box-sizing:border-box;width:100%;min-height:6.625rem;margin-right:0;margin-left:0;padding:1rem 0;border-top:0.0625rem solid #dde2e3;cursor:pointer}@media (min-width: 625px){.container--myaccount-v2-page .newsletter-card,.container--myprofile-v2-page .newsletter-card,.container--customer-management-page .newsletter-card{width:calc(50% - 0.5rem);min-height:8.625rem;margin-bottom:1rem;padding:1rem;border-right:0.0625rem solid #dde2e3;border-bottom:0.0625rem solid #dde2e3;border-left:0.0625rem solid #dde2e3;border-radius:0.1875rem}}@media (min-width: 1100px){.container--myaccount-v2-page .newsletter-card,.container--myprofile-v2-page .newsletter-card,.container--customer-management-page .newsletter-card{width:calc(33.33% - 1rem);margin-right:0.75rem;margin-bottom:1.5rem;margin-left:0.75rem}.container--myaccount-v2-page .newsletter-card:nth-of-type(3n+1),.container--myprofile-v2-page .newsletter-card:nth-of-type(3n+1),.container--customer-management-page .newsletter-card:nth-of-type(3n+1){margin-left:0}.container--myaccount-v2-page .newsletter-card:nth-of-type(3n+3),.container--myprofile-v2-page .newsletter-card:nth-of-type(3n+3),.container--customer-management-page .newsletter-card:nth-of-type(3n+3){margin-right:0}}@media (max-width: 624px){.container--myaccount-v2-page .newsletter-card:first-of-type,.container--myprofile-v2-page .newsletter-card:first-of-type,.container--customer-management-page .newsletter-card:first-of-type{border-top:none}}.container--myaccount-v2-page .newsletter-card__titles-and-checkbox,.container--myprofile-v2-page .newsletter-card__titles-and-checkbox,.container--customer-management-page .newsletter-card__titles-and-checkbox{display:flex}.container--myaccount-v2-page .newsletter-card__info,.container--myaccount-v2-page .newsletter-card__titles,.container--myprofile-v2-page .newsletter-card__info,.container--myprofile-v2-page .newsletter-card__titles,.container--customer-management-page .newsletter-card__info,.container--customer-management-page .newsletter-card__titles{flex-grow:1}.container--myaccount-v2-page .newsletter-card__title,.container--myprofile-v2-page .newsletter-card__title,.container--customer-management-page .newsletter-card__title{color:#111617}.container--myaccount-v2-page .newsletter-card__subTitle,.container--myprofile-v2-page .newsletter-card__subTitle,.container--customer-management-page .newsletter-card__subTitle{min-height:0.9375rem;color:#8a8f96;text-transform:uppercase}.container--myaccount-v2-page .newsletter-card__premium,.container--myprofile-v2-page .newsletter-card__premium,.container--customer-management-page .newsletter-card__premium{margin-right:0.25rem;padding:0 0.25rem;color:#fff;background-color:#ecac0d;border-radius:0.1875rem}.container--myaccount-v2-page .newsletter-card__checkbox,.container--myprofile-v2-page .newsletter-card__checkbox,.container--customer-management-page .newsletter-card__checkbox{justify-content:flex-end}.container--myaccount-v2-page .newsletter-card .checkbox__input,.container--myprofile-v2-page .newsletter-card .checkbox__input,.container--customer-management-page .newsletter-card .checkbox__input{width:1.625rem;height:1.625rem}.container--myaccount-v2-page .newsletter-card .checkbox__input::after,.container--myprofile-v2-page .newsletter-card .checkbox__input::after,.container--customer-management-page .newsletter-card .checkbox__input::after{top:0.5rem;left:0.375rem}.container--myaccount-v2-page .newsletter-card__description,.container--myprofile-v2-page .newsletter-card__description,.container--customer-management-page .newsletter-card__description{min-height:2.25rem}@media (min-width: 625px){.container--myaccount-v2-page .newsletter-card--selected,.container--myprofile-v2-page .newsletter-card--selected,.container--customer-management-page .newsletter-card--selected{background:#f7f7f7}}.container--myaccount-v2-page .newsletter-card__photo,.container--myprofile-v2-page .newsletter-card__photo,.container--customer-management-page .newsletter-card__photo{width:4.6875rem;min-width:4.6875rem;height:4.6875rem;padding-right:1rem;border-radius:0.1875rem}@media (max-width: 624px){.container--myaccount-v2-page .newsletter-card__photo,.container--myprofile-v2-page .newsletter-card__photo,.container--customer-management-page .newsletter-card__photo{width:4.0625rem;min-width:4.0625rem;height:4.0625rem}}.container--myaccount-v2-page .newsletter-card--premium,.container--myprofile-v2-page .newsletter-card--premium,.container--customer-management-page .newsletter-card--premium{border-color:#ecac0d}@media (max-width: 624px){.container--myaccount-v2-page .newsletter-card--premium,.container--myprofile-v2-page .newsletter-card--premium,.container--customer-management-page .newsletter-card--premium{border-color:#dde2e3}}.container--myaccount-v2-page .newsletter-card--hidden,.container--myprofile-v2-page .newsletter-card--hidden,.container--customer-management-page .newsletter-card--hidden{display:none}.container--myaccount-v2-page .newsletter-footer,.container--myprofile-v2-page .newsletter-footer,.container--customer-management-page .newsletter-footer{position:-webkit-sticky;position:sticky;bottom:0rem;margin:0 -1.5rem;padding:1.25rem 0.5rem;text-align:center;background:#fff;border-top:0.0625rem solid #dde2e3}@media (max-width: 575px){.container--myaccount-v2-page .newsletter-footer,.container--myprofile-v2-page .newsletter-footer,.container--customer-management-page .newsletter-footer{padding:1rem}}.container--myaccount-v2-page .newsletter-footer__buttons,.container--myprofile-v2-page .newsletter-footer__buttons,.container--customer-management-page .newsletter-footer__buttons{display:flex;justify-content:center;max-width:31.5625rem;margin:0 auto}.container--myaccount-v2-page .newsletter-footer__description,.container--myprofile-v2-page .newsletter-footer__description,.container--customer-management-page .newsletter-footer__description{margin:1rem auto 0;color:#8a8f96}@media (max-width: 575px){.container--myaccount-v2-page .newsletter-footer__description,.container--myprofile-v2-page .newsletter-footer__description,.container--customer-management-page .newsletter-footer__description{margin-top:0.75rem}}.container--myaccount-v2-page .content-card-wrapper,.container--myprofile-v2-page .content-card-wrapper,.container--customer-management-page .content-card-wrapper{padding-top:0.5rem}@media (min-width: 576px){.container--myaccount-v2-page .content-card-wrapper,.container--myprofile-v2-page .content-card-wrapper,.container--customer-management-page .content-card-wrapper{padding-top:4rem}}.container--myaccount-v2-page .content-card,.container--myprofile-v2-page .content-card,.container--customer-management-page .content-card{box-sizing:border-box;width:100%;background-color:#fff;border-radius:0}@media (max-width: 575px){.container--myaccount-v2-page .content-card,.container--myprofile-v2-page .content-card,.container--customer-management-page .content-card{width:auto}}@media (min-width: 576px){.container--myaccount-v2-page .content-card,.container--myprofile-v2-page .content-card,.container--customer-management-page .content-card{max-width:33.125rem;margin:0 auto;padding:2.5rem 4.1875rem 3.125rem;border-radius:0.5rem}}.container--myaccount-v2-page .content-card__heading,.container--myprofile-v2-page .content-card__heading,.container--customer-management-page .content-card__heading{color:#111617;text-align:center}@media (min-width: 768px){.container--myaccount-v2-page .content-card__heading,.container--myprofile-v2-page .content-card__heading,.container--customer-management-page .content-card__heading{font-size:1.875rem;line-height:2.375rem}}.container--myaccount-v2-page .content-card .text-divider,.container--myprofile-v2-page .content-card .text-divider,.container--customer-management-page .content-card .text-divider{width:2.0625rem;height:0.25rem;margin:1.25rem auto;text-align:center;background-color:#ecac0d;border-radius:0.5rem}.container--myaccount-v2-page .activate-form,.container--myprofile-v2-page .activate-form,.container--customer-management-page .activate-form{position:relative}.container--myaccount-v2-page .activate-form__container,.container--myprofile-v2-page .activate-form__container,.container--customer-management-page .activate-form__container{display:flex;align-items:center;justify-content:center}.container--myaccount-v2-page .activate-form__check-icon,.container--myprofile-v2-page .activate-form__check-icon,.container--customer-management-page .activate-form__check-icon{display:flex;width:1.4375rem;height:1.4375rem;margin:auto;padding:0.4375rem 0.4375rem;background:no-repeat center/65% url(/pf/resources/dist/fonts/check-rounded-premium.svg?d=484);border:solid 2px #ecac0d;border-radius:50%}@media (max-width: 575px){.container--myaccount-v2-page .activate-form__check-icon,.container--myprofile-v2-page .activate-form__check-icon,.container--customer-management-page .activate-form__check-icon{margin-bottom:0.5rem}}.container--myaccount-v2-page .activate-form__heading,.container--myprofile-v2-page .activate-form__heading,.container--customer-management-page .activate-form__heading{color:#111617;text-align:center}@media (max-width: 575px){.container--myaccount-v2-page .activate-form__heading,.container--myprofile-v2-page .activate-form__heading,.container--customer-management-page .activate-form__heading{margin:0;font-size:1.5rem}}.container--myaccount-v2-page .activate-form__description,.container--myprofile-v2-page .activate-form__description,.container--customer-management-page .activate-form__description{width:100%;margin-bottom:2.125rem;color:#111617}.container--myaccount-v2-page .activate-form__resend-email,.container--myprofile-v2-page .activate-form__resend-email,.container--customer-management-page .activate-form__resend-email{color:inherit;text-decoration:underline;cursor:pointer}.container--myaccount-v2-page .activate-form__resend-email--disabled,.container--myprofile-v2-page .activate-form__resend-email--disabled,.container--customer-management-page .activate-form__resend-email--disabled{cursor:default;opacity:0.35}.container--myaccount-v2-page .activate-form__loading,.container--myprofile-v2-page .activate-form__loading,.container--customer-management-page .activate-form__loading{position:absolute;top:0;left:0;display:flex;width:100%;height:100%;background:rgba(255,255,255,0.92);border-radius:0.5rem}.container--myaccount-v2-page .activate-form__loading-content,.container--myprofile-v2-page .activate-form__loading-content,.container--customer-management-page .activate-form__loading-content{margin:33.33% auto}.container--myaccount-v2-page .activate-form form,.container--myprofile-v2-page .activate-form form,.container--customer-management-page .activate-form form{max-width:inherit}@media (max-width: 575px){.container--myaccount-v2-page .activate-form .text-divider,.container--myprofile-v2-page .activate-form .text-divider,.container--customer-management-page .activate-form .text-divider{margin-top:0.5rem}}.container--myaccount-v2-page .feedback,.container--myprofile-v2-page .feedback,.container--customer-management-page .feedback{display:flex;max-width:35rem;padding:1rem;word-break:break-word;border-radius:3px;box-shadow:0 3px 24px rgba(0,0,0,0.13)}@media (max-width: 575px){.container--myaccount-v2-page .feedback,.container--myprofile-v2-page .feedback,.container--customer-management-page .feedback{padding-right:2rem}}.container--myaccount-v2-page .feedback__icon,.container--myprofile-v2-page .feedback__icon,.container--customer-management-page .feedback__icon{width:1.5rem;height:1.5rem;margin-right:0.75rem;fill:#ecac0d}.container--myaccount-v2-page .feedback__content,.container--myprofile-v2-page .feedback__content,.container--customer-management-page .feedback__content{font-size:0.9375rem;line-height:1.3125rem}.container--myaccount-v2-page .feedback--success,.container--myprofile-v2-page .feedback--success,.container--customer-management-page .feedback--success{position:fixed;top:5rem;right:1.5rem;left:1.5rem;z-index:2;max-width:20rem;margin:auto;color:#fff;font-size:0.9375rem;background-color:#5db36e;visibility:hidden;-webkit-animation:fadein 0.5s, fadeout 0.5s 2s;animation:fadein 0.5s, fadeout 0.5s 2s}@media screen and (-ms-high-contrast: none){.container--myaccount-v2-page .feedback--success,.container--myprofile-v2-page .feedback--success,.container--customer-management-page .feedback--success{left:38%}}.container--myaccount-v2-page .feedback--show,.container--myprofile-v2-page .feedback--show,.container--customer-management-page .feedback--show{visibility:visible}.container--myaccount-v2-page .help-desk,.container--myprofile-v2-page .help-desk,.container--customer-management-page .help-desk{margin-top:2.25rem;color:#8a8f96;text-align:center}.container--myaccount-v2-page .help-desk a,.container--myprofile-v2-page .help-desk a,.container--customer-management-page .help-desk a{color:#8a8f96}.container--myaccount-v2-page .help-desk a[href^='tel:'],.container--myprofile-v2-page .help-desk a[href^='tel:'],.container--customer-management-page .help-desk a[href^='tel:']{font-weight:600;text-decoration:none}.container--myaccount-v2-page .help-desk a[href^='mailto:'],.container--myprofile-v2-page .help-desk a[href^='mailto:'],.container--customer-management-page .help-desk a[href^='mailto:']{font-weight:600;text-decoration:underline}.container--myaccount-v2-page .subs-steps,.container--myprofile-v2-page .subs-steps,.container--customer-management-page .subs-steps{display:flex;flex-direction:column;min-height:calc(100vh - 10.5rem);padding-top:0;padding-bottom:2rem}@media (min-width: 768px){.container--myaccount-v2-page .subs-steps,.container--myprofile-v2-page .subs-steps,.container--customer-management-page .subs-steps{padding-bottom:3rem}}.container--myaccount-v2-page .subs-steps .loading-wrapper,.container--myprofile-v2-page .subs-steps .loading-wrapper,.container--customer-management-page .subs-steps .loading-wrapper{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.container--myaccount-v2-page .subs-steps .progression-header,.container--myprofile-v2-page .subs-steps .progression-header,.container--customer-management-page .subs-steps .progression-header{width:auto;margin-right:-1.5rem;margin-bottom:1.5rem;margin-left:-1.5rem}@media (min-width: 768px){.container--myaccount-v2-page .subs-steps .progression-header,.container--myprofile-v2-page .subs-steps .progression-header,.container--customer-management-page .subs-steps .progression-header{margin-bottom:3rem}}.container--myaccount-v2-page .subs-steps__title,.container--myprofile-v2-page .subs-steps__title,.container--customer-management-page .subs-steps__title{margin:0 auto 2.5rem;font-size:1.375rem;line-height:1.5rem}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__title,.container--myprofile-v2-page .subs-steps__title,.container--customer-management-page .subs-steps__title{margin:0 auto 2rem;font-size:1.5rem;line-height:1.875rem}}.container--myaccount-v2-page .subs-steps__content,.container--myprofile-v2-page .subs-steps__content,.container--customer-management-page .subs-steps__content{display:flex;flex-direction:column;align-items:center;justify-content:center;margin-top:2rem}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__content,.container--myprofile-v2-page .subs-steps__content,.container--customer-management-page .subs-steps__content{flex-flow:row-reverse wrap;align-items:flex-start;margin:0}}.container--myaccount-v2-page .subs-steps__form,.container--myaccount-v2-page .subs-steps__offer,.container--myaccount-v2-page .subs-steps__blank,.container--myprofile-v2-page .subs-steps__form,.container--myprofile-v2-page .subs-steps__offer,.container--myprofile-v2-page .subs-steps__blank,.container--customer-management-page .subs-steps__form,.container--customer-management-page .subs-steps__offer,.container--customer-management-page .subs-steps__blank{width:100%}@media (min-width: 428px){.container--myaccount-v2-page .subs-steps__form,.container--myaccount-v2-page .subs-steps__offer,.container--myaccount-v2-page .subs-steps__blank,.container--myprofile-v2-page .subs-steps__form,.container--myprofile-v2-page .subs-steps__offer,.container--myprofile-v2-page .subs-steps__blank,.container--customer-management-page .subs-steps__form,.container--customer-management-page .subs-steps__offer,.container--customer-management-page .subs-steps__blank{width:23.75rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__form,.container--myaccount-v2-page .subs-steps__offer,.container--myaccount-v2-page .subs-steps__blank,.container--myprofile-v2-page .subs-steps__form,.container--myprofile-v2-page .subs-steps__offer,.container--myprofile-v2-page .subs-steps__blank,.container--customer-management-page .subs-steps__form,.container--customer-management-page .subs-steps__offer,.container--customer-management-page .subs-steps__blank{flex-grow:1;box-sizing:border-box;width:33.33%;max-width:23.75rem;padding-right:1.25rem;padding-left:1.25rem}}.container--myaccount-v2-page .subs-steps__offer,.container--myprofile-v2-page .subs-steps__offer,.container--customer-management-page .subs-steps__offer{margin-bottom:1.5rem}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__offer,.container--myprofile-v2-page .subs-steps__offer,.container--customer-management-page .subs-steps__offer{margin-top:-1.875rem;margin-bottom:0}}.container--myaccount-v2-page .subs-steps__form,.container--myprofile-v2-page .subs-steps__form,.container--customer-management-page .subs-steps__form{max-width:37.5rem}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__form,.container--myprofile-v2-page .subs-steps__form,.container--customer-management-page .subs-steps__form{margin-top:2.5rem}}.container--myaccount-v2-page .subs-steps__content-confirmation,.container--myprofile-v2-page .subs-steps__content-confirmation,.container--customer-management-page .subs-steps__content-confirmation{position:relative;left:50%;display:block;justify-content:flex-start;max-width:54.0625rem;margin:2.5rem 0 0;padding:1rem 1.125rem 0;background-color:#f8f9fa;transform:translateX(-50%)}@media (min-width: 768px){.container--myaccount-v2-page .subs-steps__content-confirmation,.container--myprofile-v2-page .subs-steps__content-confirmation,.container--customer-management-page .subs-steps__content-confirmation{padding:1rem 2rem 0}}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__content-confirmation,.container--myprofile-v2-page .subs-steps__content-confirmation,.container--customer-management-page .subs-steps__content-confirmation{display:flex;justify-content:space-between;padding:4rem 2.5rem 3.5rem 4rem}}.container--myaccount-v2-page .subs-steps__content--title,.container--myprofile-v2-page .subs-steps__content--title,.container--customer-management-page .subs-steps__content--title{flex:0 0 100%;margin-bottom:0;font-size:0.75rem;line-height:0.9375rem}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__content--title,.container--myprofile-v2-page .subs-steps__content--title,.container--customer-management-page .subs-steps__content--title{margin-bottom:-1.75rem}}.container--myaccount-v2-page .subs-steps__offer-confirmation,.container--myprofile-v2-page .subs-steps__offer-confirmation,.container--customer-management-page .subs-steps__offer-confirmation{max-width:100%;margin:0;padding-right:0;padding-left:0}@media (max-width: 991px){.container--myaccount-v2-page .subs-steps__offer-confirmation,.container--myprofile-v2-page .subs-steps__offer-confirmation,.container--customer-management-page .subs-steps__offer-confirmation{width:100%}}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__offer-confirmation,.container--myprofile-v2-page .subs-steps__offer-confirmation,.container--customer-management-page .subs-steps__offer-confirmation{max-width:23.3125rem;margin:0 0 0 2.5rem}}.container--myaccount-v2-page .subs-steps__form-confirmation,.container--myprofile-v2-page .subs-steps__form-confirmation,.container--customer-management-page .subs-steps__form-confirmation{max-width:100%;margin-top:0;margin-bottom:1.5rem;padding-right:0;padding-left:0}@media (max-width: 991px){.container--myaccount-v2-page .subs-steps__form-confirmation,.container--myprofile-v2-page .subs-steps__form-confirmation,.container--customer-management-page .subs-steps__form-confirmation{width:100%}}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__form-confirmation,.container--myprofile-v2-page .subs-steps__form-confirmation,.container--customer-management-page .subs-steps__form-confirmation{max-width:30rem;margin-bottom:5rem}}.container--myaccount-v2-page .subs-steps__form-confirmation .price__extra,.container--myprofile-v2-page .subs-steps__form-confirmation .price__extra,.container--customer-management-page .subs-steps__form-confirmation .price__extra{margin-bottom:0;font-size:0.875rem;line-height:1.25rem}.container--myaccount-v2-page .subs-steps-confirmation,.container--myprofile-v2-page .subs-steps-confirmation,.container--customer-management-page .subs-steps-confirmation{position:relative}.container--myaccount-v2-page .subs-steps-confirmation .heading,.container--myprofile-v2-page .subs-steps-confirmation .heading,.container--customer-management-page .subs-steps-confirmation .heading{box-sizing:border-box;margin-top:-2rem;padding:2.5rem 1.875rem 1rem;font-size:1.375rem;line-height:1.5rem}@media (min-width: 768px){.container--myaccount-v2-page .subs-steps-confirmation .heading,.container--myprofile-v2-page .subs-steps-confirmation .heading,.container--customer-management-page .subs-steps-confirmation .heading{padding-top:1.875rem;font-size:1.875rem;line-height:1.875rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps-confirmation .heading,.container--myprofile-v2-page .subs-steps-confirmation .heading,.container--customer-management-page .subs-steps-confirmation .heading{margin-top:0}}.container--myaccount-v2-page .subs-steps-confirmation .sub-heading,.container--myprofile-v2-page .subs-steps-confirmation .sub-heading,.container--customer-management-page .subs-steps-confirmation .sub-heading{position:relative;left:50%;max-width:54.0625rem;margin:0;white-space:normal;word-break:break-word;transform:translateX(-50%)}.container--myaccount-v2-page .subs-steps__notify-success,.container--myprofile-v2-page .subs-steps__notify-success,.container--customer-management-page .subs-steps__notify-success{position:absolute;top:54px;right:auto;left:50%;max-width:12.5rem;transform:translateX(-50%)}@media (max-width: 575px){.container--myaccount-v2-page .subs-steps__notify-success,.container--myprofile-v2-page .subs-steps__notify-success,.container--customer-management-page .subs-steps__notify-success{min-width:10.3125rem}}.container--myaccount-v2-page .subs-steps .form-error,.container--myprofile-v2-page .subs-steps .form-error,.container--customer-management-page .subs-steps .form-error{max-width:none}.container--myaccount-v2-page .subs-steps__checkout-content .checkout__update-price-info,.container--myprofile-v2-page .subs-steps__checkout-content .checkout__update-price-info,.container--customer-management-page .subs-steps__checkout-content .checkout__update-price-info{position:static}.container--myaccount-v2-page .subs-steps__action,.container--myprofile-v2-page .subs-steps__action,.container--customer-management-page .subs-steps__action{margin:2.5rem 0 5rem;text-align:center}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__action,.container--myprofile-v2-page .subs-steps__action,.container--customer-management-page .subs-steps__action{margin:2.5rem 0 7.875rem}}.container--myaccount-v2-page .subs-steps__action .form-button,.container--myprofile-v2-page .subs-steps__action .form-button,.container--customer-management-page .subs-steps__action .form-button{display:inline-flex;align-items:center;justify-content:center;color:#000}.container--myaccount-v2-page .subs-steps__action .form-button:not(:last-child),.container--myprofile-v2-page .subs-steps__action .form-button:not(:last-child),.container--customer-management-page .subs-steps__action .form-button:not(:last-child){margin-right:0;margin-bottom:1rem}@media (min-width: 768px){.container--myaccount-v2-page .subs-steps__action .form-button:not(:last-child),.container--myprofile-v2-page .subs-steps__action .form-button:not(:last-child),.container--customer-management-page .subs-steps__action .form-button:not(:last-child){margin-right:1rem;margin-bottom:0}}@media (min-width: 768px){.container--myaccount-v2-page .subs-steps__action .form-button,.container--myprofile-v2-page .subs-steps__action .form-button,.container--customer-management-page .subs-steps__action .form-button{width:auto;min-width:21.25rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-steps__action .form-button,.container--myprofile-v2-page .subs-steps__action .form-button,.container--customer-management-page .subs-steps__action .form-button{min-width:23.75rem}}.container--myaccount-v2-page .your-offer.your-offer-confirmation,.container--myprofile-v2-page .your-offer.your-offer-confirmation,.container--customer-management-page .your-offer.your-offer-confirmation{display:block;margin-bottom:0;padding:0 1.25rem 0.9375rem 2.5rem;background-color:#fff}@media (min-width: 768px){.container--myaccount-v2-page .your-offer.your-offer-confirmation,.container--myprofile-v2-page .your-offer.your-offer-confirmation,.container--customer-management-page .your-offer.your-offer-confirmation{display:flex;padding:0 2rem 0 2.9375rem}}@media (min-width: 992px){.container--myaccount-v2-page .your-offer.your-offer-confirmation,.container--myprofile-v2-page .your-offer.your-offer-confirmation,.container--customer-management-page .your-offer.your-offer-confirmation{display:block;padding:0 3.125rem 0 3.5rem}}.container--myaccount-v2-page .your-offer.your-offer-confirmation .offer-card,.container--myprofile-v2-page .your-offer.your-offer-confirmation .offer-card,.container--customer-management-page .your-offer.your-offer-confirmation .offer-card{padding:2.5rem 0 0;border-top:0}@media (min-width: 768px){.container--myaccount-v2-page .your-offer.your-offer-confirmation .offer-card,.container--myprofile-v2-page .your-offer.your-offer-confirmation .offer-card,.container--customer-management-page .your-offer.your-offer-confirmation .offer-card{min-width:14.375rem}}@media (min-width: 992px){.container--myaccount-v2-page .your-offer.your-offer-confirmation .offer-card,.container--myprofile-v2-page .your-offer.your-offer-confirmation .offer-card,.container--customer-management-page .your-offer.your-offer-confirmation .offer-card{padding:1.875rem 0.25rem 0 1.5625rem}}.container--myaccount-v2-page .your-offer.your-offer-confirmation .offer-card__premium-tag,.container--myprofile-v2-page .your-offer.your-offer-confirmation .offer-card__premium-tag,.container--customer-management-page .your-offer.your-offer-confirmation .offer-card__premium-tag{display:none}.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__info,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__info,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__info{margin-top:0;padding:1.875rem 0 0 0;border-top:0}@media (min-width: 768px){.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__info,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__info,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__info{padding:2.5rem 0 0 1rem}}@media (min-width: 992px){.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__info,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__info,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__info{padding:1.5rem 0}}.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__info p,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__info p,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__info p{margin-bottom:0.9375rem;font-size:0.75rem;line-height:1.125rem}@media (min-width: 768px){.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__info p,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__info p,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__info p{margin-bottom:1.5rem}}.container--myaccount-v2-page .your-offer.your-offer-confirmation .your-offer__text,.container--myprofile-v2-page .your-offer.your-offer-confirmation .your-offer__text,.container--customer-management-page .your-offer.your-offer-confirmation .your-offer__text{display:flex}.container--myaccount-v2-page .your-offer__check-icon,.container--myprofile-v2-page .your-offer__check-icon,.container--customer-management-page .your-offer__check-icon{width:1.125rem;height:1.125rem;margin-right:0.625rem}.container--myaccount-v2-page .your-order__label,.container--myprofile-v2-page .your-order__label,.container--customer-management-page .your-order__label{font-size:0.75rem;line-height:0.9375rem}.container--myaccount-v2-page .your-order__label--flex,.container--myprofile-v2-page .your-order__label--flex,.container--customer-management-page .your-order__label--flex{display:flex;justify-content:space-between}.container--myaccount-v2-page .your-order__payment-title,.container--myprofile-v2-page .your-order__payment-title,.container--customer-management-page .your-order__payment-title{display:block}.container--myaccount-v2-page .your-order__link,.container--myprofile-v2-page .your-order__link,.container--customer-management-page .your-order__link{color:#000;text-decoration:underline}.container--myaccount-v2-page .your-order__cardInfo,.container--myprofile-v2-page .your-order__cardInfo,.container--customer-management-page .your-order__cardInfo{display:flex;align-items:center}.container--myaccount-v2-page .your-order__cardInfo--capitalize,.container--myprofile-v2-page .your-order__cardInfo--capitalize,.container--customer-management-page .your-order__cardInfo--capitalize{text-transform:capitalize}.container--myaccount-v2-page .your-order__icon,.container--myprofile-v2-page .your-order__icon,.container--customer-management-page .your-order__icon{width:1.125rem;height:1.125rem;margin-right:0.625rem}.container--myaccount-v2-page .your-order label,.container--myprofile-v2-page .your-order label,.container--customer-management-page .your-order label{text-transform:uppercase}.container--myaccount-v2-page .your-order p,.container--myprofile-v2-page .your-order p,.container--customer-management-page .your-order p{margin-bottom:1.25rem;font-size:0.875rem;line-height:1.25rem}.container--myaccount-v2-page .your-order__border,.container--myprofile-v2-page .your-order__border,.container--customer-management-page .your-order__border{margin-bottom:1rem;border-bottom:0.5px solid #bfc5c6}.container--myaccount-v2-page .your-order__line,.container--myprofile-v2-page .your-order__line,.container--customer-management-page .your-order__line{margin-bottom:0.75rem;padding-top:1.5rem}@media (min-width: 992px){.container--myaccount-v2-page .your-order__line,.container--myprofile-v2-page .your-order__line,.container--customer-management-page .your-order__line{padding-top:1.875rem}}.container--myaccount-v2-page .payment-form,.container--myprofile-v2-page .payment-form,.container--customer-management-page .payment-form{position:relative;display:flex;flex-direction:column}.container--myaccount-v2-page .payment-form iframe,.container--myprofile-v2-page .payment-form iframe,.container--customer-management-page .payment-form iframe{width:100%;height:auto;min-height:29.375rem}.container--myaccount-v2-page .payment-form__back-button,.container--myprofile-v2-page .payment-form__back-button,.container--customer-management-page .payment-form__back-button{margin-bottom:1.25rem}.container--myaccount-v2-page .payment-form__term,.container--myprofile-v2-page .payment-form__term,.container--customer-management-page .payment-form__term{color:#727579}.container--myaccount-v2-page .payment-form__term--link,.container--myprofile-v2-page .payment-form__term--link,.container--customer-management-page .payment-form__term--link{color:#727579;text-decoration:underline}.container--myaccount-v2-page .payment-form__term--link:hover,.container--myprofile-v2-page .payment-form__term--link:hover,.container--customer-management-page .payment-form__term--link:hover{color:#38a3d7;cursor:pointer}.container--myaccount-v2-page .payment-form__processing,.container--myprofile-v2-page .payment-form__processing,.container--customer-management-page .payment-form__processing{margin:0.5rem;font-size:1rem;font-family:initial}.container--myaccount-v2-page .payment-card,.container--myprofile-v2-page .payment-card,.container--customer-management-page .payment-card{display:flex;align-items:center;height:3.25rem;padding-left:1rem;background-color:#f1f3f4}.container--myaccount-v2-page .payment-card__icon,.container--myprofile-v2-page .payment-card__icon,.container--customer-management-page .payment-card__icon{width:1.125rem;height:0.875rem;margin-right:0.25rem}.container--myaccount-v2-page .payment-card__number,.container--myprofile-v2-page .payment-card__number,.container--customer-management-page .payment-card__number{flex-grow:1}.container--myaccount-v2-page .payment-card__exp-date,.container--myprofile-v2-page .payment-card__exp-date,.container--customer-management-page .payment-card__exp-date{width:5rem}.container--myaccount-v2-page .payment-card__cvc,.container--myprofile-v2-page .payment-card__cvc,.container--customer-management-page .payment-card__cvc{width:4.375rem}.container--myaccount-v2-page .payment-card--error,.container--myprofile-v2-page .payment-card--error,.container--customer-management-page .payment-card--error{background-color:#fef9f6;border:solid 0.0625rem #c13615;border-radius:0.1875rem}.container--myaccount-v2-page .payment-method,.container--myprofile-v2-page .payment-method,.container--customer-management-page .payment-method{margin-top:40px;text-align:center}.container--myaccount-v2-page .payment-method__icons,.container--myprofile-v2-page .payment-method__icons,.container--customer-management-page .payment-method__icons{display:flex;align-items:center;justify-content:center}.container--myaccount-v2-page .payment-method__icon,.container--myprofile-v2-page .payment-method__icon,.container--customer-management-page .payment-method__icon{height:15px;margin-top:1.5rem}.container--myaccount-v2-page .payment-method__icon:not(:last-child),.container--myprofile-v2-page .payment-method__icon:not(:last-child),.container--customer-management-page .payment-method__icon:not(:last-child){margin-right:1rem}.container--myaccount-v2-page .payment-method h4,.container--myprofile-v2-page .payment-method h4,.container--customer-management-page .payment-method h4{display:flex;align-items:center;justify-content:center;color:#727579;font-size:12px}.container--myaccount-v2-page .payment-method svg.lock-icon,.container--myprofile-v2-page .payment-method svg.lock-icon,.container--customer-management-page .payment-method svg.lock-icon{height:9px;margin-right:9px}.container--myaccount-v2-page .button-link,.container--myprofile-v2-page .button-link,.container--customer-management-page .button-link{display:flex;align-items:center;justify-content:center}.container--myaccount-v2-page .button-link__label--black,.container--myprofile-v2-page .button-link__label--black,.container--customer-management-page .button-link__label--black{color:#000}.container--myaccount-v2-page .subs-hyperlink-card,.container--myprofile-v2-page .subs-hyperlink-card,.container--customer-management-page .subs-hyperlink-card{position:relative;display:flex;align-items:center;justify-content:center;padding:1.25rem;color:#000;background:#fff;border-radius:0.1875rem;box-shadow:0 0.8125rem 1.8125rem -0.375rem rgba(36,47,136,0.08)}@media (min-width: 992px){.container--myaccount-v2-page .subs-hyperlink-card,.container--myprofile-v2-page .subs-hyperlink-card,.container--customer-management-page .subs-hyperlink-card{box-sizing:border-box;height:7.5rem;padding:3rem;font-size:1.125rem;line-height:1.625rem}}.container--myaccount-v2-page .subs-hyperlink-card__icon,.container--myprofile-v2-page .subs-hyperlink-card__icon,.container--customer-management-page .subs-hyperlink-card__icon{position:absolute;top:0;right:3rem;width:1rem;height:100%;margin-left:1.625rem}@media (min-width: 768px){.container--myaccount-v2-page .subs-hyperlink-card__icon,.container--myprofile-v2-page .subs-hyperlink-card__icon,.container--customer-management-page .subs-hyperlink-card__icon{margin-left:1.625rem}}.container--myaccount-v2-page .subs-card,.container--myprofile-v2-page .subs-card,.container--customer-management-page .subs-card{position:relative;display:flex;flex-direction:column;box-sizing:border-box;height:100%;padding:1.5rem;background-color:#fff;border-radius:0.25rem;box-shadow:0 0.6875rem 1.6875rem rgba(36,47,136,0.06)}@media (min-width: 576px){.container--myaccount-v2-page .subs-card,.container--myprofile-v2-page .subs-card,.container--customer-management-page .subs-card{padding:2.75rem 1.75rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-card,.container--myprofile-v2-page .subs-card,.container--customer-management-page .subs-card{padding:4rem 2.5rem}}.container--myaccount-v2-page .subs-card__content,.container--myprofile-v2-page .subs-card__content,.container--customer-management-page .subs-card__content{display:flex;flex-grow:1;justify-content:space-between}@media (min-width: 576px){.container--myaccount-v2-page .subs-card__content,.container--myprofile-v2-page .subs-card__content,.container--customer-management-page .subs-card__content{flex-direction:column}}.container--myaccount-v2-page .subs-card--no-label,.container--myprofile-v2-page .subs-card--no-label,.container--customer-management-page .subs-card--no-label{margin-top:1.25rem}.container--myaccount-v2-page .subs-card__second-part,.container--myprofile-v2-page .subs-card__second-part,.container--customer-management-page .subs-card__second-part{text-align:center}@media (min-width: 576px){.container--myaccount-v2-page .subs-card__second-part,.container--myprofile-v2-page .subs-card__second-part,.container--customer-management-page .subs-card__second-part{display:flex;align-items:center;text-align:left}}.container--myaccount-v2-page .subs-card__label,.container--myprofile-v2-page .subs-card__label,.container--customer-management-page .subs-card__label{position:relative;top:-0.5rem;padding:0.75rem 1rem;color:#000;text-transform:uppercase;background:linear-gradient(90deg, #ecac0d 0%, #ffbc16 100%);border-radius:0.125rem 0.125rem 0 0}.container--myaccount-v2-page .subs-card__title,.container--myprofile-v2-page .subs-card__title,.container--customer-management-page .subs-card__title{padding-top:0.75rem;padding-right:0.25rem;color:#000;font-size:1.375rem;line-height:1.75rem}@media (min-width: 576px){.container--myaccount-v2-page .subs-card__title,.container--myprofile-v2-page .subs-card__title,.container--customer-management-page .subs-card__title{padding-top:0;padding-right:0;font-size:1.25rem;line-height:1.5625rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-card__title,.container--myprofile-v2-page .subs-card__title,.container--customer-management-page .subs-card__title{height:3.75rem;padding-top:0;font-size:1.75rem;line-height:1.875rem}}.container--myaccount-v2-page .subs-card__description,.container--myprofile-v2-page .subs-card__description,.container--customer-management-page .subs-card__description{margin:1.875rem 0 1.5rem;overflow-wrap:break-word}@media (min-width: 576px){.container--myaccount-v2-page .subs-card__description,.container--myprofile-v2-page .subs-card__description,.container--customer-management-page .subs-card__description{margin:0.75rem 0;font-size:0.6875rem;line-height:0.875rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-card__description,.container--myprofile-v2-page .subs-card__description,.container--customer-management-page .subs-card__description{font-size:1rem;line-height:1.25rem}}.container--myaccount-v2-page .subs-card__price,.container--myprofile-v2-page .subs-card__price,.container--customer-management-page .subs-card__price{align-items:center;font-size:1.875rem;line-height:2.375rem;font-feature-settings:'tnum' on, 'onum' on}@media (min-width: 576px){.container--myaccount-v2-page .subs-card__price,.container--myprofile-v2-page .subs-card__price,.container--customer-management-page .subs-card__price{display:flex;margin-right:0.5rem;font-size:1.75rem;line-height:2.1875rem}}@media (min-width: 992px){.container--myaccount-v2-page .subs-card__price,.container--myprofile-v2-page .subs-card__price,.container--customer-management-page .subs-card__price{font-size:2.5rem;line-height:3.125rem}}.container--myaccount-v2-page .subs-black-banner,.container--myprofile-v2-page .subs-black-banner,.container--customer-management-page .subs-black-banner{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:4rem 1.5rem;color:#fff;background-color:#000;border-radius:0.5rem}@media (min-width: 576px){.container--myaccount-v2-page .subs-black-banner,.container--myprofile-v2-page .subs-black-banner,.container--customer-management-page .subs-black-banner{padding:4rem}}.container--myaccount-v2-page .subs-black-banner__title,.container--myprofile-v2-page .subs-black-banner__title,.container--customer-management-page .subs-black-banner__title{font-size:1.25rem;line-height:1.5rem;text-align:center}@media (min-width: 576px){.container--myaccount-v2-page .subs-black-banner__title,.container--myprofile-v2-page .subs-black-banner__title,.container--customer-management-page .subs-black-banner__title{font-size:1.5rem;line-height:2.125rem}}.container--myaccount-v2-page .subs-black-banner__sub-title,.container--myprofile-v2-page .subs-black-banner__sub-title,.container--customer-management-page .subs-black-banner__sub-title{text-align:center}.container--myaccount-v2-page .subs-black-banner .text-divider,.container--myprofile-v2-page .subs-black-banner .text-divider,.container--customer-management-page .subs-black-banner .text-divider{width:2.5rem;height:0.25rem;margin:1.25rem auto;text-align:center;background-color:#ecac0d;border-radius:0.5rem}.container--myaccount-v2-page .subs-black-banner a,.container--myprofile-v2-page .subs-black-banner a,.container--customer-management-page .subs-black-banner a{color:#fff;text-decoration:underline;cursor:pointer}.container--myaccount-v2-page .corporate-success,.container--myprofile-v2-page .corporate-success,.container--customer-management-page .corporate-success{display:flex;flex-direction:column;justify-content:center;text-align:center}.container--myaccount-v2-page .redeem-code .help-link,.container--myprofile-v2-page .redeem-code .help-link,.container--customer-management-page .redeem-code .help-link{color:#fff;text-decoration:underline}@-webkit-keyframes load8{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes load8{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@-webkit-keyframes message-animation{from{margin-top:40%;opacity:0}to{margin-top:0;opacity:1}}@keyframes message-animation{from{margin-top:40%;opacity:0}to{margin-top:0;opacity:1}}@-webkit-keyframes form-error-animation{from{margin-bottom:0;transform:translateY(-50%);opacity:0}to{margin-bottom:1.5625rem;transform:translateY(0%);opacity:1}}@keyframes form-error-animation{from{margin-bottom:0;transform:translateY(-50%);opacity:0}to{margin-bottom:1.5625rem;transform:translateY(0%);opacity:1}}@-webkit-keyframes fadein{from{top:0;opacity:0}to{top:5rem;opacity:1}}@keyframes fadein{from{top:0;opacity:0}to{top:5rem;opacity:1}}@-webkit-keyframes fadeout{from{top:5rem;opacity:1}to{top:0;opacity:0}}@keyframes fadeout{from{top:5rem;opacity:1}to{top:0;opacity:0}}.container--myaccount-v2-page .no-wrap-inline,.container--myprofile-v2-page .no-wrap-inline,.container--customer-management-page .no-wrap-inline{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.container--myaccount-v2-page .ul--tick,.container--myprofile-v2-page .ul--tick,.container--customer-management-page .ul--tick{list-style-image:url(/pf/resources/dist/fonts/check-rounded-premium.svg?d=484)}.container--myaccount-v2-page .ul--tick>li,.container--myprofile-v2-page .ul--tick>li,.container--customer-management-page .ul--tick>li{margin-top:1rem}.container--myaccount-v2-page .offers,.container--myprofile-v2-page .offers,.container--customer-management-page .offers{width:100%}.container--myaccount-v2-page .offers__error,.container--myprofile-v2-page .offers__error,.container--customer-management-page .offers__error{position:fixed;top:3.75rem;left:50%;z-index:2;width:90%;transform:translateX(-50%)}.container--myaccount-v2-page .offers__header,.container--myprofile-v2-page .offers__header,.container--customer-management-page .offers__header{position:fixed;z-index:2}.container--myaccount-v2-page .offers__heading,.container--myprofile-v2-page .offers__heading,.container--customer-management-page .offers__heading{width:100%;padding-top:7.75rem;padding-bottom:17.0625rem;color:#fff;text-align:center;background:linear-gradient(96.49deg, #24262b 17.56%, #1c1c1d 42.14%, #000 95.21%)}@media (min-width: 576px){.container--myaccount-v2-page .offers__heading,.container--myprofile-v2-page .offers__heading,.container--customer-management-page .offers__heading{padding-top:8.75rem}}@media (min-width: 992px){.container--myaccount-v2-page .offers__heading,.container--myprofile-v2-page .offers__heading,.container--customer-management-page .offers__heading{padding-top:9.6875rem}}.container--myaccount-v2-page .offers__heading__logo,.container--myprofile-v2-page .offers__heading__logo,.container--customer-management-page .offers__heading__logo{width:4.625rem;height:2.875rem;margin:0 auto 1.875rem}@media (min-width: 768px){.container--myaccount-v2-page .offers__heading__logo,.container--myprofile-v2-page .offers__heading__logo,.container--customer-management-page .offers__heading__logo{width:5.875rem;height:3.5625rem}}.container--myaccount-v2-page .offers__heading__logo-svg,.container--myprofile-v2-page .offers__heading__logo-svg,.container--customer-management-page .offers__heading__logo-svg{max-width:100%}.container--myaccount-v2-page .offers__heading__title,.container--myprofile-v2-page .offers__heading__title,.container--customer-management-page .offers__heading__title{max-width:50rem;margin:0 auto 1rem;padding:0 1.5rem;color:#fff;font-size:2rem;line-height:2.25rem}@media (min-width: 992px){.container--myaccount-v2-page .offers__heading__title,.container--myprofile-v2-page .offers__heading__title,.container--customer-management-page .offers__heading__title{font-size:3rem;line-height:3.125rem}}.container--myaccount-v2-page .offers__heading__subtext,.container--myprofile-v2-page .offers__heading__subtext,.container--customer-management-page .offers__heading__subtext{font-size:1rem}@media (min-width: 992px){.container--myaccount-v2-page .offers__heading__subtext,.container--myprofile-v2-page .offers__heading__subtext,.container--customer-management-page .offers__heading__subtext{font-size:1.375rem}}.container--myaccount-v2-page .offers__container,.container--myprofile-v2-page .offers__container,.container--customer-management-page .offers__container{max-width:67.125rem;margin:0 auto;padding:1rem}.container--myaccount-v2-page .offers__offers,.container--myprofile-v2-page .offers__offers,.container--customer-management-page .offers__offers{display:flex;justify-content:center;margin-top:-13.75rem;margin-right:-0.5rem;margin-left:-0.5rem}@media (max-width: 575px){.container--myaccount-v2-page .offers__offers,.container--myprofile-v2-page .offers__offers,.container--customer-management-page .offers__offers{flex-flow:column wrap;justify-content:inherit;margin-top:-12.5rem;margin-right:0;margin-left:0}}.container--myaccount-v2-page .offers__offer,.container--myprofile-v2-page .offers__offer,.container--customer-management-page .offers__offer{width:100%}@media (min-width: 576px){.container--myaccount-v2-page .offers__offer,.container--myprofile-v2-page .offers__offer,.container--customer-management-page .offers__offer{width:33.33%;padding-right:0.5rem;padding-left:0.5rem}}@media (min-width: 576px){.container--myaccount-v2-page .offers__offer--w-50,.container--myprofile-v2-page .offers__offer--w-50,.container--customer-management-page .offers__offer--w-50{width:50%}}.container--myaccount-v2-page .offers__benefits__title,.container--myprofile-v2-page .offers__benefits__title,.container--customer-management-page .offers__benefits__title{padding-top:2.625rem;padding-bottom:3rem;color:#000;font-size:1.875rem;line-height:2rem;text-align:center}@media (min-width: 576px){.container--myaccount-v2-page .offers__benefits__title,.container--myprofile-v2-page .offers__benefits__title,.container--customer-management-page .offers__benefits__title{font-size:1.5rem;line-height:1.5625rem}}@media (min-width: 992px){.container--myaccount-v2-page .offers__benefits__title,.container--myprofile-v2-page .offers__benefits__title,.container--customer-management-page .offers__benefits__title{padding-top:3.75rem;font-size:2rem;line-height:2.125rem}}.container--myaccount-v2-page .offers__benefits__title--premium,.container--myprofile-v2-page .offers__benefits__title--premium,.container--customer-management-page .offers__benefits__title--premium{padding-bottom:0.5rem}.container--myaccount-v2-page .offers__benefits__title--other,.container--myprofile-v2-page .offers__benefits__title--other,.container--customer-management-page .offers__benefits__title--other{margin-top:5rem;padding-top:0}.container--myaccount-v2-page .offers__other-plans,.container--myprofile-v2-page .offers__other-plans,.container--customer-management-page .offers__other-plans{padding-bottom:5rem;background:linear-gradient(88.82deg, #f8f9fa -1.37%, #f2f5f8 49.85%, #fff 98.99%)}.container--myaccount-v2-page .offers__other-plans__item,.container--myprofile-v2-page .offers__other-plans__item,.container--customer-management-page .offers__other-plans__item{width:100%;max-width:21.75rem;margin:0 auto}.container--myaccount-v2-page .offers__other-plans__item:not(:last-child),.container--myprofile-v2-page .offers__other-plans__item:not(:last-child),.container--customer-management-page .offers__other-plans__item:not(:last-child){padding-bottom:1rem}@media (min-width: 992px){.container--myaccount-v2-page .offers__other-plans__item,.container--myprofile-v2-page .offers__other-plans__item,.container--customer-management-page .offers__other-plans__item{width:33.33%;margin:unset;padding-right:0.5rem;padding-left:0.5rem}.container--myaccount-v2-page .offers__other-plans__item:not(:last-child),.container--myprofile-v2-page .offers__other-plans__item:not(:last-child),.container--customer-management-page .offers__other-plans__item:not(:last-child){padding-bottom:0}}.container--myaccount-v2-page .offers__other-plans__items,.container--myprofile-v2-page .offers__other-plans__items,.container--customer-management-page .offers__other-plans__items{flex-flow:column-reverse wrap;margin-right:0;margin-bottom:5rem;margin-left:0}@media (min-width: 992px){.container--myaccount-v2-page .offers__other-plans__items,.container--myprofile-v2-page .offers__other-plans__items,.container--customer-management-page .offers__other-plans__items{display:flex;flex-flow:row nowrap;justify-content:center;margin-right:-0.5rem;margin-left:-0.5rem}}.container--myaccount-v2-page .offers__title,.container--myprofile-v2-page .offers__title,.container--customer-management-page .offers__title{color:#111617;font-weight:600;font-size:2rem;text-align:center}.container--myaccount-v2-page .offer-card{position:relative;padding:2.125rem 1.5rem;text-align:center;background-color:#fff;border-top:0.0625rem solid #ecac0d}.container--myaccount-v2-page .offer-card__premium-tag{position:absolute;top:-0.0625rem;right:0;z-index:1}.container--myaccount-v2-page .offer-card__premium-tag.story-card__label{color:#000;font-weight:900;font-size:0.625rem;line-height:0.9375rem}.container--myaccount-v2-page .offer-card__title{color:#111617;font-size:1.5rem}.container--myaccount-v2-page .offer-card__price{display:flex;align-items:center;justify-content:center}.container--myaccount-v2-page .offer-card .price__big,.container--myaccount-v2-page .offer-card .price__currency{font-size:2rem;font-feature-settings:'tnum' on, 'onum' on}.container--myaccount-v2-page .offer-card .price__extra{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:auto;margin-top:0.625rem;padding:0.375rem 1.25rem;background-color:#f8f9fa;border-radius:0.375rem}.container--myaccount-v2-page .offer-card .price__description{position:relative;top:0.1875rem}.container--myaccount-v2-page .your-offer{padding:1.5rem 1.125rem;background-color:#f8f9fa}@media (min-width: 768px){.container--myaccount-v2-page .your-offer{padding:2.5rem 1.5rem}}.container--myaccount-v2-page .your-offer__label{display:inline-block;color:#111617;font-weight:900;text-transform:uppercase}.container--myaccount-v2-page .your-offer__header{display:flex;justify-content:space-between;margin-bottom:1rem}.container--myaccount-v2-page .your-offer__change-offer{cursor:pointer}.container--myaccount-v2-page .your-offer__info{margin-top:1.5rem;border-top:0.03125rem solid #bfc5c6}@media (min-width: 768px){.container--myaccount-v2-page .your-offer__info{margin-top:0;border-top:none}}.container--myaccount-v2-page .your-offer__info p{font-size:0.875rem;line-height:1.25rem}.container--myaccount-v2-page .your-offer__info p:not(:last-child){margin-bottom:1.25rem}.container--myaccount-v2-page .your-offer__total{display:flex;justify-content:space-between;border-top:0.03125rem solid #bfc5c6}.container--myaccount-v2-page .your-offer__icon{width:0.5rem;height:1.25rem;margin-right:0.25rem;stroke:#111617}@media (min-width: 768px){.container--myaccount-v2-page .your-offer__icon{display:none}}.container--myaccount-v2-page .your-offer__info-title{display:flex;justify-content:space-between}.container--myaccount-v2-page .your-offer__info-title .your-offer__label:hover,.container--myaccount-v2-page .your-offer__info-title:hover{cursor:pointer}@media (min-width: 768px){.container--myaccount-v2-page .your-offer__info-title:hover,.container--myaccount-v2-page .your-offer__info-title .your-offer__label:hover{cursor:default}}.container--myaccount-v2-page .your-offer__info-content{display:none}.container--myaccount-v2-page .your-offer__info-content--show{display:block}@media (min-width: 768px){.container--myaccount-v2-page .your-offer__info-content{display:block}}.container--myprofile-v2-page .newsletter-edit{display:flex;flex-direction:column;box-sizing:border-box;width:100%;min-height:inherit;padding:1.5rem 1.5rem 0 1.5rem}@media (min-width: 768px){.container--myprofile-v2-page .newsletter-edit{padding-top:3rem}}.container--myprofile-v2-page .newsletter-edit .newsletter-list{margin-bottom:0}.container--myprofile-v2-page .newsletter-edit .newsletter-footer{padding-right:1.5rem;padding-left:1.5rem}.container--myprofile-v2-page .newsletter-edit .newsletter-footer__buttons{max-width:23rem}.container--myprofile-v2-page .newsletter-edit .newsletter-filter{width:8.75rem}.container--myprofile-v2-page .newsletter-edit .news-letter-footer--has-back-btn .newsletter-footer__buttons{max-width:31.25rem}.container--myprofile-v2-page .newsletter-edit .news-letter-footer--has-back-btn .newsletter-footer__buttons .form-button:first-child{margin-right:0.5rem}.container--myprofile-v2-page .newsletter-edit .news-letter-footer--has-back-btn .newsletter-footer__buttons .form-button:last-child{margin-left:0.5rem}.container--myprofile-v2-page .newsletter-marketing{margin-bottom:auto;padding:1.5rem 0 3rem}@media (min-width: 625px){.container--myprofile-v2-page .newsletter-marketing{display:flex;justify-content:center}}@media (max-width: 520px){.container--myprofile-v2-page .newsletter-marketing .checkbox__input{margin-top:0.25rem}}.modal--reauthenticate.container--myaccount-v2-page{position:fixed;top:0;right:0;left:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.6)}.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper{position:static;max-width:31.75rem;margin:1rem;padding:4rem;border-radius:0.1875rem;transform:none}@media (max-width: 575px){.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper{padding:3rem 1.5rem}}.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__title{color:#111617}@media (max-width: 375px){.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__title{font-size:1.25rem;line-height:1.625rem}}.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__incorrect-password{margin-top:0.75rem;color:#c13615}.modal--reauthenticate.container--myaccount-v2-page .reauth-modal__wrapper__incorrect-password__link{display:inline-block;color:#c13615;text-decoration:underline}.modal--reauthenticate.container--myaccount-v2-page .forgot-password{color:#38a3d7;text-decoration:underline}@media (max-width: 575px){.modal--reauthenticate.container--myaccount-v2-page .forgot-password{font-size:0.875rem;line-height:1.125rem}}.modal--reauthenticate.container--myaccount-v2-page .modal-error{margin:0-4rem}.modal--reauthenticate.container--myaccount-v2-page .modal-error .form-error{position:static;max-width:100%;margin-top:4rem;margin-bottom:-4rem;border-radius:0 0 0.1875rem 0.1875rem;-webkit-animation:none;animation:none}@media (max-width: 575px){.modal--reauthenticate.container--myaccount-v2-page .modal-error{margin:0-1.5rem}}.container--myaccount-v2-page .gift-offers .offers__offers{margin:-7.5rem 1.5rem 5.3125rem}@media (min-width: 768px){.container--myaccount-v2-page .gift-offers .offers__offers{margin:-12.5rem 5.8125rem 5.3125rem}}.container--myaccount-v2-page .gift-offers .subs-card__description p{margin-bottom:0}.container--myaccount-v2-page .gift-offers .offers__heading{padding-bottom:7rem}.container--myaccount-v2-page .gift-offers .offers__container{max-width:80.9375rem;padding:0}@media (min-width: 576px){.container--myaccount-v2-page .gift-offers .offers__container{padding-top:5.375rem}}.container--myaccount-v2-page .gift-offers .offers__container-header{padding:1.25rem}@media (min-width: 576px){.container--myaccount-v2-page .gift-offers .offers__container-header{padding:0;padding-bottom:5.375rem}}.container--myaccount-v2-page .gift-offers .offers__other-plans__item{max-width:25.75rem}.container--myaccount-v2-page .gift-code-success{display:flex;flex-direction:column;justify-content:center;height:100%;text-align:center}.navigation__item-button{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0.625rem 1.5625rem;background-color:transparent;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.navigation__item-button .navigation__item-link{padding:0}.navigation__item-button .navigation__item-icon{transition:all 0.1s}.navigation__item-button:hover .navigation__item-link{color:#fff}.navigation__item-link{display:block;padding:0.625rem 1.5625rem;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif;line-height:1.45;opacity:1;transition:all 0.2s}.navigation__item-link-color{color:#c4cccb}.navigation__item-link-color:hover{color:#fff}.navigation__item-link:hover,.navigation__item-link:focus{color:#fff !important;opacity:1}.navigation__item-link--active{color:#38a3d7}.navigation__item-link--no-submenu:hover{background-color:#313c3d}.navigation__item-icon{width:0.3125rem;height:0.5rem;padding:0.125rem 0.1875rem;color:#4c585d;border:2px solid #4c585d;border-radius:50%}.page-not-found{padding:1.5625rem 1.875rem 17.75rem;background-color:#000;background-image:url(/pf/resources/dist/images/404-bg.png?d=484);background-repeat:no-repeat;background-position:bottom;background-size:contain}@media (min-width: 576px){.page-not-found{padding:16.5625rem 1.25rem 7rem;background-image:url(/pf/resources/dist/images/404-bg-sm.png?d=484);background-size:auto auto}}@media (min-width: 768px){.page-not-found{padding:16.5625rem 1.875rem 7rem}}@media (min-width: 992px){.page-not-found{padding:16.5625rem 2.8125rem 7rem}}@media (min-width: 1200px){.page-not-found{padding:16.5625rem 4.0625rem 7rem}}.page-not-found__heading{margin-top:0;color:#fff;font-size:4rem}@media (min-width: 576px){.page-not-found__heading{font-size:6.875rem}}.page-not-found__description{margin-bottom:0;margin-left:0.3125rem;color:#fff;font-size:1rem;font-family:"Stag","Georgia",serif;line-height:1.25}@media (min-width: 576px){.page-not-found__description{font-size:1.625rem}}.page-not-found__description:first-of-type{margin-top:0.9375rem}@media (min-width: 576px){.page-not-found__description:first-of-type{margin-top:1.5625rem}}@-webkit-keyframes loading-animation{0%{transform:translateY(19.0625rem)}100%{transform:translateY(0)}}@keyframes loading-animation{0%{transform:translateY(19.0625rem)}100%{transform:translateY(0)}}@media (min-width: 1400px){.container--sidebar-is-active .premium-toaster{margin-left:18.75rem}}.premium-toaster-safari-fix:not(:root:root){transform:translateZ(0);will-change:transform}.premium-toaster{position:fixed;bottom:0;z-index:2;width:68.5rem;height:17.9375rem;background:url(/pf/resources/dist/images/left.jpg?d=484) left bottom no-repeat,url(/pf/resources/dist/images/right.jpg?d=484) right bottom no-repeat;background-color:#f2f2f2;border-top:0.125rem solid #ecac0c;border-right:0.125rem solid #ecac0c;border-left:0.125rem solid #ecac0c;transition:bottom .2s cubic-bezier(0.55, 0.05, 0.67, 0.19)}@media (max-width: 1200px){.premium-toaster{width:100%}}@media (max-width: 992px){.premium-toaster{background:url(/pf/resources/dist/images/left-tab.jpg?d=484) left top no-repeat,url(/pf/resources/dist/images/right-tab.jpg?d=484) right top no-repeat;background-color:#f2f2f2}}@media (max-width: 550px){.premium-toaster{background:url(/pf/resources/dist/images/left-mob.jpg?d=484) left -0.5rem top no-repeat,url(/pf/resources/dist/images/right-mob.jpg?d=484) right -0.5rem top no-repeat;background-color:#f2f2f2}}.premium-toaster.up{bottom:0}.premium-toaster.up.load{bottom:0;-webkit-animation:loading-animation .2s;animation:loading-animation .2s}.premium-toaster.up.close{bottom:-19.0625rem}.premium-toaster.down{bottom:-13.5625rem}@media (max-width: 992px){.premium-toaster.down{bottom:-14.875rem}}.premium-toaster.down.load{bottom:-13.5625rem;-webkit-animation:loading-animation .2s;animation:loading-animation .2s}@media (max-width: 992px){.premium-toaster.down.load{bottom:-14.875rem}}.premium-toaster.down.close{bottom:-19.0625rem}.premium-toaster .btn-premium{display:inline-block;margin:0 auto 1.25rem;padding:0.5rem 0.75rem;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-align:center;text-decoration:none;vertical-align:middle;background-color:#ecac0c;border:0.0625rem solid #ecac0c;border-radius:0.25rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;color:#000;font-size:0.8125rem}.premium-toaster .btn-premium:hover{background-color:#d49b0b;border-color:#d49b0b}.premium-toaster .toaster-control{position:absolute;top:-1.875rem;right:0;left:0;width:2.5rem;height:1.875rem;margin:auto;background:url(/pf/resources/dist/images/control-tab.png?d=484) bottom no-repeat;cursor:pointer}.premium-toaster .toaster-control .arrow{width:0;height:0;margin:1.375rem auto 0;border-top:0.4375rem solid #383838;border-right:0.4375rem solid transparent;border-left:0.4375rem solid transparent}.premium-toaster .toaster-control .arrow.up{border-top:none;border-bottom:0.4375rem solid #383838}.premium-toaster .header-wrap{height:4.375rem;padding:0;overflow:hidden}@media (max-width: 992px){.premium-toaster .header-wrap{height:3rem}}.premium-toaster .header-wrap .toaster-control-bar{position:absolute;top:0;left:0;width:70%;height:4.25rem}@media (max-width: 992px){.premium-toaster .header-wrap .toaster-control-bar{width:87%;height:2.875rem}}@media (max-width: 550px){.premium-toaster .header-wrap .toaster-control-bar{width:80%}}.premium-toaster .header-wrap h2{margin:1.5625rem 0 1.125rem;color:#000;font-weight:400;font-size:1.25rem;text-align:center}@media (max-width: 992px){.premium-toaster .header-wrap h2{margin-top:0.625rem;margin-bottom:-0.5rem;font-size:0.9375rem;line-height:0.9375rem}}@media (max-width: 350px){.premium-toaster .header-wrap h2{font-size:0.75rem}}.premium-toaster .header-wrap .offer-peek{position:absolute;top:1.125rem;left:2.5rem;margin:0.0625rem 0 0.3125rem}@media (max-width: 992px){.premium-toaster .header-wrap .offer-peek{position:static;margin:0;margin-top:0.375rem;text-align:center}}.premium-toaster .header-wrap .offer-peek h4{margin:0;color:#000;font-weight:600;font-size:1.125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 992px){.premium-toaster .header-wrap .offer-peek h4{display:inline-block;margin-right:0.1875rem;font-size:0.75rem}}@media (max-width: 350px){.premium-toaster .header-wrap .offer-peek h4{font-size:0.6875rem}}.premium-toaster .header-wrap .offer-peek p{margin:0;color:#000;font-weight:400;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 992px){.premium-toaster .header-wrap .offer-peek p{display:inline-block}}@media (max-width: 350px){.premium-toaster .header-wrap .offer-peek p{font-size:0.6875rem}}.premium-toaster .header-wrap .btn.top{position:absolute;top:1.0625rem;right:8.75rem;color:#000;font-weight:600;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 992px){.premium-toaster .header-wrap .btn.top{display:none}}.premium-toaster .header-wrap .close{position:absolute;top:0;right:0;width:4.0625rem;height:4.0625rem;cursor:pointer;opacity:0.8}@media (max-width: 992px){.premium-toaster .header-wrap .close{width:3.25rem;height:3.25rem}}.premium-toaster .header-wrap .close:hover{opacity:1}.premium-toaster .header-wrap .close::before,.premium-toaster .header-wrap .close::after{position:absolute;top:1.5625rem;right:1.875rem;width:0.1875rem;height:1.3125rem;background-color:#1c1c1c;content:' '}@media (max-width: 992px){.premium-toaster .header-wrap .close::before,.premium-toaster .header-wrap .close::after{top:0.8125rem;right:1.625rem}}.premium-toaster .header-wrap .close::before{transform:rotate(45deg)}.premium-toaster .header-wrap .close::after{transform:rotate(-45deg)}.premium-toaster .see-all{margin:0 auto;padding-top:0.6875rem;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center}.premium-toaster .see-all a{color:#000}.premium-toaster .offer-wrap{display:flex;align-items:center;justify-content:center;width:37.5rem;margin:0 auto}@media (max-width: 992px){.premium-toaster .offer-wrap{width:100%;background-color:#f2f2f2}}.premium-toaster .offer{width:12.875rem;height:9rem;margin:0.125rem 0.5rem;padding:0.9375rem 0.875rem;text-align:center;background:#fff;border:0.0625rem solid #ecac0c;box-shadow:0.125rem 0.125rem 0.5625rem 0 #ddd}@media (max-width: 992px){.premium-toaster .offer{margin-top:1.25rem}}@media (max-width: 550px){.premium-toaster .offer:nth-child(2){display:none}}.premium-toaster .offer h2{margin:0;color:#000;font-weight:400;font-size:1.1875rem}.premium-toaster .offer .offer-title{margin:0 0 0.125rem;color:#000;font-weight:400;font-size:1.5625rem;font-family:"Stag","Georgia",serif}.premium-toaster .offer .offer-description{width:100%;margin-top:0.1875rem;margin-bottom:0.3125rem;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:0.9375rem;text-align:center}.premium-toaster .offer .offer-pricing{width:13.125rem;min-height:3.625rem;margin:0.25rem auto;font-weight:400;font-family:"Stag","Georgia",serif}.premium-toaster .offer .offer-pricing .text-muted{width:8.4375rem;min-height:0.75rem;margin:0 auto -0.125rem;color:#777;font-size:0.75rem;line-height:0.75rem;text-align:left}.premium-toaster .offer .offer-pricing h3{margin:0}.premium-toaster .offer .offer-pricing h3 sup{top:-0.4375rem;margin-right:0.25rem;color:#000;font-weight:400;font-size:1.125rem}.premium-toaster .offer .offer-pricing h3 b{color:#000;font-weight:normal;font-size:1.625rem}.premium-toaster .offer .offer-pricing h3 sub{bottom:0;margin-left:0.3125rem;color:#000;font-weight:400;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.premium-toaster .offer .offer-pricing span{display:block;color:#ecac0c;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.premium-toaster .offer .btn-premium{padding:0.3125rem 1.625rem}@media print{.premium-toaster{display:none}}.search-page{max-width:38.75rem;margin:0 auto;padding:1.25rem 0.625rem 0}@media (min-width: 992px){.search-page{display:flex;flex-wrap:wrap;max-width:58.75rem;padding:2.5rem 0}}@media (min-width: 992px){.search-page__header{flex-basis:100%}}.search-page__heading{display:flex;align-items:center;justify-content:center;font-weight:700;font-size:2.1875rem}@media (max-width: 767px){.search-page__heading{display:block}}@media (max-width: 767px){.search-page__heading-text{width:100%;text-align:center}}.search-page__heading-inputs-input,.search-page__heading-inputs-submit{display:inline}@media (max-width: 767px){.search-page__heading-inputs{text-align:center}}.search-page__heading-input{width:13.75rem;color:#38a3d7;font-weight:300;font-style:italic;border-top:none;border-right:none;border-bottom:1px solid #d5d5d5;border-left:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (min-width: 768px){.search-page__heading-input{margin-left:0.5rem}}.search-page__heading-submit{margin-left:0.5rem;padding:0;background-color:transparent;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.search-page__heading-icon{width:1.5rem;height:1.5rem}.search-page__results-number{margin-top:3.125rem;color:#4c585d;font-weight:600;font-size:1.125rem}.search-page__results-number--featured{font-weight:700}@media (min-width: 992px){.search-page__results-list{flex-basis:calc(100% / 3 * 2 - 1.25rem / 2)}}.search-page__results-list .ad{margin:1.25rem 0}@media (min-width: 992px){.search-page__results-list .ad{display:none}}@media (max-width: 991px){.search-page__results-list .ad+.story-card--summary{border-top:1px solid #d5d5d5}}.search-page .story-card--summary{padding:0.625rem 0 0.9375rem;border-bottom:1px solid #d5d5d5}@media (max-width: 767px){.search-page .story-card--summary{margin-right:0;margin-left:0}}@media (max-width: 991px){.search-page__sidebar{display:none}}@media (min-width: 992px){.search-page__sidebar{flex-basis:calc(100% / 3 - 1.25rem);margin-top:0;margin-left:1.25rem}}.search-page__sidebar .ad:not(:first-of-type){margin-top:100vh}.search-page__pagination{display:flex;align-items:center;justify-content:center;margin:3.4375rem 0}@media (min-width: 992px){.search-page__pagination{margin:5rem 0}}.search-page__pagination-item{color:#9e9f9f;font-size:0.875rem}.search-page__pagination-item:not(:first-of-type){margin-left:1.5625rem}.search-page__pagination-item--current{color:#313c3d;font-weight:600}.search-page__pagination-previous,.search-page__pagination-next{display:flex;align-items:center;justify-content:center;width:3.25rem;height:2.1875rem;color:#fff;font-weight:400;font-size:0.875rem;text-transform:uppercase;background-color:#313c3d;border-radius:0.1875rem}.search-page__pagination-next{margin-left:1.5625rem}.search-page__pagination-ellipsis{margin-left:0.4375rem;color:#c4cccb}.search-page__pagination-ellipsis+.search-page__pagination-item{margin-left:0.4375rem}@media (min-width: 768px) and (max-width: 992px){.large-search-page{max-width:calc(100% - 40px);padding-right:0;padding-left:0}}.section-chain{width:100%}@media (min-width: 768px){.section-chain{padding:1.25rem 1.25rem 0}}@media (min-width: 992px){.section-chain{padding:1.25rem 0}}.section-chain:not(:first-of-type){margin-top:1.25rem}@media (min-width: 992px){.section-chain:not(:first-of-type){margin-top:2.5rem}}.section-chain:not(:first-of-type).section-chain--journalist-page{margin-top:2.375rem}.section-chain:not(:first-of-type).section-chain--journalist-page.journalists-content{margin-top:0}.section-chain.section-chain-insight-widget{margin-top:0}@media (min-width: 768px){.section-chain__wrapper,.section-chain__header{width:calc(100% - 1.25rem * 2)}}@media (min-width: 992px){.section-chain__wrapper,.section-chain__header{max-width:58.75rem;margin-right:auto;margin-left:auto}}.section-chain[class*='-bg-color']{padding-top:1.25rem;padding-bottom:1.25rem}@media (min-width: 768px){.section-chain[class*='-bg-color']{padding-top:2.5rem;padding-bottom:2.5rem}}.section-chain__brand{margin-left:auto}@media (max-width: 575px){.section-chain__brand{margin-right:0.625rem;padding-top:0.625rem}}.section-chain__brand--watch-me{width:14.375rem;height:2.25rem}.section-chain__brand--brand-insights{width:3.5rem;height:3.5rem}.section-chain__brand--be-well{width:11.6875rem;height:3.125rem}.section-chain__brand--driven{width:9.3125rem;height:1.25rem}.section-chain__brand--nzme{width:5.6875rem;height:1.9375rem}.section-chain__brand--spy{width:5.375rem;height:3.5rem}.section-chain__brand--viva{width:4.6875rem;height:3.125rem}.section-chain__brand--one-roof{width:10.3125rem;height:2.625rem}.section-chain__brand--time-out{width:8.3125rem;height:1.875rem}.section-chain__brand--nzh-premium{width:10.625rem;height:3.1875rem}.section-chain__brand--eatwell{width:8.8125rem;height:2.25rem}.section-chain__brand--the-country{width:14.3125rem;height:2.625rem}.section-chain .story-card--has-label::before{top:-0.0625rem}.section-chain .story-card__label{top:-0.0625rem}.section-chain .slick-slide .story-card--has-label::before{top:0;height:0.08125rem}.section-chain .slick-slide .story-card__label{top:0}.section-chain .story-card--headline,.section-chain .story-card--headline-image-small{padding-bottom:0.625rem;border-bottom:1px solid #d5d5d5}.section-chain__heading{margin-top:0;font-weight:300;font-size:1.875rem;font-family:"Stag","Georgia",serif;text-align:center;border-bottom:none}@media (min-width: 576px){.section-chain__heading{margin-left:0.625rem;text-align:left}}@media (min-width: 768px){.section-chain__heading{margin-left:0}}.section-chain__heading--has-label .section-chain__heading-link{font-style:italic;border-bottom:1px solid #d5d5d5}@media (min-width: 576px){.section-chain__heading--has-label .section-chain__heading-link{padding-right:3.125rem}}.section-chain__heading-label{display:block;font-weight:700}@media (min-width: 576px){.section-chain__heading-label{display:inline;margin-right:1.25rem}}.section-chain__heading-link--default{color:inherit}@media (min-width: 992px){.section-chain .section-chain__wrapper--has-sidebar,.section-chain .section-chain__wrapper--has-sidebar-left{display:flex;flex-wrap:wrap;align-items:flex-start}}@media (min-width: 992px){.section-chain .section-chain__wrapper--has-sidebar .chain-sidebar{margin-left:1.25rem}}@media (min-width: 768px){.section-chain .section-chain__wrapper--has-sidebar-left .chain-main{order:2}}@media (min-width: 768px){.section-chain .section-chain__wrapper--has-sidebar-left .chain-sidebar{order:1;margin-right:1.25rem}}.section-chain--triple-image-with-ad .section-chain__wrapper--has-sidebar-left .chain-main .ad{margin-top:1.25rem}@media (min-width: 768px){.section-chain--triple-image-with-ad .section-chain__wrapper--has-sidebar-left .chain-main .ad{display:flex;flex-wrap:wrap;margin:0}}@media (min-width: 992px){.section-chain--triple-image-with-ad .section-chain__wrapper--has-sidebar-left .chain-main .ad{display:block;flex-basis:300px}}@media (min-width: 768px){.section-chain--triple-image-with-ad .section-chain__wrapper--has-sidebar-left .chain-main .only-one-article{margin-right:1.25rem}}.section-chain--white-text{color:#fff}.section-chain--white-text .section-chain__header,.section-chain--white-text .section-chain__heading,.section-chain--white-text .story-card__kicker,.section-chain--white-text .story-card__subkicker,.section-chain--white-text .story-card__subkicker-separator,.section-chain--white-text .story-card__heading,.section-chain--white-text .story-card__heading__link,.section-chain--white-text .story-card .meta-data{color:inherit}.section-chain--black-text{color:#111617}.section-chain--black-text .section-chain__header,.section-chain--black-text .section-chain__heading,.section-chain--black-text .story-card__kicker,.section-chain--black-text .story-card__subkicker,.section-chain--black-text .story-card__subkicker-separator,.section-chain--black-text .story-card__heading,.section-chain--black-text .story-card__heading__link,.section-chain--black-text .story-card__deck,.section-chain--black-text .story-card .meta-data{color:inherit}.section-chain--black-text .story-card--featured,.section-chain--black-text .story-card--featured-medium,.section-chain--black-text .story-card--featured-large,.section-chain--black-text .story-card--featured-extra-large{color:#fff}.section-chain--black-text .story-card__comment-icon-wrapper,.section-chain--black-text .story-card__video-icon-wrapper{border-right-color:#111617}.section-chain--black-text .story-card__article-video_icon,.section-chain--black-text .story-card__comment-icon{fill:#111617}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper{display:flex;flex-wrap:wrap}}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card'],.section-chain--triple-image .section-chain__wrapper .ad{flex-basis:calc(100% / 3 - 1.25rem * 2 / 3)}}.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:not(:first-of-type),.section-chain--triple-image .section-chain__wrapper .ad:not(:first-of-type){margin-top:1.25rem}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:not(:first-of-type),.section-chain--triple-image .section-chain__wrapper .ad:not(:first-of-type){margin-top:0}}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:not(:nth-of-type(3n+1)),.section-chain--triple-image .section-chain__wrapper .ad:not(:nth-of-type(3n+1)){margin-left:1.25rem}}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:nth-of-type(n+4),.section-chain--triple-image .section-chain__wrapper .ad:nth-of-type(n+4){margin-top:1.25rem}}@media (max-width: 767px){.section-chain--subhero .section-chain__wrapper .chain-sidebar,.section-chain--gallery-hero .section-chain__wrapper .chain-sidebar{margin-top:1.25rem}}.section-chain--image-row .section-chain__wrapper .story-card .meta-data,.section-chain--hero-left .section-chain__wrapper .story-card .meta-data,.section-chain--quad-small-image .section-chain__wrapper .story-card .meta-data{display:block}.section-chain--image-row .section-chain__wrapper .story-card .meta-data__read-time,.section-chain--hero-left .section-chain__wrapper .story-card .meta-data__read-time,.section-chain--quad-small-image .section-chain__wrapper .story-card .meta-data__read-time{margin-top:0.3125rem}@media (min-width: 576px){.section-chain--image-row .section-chain__wrapper .story-card__image-link,.section-chain--hero-left .section-chain__wrapper .story-card__image-link,.section-chain--quad-small-image .section-chain__wrapper .story-card__image-link{padding-top:0}}@media (min-width: 768px){.section-chain--carousel{padding:0}}@media (min-width: 576px){.section-chain--carousel .section-chain__heading{margin-left:0}}.section-chain--carousel .section-chain__header{margin-right:auto;margin-left:auto}@media (min-width: 576px){.section-chain--carousel .section-chain__header{width:calc(100% - 1.25rem * 2 - 5.625rem)}}@media (min-width: 992px){.section-chain--carousel .section-chain__header{max-width:57.75rem}}.section-chain--carousel .section-chain__wrapper{margin:0 auto}@media (min-width: 576px){.section-chain--carousel .section-chain__wrapper{width:calc(100% - 1.25rem * 2 - 4.5rem);padding:0}}.section-chain--carousel .section-chain__wrapper .story-card{border-bottom:none}.section-chain--hero-left{padding-top:1.25rem;padding-bottom:1.25rem}.section-chain--hero-left .section-chain__wrapper{display:flex;flex-wrap:wrap;align-items:flex-start}.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem);margin-top:1.25rem}@media (min-width: 768px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2)}}@media (min-width: 992px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']{flex-basis:140px;max-width:8.75rem;margin-top:0;margin-left:1.25rem}}.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:first-of-type{flex-basis:100%;max-width:100%;margin-top:0;margin-left:0}@media (min-width: 992px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:first-of-type{flex-basis:620px}}.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:last-of-type{margin-left:calc(1.25rem / 2)}@media (min-width: 768px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:last-of-type{margin-left:1.25rem}}.section-chain--image-row .section-chain__wrapper,.section-chain--quad-small-image .section-chain__wrapper{display:flex;flex-wrap:wrap}.section-chain--image-row .section-chain__wrapper>article[class^='story-card'],.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem);border-bottom:none}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card'],.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 3 - 1.25rem * 2 / 3);margin-left:1.25rem}}@media (min-width: 992px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card'],.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']{flex-basis:140px}}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:first-of-type,.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:first-of-type{margin-left:0}}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(4){margin-left:0}}@media (min-width: 992px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(4){margin-left:1.25rem}}.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3){margin-top:calc(1.25rem / 2)}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3){margin-top:0}}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4){margin-top:1.25rem}}@media (min-width: 992px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4){margin-top:0}}.section-chain--quad-small-image .section-chain__wrapper .ad{flex-basis:300px;margin-top:1.25rem}@media (max-width: 767px){.section-chain--quad-small-image .section-chain__wrapper .ad{display:flex;flex-basis:100%;flex-direction:column;justify-content:center;padding:1.25rem}}@media (min-width: 768px){.section-chain--quad-small-image .section-chain__wrapper .ad{margin-left:1.25rem}}@media (min-width: 992px){.section-chain--quad-small-image .section-chain__wrapper .ad{margin-top:0}}@media (min-width: 768px){.section-chain--gallery-hero+.section-chain--triple-image{margin-top:0}}.section-chain .placeholder{position:relative;border-bottom:none}.section-chain .placeholder--name-tip{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.section-chain .placeholder--container{box-sizing:border-box;width:100%;background-color:#f5f5f5;border:1px #d5d5d5 solid;border-radius:4px}.breaking-news+.section-chain{margin-top:0}@media (min-width: 768px){.breaking-news+.section-chain{margin-top:1.25rem}}@media (max-width: 767px){.section-chain-with-native .ad-native{margin:0.5rem 0.625rem}}@media (max-width: 991px){.section-chain-with-native .box-ad{display:block}}@media (min-width: 768px) and (max-width: 991px){.section-chain-with-native .box-ad{float:right;width:50%}}@media (min-width: 992px){.section-chain-with-native .box-ad .ad-container{position:absolute;z-index:2;justify-content:center;width:300px}}@media (min-width: 768px){.section-chain-with-native--subhero .chain-main-triple{display:flex;flex-wrap:wrap}}@media all and (min-width: 768px) and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: none){.section-chain-with-native--subhero .chain-main-triple{flex:1 0 100%}}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple>:not(:nth-child(3n+1)),.section-chain-with-native--subhero .chain-main-triple .non-stack>:not(:nth-child(2n+1)){margin-left:1.25rem}}.section-chain-with-native--subhero .chain-main-triple article[class^='story-card'],.section-chain-with-native--subhero .chain-main-triple .ad{flex-basis:100%;margin-top:1.25rem}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple article[class^='story-card'],.section-chain-with-native--subhero .chain-main-triple .ad{flex-basis:300px}.section-chain-with-native--subhero .chain-main-triple article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main-triple .ad:not(:first-of-type){margin-top:1.25rem}}.section-chain-with-native--subhero .chain-main-triple article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main-triple .ad:not(:first-of-type){margin-top:1.25rem}.section-chain-with-native--subhero .chain-main-triple .blank{border-bottom:0}@media (max-width: 991px){.section-chain-with-native--subhero .chain-main-triple .blank{display:none}}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple .stack{flex-basis:calc(100% / 3 - 1.5rem)}}.section-chain-with-native--subhero .chain-main-triple .stack article[class^='story-card']:first-of-type:not(.story-card--has-label) .story-card__kicker-wrapper{padding-top:0}.section-chain-with-native--subhero .chain-main-triple .stack article[class^='story-card']:nth-of-type(n+2){margin-top:0}.section-chain-with-native--subhero .chain-main-triple .non-stack{display:flex;flex-wrap:wrap}@media all and (-ms-high-contrast: active), (-ms-high-contrast: none){.section-chain-with-native--subhero .chain-main-triple .non-stack{flex:1 0 100%}}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple .non-stack{flex-basis:100%}}.section-chain-with-native--subhero .chain-main-triple .non-stack article[class^='story-card']{margin-top:0}.section-chain-with-native--subheronew .chain-main .ad-native{flex-basis:100%;margin:0 0.625rem}@media (max-width: 767px){.section-chain-with-native--subheronew .chain-main .ad-native{flex-basis:100%;margin:0.625rem}}@media (min-width: 768px){.section-chain-with-native--subheronew .chain-main .ad-native{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2);margin:0}}@media (min-width: 992px){.section-chain-with-native--subheronew .chain-main .ad-native{flex-basis:300px}}.section-chain-with-native--subheronew .chain-main .story-card:first-of-type{margin-top:1.25rem}@media (min-width: 768px){.section-chain-with-native--subheronew .chain-main .story-card:first-of-type{margin-top:0;margin-left:1.25rem}}@media (min-width: 768px){.section-chain-with-native--subheronew .chain-main-triple{display:flex;flex-wrap:wrap}}@media all and (min-width: 768px) and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: none){.section-chain-with-native--subheronew .chain-main-triple{flex:1 0 100%}}.section-chain-with-native--subheronew .chain-main-triple article[class^='story-card']{flex-basis:100%;margin-top:1.25rem}@media (min-width: 992px){.section-chain-with-native--subheronew .chain-main-triple article[class^='story-card']{flex-basis:300px;margin-top:1.25rem;margin-left:1.25rem}.section-chain-with-native--subheronew .chain-main-triple article[class^='story-card']:nth-child(3n+1){margin-left:0}}.section-chain-with-native--subheronew .blank{border-bottom:0}@media (max-width: 991px){.section-chain-with-native--subheronew .blank{display:none}}.section-chain-with-native--subheronew .stack{margin-top:1.25rem}@media (min-width: 992px){.section-chain-with-native--subheronew .stack{flex-basis:300px;margin-left:1.25rem}}.section-chain-with-native--subheronew .stack article[class^='story-card']{margin:0 0.625rem}@media (min-width: 768px){.section-chain-with-native--subheronew .stack article[class^='story-card']{margin:0}}.section-chain-with-native--subheronew .stack article[class^='story-card']:first-of-type .story-card__kicker-wrapper{padding-top:0}.section-chain-with-native--subheronew .stack article[class^='story-card']:nth-of-type(n+2){margin-top:0}.section-chain-with-native--subheronew .non-stack{display:flex;flex-wrap:wrap}@media all and (-ms-high-contrast: active), (-ms-high-contrast: none){.section-chain-with-native--subheronew .non-stack{flex:1 0 100%}}@media (min-width: 992px){.section-chain-with-native--subheronew .non-stack{flex-basis:100%}}.section-chain-with-native--subheronew .non-stack article[class^='story-card']{margin-top:0}.section-chain-with-native--subheronew .non-stack div[class^='content']{margin-top:0.3125rem;margin-left:1.25rem}@media (max-width: 767px){.section-chain-with-native--subheronew .non-stack div[class^='content']{flex-basis:100%;margin:0.5rem 0.625rem 0;border-bottom:1px solid #d5d5d5}}.sidebar{position:fixed;top:4.0625rem;bottom:0;left:-100%;z-index:5;display:none;width:100%;background-color:#121617}@media (min-width: 576px){.sidebar{position:absolute;display:none;width:18.75rem}}@media (min-width: 576px) and (max-width: 1199px){.sidebar{transform:translateX(-100%)}}.sidebar--active{display:block}.sidebar .nav-control-overlay{position:absolute;left:18.75rem;width:calc(100vw - 18.75rem);height:100%;background-color:#000;opacity:0;transition-delay:0.3s;transition-duration:0.5s;transition-property:opacity}@media (max-width: 575px){.sidebar .nav-control-overlay{display:none}}@media (min-width: 1200px){.sidebar .nav-control-overlay{display:none;width:calc(68.75rem - 18.75rem)}}@media (min-width: 576px) and (max-width: 1399px){.container--sidebar-is-active .sidebar .nav-control-overlay{display:block;opacity:0.5}}.sidebar__date{display:block;margin:0 auto;padding:0.625rem 0;color:#fff;font-weight:600;text-align:center;border-top:2px solid #23292a;border-bottom:2px solid #23292a}.sidebar__search{display:flex;align-items:center;justify-content:center;padding:0.625rem 0}@media (min-width: 576px){.sidebar__search{display:none}}.sidebar__search-input{width:0rem;height:1.875rem;padding-left:0.625rem;color:#fff;font-weight:300;font-size:0.875rem;background-color:#313c3d;border:0;opacity:0;transition:width 0.1s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}.sidebar__search-input::-moz-placeholder{color:#fff}.sidebar__search-input:-ms-input-placeholder{color:#fff}.sidebar__search-input::placeholder{color:#fff}.sidebar__search-submit{width:2rem;height:2rem;padding:0;color:#fff;background-color:#313c3d;border:1px solid #313c3d;border-radius:0.125rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.sidebar__search-submit:hover{border-color:#fff}.sidebar__search-icon{width:0.875rem;height:0.875rem;margin:auto}.sidebar__search-is-active .sidebar__search-input{width:calc(100% - 2rem);opacity:1}.sidebar__search-is-active .sidebar__search-submit{border-color:#fff}.sidebar+.main{margin-top:4.0625rem}@media (min-width: 576px){.sidebar+.main{margin-top:0}}.container--sidebar-is-active .sidebar{left:0;display:block}@media (max-width: 575px){.container--sidebar-is-active .sidebar{height:calc(100vh - 4.0625rem);overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}}@media (min-width: 576px){.container--sidebar-is-active .sidebar{transform:translateX(0);transition:transform 0.2s ease;transition-duration:0.3s}}@media (min-width: 1400px){.container--sidebar-is-active .sidebar{transition-delay:0.3s}}@media (max-width: 575px){.container--sidebar-is-active .sidebar--is-fixed{height:100vh;overflow:hidden}}@media (max-width: 575px){.body--sm-sidebar-is-active{position:fixed;overflow:hidden}}@media print{.sidebar{display:none !important}}.subnavigation{position:relative}.subnavigation__item-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#313c3d}@media (max-width: 575px){.subnavigation__item-wrapper{position:fixed;top:4.0625rem;height:calc(100vh - 4.0625rem);overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;scroll-behavior:smooth;transform:translateX(100%);opacity:0;transition:transform, opacity 0.2s}}@media (min-width: 576px){.subnavigation__item-wrapper{bottom:0;display:none;width:75%}}@media (max-width: 575px){.subnavigation__item-wrapper--is-active{z-index:6;transform:translateX(0);opacity:1;transition:0.2s transform, opacity ease-in-out}}@media (min-width: 576px){.subnavigation__item-wrapper--is-active{left:100%;display:block}}.subnavigation__button-close{margin-top:0.625rem;color:#fff;background-color:transparent;border:none;transform:rotate(180deg);cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (min-width: 576px){.subnavigation__button-close{display:none}}.subnavigation__button-close .navigation__item-icon{color:#fff;border-color:#fff}.subnavigation__item-link{display:block;padding:0.625rem 1.5625rem;color:#fff;font-weight:400;font-family:"Stag","Georgia",serif;background-color:#313c3d;transition:all 0.2s}@media (min-width: 576px){.subnavigation__item-link{font-size:1rem}}.subnavigation__item-link:hover,.subnavigation__item-link:focus{color:#dce1e2;opacity:1}@media (min-width: 576px){.subnavigation__item-link:first-of-type{padding-top:0.9375rem}}@media (max-width: 575px){.subnavigation__item-link:last-of-type{margin-bottom:7.5rem}}.subnavigation:hover{background-color:#313c3d}.back-to-top{position:fixed;right:1.5rem;bottom:5.75rem;z-index:4;display:flex;flex-flow:wrap column;align-items:center;justify-content:center;width:2.5625rem;height:2.5625rem;color:#000;font-weight:600;background-color:#fff;border:solid 0.0625rem #dde2e3;border-radius:0.1875rem;cursor:pointer}.back-to-top__icon{width:0.8125rem;height:0.4375rem}.back-to-top__text{margin-top:0.0625rem;font-size:0.75rem;line-height:1.0625rem}.back-to-top--hide{display:none}@media (max-width: 991px){.back-to-top{right:1.25rem;bottom:4.25rem}}.weather-widget{margin:2.5rem auto;padding-right:0.625rem;padding-left:0.625rem}@media (min-width: 576px){.weather-widget{max-width:58.75rem}}@media (min-width: 992px){.weather-widget{padding-right:0;padding-left:0}}@media (min-width: 576px){.weather-widget__header{position:relative;width:100%;text-align:center}}.weather-widget__heading{color:#38a3d7;font-weight:300;font-size:2.1875rem;text-align:center}@media (min-width: 576px){.weather-widget__heading{margin:0 auto}}.weather-widget__select{width:100%;height:2.1875rem;padding-right:0.625rem;padding-left:0.625rem;font-weight:300;font-size:0.875rem;background-color:#fff;background-image:url(/pf/resources/dist/fonts/chevron-dropdown.svg?d=484);background-repeat:no-repeat;background-position:center right 0.625rem;border:1px solid #d5d5d5;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (max-width: 575px){.weather-widget__select{margin:0.625rem auto 0}}@media (min-width: 576px){.weather-widget__select{position:absolute;top:0;left:0;width:calc(100% / 3 - 1.875rem / 2)}}.weather-widget__select::-ms-expand{display:none}.weather-widget__option{font-weight:300}@media (min-width: 576px){.weather-widget__forecasts{display:flex;align-items:center;justify-content:space-between}}.weather-widget__forecasts.enter{position:absolute;top:-999999px;opacity:0.01}.weather-widget__forecasts.enter-active{opacity:1;transition:opacity 0.3s}.weather-widget__forecasts.exit{opacity:1}.weather-widget__forecasts.exit-active{opacity:0.01;transition:opacity 0.3s}.weather-widget .day-forecast{margin-top:1.875rem}@media (max-width: 575px){.weather-widget .day-forecast{margin-right:0.3125rem;margin-left:0.3125rem}}@media (min-width: 576px){.weather-widget .day-forecast{flex-basis:calc(100% / 3 - 1.875rem * 2 / 3)}}@media (min-width: 576px){.weather-widget .day-forecast:not(:nth-of-type(3n+1)){margin-left:1.875rem}}@media (min-width: 768px){.journalistcarousel-chain--journalistcarousel{padding:0}}.journalistcarousel-chain--journalistcarousel .journalistcarousel-chain__journalistcarouselwrapper{width:100%;height:32.625rem;margin:0 auto}@media (min-width: 768px) and (max-width: 992px){.journalistcarousel-chain--journalistcarousel .journalistcarousel-chain__journalistcarouselwrapper{height:25.375rem}}@media (max-width: 767px){.journalistcarousel-chain--journalistcarousel .journalistcarousel-chain__journalistcarouselwrapper{height:22.75rem}}.fusion-app.fusion-app--customer-management-page{max-width:none}.fusion-app.fusion-app--customer-management-page .header__logo{flex:1;justify-content:center;margin-left:0}.fusion-app.fusion-app--customer-management-page .header__center-logo-link{margin-right:0}.fusion-app.fusion-app--customer-management-page .header__logo-text{margin:0;padding-left:0.5rem;color:#fff;font-size:1.0625rem;letter-spacing:0}.fusion-app.fusion-app--customer-management-page .login-state__link{margin-left:3.375rem}.fusion-app.fusion-app--customer-management-page .header__search{display:none}.fusion-app.fusion-app--customer-management-page .container{overflow:auto}.fusion-app.fusion-app--customer-management-page .container .main--customer-management{min-height:calc(100vh - 7.8125rem);margin-top:4.0625rem}@media (min-width: 576px){.fusion-app.fusion-app--customer-management-page .container .main--customer-management{margin-top:0}}.fusion-app.fusion-app--customer-management-page .container .main{flex:1;margin-top:1.5rem}@media (min-width: 768px){.fusion-app.fusion-app--customer-management-page .header__search{display:flex}.fusion-app.fusion-app--customer-management-page .header__right-wrapper{display:flex;justify-content:flex-end;min-width:16.375rem}.fusion-app.fusion-app--customer-management-page .header__navigation-wrapper{min-width:16.375rem}.fusion-app.fusion-app--customer-management-page .login-state__link{margin-left:0.625rem}}@media (min-width: 950px){.fusion-app.fusion-app--customer-management-page .container{max-width:none}}@media (min-width: 1200px){.fusion-app.fusion-app--customer-management-page .sidebar .nav-control-overlay{width:calc(100vw - 18.75rem)}.fusion-app.fusion-app--customer-management-page .container .main{display:flex;margin-top:4rem}}@media (min-width: 1148px){.fusion-app.fusion-app--customer-management-page .container .main{width:71.75rem;margin-right:auto;margin-left:auto}.fusion-app.fusion-app--customer-management-page.container--sidebar-is-active{max-width:none}}.container--customer-management-page{display:flex;flex-direction:column;min-height:100vh}.container--customer-management-page .feedback--long-text{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:35rem}@media (max-width: 575px){.container--customer-management-page .feedback--long-text{width:initial}}.container--customer-management-page .confirm-modal{align-items:center}.container--customer-management-page .confirm-modal__content{margin-top:0}.container--customer-management-page .button-link{display:flex;align-items:center;justify-content:center}.container--customer-management-page .typography-title{display:block;text-transform:uppercase;overflow-wrap:break-word}.container--customer-management-page .typography-content{overflow-wrap:break-word}.container--customer-management-page .social-account{position:relative;overflow-wrap:break-word}.container--customer-management-page .social-account__logo{width:0.75rem;margin-right:0.75rem}.container--customer-management-page .social-account__first-line{display:flex;align-items:center;height:0.75rem;margin-bottom:0.5rem}.container--customer-management-page .social-account__label{flex-grow:1}.container--customer-management-page .social-account__title{padding-bottom:1.125rem;padding-left:1.5rem}.container--customer-management-page .social-account__button{position:absolute;left:1.5rem}@media (min-width: 768px){.container--customer-management-page .social-account__button{top:0;right:0;left:auto}}.container--customer-management-page .payment-details__wrapper{margin-bottom:1.5rem}.container--customer-management-page .payment-details__wrapper:not(:last-child){padding-bottom:1.5rem;border-bottom:0.0625rem solid #bfc5c6}.container--customer-management-page .payment-details__vertical:not(:last-child){margin-bottom:1.5rem}.container--customer-management-page .payment-details__vertical-title{margin-bottom:0.9375rem;color:#000}.container--customer-management-page .payment-details__card{position:relative}.container--customer-management-page .payment-details__edit-card{position:absolute;top:-0.125rem;left:12.5rem}.container--customer-management-page .payment-details__card-info{display:flex;margin-top:0.75rem}.container--customer-management-page .payment-details__card-type{width:1.125rem;margin-right:0.75rem}.container--customer-management-page .payment-details__card-details{flex-grow:1}.container--customer-management-page .payment-details__load-more{max-width:initial;margin:2.5rem auto}@media (min-width: 576px){.container--customer-management-page .payment-details__load-more{max-width:18.75rem}}@media (min-width: 768px){.container--customer-management-page .payment-details__load-more{margin:2.5rem 0 6.25rem}}.container--customer-management-page .payment-details__notification{max-width:18.75rem}.container--customer-management-page .payment-details__transaction-history{margin-top:5rem}.container--customer-management-page .payment-details__loading{margin-top:5rem;margin-left:50%}.container--customer-management-page .payment-details-edit{min-height:calc(100vh - 12.5rem);margin-bottom:6.25rem}.container--customer-management-page .payment-details-edit__header{padding:1.5rem 0;text-align:center}.container--customer-management-page .payment-details-edit__heading{text-align:center}.container--customer-management-page .payment-details-edit hr{margin-top:0;margin-bottom:3rem;border-top:0.0625rem solid #f3f3f3;border-bottom:0}.container--customer-management-page .payment-details-edit__cancel{margin-top:0.625rem;border:none}.container--customer-management-page .payment-form{max-width:37.5rem;margin:auto;padding:0 1rem}.container--customer-management-page .payment-form iframe{height:auto;min-height:28.125rem}.container--customer-management-page .payment-form__term{color:#727579}.container--customer-management-page .payment-form__term--link{color:#727579;text-decoration:underline}.container--customer-management-page .payment-form__term--link:hover{color:#38a3d7;cursor:pointer}.container--customer-management-page .payment-form__processing{margin:0.5rem;font-size:1rem;font-family:initial}.container--customer-management-page .my-profile-view__slash{margin:0 0.75rem}.container--customer-management-page .my-profile-edit__form{width:100%}@media (min-width: 576px){.container--customer-management-page .my-profile-edit__form{width:50%;max-width:20.875rem}}.container--customer-management-page .my-details-page__description{margin:5rem 0 2.5rem 0;text-align:center}@media (min-width: 576px){.container--customer-management-page .my-details-page__description{width:100%;margin:5rem 0 1.5rem 0}}@media (min-width: 1200px){.container--customer-management-page .my-details-page__description{width:auto;margin:6.5rem 0 1.5rem 0;text-align:left}}.container--customer-management-page .button--link{padding:0;color:#38a3d7;background:none;border:none;cursor:pointer}.container--customer-management-page .button--link[disabled]{cursor:inherit;opacity:0.25}.container--customer-management-page .notification-error{position:fixed;right:1.5rem;left:1.5rem}.transaction-item{padding:1rem}.transaction-item:nth-child(even){background:#f8f9fa}.transaction-item:nth-child(even) td{border-color:#f8f9fa}.transaction-item--mobile{min-width:17.5rem;padding:1.5rem}.transaction-item__second-line{display:flex;padding:0.75rem 0}.transaction-item__date--mobile{flex-grow:1}.transaction-item__payment-method--mobile,.transaction-item__payment-method--mobile-vertical{margin-right:1.5rem}.transaction-item__payment-method-icon{display:inline-block;margin:0;vertical-align:middle}.transaction-item__payment-method-text{margin-left:0.5rem}.transaction-history{width:100%}.transaction-history th{padding-bottom:1.875rem;padding-left:1rem;text-align:left}.transaction-history td{padding:1rem}.transaction-history td:last-child{text-align:right}.transaction-history--mobile{margin:0 -1.5625rem}.heading-section--disabled{cursor:not-allowed;opacity:0.25}.heading-section--disabled .button--link[disabled]{opacity:1}.heading-section__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem;padding-bottom:1rem;color:#000;border-bottom:0.03125rem solid #bfc5c6}.welcome-header{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;height:15.5rem;margin-top:4.0625rem;text-align:center;background:linear-gradient(96.49deg, #24262b 17.56%, #1c1c1d 42.14%, #000 95.21%)}@media (min-width: 576px){.welcome-header{margin-top:0}}@media (max-width: 767px){.welcome-header{height:10.625rem}}.welcome-header__greeting{margin-bottom:0.5rem;color:#fff}.welcome-header__text{margin-bottom:3rem;color:#fff}.sidebar-profile{display:none;width:20.875rem;height:100%;min-height:inherit;margin-left:1.5rem;border-right:0.0625rem solid #f3f3f3}.sidebar-profile__divider{height:0.03125rem;margin:0.875rem 0 2rem;background-color:#bfc5c6}.sidebar-profile__list{margin-left:0;text-align:center;list-style:none}.sidebar-profile__item{display:block;padding-bottom:1.5rem;color:#000;font-size:1rem;line-height:0.9375rem;border-bottom:0.03125rem solid #bfc5c6}@media (max-width: 575px){.sidebar-profile__item{padding-bottom:1rem}}.sidebar-profile__children{margin:0;margin-bottom:1.5rem;padding:1.25rem 2.1875rem;list-style:none;border-bottom:0.03125rem solid #bfc5c6}@media (max-width: 575px){.sidebar-profile__children{margin-bottom:1rem;padding:0.5rem 1rem}}.sidebar-profile__child-item{margin:0}.sidebar-profile__child-item a{color:#000}.sidebar-profile__child-item:not(:first-child){padding-top:2rem}@media (max-width: 575px){.sidebar-profile__child-item:not(:first-child){padding-top:0.5rem}}.sidebar-profile__child-item--active a{color:#38a3d7}.sidebar-profile__help,.sidebar-profile__today-paper{display:inline-block;width:100%;color:#000}.sidebar-profile__help span,.sidebar-profile__today-paper span{display:inline;vertical-align:middle}.sidebar-profile__help-icon{display:inline;width:1rem;margin-left:1.0625rem;vertical-align:middle}.sidebar-profile__today-paper{margin-bottom:2rem}@media (min-width: 1200px){.sidebar-profile{display:block}.sidebar-profile__list{text-align:left}.sidebar-profile__item{padding:1.125rem 1.5rem 1.125rem 0;font-weight:900;border:0}.sidebar-profile__item--active{padding-left:1.5rem;background:#f8f9fa;border:0;border-left:0.1875rem solid #38a3d7}.sidebar-profile__children{margin-bottom:0;border-bottom:0}}.user-subscription{display:flex;align-items:center;justify-content:space-between}@media (max-width: 767px){.user-subscription{flex-direction:column}}.user-subscription__vertical-logos{display:flex;flex:1;justify-content:flex-end}.user-subscription__vertical-logo{margin-left:0.625rem}.user-subscription__content{width:calc(100% - 12rem);padding-right:1.5rem}@media (max-width: 767px){.user-subscription__content{width:100%;padding-right:0}}.user-subscription__logo{height:1.6875rem}.user-subscription__text{margin-top:0.75rem}@media (max-width: 767px){.user-subscription__text{font-size:1rem;line-height:1.25rem}}.user-subscription__button{min-width:12rem}@media (max-width: 767px){.user-subscription__button{min-width:100%;margin-top:1.5rem}}.sidebar-profile-button{display:flex;align-items:center;justify-content:center;width:100%;height:3.25rem;background-color:#fff;border:0.0625rem solid #dde2e3;border-radius:0.1875rem;cursor:pointer}@media (min-width: 1200px){.sidebar-profile-button{display:none}}.sidebar-profile-button:hover{background-color:#f7f7f7}.sidebar-profile-button__icon{width:0.8125rem;height:0.8125rem;padding-left:1.0625rem}.sidebar-profile-button__text{display:flex;align-items:center;margin-bottom:0;color:#111617}.sidebar-profile-button__spacer{display:block;width:0.3125rem;height:0.3125rem;background-color:#bfc5c6;border-radius:50%}.sidebar-profile-button__text--active{color:#38a3d7}.profile-module-wrap{flex:1}@media (min-width: 1200px){.profile-module-wrap{padding-top:0.6875rem;padding-left:1.5625rem}}.my-newsletter-section__subheading{margin-bottom:1rem;text-transform:uppercase}.my-newsletter-section__newsletters-state-message{margin-bottom:1.5rem}.my-newsletter-section .form-button{display:block;margin-top:16px;margin-bottom:80px}@media (max-width: 624px){.my-newsletter-section .form-button{width:100%}}@media (min-width: 625px){.my-newsletter-section .form-button{width:334px;margin-right:auto;margin-left:auto}}@media (min-width: 1200px){.my-newsletter-section .form-button{width:calc(50% - 0.625rem);margin-left:0}}.my-newsletter-section .newsletter-list{justify-content:space-between}.my-newsletter-section .newsletter-card{min-height:128px;cursor:initial}@media (max-width: 624px){.my-newsletter-section .newsletter-card{margin-bottom:1rem;padding:1rem;border:0.0625rem solid #dde2e3;border-radius:0.1875rem}}@media (max-width: 624px){.my-newsletter-section .newsletter-card:first-of-type{border-top:0.0625rem solid #dde2e3}}@media (min-width: 1100px){.my-newsletter-section .newsletter-card{width:calc(50% - 0.75rem);margin:0 0 1.5rem 0}}.confirmation-modal--my-details-notification .confirm-modal__header{border-bottom:none}.confirmation-modal--my-details-notification .modal-info a{display:inline-block}.confirmation-modal--my-details-notification .confirm-modal__body,.confirmation-modal--my-details-notification .confirm-modal__footer{max-width:23.75rem;margin-right:auto;margin-left:auto;font-size:1.125rem;text-align:center}.confirmation-modal--my-details-notification h2{margin-bottom:1rem;font-weight:600;font-size:1.5rem;line-height:1.5625rem}.confirmation-modal--my-details-notification .confirmation-modal__email-info{font-size:1rem;overflow-wrap:break-word}.confirmation-modal--my-details-notification .confirm-modal__content{padding-bottom:4rem}@media (min-width: 768px){.confirmation-modal--my-details-notification .confirm-modal__content{max-width:28.75rem;padding-bottom:5rem}}.my-details__password-hidden{letter-spacing:0.25rem}.my-details__marketing-checkbox .checkbox__label{color:#000}@media (min-width: 576px){.my-details__form-group{width:50%}}@media (min-width: 576px){.my-details__form-group-email{display:inline-block;width:50%}}.my-details__change-email{display:inline-block;margin-top:0.75rem}@media (min-width: 576px){.my-details__change-email{margin-top:0;margin-left:0.75rem}}.payment-form{position:relative;display:flex;flex-direction:column;align-items:center}.payment-form iframe{height:auto;min-height:29.375rem}.payment-form__term{color:#727579}.payment-form__term--link{color:#727579;text-decoration:underline}.payment-form__term--link:hover{color:#38a3d7;cursor:pointer}.payment-form__processing{margin:0.5rem;font-size:1rem;font-family:initial}.redeem-code h4{text-transform:uppercase}@media (min-width: 768px){.redeem-code__form{display:flex}.redeem-code .input-field{min-width:20.875rem;margin-right:1rem}.redeem-code .form-button{max-width:12rem}}@media (max-width: 767px){.redeem-code .input-field{margin-bottom:1rem}}.redeem-code__sub-text{margin-top:0.5rem}@media (max-width: 767px){.redeem-code__sub-text{font-size:1rem;line-height:1.25rem}}.my-subscriptions h4{color:#000}.my-subscriptions__content{margin-bottom:5rem}@media (max-width: 767px){.my-subscriptions__content{margin-bottom:2.5rem}}.my-subscriptions__cancell-button{max-width:11.4375rem}.my-subscriptions__verticle-name{margin-bottom:1.25rem;color:#000}.my-subscriptions__verticle-name:only-child{display:none}.my-subscriptions__subs-item{margin-bottom:1.25rem}.my-subscriptions__subscription-upgrade-offer{margin-top:1.25rem;margin-bottom:1.875rem;padding-top:0.9375rem;padding-bottom:0.9375rem}.my-subscriptions__subscription-upgrade-offer:not(:last-child){border-bottom:0.03125rem solid #bfc5c6}.my-subscriptions__content-row:last-child .my-subscriptions__subscription-upgrade-offer{margin-bottom:3.75rem;border-top:0;border-bottom:0.001875rem solid #bfc5c6}.my-subscriptions p.no-margin{margin-bottom:0}.my-subscriptions__text{margin-bottom:1.5rem}@media (max-width: 767px){.my-subscriptions__line-break{display:block;margin-bottom:1rem}}.my-subscriptions__link{color:#000;text-decoration:underline}.my-subscriptions__bg{padding:3rem;background:#f8f9fa}@media (max-width: 767px){.my-subscriptions__bg{padding:1.125rem 1.5rem}}.my-subscriptions__bg h4{display:flex;align-items:center;margin-bottom:-0.9375rem}.my-subscriptions__label{display:inline-block;margin-left:0.625rem;padding:0.125rem 0.6875rem;color:#fff;font-size:0.5625rem;border-radius:0.125rem}.my-subscriptions__status{text-transform:uppercase}.my-subscriptions__status--active{color:#000;background-color:#ecac0d}.my-subscriptions__status--cancelled,.my-subscriptions__status--suspended{background-color:#727578}.my-subscriptions__status--inactive{background-color:#38a3d7}.my-subscriptions__subtitle{margin-bottom:3.4375rem}@media (max-width: 767px){.my-subscriptions__subtitle{margin-bottom:2.5rem}}.my-subscriptions__upgrade .user-subscription{margin-bottom:3.125rem}@media (max-width: 767px){.my-subscriptions__upgrade .user-subscription{margin-bottom:2.375rem}}.my-subscriptions .your-order__payment-info{margin-top:1rem;padding-top:1rem;border-top:0.03125rem solid #bfc5c6}.my-saved-articles{padding:0}.my-saved-articles__sub-heading{margin-bottom:2.5rem}.my-saved-articles__page-info{margin-bottom:1.5rem}.my-saved-articles__page-info-footer{font-weight:400}@media (max-width: 767px){.my-saved-articles__page-info-footer{width:100%}}.my-saved-articles__pagination-pages{display:block;margin:0 0 0 1.5rem}@media (max-width: 767px){.my-saved-articles__pagination-pages{width:100%;margin-top:0.9375rem;margin-left:0}}.my-saved-articles__pagination{display:flex;align-items:center;justify-content:flex-start;margin-bottom:6.25rem;padding-top:0.375rem}@media (max-width: 767px){.my-saved-articles__pagination{flex-direction:column}}.my-saved-articles .pagination__item{display:inline-flex;align-items:center;justify-content:center;margin-right:0.5rem;margin-bottom:0;border-radius:0}@media (max-width: 767px){.my-saved-articles .story-card{margin:0}}.my-saved-articles .story-card__gallery-icon{position:absolute;left:-0.25rem;width:1.25rem;height:1.25rem}.my-saved-articles .story-card .meta-data{justify-content:flex-start;margin-top:1rem}@media (max-width: 767px){.my-saved-articles .story-card .meta-data{flex-wrap:wrap}}@media (max-width: 767px){.my-saved-articles .story-card .meta-data__premium-tag{order:-1;width:100%;padding-left:0}.my-saved-articles .story-card .meta-data__premium-tag::before{content:none}}.my-saved-articles .story-card .meta-data__bookmark{display:flex;align-items:center;justify-content:center;margin-left:auto}.my-saved-articles .story-card .story-card__heading{color:#4c585d;font-size:1.125rem}.my-saved-articles .story-card__bookmark{background-color:transparent}.my-saved-articles .story-card__bookmark:not(.story-card__bookmark--is-selected) .story-card__bookmark-icon{display:block;visibility:hidden}.my-saved-articles .my-news__item{padding-bottom:0}.my-saved-articles .my-news__item:not(:first-of-type){margin-top:0;margin-bottom:2.5rem;padding-top:0;border-top:0}@media (max-width: 767px){.my-saved-articles .my-news__item:not(:first-of-type){margin-bottom:2rem}}.special-offer__price-box{display:flex;flex-direction:column;align-items:center;padding:0 1rem}@media (min-width: 576px){.special-offer__price-box{flex-direction:row}}.special-offer__price-subs{position:relative;top:-0.625rem;display:flex;flex-direction:column;align-items:center}@media (min-width: 576px){.special-offer__price-subs{width:22.625rem;max-width:100%;padding-top:0.75rem;padding-right:0.9375rem;border-right:0.0625rem solid #f3f3f3}}.special-offer__price-subs-name{margin-bottom:0.75rem;color:#33383c;text-align:center}.special-offer__price-subs-description{text-align:center}.special-offer__btn-subcribe-now{-ms-grid-row-align:center;align-self:center;width:15.125rem;max-width:100%;color:#33383c;font-size:0.8125rem;line-height:1.0625rem;text-transform:uppercase}.special-offer__divider{width:11.1875rem;max-width:100%;margin-top:2rem;margin-bottom:2rem;border:0.0625rem solid #f5f5f5}@media (min-width: 576px){.special-offer__divider{display:none}}.special-offer__attributes{margin-top:0;margin-right:auto;margin-left:auto;padding-left:1.9375rem;list-style-type:none}@media (min-width: 576px){.special-offer__attributes{max-width:30rem}}.special-offer__attributes-item{position:relative;display:flex;align-items:baseline;margin-top:0;margin-bottom:0;letter-spacing:0}.special-offer__attributes-item:not(:first-of-type){margin-top:1.125rem}.special-offer__attributes-item-icon{position:relative;top:0.25rem;display:inline-block;width:1rem;margin-right:0.625rem}.special-offer__check-icon{width:1.125rem;height:1.125rem;margin-right:0.625rem}.premium-box-v2{position:relative;margin-top:1rem;padding-top:3.5625rem;padding-bottom:1.75rem;border-top:0.0625rem solid #ecac0d;box-shadow:0 0.5rem 1.875rem rgba(36,47,136,0.08)}@media (min-width: 576px){.premium-box-v2{padding-top:2.3125rem;padding-bottom:2.3125rem}}.premium-box-v2.with-label{position:relative;border-top:0.0625rem solid #ecac0c}.premium-box-v2.with-label::before{position:absolute;top:-0.0625rem;right:0;z-index:1;width:auto;height:auto;padding:0.1875rem 0.3125rem;color:#333;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1;background-color:#ecac0c;border-bottom-left-radius:0.4375rem;content:'PREMIUM'}.my-benefits .heading-center,.e-editions-page .heading-center{max-width:20.4375rem;margin:0 auto 2rem;text-align:center}@media (min-width: 576px){.my-benefits .heading-center,.e-editions-page .heading-center{max-width:100%;margin:0 0 2.5rem}}.my-benefits .heading-center__title,.e-editions-page .heading-center__title{margin-bottom:0.8125rem;color:#000}.my-benefits .heading-center__title span,.e-editions-page .heading-center__title span{color:#ecac0d;font-style:italic}.my-benefits .heading-center__text,.e-editions-page .heading-center__text{color:#000}.my-benefits .block-section,.e-editions-page .block-section{display:flex;flex-direction:column;justify-content:space-between;margin-bottom:2rem}@media (min-width: 768px){.my-benefits .block-section,.e-editions-page .block-section{flex-direction:row-reverse;margin-bottom:4.6875rem}}.my-benefits .block-section--has-background,.e-editions-page .block-section--has-background{margin:0 -1.5rem;padding:2rem 1.5rem 1.5625rem;background:linear-gradient(179.69deg, #f8f9fa 22.63%, #fff 105.82%)}@media (min-width: 768px){.my-benefits .block-section--has-background,.e-editions-page .block-section--has-background{flex-direction:row;margin:0;padding:4.6875rem 2.8125rem 3rem;background:linear-gradient(88.82deg, #f8f9fa -1.37%, #fff 98.99%)}}@media (min-width: 768px){.my-benefits .block-section--has-background .block-section__content,.e-editions-page .block-section--has-background .block-section__content{padding-top:0.3125rem;padding-right:1.5rem}}.my-benefits .block-section:first-child,.e-editions-page .block-section:first-child{align-items:center}.my-benefits .block-section:nth-child(2),.e-editions-page .block-section:nth-child(2){position:relative;padding-bottom:6.25rem}.my-benefits .block-section:nth-child(2) .block-section__image img,.e-editions-page .block-section:nth-child(2) .block-section__image img{max-width:17.5rem;margin:0 auto}@media (min-width: 768px){.my-benefits .block-section:nth-child(2) .block-section__image img,.e-editions-page .block-section:nth-child(2) .block-section__image img{margin:0}}.my-benefits .block-section:nth-child(2) .block-section__link,.e-editions-page .block-section:nth-child(2) .block-section__link{position:absolute;bottom:0;width:100%;text-transform:uppercase}@media (min-width: 768px){.my-benefits .block-section:nth-child(2),.e-editions-page .block-section:nth-child(2){margin-bottom:0;padding-top:3.4375rem;padding-bottom:0}.my-benefits .block-section:nth-child(2)__image,.e-editions-page .block-section:nth-child(2)__image{padding-left:0.9375rem}.my-benefits .block-section:nth-child(2) img,.e-editions-page .block-section:nth-child(2) img{max-width:16.25rem}.my-benefits .block-section:nth-child(2) .block-section__link,.e-editions-page .block-section:nth-child(2) .block-section__link{position:relative;padding-bottom:0}.my-benefits .block-section:nth-child(2) .block-section__content,.e-editions-page .block-section:nth-child(2) .block-section__content{width:56%;padding-top:0.5rem;padding-right:0}.my-benefits .block-section:nth-child(2) .block-section__image,.e-editions-page .block-section:nth-child(2) .block-section__image{width:44%}}.my-benefits .block-section:nth-child(3),.e-editions-page .block-section:nth-child(3){align-items:flex-start}.my-benefits .block-section__image,.e-editions-page .block-section__image{width:100%}@media (min-width: 768px){.my-benefits .block-section__image,.e-editions-page .block-section__image{width:47%}}.my-benefits .block-section__content,.e-editions-page .block-section__content{margin-bottom:3.125rem}@media (min-width: 768px){.my-benefits .block-section__content,.e-editions-page .block-section__content{width:53%;margin-bottom:0;padding-right:1.5rem}}.my-benefits .block-section__title,.e-editions-page .block-section__title{position:relative;margin-bottom:1.5rem;padding-bottom:1.5rem;color:#000}.my-benefits .block-section__title::after,.e-editions-page .block-section__title::after{position:absolute;bottom:0;left:0;width:2.5rem;height:0.25rem;background-color:#ecac0d;content:''}.my-benefits .block-section__link,.e-editions-page .block-section__link{margin-top:2.1875rem}.my-benefits .block-section__link .form-button__label,.e-editions-page .block-section__link .form-button__label{font-size:1rem}.my-benefits .block-section__button,.e-editions-page .block-section__button{display:flex;margin-top:1.5625rem}.my-benefits .block-section__button a:first-child,.e-editions-page .block-section__button a:first-child{margin-right:1.125rem}.my-benefits .block-section__logo,.e-editions-page .block-section__logo{max-width:100%}@media (min-width: 768px){.my-benefits .block-section__logo,.e-editions-page .block-section__logo{width:9.5625rem}}.my-benefits .partners-section,.e-editions-page .partners-section{margin-bottom:5rem}@media (min-width: 768px){.my-benefits .partners-section,.e-editions-page .partners-section{margin-bottom:6.25rem}}.my-benefits .partners-section__items,.e-editions-page .partners-section__items{display:flex}.my-benefits .partners-section__item,.e-editions-page .partners-section__item{padding:1.875rem 1rem;background-color:#fff;border-radius:0.375rem;box-shadow:0 0.75rem 1.875rem rgba(36,47,136,0.06)}.my-benefits .partners-section__item:not(:last-child),.e-editions-page .partners-section__item:not(:last-child){margin-right:1rem}.my-benefits .partners-section__logo,.e-editions-page .partners-section__logo{height:1.375rem}.my-subscriptions__upgrade-offers .products,.cancellation-subscription__offers .products{display:flex;flex-wrap:wrap;align-items:end}.my-subscriptions__upgrade-offers .product-card-box,.cancellation-subscription__offers .product-card-box{width:100%;margin-right:23px;margin-bottom:23px}@media (min-width: 576px){.my-subscriptions__upgrade-offers .product-card-box,.cancellation-subscription__offers .product-card-box{width:335px}}.my-subscriptions__upgrade-offers .subs-card-upgrade,.cancellation-subscription__offers .subs-card-upgrade{position:relative;display:flex;flex-direction:column;box-sizing:border-box;padding:1.5rem;background-color:#fff;border-radius:0.25rem;box-shadow:0 0.6875rem 1.6875rem rgba(36,47,136,0.06)}.my-subscriptions__upgrade-offers .subs-card-upgrade__content,.cancellation-subscription__offers .subs-card-upgrade__content{display:flex;flex-grow:1;justify-content:space-between}@media (min-width: 576px){.my-subscriptions__upgrade-offers .subs-card-upgrade__content,.cancellation-subscription__offers .subs-card-upgrade__content{flex-direction:column;min-height:12.5rem}}.my-subscriptions__upgrade-offers .subs-card-upgrade__second-part,.cancellation-subscription__offers .subs-card-upgrade__second-part{text-align:center}@media (min-width: 576px){.my-subscriptions__upgrade-offers .subs-card-upgrade__second-part,.cancellation-subscription__offers .subs-card-upgrade__second-part{display:flex;align-items:center;text-align:left}}@media (min-width: 576px){.my-subscriptions__upgrade-offers .subs-card-upgrade__label-wrap,.cancellation-subscription__offers .subs-card-upgrade__label-wrap{height:31px}}.my-subscriptions__upgrade-offers .subs-card-upgrade__label,.cancellation-subscription__offers .subs-card-upgrade__label{position:relative;top:2px;display:inline-block;padding:0.5rem 0.8125rem;color:#000;text-transform:uppercase;background:linear-gradient(90deg, #ecac0d 0%, #ffbc16 100%);border-radius:0.125rem 0.125rem 0 0}.my-subscriptions__upgrade-offers .subs-card-upgrade__title,.cancellation-subscription__offers .subs-card-upgrade__title{padding-top:0.75rem;color:#000;font-size:1.375rem;line-height:1.75rem}.my-subscriptions__upgrade-offers .subs-card-upgrade__description,.cancellation-subscription__offers .subs-card-upgrade__description{margin:1.875rem 0 1.5rem;overflow-wrap:break-word}.my-subscriptions__upgrade-offers .subs-card-upgrade__price,.cancellation-subscription__offers .subs-card-upgrade__price{align-items:center;font-size:1.875rem;line-height:2.375rem;font-feature-settings:'tnum' on, 'onum' on}@media (min-width: 576px){.my-subscriptions__upgrade-offers .subs-card-upgrade__price,.cancellation-subscription__offers .subs-card-upgrade__price{display:flex;margin-right:0.5rem;font-size:2.5rem;line-height:2.625rem}}.subs-upgrade-header{display:flex;align-items:flex-end;justify-content:center;height:10.625rem;margin-top:4.0625rem;background:linear-gradient(96.49deg, #24262b 17.56%, #1c1c1d 42.14%, #000 95.21%)}@media (min-width: 576px){.subs-upgrade-header{height:15.5rem;margin-top:0}}.subs-upgrade-header h1{margin-bottom:4.75rem;color:#fff;font-size:1.5rem;text-align:center}@media (min-width: 576px){.subs-upgrade-header h1{margin-bottom:5.25rem;font-size:2.5rem}}.subs-upgrade{margin-top:-3.75rem}@media (min-width: 1200px){.subs-upgrade{margin-top:-6.25rem}}.subs-upgrade .subs-upgrade-init-view{max-width:43.3125rem;margin:0 auto;background:#fff;border-top-left-radius:0.1875rem;border-top-right-radius:0.1875rem}.subs-upgrade .subs-upgrade-confirmation-view .offer-card::before{content:none}.subs-upgrade .heading-section{position:relative;display:flex;flex-direction:column;justify-content:space-between;padding:1.5rem;box-shadow:0 0.625rem 1.625rem rgba(36,47,136,0.06)}@media (min-width: 576px){.subs-upgrade .heading-section{flex-direction:row;padding:2.25rem 2.875rem}}.subs-upgrade .product-name{font-size:1.375rem;line-height:1.75rem}.subs-upgrade .product-label{margin-top:0.5rem;font-size:1rem;line-height:1.25rem}.subs-upgrade .product-label>p{font-size:1rem;line-height:1.25rem}.subs-upgrade .price{display:flex;align-items:center}@media (max-width: 575px){.subs-upgrade .price{margin-top:1.5rem}}.subs-upgrade .price-val{margin-right:0.5rem;font-size:2.125rem;line-height:2.625rem;font-feature-settings:'tnum' on, 'onum' on}@media (max-width: 575px){.subs-upgrade .price-val{font-size:1.875rem}}.subs-upgrade .rate-period{font-size:0.75rem;font-style:normal;line-height:0.8125rem}.subs-upgrade .order-details-section{padding:1.5rem 1.125rem;background:#f8f9fa}@media (min-width: 576px){.subs-upgrade .order-details-section{padding:2.25rem 3rem}}.subs-upgrade .order-detail__row{display:flex;justify-content:space-between;margin-bottom:1.25rem}@media (min-width: 576px){.subs-upgrade .order-detail__row{margin-bottom:1rem}}.subs-upgrade .order-detail__val .price-negative-value{color:#eb4335}.subs-upgrade .hr{margin:0.5rem 0 1.5rem;border-bottom:0.03125rem solid #bfc5c6}.subs-upgrade .payment-info>p{line-height:1.25rem}.subs-upgrade .buttons-section{padding-top:1.5rem}@media (min-width: 576px){.subs-upgrade .buttons-section{padding-top:2.5rem}}.subs-upgrade .btn{display:block;max-width:23.75rem;margin:0 auto 1rem}@media (max-width: 575px){.subs-upgrade .btn{max-width:100%}}.subs-upgrade .subs-upgrade-confirmation-view .pre-heading{width:100vw;margin-top:6.3125rem;margin-left:calc(50% - 50vw);color:#8a8f96;font-size:0.75rem;line-height:2.875rem;text-align:center;border-bottom:0.0625rem solid #f3f3f3}@media (min-width: 576px){.subs-upgrade .subs-upgrade-confirmation-view .pre-heading{margin-top:2.25rem;line-height:3.75rem}}.subs-upgrade .subs-upgrade-confirmation-view .heading{margin-top:2rem;font-size:1.375rem}@media (min-width: 576px){.subs-upgrade .subs-upgrade-confirmation-view .heading{margin-top:5rem;font-size:1.875rem}}.subs-upgrade .subs-upgrade-confirmation-view .sub-heading{margin-top:1rem}.subs-upgrade .subs-upgrade-confirmation-view .pop-up-msg{position:absolute;top:1.75rem;right:auto;left:50%;transform:translateX(-50%)}@media (max-width: 575px){.subs-upgrade .subs-upgrade-confirmation-view .pop-up-msg{top:6.875rem}}.subs-upgrade .subs-upgrade-confirmation-view .order-details-section{padding:0;background:none}.subs-upgrade .offer-card{padding:2.125rem 1.5rem;text-align:center;background-color:#fff;position:relative;border-top:0.0625rem solid #ecac0c}.subs-upgrade .offer-card::before{position:absolute;top:-0.0625rem;right:0;z-index:1;width:auto;height:auto;padding:0.1875rem 0.3125rem;color:#333;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1;background-color:#ecac0c;border-bottom-left-radius:0.4375rem;content:'PREMIUM'}.subs-upgrade .offer-card::before{color:#000;font-size:0.625rem;line-height:0.9375rem}.subs-upgrade .offer-card__title{color:#111617;font-size:1.5rem}@media (min-width: 576px){.subs-upgrade .offer-card__title{font-size:1.75rem}}.subs-upgrade .offer-card__price{display:flex;align-items:center;justify-content:center}.subs-upgrade .offer-card .price__big,.subs-upgrade .offer-card .price__currency{font-size:2rem;font-feature-settings:'tnum' on, 'onum' on}@media (min-width: 576px){.subs-upgrade .offer-card .price__big,.subs-upgrade .offer-card .price__currency{font-size:2.5rem}}.subs-upgrade .offer-card .price__extra{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:0.625rem auto auto;padding:0.375rem 1.25rem;background-color:#f8f9fa;border-radius:0.375rem}.subs-upgrade .offer-card .price__description{position:relative;top:0.1875rem}.bookmark-filters{display:flex;flex-direction:column;margin-bottom:1.5rem}@media (min-width: 576px){.bookmark-filters{flex-direction:row}}.bookmark-filters__sort-by,.bookmark-filters__filter-by{width:100%}@media (min-width: 576px){.bookmark-filters__sort-by,.bookmark-filters__filter-by{width:12.5rem}}.bookmark-filters__sort-by{margin-bottom:0.75rem}@media (min-width: 576px){.bookmark-filters__sort-by{margin-right:0.75rem;margin-bottom:0}}.e-editions-page{margin:4rem auto 5.125rem}.e-editions-page__heading .welcome-header__greeting{font-size:2rem;line-height:1.04}@media (min-width: 768px){.e-editions-page__heading .welcome-header__greeting{font-size:3rem}}.e-editions-page__heading .welcome-header__text{padding:0 0.9375rem;line-height:1.375rem}@media (min-width: 768px){.e-editions-page__heading .welcome-header__text{font-size:1.375rem}}.e-editions-page .heading-center{max-width:100%;padding:0 1.25rem}.e-editions-page .heading-center__title span{color:inherit;font-style:inherit;white-space:nowrap}@media (min-width: 768px){.e-editions-page .heading-center__text{font-size:1rem}}.e-editions-page__section:not(:last-child){margin-bottom:4rem}.e-editions-page__section:nth-child(even){padding:1.5rem 0;background:linear-gradient(88.82deg, #f8f9fa -1.37%, #fff 98.99%)}@media (min-width: 768px){.e-editions-page__section:nth-child(even){padding:4rem 0}}.e-editions-page__items{max-width:90rem;margin:0 auto}@media (min-width: 768px){.e-editions-page__items{display:flex;flex-wrap:wrap;align-items:center;justify-content:center}}.e-editions-page__item{box-sizing:border-box;width:12.75rem;margin-bottom:1.25rem;padding:0 0.625rem}@media (min-width: 768px){.e-editions-page__item{box-sizing:content-box;min-height:21.125rem}}.e-editions-page__item img{height:18.6875rem}.e-editions-page__name{display:block;padding:0.75rem 0;color:#111617;text-align:center;text-transform:uppercase;background-color:#f1f3f4}.cancellation-faq__heading{max-width:23.75rem;margin:2.5rem auto 2rem auto;color:#000;text-align:center}.cancellation-faq__contents{max-width:75rem;margin:0 auto 1.5rem auto;padding:0 1.5rem 0 1.5rem;color:#000}@media (min-width: 992px){.cancellation-faq__contents{display:flex;justify-content:center}}.cancellation-faq__contents-column{max-width:23.75rem;margin:auto}@media (min-width: 992px){.cancellation-faq__contents-column{flex-grow:1;width:33.33%;max-width:23.75rem}}.cancellation-faq__contents-column p{font-size:1rem}.cancellation-faq__contents-column a{color:#000}.cancellation-faq__buttons{max-width:23.75rem;margin:0 auto 5rem;padding:0 1.5rem 0 1.5rem}.cancellation-faq__image{height:28.125rem;margin:auto}@media (min-width: 768px){.cancellation-faq__image{padding:0}}.cancellation-faq__download-text{margin-bottom:1.5rem}.cancellation-faq__download-logos{display:flex;margin-bottom:2rem}.cancellation-faq__download-logos a:first-child{margin-right:1rem}.cancellation-confirmation{max-width:25rem;margin:0 auto 5rem;padding:0 2rem}.cancellation-confirmation__heading{margin:2.5rem 0 0.5rem 0;color:#000;text-align:center}.cancellation-confirmation__message{margin-bottom:2rem;text-align:center}.cancellation-confirmation__expect{margin-bottom:0.75rem}.cancellation-confirmation__expect-items{margin-bottom:2rem}.container--customer-management-page .main--customer-management{flex:1}.container--customer-management-page .cancellation-subscription{margin-bottom:3rem}@media (min-width: 576px){.container--customer-management-page .cancellation-subscription{margin-top:0}}.container--customer-management-page .cancellation-subscription__heading{margin-top:2rem;margin-bottom:0.5rem;color:#000;text-align:center}.container--customer-management-page .cancellation-subscription__description{text-align:center}.container--customer-management-page .cancellation-subscription__content{display:flex;margin-bottom:5rem}.container--customer-management-page .cancellation-subscription__form{flex:1;max-width:23.75rem;margin:2rem auto 0 auto;padding:0 1.5rem}.container--customer-management-page .cancellation-subscription__offers{min-width:18.75rem;max-width:48.75rem;margin:0.5rem auto;padding:0 1.5rem}.container--customer-management-page .cancellation-subscription__offers .product-card-box{margin-right:0}@media (min-width: 768px){.container--customer-management-page .cancellation-subscription__offers .product-card-box{width:22.375rem}.container--customer-management-page .cancellation-subscription__offers .product-card-box:not(:first-child){margin-left:1rem}}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade{padding:2rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__second-part{display:flex;flex-direction:column-reverse;padding-top:0}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__title{margin:0;padding-top:0;font-size:1.375rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__description{margin:0.375rem 0 0;font-size:0.875rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__description p{font-size:0.875rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__old-price{margin-right:0.375rem;color:#93a0a8}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__price{font-size:1.6875rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__content{flex-wrap:wrap}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__first-part{width:60%}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__time{margin-left:0.375rem}@media (min-width: 768px){.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__second-part{display:flex;flex-direction:row}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__title{font-size:1.75rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__description{margin:0.75rem 0}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__description,.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__description p{font-size:1rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__price{font-size:2.5rem}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__content{flex-wrap:nowrap;min-height:0}.container--customer-management-page .cancellation-subscription__offers .subs-card-upgrade__first-part{width:100%}}.container--customer-management-page .cancellation-subscription__offers .cancellation-subscription__bottom{display:flex;flex-direction:column;align-items:center;justify-content:center;margin-top:0.5625rem;margin-bottom:5rem}@media (min-width: 768px){.container--customer-management-page .cancellation-subscription__offers .cancellation-subscription__bottom{margin-bottom:13.625rem}}.container--customer-management-page .cancellation-subscription__offers .cancellation-subscription__button{margin-bottom:1rem}@media (min-width: 768px){.container--customer-management-page .cancellation-subscription__offers .cancellation-subscription__button{max-width:23.75rem}}.section-chain-with-native--subherolatestnews .section-chain__wrapper--has-latest-news{display:flex;flex-wrap:wrap}@media (max-width: 767px){.section-chain-with-native--subherolatestnews .section-chain__wrapper--has-latest-news{flex-direction:column}.section-chain-with-native--subherolatestnews .section-chain__wrapper--has-latest-news .chain-main{flex-basis:0;order:3;width:100%}.section-chain-with-native--subherolatestnews .section-chain__wrapper--has-latest-news .subhero-latest-news-secondary{order:2;margin-top:1.25rem;margin-right:0.625rem;margin-left:0.625rem}.section-chain-with-native--subherolatestnews .section-chain__wrapper--has-latest-news .chain-main-triple{order:1}}.section-chain-with-native--subherolatestnews .chain-main{display:flex;flex-basis:300px;flex-direction:column}@media (min-width: 768px) and (max-width: 991px){.section-chain-with-native--subherolatestnews .chain-main{flex-basis:50%}}.section-chain-with-native--subherolatestnews .chain-main .story-card:first-of-type{margin-top:1.25rem}.section-chain-with-native--subherolatestnews .chain-main .story-card:nth-of-type(2){margin-top:1.25rem}.section-chain-with-native--subherolatestnews .chain-main .story-card:nth-of-type(3){margin-top:1.25rem}.section-chain-with-native--subherolatestnews .subhero-latest-news-secondary{display:flex;flex-basis:300px;flex-direction:column;margin-right:1.25rem}@media (min-width: 768px){.section-chain-with-native--subherolatestnews .subhero-latest-news-secondary{flex:1;margin-left:1.25rem}}@media (max-width: 991px){.section-chain-with-native--subherolatestnews .subhero-latest-news-secondary{margin-right:0}}.section-chain-with-native--subherolatestnews .subhero-latest-news-secondary .story-card:first-of-type{margin-top:1.25rem}.section-chain-with-native--subherolatestnews .chain-main-triple{display:flex;flex-basis:300px;flex-direction:column;margin-left:auto}@media (max-width: 767px){.section-chain-with-native--subherolatestnews .chain-main-triple{margin:auto}}@media (min-width: 768px) and (max-width: 991px){.section-chain-with-native--subherolatestnews .chain-main-triple{flex-basis:100%;flex-direction:row;justify-content:center}}.section-chain-with-native--subherolatestnews .chain-main-triple .story-card:first-of-type{margin-top:1.25rem}.section-chain-with-native--subherolatestnews .chain-main-triple .story-card:nth-of-type(2){margin-top:1.25rem}.account-management__menu{position:fixed;top:4.0625rem;z-index:200;width:100%;pointer-events:auto}.account-management__menu[data-menu-target='viva']{position:relative;top:auto}.menu-arrow{position:absolute;top:-0.3125rem;right:3.125rem;display:none}.menu-container{position:absolute;right:0;z-index:200;display:block;width:20rem;max-width:20rem;height:calc(100vh - 3.5rem);overflow-y:auto;background-color:#fff;box-shadow:0 0.75rem 1.875rem rgba(0,0,0,0.12);transform:translateX(0);opacity:1;transition:transform 0.2s ease;transition-duration:0.3s}.menu-list{min-height:16rem;margin:0;padding-bottom:0.5rem;list-style-type:none}.menu-list li{margin-top:0}.menu-list-item{max-height:3rem}.menu-list-item__link{display:flex;align-items:center;justify-content:flex-start;padding:0.75rem 1.25rem;color:#000;font-weight:500;font-size:1rem;font-family:'Proxima Nova', 'Source Sans Pro', ui-sans-serif;line-height:1.5rem}.menu-list-item__link:hover{opacity:0.8;transition:opacity 0.2s ease 0s}.menu-list-item__link svg{width:0.75rem;margin-right:0.5rem}.close-menu-icon{display:flex;justify-content:flex-end;height:3rem}.close-menu-icon svg{width:1.25rem;margin:1rem 1.25rem 0.5rem 0.5rem}.icon-clickable-area{width:3rem;padding-top:0.5rem;cursor:pointer}.menu-overlay{position:absolute;left:0;z-index:10;width:100%;height:120vh;background-color:#000;opacity:0.85}@media (min-width: 576px){.account-management__menu{position:relative;top:auto}}@media (min-width: 1024px){.menu-arrow{display:block}.menu-arrow svg{width:0.625rem;height:0.625rem}.menu-container{width:12.5rem;height:auto}.menu-overlay{z-index:30;opacity:0}}body{background-color:#f5f5f5}body .grecaptcha-badge{visibility:hidden}.fusion-app{width:100%;margin:0 auto}@media (min-width: 1200px){.fusion-app{max-width:68.75rem;transition:max-width 0.2s ease}}.fusion-app--sidebar-is-active{max-width:calc(68.75rem + 18.75rem);transition:max-width 0.2s ease}.fusion-app--shorthand-page,.fusion-app--myaccount-page{max-width:100%}.fusion-app--myaccount-page{background-color:#121617}.container{position:relative;width:100%;margin:0 auto;background-color:#fff}@media (min-width: 576px) and (max-width: 991px){.container{overflow:hidden}}@media (min-width: 1200px){.container{max-width:68.75rem;transition:max-width 0.2s ease}}@media (min-width: 1400px){.container .main{position:static;width:68.75rem}}@media (min-width: 576px){.container .main,.container .footer{position:relative}}@media (min-width: 1400px){.container .main,.container .footer{transition:margin-left 0.2s ease}}@media (min-width: 1400px){.container--sidebar-is-active{max-width:1400px;transition:max-width 0.2s ease}}@media (min-width: 1400px){.container--sidebar-is-active .footer{width:calc(100% - 5rem * 2 - 18.75rem)}}@media (min-width: 1400px){.container--sidebar-is-active .main,.container--sidebar-is-active .footer{margin-left:18.75rem;transition:margin-left 0.2s ease}}.container--shorthand-page{max-width:100%}@media (min-width: 1200px){.container--shorthand-page{max-width:100%}}.container--shorthand-page .header{z-index:101}.container--shorthand-page .main,.container--shorthand-page .header,.container--shorthand-page .footer{width:100%}.container--shorthand-page .footer{box-sizing:border-box}.container--shorthand-page.container--sidebar-is-active .main{position:relative;transform:none}@media (min-width: 1400px){.container--shorthand-page.container--sidebar-is-active .main,.container--shorthand-page.container--sidebar-is-active .footer{width:calc(100vw - 18.75rem)}}@media (min-width: 576px){.container--shorthand-page.container--sidebar-is-active main::before,.container--shorthand-page.container--sidebar-is-active footer::before{z-index:102}}.container--shorthand-page.container--sidebar-is-active .sidebar{z-index:103;display:none}.container--shorthand-page.container--sidebar-is-active .sidebar--active{display:block}.container--shorthand-page.container--sidebar-is-active .navigation__item-icon{width:1rem;height:1rem}.container--myaccount-page{width:100%;background:#fff;background-repeat:no-repeat;background-size:cover}@media (min-width: 576px){.container--myaccount-page{background-image:url("https://media.nzherald.co.nz/registration/src/img/gisborne-weather-background_sm.jpg")}}@media (min-width: 1200px){.container--myaccount-page{max-width:100%}}.container--myaccount-page .main{width:100%;min-height:calc(100vh - 4.0625rem)}.container--myaccount-v2-page{width:100%;max-width:100%;background:#fff}@media (min-width: 576px) and (max-width: 991px){.container--myaccount-v2-page{overflow:unset}}.container--myaccount-v2-page .main{display:flex;width:auto;min-height:calc(100vh - 7.5rem)}.container--myaccount-v2-page .main--no-footer{min-height:100vh}.container--myprofile-v2-page{background:#fff}@media (min-width: 576px) and (max-width: 991px){.container--myprofile-v2-page{overflow:unset}}.section-sport{color:#50ac47}.section-sport-bg-color{background-color:#50ac47}.section-sport-shade-bg-color{background-color:#3c8135}.section-sport-bg-color-on-hover:hover{background-color:#50ac47}.section-sport-border-color{border-color:#50ac47}.section-sport-shade-border-color{border-color:#3c8135}.section-business{color:#394190}.section-business-bg-color{background-color:#394190}.section-business-shade-bg-color{background-color:#2e3045}.section-business-bg-color-on-hover:hover{background-color:#394190}.section-business-border-color{border-color:#394190}.section-business-shade-border-color{border-color:#2e3045}.section-national{color:#38a3d7}.section-national-bg-color{background-color:#38a3d7}.section-national-shade-bg-color{background-color:#2b7199}.section-national-bg-color-on-hover:hover{background-color:#38a3d7}.section-national-border-color{border-color:#38a3d7}.section-national-shade-border-color{border-color:#2b7199}.section-politics{color:#38a3d7}.section-politics-bg-color{background-color:#38a3d7}.section-politics-shade-bg-color{background-color:#2b7199}.section-politics-bg-color-on-hover:hover{background-color:#38a3d7}.section-politics-border-color{border-color:#38a3d7}.section-politics-shade-border-color{border-color:#2b7199}.section-new-zealand{color:#38a3d7}.section-new-zealand-bg-color{background-color:#38a3d7}.section-new-zealand-shade-bg-color{background-color:#2b7199}.section-new-zealand-bg-color-on-hover:hover{background-color:#38a3d7}.section-new-zealand-border-color{border-color:#38a3d7}.section-new-zealand-shade-border-color{border-color:#2b7199}.section-crime{color:#38a3d7}.section-crime-bg-color{background-color:#38a3d7}.section-crime-shade-bg-color{background-color:#2b7199}.section-crime-bg-color-on-hover:hover{background-color:#38a3d7}.section-crime-border-color{border-color:#38a3d7}.section-crime-shade-border-color{border-color:#2b7199}.section-world{color:#3374ba}.section-world-bg-color{background-color:#3374ba}.section-world-shade-bg-color{background-color:#255589}.section-world-bg-color-on-hover:hover{background-color:#3374ba}.section-world-border-color{border-color:#3374ba}.section-world-shade-border-color{border-color:#255589}.section-entertainment{color:#a43f82}.section-entertainment-bg-color{background-color:#a43f82}.section-entertainment-shade-bg-color{background-color:#752d5d}.section-entertainment-bg-color-on-hover:hover{background-color:#a43f82}.section-entertainment-border-color{border-color:#a43f82}.section-entertainment-shade-border-color{border-color:#752d5d}.section-lifestyle{color:#de2363}.section-lifestyle-bg-color{background-color:#de2363}.section-lifestyle-shade-bg-color{background-color:#ae1b4e}.section-lifestyle-bg-color-on-hover:hover{background-color:#de2363}.section-lifestyle-border-color{border-color:#de2363}.section-lifestyle-shade-border-color{border-color:#ae1b4e}.section-royalty{color:#de2363}.section-royalty-bg-color{background-color:#de2363}.section-royalty-shade-bg-color{background-color:#ae1b4e}.section-royalty-bg-color-on-hover:hover{background-color:#de2363}.section-royalty-border-color{border-color:#de2363}.section-royalty-shade-border-color{border-color:#ae1b4e}.section-technology{color:#ef5633}.section-technology-bg-color{background-color:#ef5633}.section-technology-shade-bg-color{background-color:#c1462a}.section-technology-bg-color-on-hover:hover{background-color:#ef5633}.section-technology-border-color{border-color:#ef5633}.section-technology-shade-border-color{border-color:#c1462a}.section-travel{color:#f47d22}.section-travel-bg-color{background-color:#f47d22}.section-travel-shade-bg-color{background-color:#c7661c}.section-travel-bg-color-on-hover:hover{background-color:#f47d22}.section-travel-border-color{border-color:#f47d22}.section-travel-shade-border-color{border-color:#c7661c}.section-property{color:#30bdb0}.section-property-bg-color{background-color:#30bdb0}.section-property-shade-bg-color{background-color:#259389}.section-property-bg-color-on-hover:hover{background-color:#30bdb0}.section-property-border-color{border-color:#30bdb0}.section-property-shade-border-color{border-color:#259389}.section-northern-advocate{color:#808285}.section-northern-advocate-bg-color{background-color:#808285}.section-northern-advocate-shade-bg-color{background-color:#5f5f5f}.section-northern-advocate-bg-color-on-hover:hover{background-color:#808285}.section-northern-advocate-border-color{border-color:#808285}.section-northern-advocate-shade-border-color{border-color:#5f5f5f}.section-bay-of-plenty-times{color:#0063a4}.section-bay-of-plenty-times-bg-color{background-color:#0063a4}.section-bay-of-plenty-times-shade-bg-color{background-color:#0c4d7e}.section-bay-of-plenty-times-bg-color-on-hover:hover{background-color:#0063a4}.section-bay-of-plenty-times-border-color{border-color:#0063a4}.section-bay-of-plenty-times-shade-border-color{border-color:#0c4d7e}.section-waikato-news{color:#8b080d}.section-waikato-news-bg-color{background-color:#8b080d}.section-waikato-news-shade-bg-color{background-color:#720a0d}.section-waikato-news-bg-color-on-hover:hover{background-color:#8b080d}.section-waikato-news-border-color{border-color:#8b080d}.section-waikato-news-shade-border-color{border-color:#720a0d}.section-hawkes-bay-today{color:#0e76bc}.section-hawkes-bay-today-bg-color{background-color:#0e76bc}.section-hawkes-bay-today-shade-bg-color{background-color:#0f5b90}.section-hawkes-bay-today-bg-color-on-hover:hover{background-color:#0e76bc}.section-hawkes-bay-today-border-color{border-color:#0e76bc}.section-hawkes-bay-today-shade-border-color{border-color:#0f5b90}.section-kapiti-news{color:#30638b}.section-kapiti-news-bg-color{background-color:#30638b}.section-kapiti-news-shade-bg-color{background-color:#264c6a}.section-kapiti-news-bg-color-on-hover:hover{background-color:#30638b}.section-kapiti-news-border-color{border-color:#30638b}.section-kapiti-news-shade-border-color{border-color:#264c6a}.section-manawatu-guardian{color:#088b6c}.section-manawatu-guardian-bg-color{background-color:#088b6c}.section-manawatu-guardian-shade-bg-color{background-color:#0d6a53}.section-manawatu-guardian-bg-color-on-hover:hover{background-color:#088b6c}.section-manawatu-guardian-border-color{border-color:#088b6c}.section-manawatu-guardian-shade-border-color{border-color:#0d6a53}.section-rotorua-daily-post{color:#8b080d}.section-rotorua-daily-post-bg-color{background-color:#8b080d}.section-rotorua-daily-post-shade-bg-color{background-color:#720a0d}.section-rotorua-daily-post-bg-color-on-hover:hover{background-color:#8b080d}.section-rotorua-daily-post-border-color{border-color:#8b080d}.section-rotorua-daily-post-shade-border-color{border-color:#720a0d}.section-stratford-press{color:#8b080d}.section-stratford-press-bg-color{background-color:#8b080d}.section-stratford-press-shade-bg-color{background-color:#6e0d10}.section-stratford-press-bg-color-on-hover:hover{background-color:#8b080d}.section-stratford-press-border-color{border-color:#8b080d}.section-stratford-press-shade-border-color{border-color:#6e0d10}.section-aucklander{color:#8b080d}.section-aucklander-bg-color{background-color:#8b080d}.section-aucklander-shade-bg-color{background-color:#760709}.section-aucklander-bg-color-on-hover:hover{background-color:#8b080d}.section-aucklander-border-color{border-color:#8b080d}.section-aucklander-shade-border-color{border-color:#760709}.section-the-country{color:#469031}.section-the-country-bg-color{background-color:#469031}.section-the-country-shade-bg-color{background-color:#346a24}.section-the-country-bg-color-on-hover:hover{background-color:#469031}.section-the-country-border-color{border-color:#469031}.section-the-country-shade-border-color{border-color:#346a24}.section-whanganui-chronicle{color:#084a7a}.section-whanganui-chronicle-bg-color{background-color:#084a7a}.section-whanganui-chronicle-shade-bg-color{background-color:#053658}.section-whanganui-chronicle-bg-color-on-hover:hover{background-color:#084a7a}.section-whanganui-chronicle-border-color{border-color:#084a7a}.section-whanganui-chronicle-shade-border-color{border-color:#053658}.section-northland-age{color:#8c163d}.section-northland-age-bg-color{background-color:#8c163d}.section-northland-age-shade-bg-color{background-color:#6c1331}.section-northland-age-bg-color-on-hover:hover{background-color:#8c163d}.section-northland-age-border-color{border-color:#8c163d}.section-northland-age-shade-border-color{border-color:#6c1331}.section-horowhenua-chronicle{color:#0063a4}.section-horowhenua-chronicle-bg-color{background-color:#0063a4}.section-horowhenua-chronicle-shade-bg-color{background-color:#0e4b79}.section-horowhenua-chronicle-bg-color-on-hover:hover{background-color:#0063a4}.section-horowhenua-chronicle-border-color{border-color:#0063a4}.section-horowhenua-chronicle-shade-border-color{border-color:#0e4b79}.section-te-awamutu-courier{color:#1e9043}.section-te-awamutu-courier-bg-color{background-color:#1e9043}.section-te-awamutu-courier-shade-bg-color{background-color:#216e3a}.section-te-awamutu-courier-bg-color-on-hover:hover{background-color:#1e9043}.section-te-awamutu-courier-border-color{border-color:#1e9043}.section-te-awamutu-courier-shade-border-color{border-color:#216e3a}.section-default{color:#121617}.section-default-bg-color{background-color:#121617}.section-default-shade-bg-color{background-color:#313c3d}.section-default-bg-color-on-hover:hover{background-color:#121617}.section-default-border-color{border-color:#121617}.section-default-shade-border-color{border-color:#313c3d}.section-nosection{color:#8a8f96}.section-nosection-bg-color{background-color:#8a8f96}.section-nosection-bg-color-on-hover:hover{background-color:#8a8f96}.section-nosection-border-color{border-color:#8a8f96}.section-newstalk-zb{color:#00beeb}.section-newstalk-zb-bg-color{background-color:#00beeb}.section-newstalk-zb-bg-color-on-hover:hover{background-color:#00beeb}.section-newstalk-zb-border-color{border-color:#00beeb}.section-the-vision-is-clear{color:#009290}.section-the-vision-is-clear-bg-color{background-color:#009290}.section-the-vision-is-clear-shade-bg-color{background-color:#2ca3a1}.section-the-vision-is-clear-bg-color-on-hover:hover{background-color:#009290}.section-the-vision-is-clear-border-color{border-color:#009290}.section-the-vision-is-clear-shade-border-color{border-color:#2ca3a1}.section-trailblazers{color:#6e2053}.section-trailblazers-bg-color{background-color:#6e2053}.section-trailblazers-shade-bg-color{background-color:#313c3d}.section-trailblazers-bg-color-on-hover:hover{background-color:#6e2053}.section-trailblazers-border-color{border-color:#6e2053}.section-trailblazers-shade-border-color{border-color:#313c3d}.section-eatwell{color:#c33857}.section-eatwell-bg-color{background-color:#c33857}.section-eatwell-shade-bg-color{background-color:#9a223c}.section-eatwell-bg-color-on-hover:hover{background-color:#c33857}.section-eatwell-border-color{border-color:#c33857}.section-eatwell-shade-border-color{border-color:#9a223c}.section-recipes{color:#c33857}.section-recipes-bg-color{background-color:#c33857}.section-recipes-shade-bg-color{background-color:#9a223c}.section-recipes-bg-color-on-hover:hover{background-color:#c33857}.section-recipes-border-color{border-color:#c33857}.section-recipes-shade-border-color{border-color:#9a223c}.section-food-news{color:#c33857}.section-food-news-bg-color{background-color:#c33857}.section-food-news-shade-bg-color{background-color:#9a223c}.section-food-news-bg-color-on-hover:hover{background-color:#c33857}.section-food-news-border-color{border-color:#c33857}.section-food-news-shade-border-color{border-color:#9a223c}.section-premium{color:#ecac0c}.section-premium-bg-color{background-color:#ecac0c}.section-premium-bg-color-on-hover:hover{background-color:#ecac0c}.section-premium-border-color{border-color:#ecac0c}.section-fallback{color:#333c3d}.section-fallback-bg-color{background-color:#333c3d}.section-fallback-bg-color-on-hover:hover{background-color:#333c3d}.section-fallback-border-color{border-color:#333c3d}.section-kahu{color:#597c35}.section-kahu-bg-color{background-color:#597c35}.section-kahu-bg-color-on-hover:hover{background-color:#597c35}.section-kahu-border-color{border-color:#597c35}.section-talanoa{color:#00c29b}.section-talanoa-bg-color{background-color:#00c29b}.section-talanoa-bg-color-on-hover:hover{background-color:#00c29b}.section-talanoa-border-color{border-color:#00c29b}.section-reset{color:#00b2b1}.section-reset-bg-color{background-color:#00b2b1}.section-reset-bg-color-on-hover:hover{background-color:#00b2b1}.section-reset-border-color{border-color:#00b2b1}.section-primary{color:#1c2122}.section-primary-bg-color{background-color:#1c2122}.section-secondary{color:#f5f5f5}.section-secondary-bg-color{background-color:#f5f5f5}@-webkit-keyframes ball-spin-fade-loader{50%{opacity:0.3;transform:scale(0.4)}100%{opacity:1;transform:scale(1)}}@keyframes ball-spin-fade-loader{50%{opacity:0.3;transform:scale(0.4)}100%{opacity:1;transform:scale(1)}}.ball-spin-fade-loader{position:relative;top:-10px;left:-10px}.ball-spin-fade-loader>div:nth-child(1){top:25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.96s infinite linear;animation:ball-spin-fade-loader 1s -.96s infinite linear}.ball-spin-fade-loader>div:nth-child(2){top:17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.84s infinite linear;animation:ball-spin-fade-loader 1s -.84s infinite linear}.ball-spin-fade-loader>div:nth-child(3){top:0;left:25px;-webkit-animation:ball-spin-fade-loader 1s -.72s infinite linear;animation:ball-spin-fade-loader 1s -.72s infinite linear}.ball-spin-fade-loader>div:nth-child(4){top:-17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.6s infinite linear;animation:ball-spin-fade-loader 1s -.6s infinite linear}.ball-spin-fade-loader>div:nth-child(5){top:-25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.48s infinite linear;animation:ball-spin-fade-loader 1s -.48s infinite linear}.ball-spin-fade-loader>div:nth-child(6){top:-17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.36s infinite linear;animation:ball-spin-fade-loader 1s -.36s infinite linear}.ball-spin-fade-loader>div:nth-child(7){top:0;left:-25px;-webkit-animation:ball-spin-fade-loader 1s -.24s infinite linear;animation:ball-spin-fade-loader 1s -.24s infinite linear}.ball-spin-fade-loader>div:nth-child(8){top:17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.12s infinite linear;animation:ball-spin-fade-loader 1s -.12s infinite linear}.ball-spin-fade-loader>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute}

