/** 
 * Zinio Core CSS file
 *
 * This file should contain all global and default styles
 * Page specific layouts and styles can be placed in an alternate page specific stylesheet
 * See http://prd-confluence1.zinio.com:8090/display/WWW/CSS for architecture documentation
 */





/* =================================================================== */
/* Reset
/* CSS Reset - Eric Meyer
/* =================================================================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}/* HTML5 display-role reset for older browsers */article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}





/* =================================================================== */
/* Elements
/* Basic HTML element style defaults
/* =================================================================== */
html {
    min-height: 100%;
    background-color: #f5f5f5;
}
body {
    min-height: 100%;
    font: normal normal 300 13px/13px 'ProximaNova-Regular',sans-serif;
    color: #333;
    background-color: #fafafa;
    visibility: visible !important;
}
p {
   line-height: 18px;
   margin: 0 0 24px; 
}
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
    color: #2EACE5;
}

/* Headers */
h1,
.header {
    /*
    color: #da291c;
    */
    color: #666;
    text-transform: uppercase;
    font-size: 20px;    
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 40px 0 20px;
    line-height: 1.3em;
}
h1:first-of-type {
    margin-top: 0!important;
}
h2 {
    display: block;
    color: #3c3c3c;
    font-size: 18px;    
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing:subpixel-antialiased;
}
h3 {
    display: block;
    color: #3f4444;
    font-size: 20px;    
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: 400;
    margin: 30px 0 5px;
    line-height: 1.3em;
}
h4 {
    font-size: 14px;
    font-weight: bold;
    color: #3c3c3c;
    margin: 10px 0 5px;
}

/* Lists */
ul, ol {
    margin: 24px 0 24px 24px;
    line-height: 18px;
}
ul li {
    list-style: disc;
}
ol li {
    list-style: decimal;
}
.whitebox ul li{
    list-style-type:disc;
}
.whitebox ul li:hover{
    background:transparent;
}
.whitebox h1 {
    color: #666;
    font-family: "ProximaNova-Regular",sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3em;
    margin: 40px 0 20px;
    text-transform: uppercase;
}
.whitebox h2 {  
    display: block;
    color: #3f4444;
    font-size: 20px;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: 400;
    margin: 30px 0 10px;
    line-height: 1.3em;
}
ul ul,
ul ol,
ol ol,
ol ul {
    margin: 18px 0 18px 24px;
}

/* Horizontal Rules */
hr { height: 0; border-top: 1px solid #999; margin: 30px 0; }
hr.double { height: 4px; border-bottom: 1px solid #999; }
hr.diagonal { border: none; height: 10px; background: transparent url(../images/ui/pattern-diag-gray.png); }

/* Tables */



/* =================================================================== */
/* Forms
/* Form and form element styles
/* =================================================================== */
input, 
select, 
textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    background-color: #efefef;
    font-weight: 300;
    border: 1px solid #d6d6d6;
    padding: 7px 12px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #666;
    font-family: "ProximaNova-Regular", sans-serif;
}
input[type=radio],
input[type=checkbox] {
    display: inline-block;
    width: auto;
}
input[type=submit] {
    font-family: "ProximaNova-Regular", sans-serif;
    font-size: 14px;
    font-weight: 400;
    width: auto;
    border: none;
    color: #fff; 
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    background-color: #00667d;
    display: inline-block;
    padding: 10px 30px;
}
label {
    display: block;
    font-family: "ProximaNova-Regular", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3c3c3c;
    margin: 15px 0 5px;
    padding: 0;
}
.button-row {
    margin: 20px 0;
    text-align: right;
}
.app_form_error {
    background-image: url(../images/ui/pattern-diag-gray.png);
    margin: 25px 0; 
    border: 1px solid #db3124;
    padding: 15px;
}
.app_form_error ul {
    background-color: #fff; 
    margin: 0;
    padding: 15px;
}
.app_form_error ul li {
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: #d6291b; 
    list-style: none;
}



/* =================================================================== */
/* Layout
/* Basic layout styles
/* =================================================================== */
#layout-wrapper {
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
}
#layout {
    position: relative;
    min-height: 100%;
}
/* =================================================================== */
/* Cart
/* Cart icon styles
/* =================================================================== */

#header-cart {
    display: inline-block;
    height: 50px;
    vertical-align: top;
    line-height: 50px;
    padding: 0;
    margin: 0;
    position: static;
    right: 30px;
    z-index: 4;
}
#header-cart .cart-count {
    display: inline-block;
    height: 25px;
    margin: 20px 20px 15px 0px;
    padding-left: 6px;
    width: 20px;
    vertical-align: middle;
    background: url(../images/ui/sprites.png) no-repeat -165px -150px;
}
#header-cart .cart-count.cart-empty {
    background: url(../images/ui/sprites.png) no-repeat -165px -125px;
}
#header-cart .cart-count a {
    display: block;
    height: 25px;
    width: 20px;   
    line-height: 0px;
    color: #e94b35;
    text-align: center;
}
#header-cart #cart-items {
    display: none;
}
/* =================================================================== */
/* Search
/* Styles for the search box in the header
/* =================================================================== */
form#search {
    position: relative;
    display: block;
    padding: 0;
}
#search-input-wrapper {
    height: 34px;
    position: relative;
    padding: 0px 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    background-color: #fff;
    color: #666;
}
#search.active #search-input-wrapper {
    border-radius: 5px 5px 0 0;
}
#search label {
    position: absolute;
    left: 10px;
    top: 7px;
    margin: 0;
    display: block;
    height: 20px;
    width: 20px;
    background: transparent url(../images/ui/sprites.png) no-repeat -80px -145px;
    display: none;
}
#search label img {
    display: block;
}
#search #query {
    display: block;
    background-color: #fff;
    margin-right: 10px;
    padding: 10px 0;
    height: 100%;
    margin: 0;
    width: 100%;
    outline: none;
    border: none;
    padding: 0;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #666;
    border-color: transparent;
    box-shadow: none;
}
#search-results {
  background-color: #fff;
  /*border: 1px solid #edf0f2;*/
  border-radius: 5px;
  box-shadow: 0 15px 15px rgba(38, 50, 56, 0.3);
  cursor: pointer;
  display: block;
  margin: 50px 0 0 20px;
  width: 300px!important;
  overflow:visible!important; }
#search-results a {
    color: #151B22;
    font-family: "ProximaNova-Regular", Arial;
    font-size: 14px;
    line-height: 30px;
    display: block;
    border-bottom: 1px solid #d6d6d6;
    padding: 10px;
    text-align: left;
    text-transform: none;
}
#search-results a:hover,
#search-results a:focus {
    background-color: #2eace5;
    color: #fff; 
}
#search-results a:last-of-type {
    border-bottom: none;
}
.search-parent{
    color:#35abe4;
    float:right;
}
#search-results a:hover >.search-parent ,
#search-results a:focus >.search-parent  {
    color: #fff;
}

@media screen and (max-width: 768px)  {

  #search-results-mobile {
    background-color: #fff;
      bottom: 0;
      display: none;
      height: 100%;
      position: fixed;
      top: 57px;
      width: 100%;
      border-radius: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling:touch;}
    #search-results-mobile a {
      color: #151B22;
    font-family: "ProximaNova-Regular", Arial;
    font-size: 14px;
    line-height: 30px;
    display: block;
    border-bottom: 1px solid #d6d6d6;
    padding: 10px;
    text-align: left;
    text-transform: none; }
    #search-results-mobile a:hover,
    #search-results-mobile a:focus {
        background-color: #2eace5;
        color: #fff; 
    }
.search-parent{
    color:#35abe4;
    float:right;
}
#search-results-mobile a:hover >.search-parent ,
#search-results-mobile a:focus >.search-parent  {
    color: #fff;
}

.primary-menu a:hover{
    color:#fff;
    }
#header-cart {
    position: absolute;
}
.global-nav .brand .bar-button-right{
    position:absolute;
    width:40px;
}
}
@media screen and (max-width: 1027px)  {
.primary-menu a:hover{
    color:#fff;
}}

/** 
 * Magazines
 */
.magazines-list {
    margin: 0;
    padding: 0;
    font-size: 0; /* Collapse white space between elements by font-size since we don't want to use a float */
}
.magazines-list .magazine {
    margin: 0;
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    vertical-align: top;
    width: 100%;
    max-width: 280px;
    padding: 15px;
    list-style: none;
    font-size: 13px; /* Reapply font size */
}
.magazines-list .magazine > a {
    display: block;
}
.magazines-list .magazine-cover {
    width: 100%;
    height: auto;
}

.magazines-list .magazine-title {
    font-size: 14px;
    display: block;
    font-family: 'ProximaNova-Regular', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 5px;
    color:#89949b;
}
.magazines-list .magazine-title:hover {
    color:#2EACE5;
}
/* Responsive */
@media screen and (max-width: 320px) {
    .magazines-list .magazine {
        display: block;
        width: auto;
        padding: 0 0 0 60px;
        position: relative;
        height: auto;
        min-height: 80px;
        margin: 10px;
    }
    .magazines-list .magazine-cover {
        width: 50px;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }
    .magazines-list .magazine-title {
        font-size: 16px;
    }
}
@media screen and (min-width: 321px) {
    .magazines-list .magazine {
        width: 50%;
    }
}
@media screen and (min-width: 480px) {
    .magazines-list .magazine {
        width: 33%;
    }
}
@media screen and (min-width: 720px) {
    .magazines-list .magazine {
        width: 25%;
    }
    .magazines-list .magazine:hover{
        background-color:transparent;
    }
}





/* =================================================================== */
/* Footer
/* Footer styles
/* =================================================================== */
#footer-wrapper {
    margin: 80px 0 0;
    background-color: #263238;
}
#footer-content {
    line-height: 18px;
    color: #c9c9c9;
    margin: 0 auto;
    max-width: 960px;
    padding: 30px 15px;
    position: relative;
}
#footer-content h3 {
    font-family: "ProximaNova-Regular", sans-serif;
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 10px 0;
}
.footer-nav {
    margin: 15px 0 0;
}
.footer-nav ul {
    margin: 0;
    display: inline-block;
}
.footer-nav li {
    display: inline-block;
    padding: 0 8px 0 10px;
}
.footer-nav li a {
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    color: #77909D;
    letter-spacing: 1px;
    margin: 2px 5px;
}

#footer-copyright {
    margin-top: 20px;
    font-size: 10px;
    color: #999;
}


/* =================================================================== */
/* Carousel
/* Default carousel styles (override in page-specific stylesheets)
/* =================================================================== */
.znocar-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}
.znocar-canvas {
    position: relative;
    width: 100%;
    white-space: nowrap;
    font-size: 0; /* prevents white space between items */
}
.znocar-item {
    display: none;
    width: 100%;
    white-space: normal; /* reset the whitespace */
}
.znocar-prev,
.znocar-next {
    position: absolute;
    z-index: 10;
    background-color: #000;
    opacity: .6;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    display: inline-block;
    padding: 10px 15px;
}
.znocar-prev { top: 30px; left: 0; }
.znocar-next { top: 30px; right: 0; }
.znocar-prev:hover,
.znocar-next:hover {
    opacity: .9;
}
.znocar-prev.znocar-disabled {
    position: absolute;
    left: -99999px;
}
.znocar-next.znocar-disabled {
    position: absolute;
    right: -99999px;
}
.znocar-nav {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: .5;
    text-align: right;
}
.znocar-navlink {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}
.znocar-navlink-active {
    background-color: #fff;
    color: #222;
}

/* =================================================================== */
/* Utility
/* Generic, non-element specific styles used throughout the site
/* =================================================================== */

/* Section headers */
header.section-header {
    padding: 15px 150px 15px 15px;
    margin: 24px 0 24px 0;
    border-bottom: 6px solid #eee;
    position: relative;
}
header.section-header:first-of-type { margin-top: 0; }
header.section-header .section-header-title {
    font-size: 20px;
    margin: 0;
    color: #666;
}
header.section-header .section-header-link {
    color: #666;
}
header.section-header .section-header-right-link {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 130px;
    text-align: right;
    font-size: 16px;
    text-transform:uppercase;
}
header.section-header .section-header-right-link:hover {
    color:#0f7393;
}

/* White content box */
.whitebox {
    background-color: #fff;
    border: 1px solid #d6d6d6;
    padding: 29px;
}
.whiteBox {
    background-color: #fff;
    border: 1px solid #d6d6d6;
    padding: 29px;
}

/* Messages */
.msg-wrapper {
    background-image: url(../images/ui/pattern-diag-gray.png);
    margin: 25px 0; 
    border: 1px solid #d6d6d6;
    padding: 10px;
}
.msg {
    background-color: #fff;
    color: #888;
    padding: 15px;
}

/* Image lazy loading */
img[data-loadsrc] { 
    background: url(../images/ui/ajax-loader.gif) no-repeat center center; 
    display: inline-block; 
}

/* Expander widget */
a[data-expandlink] {
    cursor: pointer;
    color: #2EACE5;
}
*[data-expandtarget] {
    display: none;
}

/* Push tracking pixels offscreen */
img[height="1"][width="1"],
img[height="0"][width="0"],
iframe[height="0"][width="0"] {
    position: absolute;
    left: -9999px;
}

/* Micro clearfix - http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
    content: ' ';
    display: table;
}
.clearfix:after { 
    clear: both; 
}
/* =================================================================== */
/* Responsive
/* This site is mobile first, so all breakpoints are for upscaling
/* =================================================================== */

.magazines-list .magazine:hover {
    background:transparent;
}
#countryModalFooter{
    margin:0px;
}
#explore-menu .explore-menu{
    margin-top:35px;
}
.global-nav form #query{
    margin-right:10px;
}
.magazine-menu .primary-menu ul{
    padding: 3px 16px 8px 18px;
}
.footer-bottom ul{
    line-height: 50px;
}
.shop-menu ul.primary-menu li,.shop-menu li,.magazine-menu li,.filter-menu li{
    line-height: 24px!important;
}


.help-float {
    background-image: url(../images/ui/help-icon.svg);
    background-repeat: no-repeat;
    bottom: 0px;
    color: #000000;
    display: block;
    font-size: 12px;
    padding: 1em;
    position: fixed;
    right: 0px;
    text-decoration: none;
    width:34px;
    height:34px;
    box-sizing:content-box;
}

.primary-menu a:hover{
    color:#fff;
}
#shop-menu .dropdown-container:after {
  top: 9px;
}
#explore-menu .dropdown-container:after,#my-magazines-menu .dropdown-container:after {
  top: 4px;
}
#my-magazines-menu{
  margin-top: 0.6em;
}

#shop-menu{
    margin-top:.5em;
}
.magazine-menu ul.tertiary-menu{
    padding-top:0!important;
}
ul.gridType li.block:hover, ul.Type li.block:hover{
    background-color:transparent;
}
li:hover{
    background-color:transparent;
}
.icon-menu a:hover{
    color:#2CCB8D;
}
#explore-menu a{
    color:#263238;
}
@media screen and (max-width: 768px)  {
  input#query-mobile {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none; }
  #search-results-mobile {
    width: 100%; }
  #search-results-mobile a {
    border-radius: 0;
    margin: 59px 10px 0;
    min-width: 0;
    width: auto; }
    #search-results-mobile a {
      margin: 0; }
.search-parent{
    color:#35abe4;
    float:right;
}
#search-results-mobile a:hover >.search-parent ,
#search-results-mobile a:focus >.search-parent  {
    color: #fff;
}
  
  #header-cart {
      position: absolute;
    }}