@charset "UTF-8";/* ---------------------------------------------- *  Big Mama Styles!  Here we collate all of our partials into one file ready to be processed and generate that  beautiful CSS.\* ---------------------------------------------- *//* - Index-------------------------------------------------  - Susy ...................................... 1.0.  - Breakpoint ................................ 2.0.  - Modular Scale ............................. 3.0.  - Mixins .................................... 4.0.  - Variables ................................. 5.0.  - Reset ..................................... 6.0.  - Base ...................................... 7.0.  - Grid ...................................... 8.0.  - Typography ................................ 9.0.  - Nav ...................................... 10.0.  - Header ................................... 11.0.  - Content .................................. 12.0.  - Footer ................................... 13.0.*//* -----------------------------------------  1.0. Susy----------------------------------------- *//* -----------------------------------------  2.0. Breakpoint----------------------------------------- *//* -----------------------------------------  3.0. Modular Scale----------------------------------------- *//* -----------------------------------------  4.0. Mixins----------------------------------------- *//* -----------------------------------------  5.0. Variables----------------------------------------- *//* -----------------------------------------  6.0. Reset----------------------------------------- *//* ---------------------------------------------- *  Partial: reset  Reset the fuck out of everything. Phwouah!\* ---------------------------------------------- */* {  box-sizing: border-box; }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; }article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {  display: block; }html, body {  height: 100%; }a img {  border: none; }blockquote {  quotes: none; }blockquote:before, blockquote:after {  content: '';  content: none; }table {  border-collapse: collapse;  border-spacing: 0; }caption, th, td {  text-align: left;  font-weight: normal;  vertical-align: middle; }/* -----------------------------------------  8.0. Grid----------------------------------------- *//* ---------------------------------------------- *  Partial: grid  We're using Susy. Please visit http://susy.readthedocs.org/en/latest/install/  Due to using Susy, we're going to need the Ruby gems installed. Please a see a guide here: [TBD].  Usage  =====\* ---------------------------------------------- *//* - Index-------------------------------------------------  - Global defaults     ............................. 1.0.  - Grid makeup         ............................. 2.0.*//* ---------------------------------------------- *  1.0 Global defaults\* ---------------------------------------------- *//* ---------------------------------------------- *  1.0 Grid makeup\* ---------------------------------------------- */.contain {  max-width: 1080px;  margin-left: auto;  margin-right: auto;  min-width: 1080px; }  .contain:after {    content: " ";    display: block;    clear: both; }  .contain--table {    display: table;    width: 100%;    max-width: 1080px;    min-width: 1080px;    margin: 0 auto; }/* -----------------------------------------  7.0. Base----------------------------------------- */@keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }@keyframes fade-in-up {  0% {    transform: translateY(20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-down {  0% {    transform: translateY(-20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-left {  0% {    transform: translateX(-20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-right {  0% {    transform: translateX(20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-up-big {  0% {    transform: translateY(100px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-down-big {  0% {    transform: translateY(-100px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes element-overlay {  0% {    width: 0;    left: 0;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  40% {    width: 100%;    left: 0;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  55% {    width: 100%;    right: 0;    left: auto;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  100% {    width: 0%;    right: 0;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); } }/*! * animsition v4.0.2 * A simple and easy jQuery plugin for CSS animated page transitions. * http://blivesta.github.io/animsition * License : MIT * Author : blivesta (http://blivesta.com/) */.animsition,.animsition-overlay {  position: relative;  opacity: 0;  animation-fill-mode: both; }/** * overlay option */.animsition-overlay-slide {  position: fixed;  z-index: 1;  width: 100%;  height: 100%;  background-color: #ddd; }/* loading option */.animsition-loading,.animsition-loading:after {  width: 32px;  height: 32px;  position: fixed;  top: 50%;  left: 50%;  margin-top: -16px;  margin-left: -16px;  border-radius: 50%;  z-index: 100; }.animsition-loading {  background-color: transparent;  border-top: 5px solid rgba(0, 0, 0, 0.2);  border-right: 5px solid rgba(0, 0, 0, 0.2);  border-bottom: 5px solid rgba(0, 0, 0, 0.2);  border-left: 5px solid #eee;  transform: translateZ(0);  animation-iteration-count: infinite;  animation-timing-function: linear;  animation-duration: .8s;  animation-name: animsition-loading; }@keyframes animsition-loading {  0% {    transform: rotate(0deg); }  100% {    transform: rotate(360deg); } }@keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }.fade-in {  animation-name: fade-in; }@keyframes fade-out-up {  0% {    transform: translateY(0);    opacity: 1; }  100% {    transform: translateY(-500px);    opacity: 0; } }.fade-out-up {  animation-name: fade-out-up; }/* ---------------------------------------------- *  Partial: base  Here you place the base defaults to any project\* ---------------------------------------------- */*, *:before, *:after {  box-sizing: border-box; }html {  font-size: 100%;  -webkit-text-size-adjust: 100%;      -ms-text-size-adjust: 100%;          text-size-adjust: 100%; }body {  color: #1d1d1c;  font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 14px;  line-height: 1.6;  margin: 0;  font-size: 13px; }  @media (min-width: 340px) {    body {      font-size: calc(13px + 3 * (100vw - 340px) / 690); } }  @media (min-width: 1030px) {    body {      font-size: 16px; } }html, body {  height: 100%;  min-height: 100%; }small {  font-size: 0.85em; }ul li {  list-style: none; }ol li {  list-style: none; }img, object, embed {  height: auto;  max-width: 100%; }blockquote {  color: #FFFFFF;  font-size: 1.1em;  font-style: italic;  margin: 0 0 1.250em 1.250em;  padding: 0.625em 1.250em 1.250em; }  blockquote p:last-child {    margin-bottom: 0; }/*********************************************  - 2.0 -  LINKS*********************************************//* - 2.1. - BASE LINK STYLES  ------------------------------------------ */a {  color: #d24f08;  cursor: pointer;  text-decoration: none;  /* Improve readability when focused and hovered in all browsers: h5bp.com/h */ }  a:hover {    color: #E93203; }  a:focus {    color: #E93203; }  a:focus, a:active {    outline: none; }/* - 2.2. - HEADER LINKS  ------------------------------------------ */h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {  color: #d24f08; }/*********************************************  - 3.0 -  Helpers*********************************************/.hide {  display: none; }.no-margin {  margin: 0; }.center-align {  text-align: center; }.base {  color: #d24f08; }.container {  width: 100%;  margin: auto;  padding: 0 1.75em;  max-width: 1534px; }  .container:before, .container:after {    content: "";    display: table; }  .container:after {    clear: both; }  @media (min-width: 30em) {    .container {      padding: 0 2em; } }section {  padding: 3em 0;  background-color: #fff;  overflow: hidden; }  section:before, section:after {    content: "";    display: table; }  section:after {    clear: both; }  @media (min-width: 53.125em) {    section {      padding: 5em 0; } }.eyebrow {  color: #97959c;  font-size: 1.125em;  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }.main-title {  text-align: center; }  @media (min-width: 26.25em) {    .main-title {      padding: 0 2em; } }.title-underline {  position: relative; }  .title-underline h2:after, .title-underline h3:after {    content: "";    display: block;    width: 60px;    height: 2px;    background-color: #d24f08;    margin: 1rem auto 0; }/*Element Fade Ins*/.latest-novel__content .button, .novel-link .button, .news-link .button {  position: relative; }  .latest-novel__content .button a, .novel-link .button a, .news-link .button a {    opacity: 0;    transition: opacity 10ms linear 610ms, background-color 300ms ease-out; }  .latest-novel__content .button:after, .novel-link .button:after, .news-link .button:after {    content: "";    position: absolute;    top: 0;    width: 0;    height: calc(100% + 2px);    background-color: #d24f08;    display: block; }  .inviewport .latest-novel__content .button a, .previewFrame .latest-novel__content .button a, .inviewport .novel-link .button a, .previewFrame .novel-link .button a, .inviewport .news-link .button a, .previewFrame .news-link .button a {    opacity: 1; }  .inviewport .latest-novel__content .button:after, .previewFrame .latest-novel__content .button:after, .inviewport .novel-link .button:after, .previewFrame .novel-link .button:after, .inviewport .news-link .button:after, .previewFrame .news-link .button:after {    animation: element-overlay 500ms ease-out forwards 400ms; }/* -----------------------------------------  9.0. Typography----------------------------------------- *//* ---------------------------------------------- *  Partial: typography  I set all typographic styles here. First we list our variables such as fonts (maybe we're using some @font-face) and  additionally and maps we might want to use. Then we specificy the typographic scales we want.\* ---------------------------------------------- */h1, h2, h3, h4, h5, h6 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-style: normal;  color: inherit;  font-weight: 400;  text-rendering: optimizeLegibility;  margin: 2em 0 0.75em;  line-height: 1.5; }  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {    margin-top: 0; }h1, .h1 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 2.3328em;  font-weight: 500; }  @media (min-width: 30em) {    h1, .h1 {      font-size: 2.79936em; } }  @media (min-width: 57.5em) {    h1, .h1 {      font-size: 4.03108em; } }h2, .h2 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 1.944em;  font-weight: 400; }  @media (min-width: 37.5em) {    h2, .h2 {      font-size: 2.3328em; } }h3, .h3 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 1.944em;  font-weight: 500; }h4, .h4 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 1.62em;  font-weight: 400; }h5, .h5 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 1.35em;  font-weight: 500; }h6, .h6 {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 1.125em;  font-weight: 400; }p, .p {  font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size: 15px;  line-height: 1.7;  font-weight: 400;  text-rendering: optimizeLegibility;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale; }  p:not(:last-child), .p:not(:last-child) {    margin-bottom: 1.4em; }strong {  font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-style: normal;  font-weight: 700; }em {  font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-style: normal; }/* -----------------------------------------  10.0. Nav----------------------------------------- *//* ---------------------------------------------- *  Partial: nav  All navigation styles here. This is sort that we can try keep things seperated and easy to maintain. You can  include all global navigation styles here.\* ---------------------------------------------- */.no-bg .scrolled .main-nav .nav > ul > li > a {  color: #fff; }.main-nav {  display: none; }  @media (min-width: 52.5em) {    .main-nav {      display: table-cell; } }  .main-nav .nav {    text-align: center;    line-height: 0; }    @media (min-width: 72.5em) {      .main-nav .nav {        float: right; } }    .scrolled .main-nav .nav {      line-height: 0; }      .scrolled .main-nav .nav > ul {        line-height: 1.6; }        .scrolled .main-nav .nav > ul > li.liLinkActive > a {          color: #FFFFFF;          border-color: #FFFFFF; }        .scrolled .main-nav .nav > ul > li.liLinkActive:hover > a {          color: #FFFFFF; }        .scrolled .main-nav .nav > ul > li:hover > a {          color: #FFFFFF;          border-color: #FFFFFF; }    .main-nav .nav > ul {      display: inline-block;      line-height: 1.6; }      @media (min-width: 72.5em) {        .main-nav .nav > ul {          padding-left: 2em; } }      .main-nav .nav > ul > li {        float: left;        position: relative;        list-style: none;        padding: 0 1em; }        .flexbox .main-nav .nav > ul > li {          padding: 0 0.75em; }          @media (min-width: 92.5em) {            .flexbox .main-nav .nav > ul > li {              padding: 0 1.25em; } }          @media (min-width: 103.75em) {            .flexbox .main-nav .nav > ul > li {              padding: 0 1.75em; } }        .main-nav .nav > ul > li:last-child {          padding-right: 0; }        .main-nav .nav > ul > li > a {          text-decoration: none;          color: #FFFFFF;          display: block;          padding: 0.75em 0.5em;          font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;          font-weight: 500;          font-size: 0.935em;          border-bottom: 2px solid transparent; }          @media (min-width: 57.5em) {            .main-nav .nav > ul > li > a {              font-size: 0.875em; } }          @media (min-width: 86.875em) {            .main-nav .nav > ul > li > a {              font-size: 1em; } }          .scrolled .main-nav .nav > ul > li > a {            padding: 0.65em 0; }          .header-wrap .main-nav .nav > ul > li > a, .no-bg .main-nav .nav > ul > li > a {            color: #97959c; }        .main-nav .nav > ul > li.liLinkActive > a {          color: #d24f08;          border-color: #d24f08; }        .main-nav .nav > ul > li.liLinkActive:hover > a {          color: #d24f08; }        .main-nav .nav > ul > li:hover > a {          color: #d24f08; }        .no-cssanimations .main-nav .nav > ul > li:hover > ul {          display: block; }        .cssanimations .main-nav .nav > ul > li:hover > ul {          visibility: visible;          animation: fade-in-down 300ms ease-out forwards; }        .main-nav .nav > ul > li > ul {          position: absolute;          top: 100%;          padding: 1rem 0.5rem;          min-width: calc(100% + 20px);          background-color: #d24f08;          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);          left: 0;          text-align: left; }          .no-cssanimations .main-nav .nav > ul > li > ul {            display: none; }          .cssanimations .main-nav .nav > ul > li > ul {            opacity: 0;            visibility: hidden;            -ms-transform: translateY(-100%);                transform: translateY(-100%); }          .main-nav .nav > ul > li > ul > li {            display: block; }            .main-nav .nav > ul > li > ul > li a {              display: block;              white-space: nowrap;              padding: 0.5em 1em;              font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;              color: #fff;              font-size: 14px; }            .main-nav .nav > ul > li > ul > li:hover a {              color: #702a04;              color: #1d1d1c; }            .main-nav .nav > ul > li > ul > li.submenu > ul {              display: none; }.mobile-nav {  opacity: 0;  visibility: hidden;  z-index: -1;  position: fixed;  top: 0;  left: 0;  width: 100%;  height: 100%;  background-color: #d24f08;  background-image: linear-gradient(-45deg, #d52e03, #d24f08);  padding: 6em 0 4em;  display: -ms-flexbox;  display: flex;  -ms-flex-align: center;      align-items: center;  -ms-flex-pack: center;      justify-content: center;  overflow-y: scroll;  -ms-transform: translateX(-100%);      transform: translateX(-100%);  -ms-overflow-style: -ms-autohiding-scrollbar;  transition: opacity 250ms ease-out, transform 400ms ease-out; }  .mobile-nav::-webkit-scrollbar {    width: 0 !important; }  .show-menu .mobile-nav {    opacity: 1;    visibility: visible;    z-index: 1000;    -ms-transform: translateX(0);        transform: translateX(0); }  @media (min-width: 52.5em) {    .mobile-nav {      opacity: 0;      visibility: hidden;      z-index: -1; } }  .mobile-nav .nav {    overflow: hidden;    margin: auto;    width: 100%;    padding: 0 8%; }    .mobile-nav .nav > ul {      height: 100%;      -webkit-backface-visibility: hidden;              backface-visibility: hidden; }    .mobile-nav .nav li {      display: block; }      .cssanimations .mobile-nav .nav li {        opacity: 0;        -ms-transform: translateX(-20px);            transform: translateX(-20px); }      .show-menu .mobile-nav .nav li {        animation: fade-in-left 300ms ease-out forwards 900ms; }        .show-menu .mobile-nav .nav li > ul li {          animation: fade-in-left 300ms ease-out forwards 100ms; }      .mobile-nav .nav li.parent > a {        display: inline-block;        vertical-align: middle; }        .mobile-nav .nav li.parent > a:after {          content: "";          background-image: url(/amandaprowse-com/_img/images/svg/cross.svg);          background-position: 50% 50%;          background-size: contain;          background-repeat: no-repeat;          color: #222;          display: inline-block;          height: 0.75em;          width: 0.75em;          position: relative;          left: 1rem;          line-height: 1;          font-size: 16px;          -ms-transform: rotate(0deg);          transform: rotate(0deg);          transition: transform 300ms ease-out; }        .mobile-nav .nav li.parent > a:hover:after {          color: #E97503; }      .mobile-nav .nav li.parent.open > a:after {        -ms-transform: rotate(225deg);            transform: rotate(225deg); }      .mobile-nav .nav li a {        padding: 0.5em 1em;        display: block;        font-size: 17px;        line-height: 1.75;        color: #fff;        font-weight: 400;        font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }        @media (min-width: 30em) {          .mobile-nav .nav li a {            line-height: 2.5; } }        .mobile-nav .nav li a:hover {          color: #1d1d1c;          text-decoration: none; }      .mobile-nav .nav li.open > ul {        display: block; }      .mobile-nav .nav li > ul {        padding-bottom: 1em;        padding-left: 1.5em;        display: none; }        .mobile-nav .nav li > ul li a {          font-size: 15px;          font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;          line-height: 1.5;          font-weight: 300;          color: rgba(255, 255, 255, 0.7); }          .mobile-nav .nav li > ul li a:hover {            color: #fff; }/* -----------------------------------------  11.0. Header----------------------------------------- */.header-wrap {  position: relative;  background-color: #fff;  background-color: #f5f5f5;  border-bottom: 1px solid #f2eeec;  overflow: visible;  padding: 0; }  .header-wrap header {    position: relative; }  .header-wrap .nav-bar {    background-image: none; }header {  position: absolute;  top: 0;  left: 0;  width: 100%;  z-index: 1005; }  header.scrolled {    position: fixed;    animation: fade-in-down 300ms ease-out forwards;    box-shadow: 0 2px 10px 0 rgba(29, 29, 28, 0.05); }  .no-bg header {    border-bottom: 1px solid rgba(29, 29, 28, 0.15); }  .show-menu header {    position: fixed;    box-shadow: none;    border: none; }.nav-bar {  padding: 2em 5% 8px;  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), transparent);  transition: all 300ms ease-out; }  @media (min-width: 52.5em) {    .nav-bar {      padding: 2em 5% 0; } }  @media (min-width: 70.625em) {    .nav-bar {      padding: 3em 5% 0; } }  .no-bg .nav-bar {    background-image: none; }  .scrolled .nav-bar {    padding: 0.75em 1em 0.75em;    background-image: none;    background-color: #d24f08; }    @media (min-width: 30em) {      .scrolled .nav-bar {        padding: 0.75em 2em 0.75em; } }    @media (min-width: 52.5em) {      .scrolled .nav-bar {        padding: 0.5em 2em 0; } }  .show-menu .nav-bar {    padding: 2em 5% 0;    background-image: none;    background-color: transparent; }.main-logo {  width: calc(100% - 4.5em);  padding-right: 2em;  display: inline-block;  vertical-align: middle;  opacity: 1; }  @media (min-width: 52.5em) {    .main-logo {      margin-bottom: 1em;      width: 100%;      text-align: center;      padding-right: 0; } }  @media (min-width: 72.5em) {    .main-logo {      width: 15em;      text-align: left;      margin-bottom: 0;      vertical-align: sub; } }  @media (min-width: 78.125em) {    .main-logo {      width: 20em; } }  .main-logo a {    display: block;    line-height: 0; }  .main-logo svg {    fill: #d24f08;    transition: fill 300ms ease-out;    max-width: 15em; }    @media (min-width: 52.5em) {      .main-logo svg {        max-width: 17em; } }  .scrolled .main-logo svg, .show-menu .main-logo svg {    fill: #FFFFFF; }  @media (min-width: 52.5em) {    .scrolled .main-logo {      display: none; }      .scrolled .main-logo svg {        max-width: 75%; } }  @media (min-width: 72.5em) {    .scrolled .main-logo {      display: inline-block; } }  .show-menu .main-logo {    display: inline-block; }  .main-logo img {    width: 15em;    display: inline-block; }    @media (min-width: 72.5em) {      .main-logo img {        width: auto; } }.main-nav {  width: 100%;  display: none;  vertical-align: middle;  transition: width 300ms ease-out; }  @media (min-width: 52.5em) {    .main-nav {      display: inline-block; } }  @media (min-width: 72.5em) {    .main-nav {      width: calc(100% - 16em); } }  @media (min-width: 78.125em) {    .main-nav {      width: calc(100% - 21em); } }.top-social {  display: none;  width: 8em;  vertical-align: middle;  text-align: right; }  @media (min-width: 57.5em) {    .top-social {      display: inline-block; } }  .top-social__inner {    display: inline-block; }.social__icon {  height: 2em;  width: 2em;  margin-left: 0.35em;  display: inline-block;  vertical-align: middle;  transition: transform 200ms ease-out; }  .social__icon svg {    height: 2em;    width: 2em;    fill: #fff; }  .social__icon:hover {    -ms-transform: scale(1.2);        transform: scale(1.2); }.nav-button {  display: inline-block;  width: auto;  line-height: 0;  max-width: 4em;  text-align: right;  vertical-align: middle; }  @media (min-width: 30em) {    .nav-button {      width: calc(100% - 10em); } }  @media (min-width: 52.5em) {    .nav-button {      display: none; } }  .scrolled .nav-button, .show-menu .nav-button {    width: calc(100% - 5em); }/* -----------------------------------------  12.0. Content----------------------------------------- *//* Slider */.slick-slider {  position: relative;  display: block;  box-sizing: border-box;  -webkit-touch-callout: none;  -webkit-user-select: none;  -moz-user-select: none;  -ms-user-select: none;  user-select: none;  -ms-touch-action: pan-y;  touch-action: pan-y;  -webkit-tap-highlight-color: transparent; }.slick-list {  position: relative;  overflow: hidden;  display: block;  margin: 0;  padding: 0; }  .slick-list:focus {    outline: none; }  .slick-list.dragging {    cursor: pointer;    cursor: hand; }.slick-slider .slick-track,.slick-slider .slick-list {  -ms-transform: translate3d(0, 0, 0);  transform: translate3d(0, 0, 0); }.slick-track {  position: relative;  left: 0;  top: 0;  display: block; }  .slick-track:before, .slick-track:after {    content: "";    display: table; }  .slick-track:after {    clear: both; }  .slick-loading .slick-track {    visibility: hidden; }.slick-slide {  float: left;  height: 100%;  min-height: 1px;  display: none; }  [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; }.slick-arrow {  cursor: pointer; }/* Magnific Popup CSS */.mfp-bg {  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1042;  overflow: hidden;  position: fixed;  background: #0b0b0b;  opacity: 0.8; }.mfp-wrap {  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1043;  position: fixed;  outline: none !important;  -webkit-backface-visibility: hidden; }.mfp-container {  text-align: center;  position: absolute;  width: 100%;  height: 100%;  left: 0;  top: 0;  padding: 0 8px;  box-sizing: border-box; }.mfp-container:before {  content: '';  display: inline-block;  height: 100%;  vertical-align: middle; }.mfp-align-top .mfp-container:before {  display: none; }.mfp-content {  position: relative;  display: inline-block;  vertical-align: middle;  margin: 0 auto;  text-align: left;  z-index: 1045; }.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content {  width: 100%;  cursor: auto; }.mfp-ajax-cur {  cursor: progress; }.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {  cursor: zoom-out; }.mfp-zoom {  cursor: pointer;  cursor: zoom-in; }.mfp-auto-cursor .mfp-content {  cursor: auto; }.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter {  -webkit-user-select: none;  -moz-user-select: none;  -ms-user-select: none;      user-select: none; }.mfp-loading.mfp-figure {  display: none; }.mfp-hide {  display: none !important; }.mfp-preloader {  color: #CCC;  position: absolute;  top: 50%;  width: auto;  text-align: center;  margin-top: -0.8em;  left: 8px;  right: 8px;  z-index: 1044; }.mfp-preloader a {  color: #CCC; }.mfp-preloader a:hover {  color: #FFF; }.mfp-s-ready .mfp-preloader {  display: none; }.mfp-s-error .mfp-content {  display: none; }button.mfp-close,button.mfp-arrow {  overflow: visible;  cursor: pointer;  background: transparent;  border: 0;  -webkit-appearance: none;  display: block;  outline: none;  padding: 0;  z-index: 1046;  box-shadow: none;  -ms-touch-action: manipulation;      touch-action: manipulation; }button::-moz-focus-inner {  padding: 0;  border: 0; }.mfp-close {  width: 44px;  height: 44px;  line-height: 44px;  position: absolute;  right: 0;  top: 0;  text-decoration: none;  text-align: center;  opacity: 0.65;  padding: 0 0 18px 10px;  color: #FFF;  font-style: normal;  font-size: 28px;  font-family: Arial, Baskerville, monospace; }.mfp-close:hover,.mfp-close:focus {  opacity: 1; }.mfp-close:active {  top: 1px; }.mfp-close-btn-in .mfp-close {  color: #333; }.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close {  color: #FFF;  right: -6px;  text-align: right;  padding-right: 6px;  width: 100%; }.mfp-counter {  position: absolute;  top: 0;  right: 0;  color: #CCC;  font-size: 12px;  line-height: 18px;  white-space: nowrap; }.mfp-arrow {  position: absolute;  opacity: 0.65;  margin: 0;  top: 50%;  margin-top: -55px;  padding: 0;  width: 90px;  height: 110px;  -webkit-tap-highlight-color: transparent; }.mfp-arrow:active {  margin-top: -54px; }.mfp-arrow:hover,.mfp-arrow:focus {  opacity: 1; }.mfp-arrow:before,.mfp-arrow:after {  content: '';  display: block;  width: 0;  height: 0;  position: absolute;  left: 0;  top: 0;  margin-top: 35px;  margin-left: 35px;  border: medium inset transparent; }.mfp-arrow:after {  border-top-width: 13px;  border-bottom-width: 13px;  top: 8px; }.mfp-arrow:before {  border-top-width: 21px;  border-bottom-width: 21px;  opacity: 0.7; }.mfp-arrow-left {  left: 0; }.mfp-arrow-left:after {  border-right: 17px solid #FFF;  margin-left: 31px; }.mfp-arrow-left:before {  margin-left: 25px;  border-right: 27px solid #3F3F3F; }.mfp-arrow-right {  right: 0; }.mfp-arrow-right:after {  border-left: 17px solid #FFF;  margin-left: 39px; }.mfp-arrow-right:before {  border-left: 27px solid #3F3F3F; }.mfp-iframe-holder {  padding-top: 40px;  padding-bottom: 40px; }.mfp-iframe-holder .mfp-content {  line-height: 0;  width: 100%;  max-width: 900px; }.mfp-iframe-holder .mfp-close {  top: -40px; }.mfp-iframe-scaler {  width: 100%;  height: 0;  overflow: hidden;  padding-top: 56.25%; }.mfp-iframe-scaler iframe {  position: absolute;  display: block;  top: 0;  left: 0;  width: 100%;  height: 100%;  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);  background: #000; }/* Main image in popup */img.mfp-img {  width: auto;  max-width: 100%;  height: auto;  display: block;  line-height: 0;  box-sizing: border-box;  padding: 40px 0 40px;  margin: 0 auto; }/* The shadow behind the image */.mfp-figure {  line-height: 0; }.mfp-figure:after {  content: '';  position: absolute;  left: 0;  top: 40px;  bottom: 40px;  display: block;  right: 0;  width: auto;  height: auto;  z-index: -1;  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);  background: #444; }.mfp-figure small {  color: #BDBDBD;  display: block;  font-size: 12px;  line-height: 14px; }.mfp-figure figure {  margin: 0; }.mfp-bottom-bar {  margin-top: -36px;  position: absolute;  top: 100%;  left: 0;  width: 100%;  cursor: auto; }.mfp-title {  text-align: left;  line-height: 18px;  color: #F3F3F3;  word-wrap: break-word;  padding-right: 36px;  display: none; }.mfp-image-holder .mfp-content {  max-width: 100%; }.mfp-gallery .mfp-image-holder .mfp-figure {  cursor: pointer; }@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {  /**       * Remove all paddings around the image on small screen       */  .mfp-img-mobile .mfp-image-holder {    padding-left: 0;    padding-right: 0; }  .mfp-img-mobile img.mfp-img {    padding: 0; }  .mfp-img-mobile .mfp-figure:after {    top: 0;    bottom: 0; }  .mfp-img-mobile .mfp-figure small {    display: inline;    margin-left: 5px; }  .mfp-img-mobile .mfp-bottom-bar {    background: rgba(0, 0, 0, 0.6);    bottom: 0;    margin: 0;    top: auto;    padding: 3px 5px;    position: fixed;    box-sizing: border-box; }  .mfp-img-mobile .mfp-bottom-bar:empty {    padding: 0; }  .mfp-img-mobile .mfp-counter {    right: 5px;    top: 3px; }  .mfp-img-mobile .mfp-close {    top: 0;    right: 0;    width: 35px;    height: 35px;    line-height: 35px;    background: rgba(0, 0, 0, 0.6);    position: fixed;    text-align: center;    padding: 0; } }@media all and (max-width: 900px) {  .mfp-arrow {    -ms-transform: scale(0.75);        transform: scale(0.75); }  .mfp-arrow-left {    -ms-transform-origin: 0;        transform-origin: 0; }  .mfp-arrow-right {    -ms-transform-origin: 100%;        transform-origin: 100%; }  .mfp-container {    padding-left: 6px;    padding-right: 6px; } }/*! * Hamburgers * @description Tasty CSS-animated hamburgers * @author Jonathan Suh @jonsuh * @site https://jonsuh.com/hamburgers * @link https://github.com/jonsuh/hamburgers */.hamburger {  display: inline-block;  cursor: pointer;  transition-property: opacity, filter;  transition-duration: 0.15s;  transition-timing-function: linear;  font: inherit;  color: inherit;  text-transform: none;  background-color: transparent;  border: 0;  margin: 0;  outline: none;  overflow: visible; }.hamburger:hover {  opacity: 0.7; }.hamburger-box {  width: 40px;  height: 24px;  display: inline-block;  position: relative; }.hamburger-inner {  display: block;  top: 50%;  margin-top: -2px; }.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {  width: 40px;  height: 4px;  background-color: #fff;  border-radius: 4px;  position: absolute;  transition-property: transform;  transition-duration: 0.15s;  transition-timing-function: ease; }  .header-wrap .hamburger-inner, .no-bg .hamburger-inner, .header-wrap .hamburger-inner::before, .no-bg .hamburger-inner::before, .header-wrap .hamburger-inner::after, .no-bg .hamburger-inner::after {    background-color: #d24f08; }  .scrolled .hamburger-inner, .scrolled .hamburger-inner::before, .scrolled .hamburger-inner::after {    background-color: #fff; }  .show-menu .hamburger-inner, .show-menu .hamburger-inner::before, .show-menu .hamburger-inner::after {    background-color: #FFFFFF; }.hamburger-inner::before, .hamburger-inner::after {  content: "";  display: block; }.hamburger-inner::before {  top: -10px; }.hamburger-inner::after {  bottom: -10px; }/* * 3DX *//* * Elastic */.hamburger--spring .hamburger-inner {  top: 2px;  transition: background-color 0s 0.15s linear; }.hamburger--spring .hamburger-inner::before {  top: 10px;  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }.hamburger--spring .hamburger-inner::after {  top: 20px;  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }.hamburger--spring.is-active .hamburger-inner {  transition-delay: 0.32s;  background-color: transparent; }.hamburger--spring.is-active .hamburger-inner::before {  top: 0;  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);  transform: translate3d(0, 10px, 0) rotate(45deg); }.hamburger--spring.is-active .hamburger-inner::after {  top: 0;  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);  transform: translate3d(0, 10px, 0) rotate(-45deg); }/* ---------------------------------------------- *  Partial: buttons  This is a work-in-progress. Please deploy your own method or use my exaple below.  Namespace structure  [interaction][-Button][-Variant]\* ---------------------------------------------- */.button {  display: inline-block; }  .button a, .button span {    padding: 0.65em 2.5em;    font-size: 18px;    color: #1d1d1c;    background-color: #FFFFFF;    transition: all 300ms ease-out;    display: inline-block;    text-align: center;    white-space: nowrap;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600; }    .button a:hover, .button span:hover {      background-color: #1d1d1c;      color: #FFFFFF; }.border-button a, .border-button span {  border: 2px solid currentColor;  background-color: transparent; }.border-button.base a, .border-button.base span {  border-color: #d24f08;  color: #d24f08; }  .border-button.base a:hover, .border-button.base span:hover {    background-color: #d24f08;    color: white; }.border-button.comp a {  border-color: #008581;  color: #FFFFFF; }  .border-button.comp a:hover {    background-color: #008581;    color: #FFFFFF;    text-shadow: none; }.border-button.white a {  border-color: #FFFFFF;  color: #FFFFFF; }  .border-button.white a:hover {    background-color: #FFFFFF;    color: #d24f08;    text-shadow: none; }.solid-button a {  border: none; }.solid-button.base a {  background-color: #d24f08;  color: #FFFFFF; }  .solid-button.base a:hover {    background-color: #a13d06; }.solid-button.comp a {  background-color: #008581;  color: #FFFFFF; }  .solid-button.comp a:hover {    background-color: #005250;    color: #FFFFFF;    text-shadow: none; }.solid-button.white a {  background-color: #FFFFFF;  color: #d24f08; }  .solid-button.white a:hover {    background-color: #cccccc;    color: #d24f08;    text-shadow: none; }.solid-button.grad::before {  content: "";  display: block;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1;  opacity: 0;  transition: opacity 400ms ease-out;  background-color: #E97503;  background-image: linear-gradient(to right, #d24f08, #E97503); }.solid-button.grad::after {  content: "";  display: block;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1;  opacity: 1;  transition: opacity 400ms ease-out;  background-color: #d24f08;  background-image: linear-gradient(to right, #E97503, #d24f08); }.solid-button.grad a {  background-color: transparent;  color: #fff;  position: relative;  z-index: 3; }  .solid-button.grad a:hover {    color: #fff;    text-shadow: none; }.solid-button.grad:hover::before {  opacity: 1; }.solid-button.grad:hover::after {  opacity: 0; }.solid-button.grad.grad-dark::before {  background-color: #d24f08;  background-image: linear-gradient(to right, #005865, #00808c); }.solid-button.grad.grad-dark::after {  background-color: #d52e03;  background-image: linear-gradient(to right, #00808c, #005865); }.test-button {  display: inline-block;  position: relative; }  .test-button a {    padding: 0.65em 2.5em;    font-size: 18px;    color: #d24f08;    transition: all 300ms ease-out;    display: inline-block;    text-align: center;    white-space: nowrap;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    position: relative;    z-index: 3;    border: 2px solid #d24f08; }  .test-button:after {    content: "";    position: absolute;    top: 0;    width: 0;    height: calc(100%);    background-color: #d24f08;    display: block;    transition: width 500ms ease-out; }  .test-button:hover a {    color: #FFFFFF;    border: 2px solid #d24f08; }  .test-button:hover:after {    width: 100%; }  .test-button.white a {    color: #FFFFFF;    border-color: #FFFFFF; }  .test-button.white:after {    background-color: #FFFFFF; }  .test-button.white:hover a {    color: #d24f08; }input {  line-height: normal; }input, textarea, keygen, select, button {  text-rendering: auto;  color: initial;  letter-spacing: normal;  word-spacing: normal;  text-transform: none;  text-indent: 0px;  text-shadow: none;  display: inline-block;  text-align: start;  margin: 0em 0em 0em 0em;  font: 13.3333px Arial; }[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {  display: block;  box-sizing: border-box;  width: 100%;  padding: 1rem;  border: 1px solid #cacaca;  margin: 0 0 1rem;  font-family: inherit;  font-size: 1rem;  color: #0a0a0a;  background-color: #fefefe;  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);  border-radius: 0;  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;  -webkit-appearance: none;  -moz-appearance: none; }  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {    outline: none; }  [type='text']:focus, [type='text']:hover, [type='password']:focus, [type='password']:hover, [type='date']:focus, [type='date']:hover, [type='datetime']:focus, [type='datetime']:hover, [type='datetime-local']:focus, [type='datetime-local']:hover, [type='month']:focus, [type='month']:hover, [type='week']:focus, [type='week']:hover, [type='email']:focus, [type='email']:hover, [type='number']:focus, [type='number']:hover, [type='search']:focus, [type='search']:hover, [type='tel']:focus, [type='tel']:hover, [type='time']:focus, [type='time']:hover, [type='url']:focus, [type='url']:hover, [type='color']:focus, [type='color']:hover, textarea:focus, textarea:hover {    border-color: #E97503; }textarea {  border-radius: 0;  max-width: 100%;  height: auto;  min-height: 8em;  max-height: 8em;  border-radius: 0;  overflow: auto; }label {  display: block;  margin: 0;  font-size: 0.875rem;  font-weight: normal;  line-height: 1.8;  color: #0a0a0a; }input[type="submit"] {  padding: 0.65em 4em;  font-size: 18px;  color: #FFFFFF;  border: none;  background-color: #d24f08;  transition: all 300ms ease-out;  display: inline-block;  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);  text-align: center;  min-width: 150px;  border-radius: 0;  white-space: nowrap;  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 500;  cursor: pointer;  -webkit-appearance: none;  -moz-appearance: none; }  input[type="submit"]:hover {    background-color: #d52e03;    color: #FFFFFF;    text-decoration: none; }input[type="file"] {  width: 100%;  padding: 1rem;  border: 1px solid #cacaca;  margin-bottom: 2em;  border-radius: 0; }.inputset {  position: relative; }.form_error_wrap {  display: none; }.form_error_specific {  color: red;  position: absolute;  top: 3px;  right: 2px; }.error, #pnlStockError > p, .errorStockError {  background-color: #fcbca6;  padding: 1em;  border: 1px solid firebrick;  font-size: 0.875rem;  color: firebrick;  margin-bottom: 0.5em; }  @media (min-width: 40em) {    .error, #pnlStockError > p, .errorStockError {      padding: 2rem 3rem; } }.errorTitle {  font-weight: 700;  margin-bottom: 5px; }.errorItem {  padding: 2px 0; }.alert, .existingCustomerAlert p, .noProductsListed, .no-search-results {  padding: 1em;  color: #d68f15;  background-color: #fbf5db;  border: 1px solid #d68f15;  font-size: 0.875rem;  font-weight: 700; }  @media (min-width: 40em) {    .alert, .existingCustomerAlert p, .noProductsListed, .no-search-results {      padding: 2rem 3rem; } }.success {  padding: 1em;  color: green;  background-color: MintCream;  border: 1px solid green;  font-size: 0.875rem;  font-weight: 700;  margin-bottom: 1em; }  @media (min-width: 40em) {    .success {      padding: 2rem 3rem; } }.hero {  width: 100%;  min-height: 100vh;  display: -ms-flexbox;  display: flex;  -ms-flex-align: center;      align-items: center;  position: relative;  padding: 2% 5.5%;  background-repeat: no-repeat;  background-size: cover;  background-position: right center;  background-position: 63% center; }  @media (min-width: 96.875em) {    .hero {      padding: 2% 7.5%; } }  .previewFrame .hero {    min-height: 100%; }  .hero__content {    padding: 10em 3.75em 8em 0em;    color: #fff;    position: relative;    font-size: 11px; }    @media (min-width: 21.25em) {      .hero__content {        font-size: 12px; } }    @media (min-width: 26.25em) {      .hero__content {        font-size: inherit; } }    @media (min-width: 37.5em) {      .hero__content {        max-width: 700px;        padding: 14em 5em 8em 1em; } }    @media (min-width: 64.375em) {      .hero__content {        padding: 14em 0 10em 1em; } }    @media (min-width: 86.875em) {      .hero__content {        padding: 14em 0 10em 5em; } }    @media (min-width: 64.375em) {      .hero__content:before {        content: attr(data-herotext);        font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;        font-weight: 400;        color: rgba(255, 255, 255, 0.15);        z-index: 1;        position: absolute;        left: 52%;        top: 20%;        max-width: 110%;        -ms-transform: translate(-50%, 0%);        transform: translate(-50%, 0%);        font-size: 10.03061em;        line-height: 1; } }    .previewFrame .hero__content:before {      z-index: -1; }    .hero__content .h2 {      opacity: 0;      -ms-transform: translateY(-20px);          transform: translateY(-20px); }      .pageloaded .hero__content .h2 {        animation: fade-in-down 400ms ease-out 10ms forwards; }    .hero__content .h2, .hero__content .button {      z-index: 2; }    .hero__content p {      z-index: 2; }    .hero__content .button {      margin-top: 2em;      position: relative; }      .hero__content .button a {        opacity: 0;        transition: opacity 10ms linear 610ms; }      .hero__content .button:after {        content: "";        position: absolute;        top: 0;        width: 0;        height: calc(100% + 2px);        background-color: #d24f08;        display: block; }      .pageloaded .hero__content .button a {        opacity: 1; }      .pageloaded .hero__content .button:after {        animation: element-overlay 500ms ease-out forwards 400ms; }  .hero-social {    position: absolute;    left: calc(7.5% + 1em);    bottom: 3em;    display: none; }    @media (min-width: 37.5em) {      .hero-social {        left: auto;        right: 5%;        width: 45px;        bottom: auto; } }    .hero-social a {      display: block; }    .hero-social__icon {      display: inline-block;      margin-right: 5px;      width: 3em;      height: 3em; }    .hero-social svg {      width: 3em;      height: 3em;      fill: #fff; }      .hero-social svg:hover {        fill: #d24f08; }      @media (min-width: 37.5em) {        .hero-social svg {          width: 3em;          height: 3em; } }.latest-novel__box, .next-novel__box {  border: 1px solid #d6d5db;  padding: 2em;  width: 100%; }  @media (min-width: 26.25em) {    .latest-novel__box, .next-novel__box {      padding: 3em; } }  @media (min-width: 75em) {    .latest-novel__box, .next-novel__box {      padding: 3em 6.25em; } }@media (min-width: 42.5em) {  .latest-novel__image, .latest-novel__content, .next-novel__image, .next-novel__content {    display: inline-block;    vertical-align: top; } }@media (min-width: 78.75em) {  .latest-novel__image, .latest-novel__content, .next-novel__image, .next-novel__content {    vertical-align: middle; } }.latest-novel__image, .next-novel__image {  opacity: 0;  -ms-transform: translateY(-20px);      transform: translateY(-20px);  max-width: 350px;  margin-bottom: 2em; }  @media (min-width: 42.5em) {    .latest-novel__image, .next-novel__image {      width: 30%;      margin-bottom: 0; } }  .latest-novel__image img, .next-novel__image img {    opacity: 0;    transition: opacity 10ms linear 850ms; }  .latest-novel__image:after, .next-novel__image:after {    content: "";    position: absolute;    top: 0;    width: 0;    height: calc(100% + 2px);    background-color: #d24f08;    display: block; }  .inviewport .latest-novel__image, .previewFrame .latest-novel__image, .inviewport .next-novel__image, .previewFrame .next-novel__image {    animation: fade-in-down 400ms ease-out forwards; }    .inviewport .latest-novel__image img, .previewFrame .latest-novel__image img, .inviewport .next-novel__image img, .previewFrame .next-novel__image img {      opacity: 1; }    .inviewport .latest-novel__image:after, .previewFrame .latest-novel__image:after, .inviewport .next-novel__image:after, .previewFrame .next-novel__image:after {      animation: element-overlay 850ms ease-out forwards 400ms; }.latest-novel__content, .next-novel__content {  opacity: 0;  -ms-transform: translateY(20px);      transform: translateY(20px); }  @media (min-width: 42.5em) {    .latest-novel__content, .next-novel__content {      width: calc(70% - 5px);      padding-left: 3em; } }  @media (min-width: 75em) {    .latest-novel__content, .next-novel__content {      padding-left: 5.5em; } }  .inviewport .latest-novel__content, .previewFrame .latest-novel__content, .inviewport .next-novel__content, .previewFrame .next-novel__content {    animation: fade-in-up 400ms ease-out forwards 200ms; }.latest-novel__title h1, .next-novel__title h1 {  color: #d24f08;  margin-top: 0;  margin-bottom: 1rem; }  @media (min-width: 57.5em) {    .latest-novel__title h1, .next-novel__title h1 {      margin-bottom: 2.5rem; } }.latest-novel__info, .next-novel__info {  margin-bottom: 1.5rem; }  @media (min-width: 57.5em) {    .latest-novel__info, .next-novel__info {      -moz-columns: 2;           columns: 2;      -moz-column-gap: 2.5em;           column-gap: 2.5em; } }  @media (min-width: 57.5em) {    .latest-novel__info, .next-novel__info {      margin-bottom: 2.5rem; } }.next-novel {  background-color: #f4f4f4; }  @media (min-width: 42.5em) {    .flexbox .next-novel .next-novel__content {      width: calc(72% - 5px);      padding-right: 3em;      padding-left: 0; } }  @media (min-width: 75em) {    .flexbox .next-novel .next-novel__content {      padding-right: 5.5em;      padding-left: 0; } }  .next-novel__box {    display: -ms-flexbox;    display: flex;    -ms-flex-direction: column;        flex-direction: column;    -ms-flex-align: start;        align-items: flex-start;    border-color: #ccc;    background-color: #fefefe; }    @media (min-width: 42.5em) {      .next-novel__box {        -ms-flex-direction: row-reverse;            flex-direction: row-reverse; } }  .next-novel__image {    vertical-align: top;    line-height: 0; }  .next-novel__info {    -moz-columns: 1;         columns: 1;    margin-bottom: 2rem; }  .next-novel__title {    margin-bottom: 0; }    .next-novel__title h1 {      margin-bottom: 1rem;      line-height: 1.2; }      @media (min-width: 57.5em) {        .next-novel__title h1 {          font-size: 3.35923em; } }  .next-novel__publication {    margin-bottom: 1.75rem; }  .next-novel__strapline {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-size: 1.35em;    font-weight: 500;    margin-bottom: 1rem; }  .next-novel__price {    margin-bottom: 1rem; }  .next-novel__price .eyebrow, .next-novel__endorsement .eyebrow, .next-novel__publication .eyebrow {    color: #1d1d1c;    font-weight: 500;    font-size: 1.25em; }.novel-carousel {  overflow: hidden; }  .novel-carousel .container {    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    padding: 0 1.5em; }    @media (min-width: 30em) {      .novel-carousel .container {        padding: 0 3em; } }  .novel-carousel.inviewport .container, .previewFrame .novel-carousel .container {    animation: fade-in-up 400ms ease-out forwards 200ms; }  .novel-carousel__inner .slick-track li {    position: relative; }    .novel-carousel__inner .slick-track li:after {      content: "";      display: block;      padding-bottom: 156.36363636363635%; }  .novel-carousel__inner .novel-wrap {    padding: 0 20px;    height: 100%;    display: block;    position: absolute;    left: 5px;    right: 5px;    transition: transform 500ms;    background-size: cover;    background-position: center;    background-repeat: no-repeat; }    @media (min-width: 43.75em) {      .novel-carousel__inner .novel-wrap {        left: 10px;        right: 10px; } }  .novel-carousel .novel-image {    width: 100%; }    .novel-carousel .novel-image img {      display: none; }  .novel-carousel .novel-info {    position: absolute;    height: 100%;    width: 100%;    top: 0;    left: 0;    right: 0;    bottom: 0;    background-color: #97959c;    opacity: 0;    visibility: hidden;    transition: opacity 200ms ease-out; }  .novel-carousel .novel-content {    margin: 0.75em;    border: 1px solid #fff;    height: calc(100% - 1.5em);    padding: 1em;    text-align: center;    font-weight: 300;    color: #fff;    display: -ms-flexbox;    display: flex;    -ms-flex-align: center;        align-items: center;    font-size: 13px; }    @media (min-width: 30em) {      .novel-carousel .novel-content {        font-size: 15px; } }    .novel-carousel .novel-content__inner {      text-align: center;      width: 100%; }    .novel-carousel .novel-content .h6 {      font-weight: 600;      opacity: 0;      -ms-transform: translateY(-20px);          transform: translateY(-20px); }    .novel-carousel .novel-content p {      font-size: 14px;      opacity: 0;      transition: opacity 400ms ease-out 500ms;      display: none; }      @media (min-width: 48.75em) {        .novel-carousel .novel-content p {          display: block; } }    .novel-carousel .novel-content .novel-blurb {      margin-bottom: 12px; }    .novel-carousel .novel-content .button {      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px); }      .novel-carousel .novel-content .button a {        font-size: 14px;        padding: 0.35em 0.75em; }        @media (min-width: 30em) {          .novel-carousel .novel-content .button a {            font-size: 15px;            padding: 0.35em 1.25em; } }  .novel-carousel .slick-list {    overflow: visible; }  .novel-carousel .slick-slide {    opacity: 0.3;    outline: none; }    .novel-carousel .slick-slide.slick-active {      opacity: 1; }    .novel-carousel .slick-slide:hover .novel-info {      opacity: 1;      visibility: visible; }    .novel-carousel .slick-slide:hover .h6 {      animation: fade-in-down 300ms ease-out forwards 250ms; }    .novel-carousel .slick-slide:hover p {      opacity: 1; }    .novel-carousel .slick-slide:hover .button {      animation: fade-in-up 300ms ease-out forwards 300ms; }  .novel-carousel .slick-slider {    position: relative; }  .novel-carousel .slick-arrow {    position: absolute;    top: 100%;    -ms-transform: translateY(50%);        transform: translateY(50%);    height: 2em;    width: 2em;    opacity: 0.75;    cursor: pointer;    z-index: 5; }    @media (min-width: 30em) {      .novel-carousel .slick-arrow {        top: 50%;        -ms-transform: translateY(-50%);            transform: translateY(-50%); } }    .novel-carousel .slick-arrow:hover {      opacity: 1; }  .novel-carousel .slick-prev {    left: 0em; }    @media (min-width: 30em) {      .novel-carousel .slick-prev {        left: -2.75em; } }  .novel-carousel .slick-next {    right: 0em; }    @media (min-width: 30em) {      .novel-carousel .slick-next {        right: -2.75em; } }  .novel-carousel .slick-dots {    margin-top: 1em;    padding: 0 2em;    text-align: center; }    .novel-carousel .slick-dots li {      position: relative;      display: inline-block;      width: 12px;      height: 12px;      margin: 0 5px;      padding: 0;      cursor: pointer; }      .novel-carousel .slick-dots li button {        font-size: 0;        line-height: 0;        display: block;        width: 12px;        height: 12px;        padding: 5px;        cursor: pointer;        color: transparent;        border: 0;        outline: none;        background: transparent; }        .novel-carousel .slick-dots li button:before {          background-color: #97959c;          border-radius: 50%;          font-size: 6px;          line-height: 20px;          position: absolute;          top: 0;          left: 0;          width: 12px;          height: 12px;          content: '';          text-align: center;          color: black;          -webkit-font-smoothing: antialiased; }      .novel-carousel .slick-dots li.slick-active button:before {        background-color: #d24f08; }  .novel-carousel .novel-link {    width: 100%;    text-align: center;    margin-top: 2em; }/*News*/.news {  background-color: #f2eeec; }.news-wrap .listNewsItem {  opacity: 0;  -ms-transform: translateY(20px);      transform: translateY(20px);  width: 100%;  padding: 2.5em;  padding: 5%;  display: inline-block;  vertical-align: top;  transition: all 300ms ease-out;  position: relative;  z-index: 1; }  .news-wrap .listNewsItem:not(:last-child) {    border-bottom: 1px solid #ccc; }  @media (min-width: 30em) {    .news-wrap .listNewsItem {      width: calc(50% - 5px);      padding: 3% 2%; }      .news-wrap .listNewsItem:not(:last-child) {        border-bottom: 0; } }  @media (min-width: 53.125em) {    .news-wrap .listNewsItem {      width: calc(33% - 5px);      padding: 2%; } }  .news-wrap .listNewsItem:before {    position: absolute;    display: block;    content: "";    top: 0;    left: 0;    width: 0;    bottom: 0;    background-color: transparent;    transition: all 350ms ease-out; }  .inviewport .news-wrap .listNewsItem, .previewFrame .news-wrap .listNewsItem {    animation: fade-in-up 300ms ease-out forwards; }  .news-wrap .listNewsItem:hover .newsTitle a {    color: #d24f08; }    .news-wrap .listNewsItem:hover .newsTitle a:hover {      color: #E97503; }  .news-wrap .listNewsItem:hover:before {    width: 100%;    background-color: #fff;    box-shadow: 0 3px 8px 0 rgba(29, 29, 28, 0.06), 0 4px 20px 0 rgba(29, 29, 28, 0.04); }.news-wrap .newsItem {  position: relative;  z-index: 5; }.news-wrap .newsImageTop, .news-wrap .newsInfoWrap, .news-wrap .newsImageBottom {  display: none; }.news-wrap .newsTitle {  font-size: 1.2em;  margin-top: 0; }  @media (min-width: 60.625em) {    .news-wrap .newsTitle {      font-size: 1.44em; } }  .news-wrap .newsTitle a {    color: #1d1d1c;    font-weight: 600;    line-height: 1.2; }.news-wrap .newsSummaryLink a {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600; }.news-wrap .news-link {  width: 100%;  text-align: center;  margin-top: 2em; }.buckets {  padding-bottom: 1em; }  @media (min-width: 48.75em) {    .buckets {      padding-bottom: 3em; } }  .buckets .container {    max-width: 1300px;    display: -ms-flexbox;    display: flex;    -ms-flex-wrap: wrap;        flex-wrap: wrap; }  .buckets-col1 {    margin-bottom: 2%;    width: 100%; }  .buckets-col2 {    display: -ms-flexbox;    display: flex;    -ms-flex-direction: column;        flex-direction: column;    -ms-flex-pack: justify;        justify-content: space-between; }    @media (min-width: 42.5em) {      .buckets-col2 {        -ms-flex-direction: row;            flex-direction: row; } }    @media (min-width: 62.5em) {      .buckets-col2 {        -ms-flex-direction: column;            flex-direction: column; } }  @media (min-width: 62.5em) {    .buckets-col1 {      width: 66.094%;      margin-bottom: 0;      float: left;      margin-right: 1.633%; }    .buckets-col2 {      width: 32.273%;      float: left; } }  .buckets.inviewport .h-and-m, .previewFrame .buckets .h-and-m {    animation: fade-in-left 500ms ease-out forwards; }  .buckets.inviewport .events-bucket, .previewFrame .buckets .events-bucket {    animation: fade-in-right 500ms ease-out forwards 100ms; }  .buckets.inviewport .guest-bucket, .previewFrame .buckets .guest-bucket {    animation: fade-in-right 500ms ease-out forwards 200ms; }  .buckets .h-and-m {    opacity: 0;    -ms-transform: translateX(-20px);        transform: translateX(-20px);    width: 100%;    position: relative;    padding: 1.5em;    background-size: cover; }    @media (min-width: 26.25em) {      .buckets .h-and-m {        padding: 2.5em; } }    @media (min-width: 42.5em) {      .buckets .h-and-m {        height: 100%; } }    .buckets .h-and-m > p {      margin: 0; }    .buckets .h-and-m__box {      background-color: #fff;      background-color: rgba(255, 255, 255, 0.85);      padding: 1.5em;      display: -ms-flexbox;      display: flex;      -ms-flex-align: center;          align-items: center; }      @media (min-width: 20em) {        .buckets .h-and-m__box {          padding: 2em; } }      @media (min-width: 32.5em) {        .buckets .h-and-m__box {          padding: 4.5em; } }      @media (min-width: 42.5em) {        .buckets .h-and-m__box {          padding: 4.5em; } }      @media (min-width: 62.5em) {        .buckets .h-and-m__box {          position: absolute;          top: 16.5%;          bottom: 16.5%;          left: 16.5%;          right: 16.5%;          padding: 2.5em 3em; } }      @media (min-width: 75em) {        .buckets .h-and-m__box {          padding: 4.5em; } }      .buckets .h-and-m__box h2 {        line-height: 1.2;        margin-bottom: 0.5em; }      .buckets .h-and-m__box p {        line-height: 1.5; }        @media (min-width: 64.375em) {          .buckets .h-and-m__box p {            line-height: 1.7; } }      .buckets .h-and-m__box .title-underline h2:after {        margin: 1rem 0 0; }    .buckets .h-and-m .button a {      font-size: 15px;      padding: 0.45em 2.5em; }    .previewFrame .buckets .h-and-m img {      display: block !important; }  .buckets .events-bucket, .buckets .guest-bucket {    opacity: 0;    -ms-transform: translateX(20px);        transform: translateX(20px);    width: 100%;    position: relative;    background-color: #97959c;    font-size: 13px;    -ms-flex: 1;        flex: 1; }    @media (min-width: 42.5em) {      .buckets .events-bucket, .buckets .guest-bucket {        width: 49%;        float: left; } }    @media (min-width: 62.5em) {      .buckets .events-bucket, .buckets .guest-bucket {        width: 100%; } }    @media (min-width: 86.875em) {      .buckets .events-bucket, .buckets .guest-bucket {        font-size: inherit; } }    @media (min-width: 42.5em) {      .no-flexbox .buckets .events-bucket:after, .no-flexbox .buckets .guest-bucket:after {        content: "";        display: block;        padding-bottom: 100%; } }    @media (min-width: 42.5em) {      .buckets .events-bucket__inner, .buckets .guest-bucket__inner {        display: -ms-flexbox;        display: flex;        -ms-flex-align: center;            align-items: center; } }  .buckets .events-bucket {    background-size: cover;    margin-right: 2%; }    @media (min-width: 42.5em) {      .buckets .events-bucket {        margin-bottom: 0; } }    @media (min-width: 62.5em) {      .buckets .events-bucket {        /*margin-bottom: 4.75%; */} }    .buckets .events-bucket__inner {      padding: 2em 1.5em; }      @media (min-width: 22.5em) {        .buckets .events-bucket__inner {          padding: 2em; } }      @media (min-width: 26.25em) {        .buckets .events-bucket__inner {          padding: 2.5em; } }    .buckets .events-bucket__Wrap {      width: 100%; }    .buckets .events-bucket .title-underline h3 {      color: #fff;      font-weight: 400; }    .buckets .events-bucket .title-underline h3:after {      margin: 1rem 0 0;      background-color: #fff; }  .buckets .events-item {    color: #fff;    display: -ms-flexbox;    display: flex;    -ms-flex-pack: justify;        justify-content: space-between; }    .buckets .events-item:first-child {      border-bottom: 1px solid rgba(255, 255, 255, 0.3);      padding-bottom: 1em;      margin-bottom: 1em; }    .buckets .events-item__thumb {      width: 30%;      background-size: contain;      background-repeat: no-repeat; }      .buckets .events-item__thumb:after {        content: "";        display: block;        padding-bottom: 100%; }    .buckets .events-item__info {      width: calc(70% - 10px); }      .buckets .events-item__info p {        word-break: break-all;        font-size: 0.875em; }    .buckets .events-item__title > * {      font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;      line-height: 1.5;      font-size: 0.9375em; }    .buckets .events-item__title a {      color: rgba(255, 255, 255, 0.75);      text-decoration: underline; }      .buckets .events-item__title a:hover {        color: #fff; }    .buckets .events-item__date {      font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;      font-size: 14px;      font-weight: 400;      padding-top: 0.65em; }  .buckets .guest-bucket {    position: relative; }    .buckets .guest-bucket__inner {      padding: 2.5em; }      @media (min-width: 53.125em) {        .buckets .guest-bucket__inner {          padding-bottom: 2.5em; } }      @media (min-width: 62.5em) {        .buckets .guest-bucket__inner {          -ms-flex-align: start;              align-items: flex-start; } }      .buckets .guest-bucket__inner p {        color: #fff;        font-size: 13px; }    .buckets .guest-bucket__wrap {      display: -ms-flexbox;      display: flex;      -ms-flex-direction: column;          flex-direction: column; }    .buckets .guest-bucket .title-underline h3 {      color: #fff;      font-weight: 400;      margin-bottom: 1.2em; }    .buckets .guest-bucket .title-underline h3:after {      margin: 1rem 0 0;      background-color: #fff; }    .buckets .guest-bucket .button a {      font-size: 15px;      padding: 0.45em 2.5em; }    .buckets .guest-bucket .guest-spot__item {      display: -ms-flexbox;      display: flex;      -ms-flex-pack: justify;          justify-content: space-between;      width: 100%;      color: #fff;      border: none;      padding: 0 0 1.5em 0;      margin-bottom: 1.5em;      border-bottom: 1px solid rgba(255, 255, 255, 0.4); }    .buckets .guest-bucket .guest-spot__thumb {      width: 30%;      background-size: contain;      background-repeat: no-repeat; }      .buckets .guest-bucket .guest-spot__thumb:after {        content: "";        display: block;        padding-bottom: 100%; }    .buckets .guest-bucket .guest-spot__info {      width: calc(70% - 10px); }    .buckets .guest-bucket .guest-spot__title {      color: #fff;      font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;      font-size: 1.125em;      font-weight: 400;      border: none;      padding-bottom: 0;      margin-bottom: 1em; }      .buckets .guest-bucket .guest-spot__title a {        color: #fff; }        .buckets .guest-bucket .guest-spot__title a:hover {          text-decoration: underline; }    .buckets .guest-bucket .guest-spot span {      display: inline-block;      margin-right: 6px;      color: #f1f1f1;      font-size: 15px; }      .buckets .guest-bucket .guest-spot span.author-name {        font-weight: 700;        color: #fff; }    .buckets .guest-bucket .guest-spot__link a {      color: #FFFFFF; }    .buckets .guest-bucket .guest-spot__articles a {      font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;      font-weight: 400;      display: inline-block;      border-bottom: 2px solid #FFFFFF;      padding-right: 0;      transition: padding 300ms ease-out;      color: #fff; }      .buckets .guest-bucket .guest-spot__articles a:hover {        padding-right: 1em; }.social {  padding-top: 0; }  .social .container {    max-width: 1300px; }  .social.inviewport .twitter-feed, .social.inviewport .video-box, .social.inviewport .social-icons, .previewFrame .social .twitter-feed, .previewFrame .social .video-box, .previewFrame .social .social-icons {    animation: fade-in-up 400ms ease-out forwards; }  .social .twitter-feed, .social .video-box, .social .social-icons {    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px); }  .social .twitter-feed {    float: left;    width: 100%;    margin-bottom: 2%;    position: relative;    background-color: #f2eeec; }    @media (min-width: 48.75em) {      .social .twitter-feed {        width: 49%;        margin-bottom: 0;        margin-right: 2%;        padding-bottom: 50%;        height: 0; } }    @media (min-width: 57.5em) {      .social .twitter-feed {        padding-bottom: 42%; } }    @media (min-width: 70.625em) {      .social .twitter-feed {        margin-right: 1.633%;        width: 32.244%;        padding-bottom: 32.244%; } }    .social .twitter-feed p, .social .twitter-feed a {      word-wrap: break-word; }    .social .twitter-feed li {      outline: none; }  .social .video-box {    float: left;    position: relative;    background-color: #f2eeec;    width: 100%;    height: 0;    padding-bottom: 60%; }    @media (min-width: 48.75em) {      .social .video-box {        width: 49%;        padding-bottom: 50%; } }    @media (min-width: 57.5em) {      .social .video-box {        padding-bottom: 42%; } }    @media (min-width: 70.625em) {      .social .video-box {        margin-right: 1.633%;        width: 32.244%;        padding-bottom: 32.244%; } }  .social .social-icons {    float: left;    position: relative;    width: 100%;    margin: 5% auto 0; }    @media (min-width: 42.5em) {      .social .social-icons {        margin: 6% auto 0; } }    @media (min-width: 70.625em) {      .social .social-icons {        margin: 0;        height: 0;        width: 32.244%;        padding-bottom: 32.244%; } }    .social .social-icons__inner {      max-width: 600px;      margin: auto; }  .social .video-box {    position: relative; }    .social .video-box .videoWrapper {      position: absolute;      top: 50%;      -ms-transform: translateY(-50%);          transform: translateY(-50%);      padding-bottom: 45%;      padding-top: 25px;      height: 0;      width: 90%;      left: 5%; }    .social .video-box iframe {      position: absolute;      top: 0;      left: 0;      width: 100%;      height: 100%;      box-shadow: 0 2px 12px 0 rgba(29, 29, 28, 0.25); }  .social .social-icons__item {    width: 24%;    line-height: 0;    float: left;    position: relative;    margin: 0 0.5%; }    @media (min-width: 70.625em) {      .social .social-icons__item {        margin: 0;        width: 49%; }        .social .social-icons__item:nth-child(-n + 2) {          margin-bottom: 2%; }        .social .social-icons__item:nth-child(odd) {          margin-right: 2%; } }    .social .social-icons__item a {      display: block;      border: 2px solid #97959c;      width: 100%;      height: 100%;      -ms-flex-align: center;          align-items: center;      display: -ms-flexbox;      display: flex;      -ms-flex-pack: center;          justify-content: center; }      @media (min-width: 26.25em) {        .social .social-icons__item a {          border-width: 3px; } }    .social .social-icons__item svg {      fill: #97959c;      margin: 1em;      height: 100%;      width: 100%; }      @media (min-width: 20em) {        .social .social-icons__item svg {          margin: 1.5em; } }      @media (min-width: 26.25em) {        .social .social-icons__item svg {          margin: 2em; } }      @media (min-width: 37.5em) {        .social .social-icons__item svg {          margin: 3em; } }      @media (min-width: 70.625em) {        .social .social-icons__item svg {          margin: 4em; } }    .social .social-icons__item:hover a {      border-color: #d24f08; }    .social .social-icons__item:hover svg {      fill: #d24f08; }  .social .twitter-feed {    overflow: hidden; }  .social .twitter-feed__inner {    padding: 3em 3em 6em; }    @media (min-width: 48.75em) {      .social .twitter-feed__inner {        padding: 3em;        position: absolute;        top: 0;        right: 0;        left: 0;        bottom: 0; } }    .social .twitter-feed__inner .slick-slider {      width: 100%;      position: static; }    .social .twitter-feed__inner .slick-dots {      margin-top: 1em;      position: absolute;      left: 3em;      bottom: 3em; }      .social .twitter-feed__inner .slick-dots li {        position: relative;        display: inline-block;        width: 12px;        height: 12px;        margin: 0 5px;        padding: 0;        cursor: pointer; }        .social .twitter-feed__inner .slick-dots li button {          font-size: 0;          line-height: 0;          display: block;          width: 12px;          height: 12px;          padding: 5px;          cursor: pointer;          color: transparent;          border: 0;          outline: none;          background: transparent; }          .social .twitter-feed__inner .slick-dots li button:before {            background-color: #97959c;            border-radius: 50%;            font-size: 6px;            line-height: 20px;            position: absolute;            top: 0;            left: 0;            width: 12px;            height: 12px;            content: '';            text-align: center;            color: black;            -webkit-font-smoothing: antialiased; }        .social .twitter-feed__inner .slick-dots li.slick-active button:before {          background-color: #d24f08; }  .social p.tweet {    padding: 2.5em 0 2em; }    @media (min-width: 51.875em) {      .social p.tweet {        padding: 2.5em 0 2em; } }    @media (min-width: 78.75em) {      .social p.tweet {        font-size: 1.125em; } }  .social .twitter-bird {    position: absolute;    left: 3em;    top: 2.5em; }    .social .twitter-bird svg {      fill: #1da1f2;      height: 1.5em;      width: 1.5em; }  .social .timePosted {    display: none; }    .social .timePosted a {      font-weight: 600;      color: #1d1d1c; }.newsletter {  color: #fff;  background-image: url("/amandaprowse-com/_img/images/newsletter-bg.jpg");  background-size: cover;  background-repeat: no-repeat; }  .newsletter.inviewport .newsletter-form__wrap, .previewFrame .newsletter .newsletter-form__wrap {    animation: fade-in-up 300ms ease-out forwards 150ms; }  .newsletter.inviewport .main-title, .previewFrame .newsletter .main-title {    animation: fade-in 300ms ease-out forwards; }  .newsletter .main-title {    opacity: 0; }    .newsletter .main-title h2 {      margin-bottom: 0; }  .newsletter-form__wrap {    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    margin: auto;    margin-top: 0.75em; }    @media (min-width: 53.125em) {      .newsletter-form__wrap {        width: 66.66667%; } }    .newsletter-form__wrap label {      display: none; }    .newsletter-form__wrap .inputset {      width: 100%;      margin: 1%;      display: inline-block; }      @media (min-width: 37.5em) {        .newsletter-form__wrap .inputset {          width: calc(48% - 5px); } }    .newsletter-form__wrap input {      margin-bottom: 0;      background-color: transparent;      box-shadow: none;      border: 2px solid #fff;      color: #fff; }      .newsletter-form__wrap input:focus, .newsletter-form__wrap input:hover {        border-color: #fc8f23; }      .newsletter-form__wrap input:focus {        background-color: white;        color: #1d1d1c; }        .newsletter-form__wrap input:focus::-webkit-input-placeholder {          /* Chrome/Opera/Safari */          color: rgba(29, 29, 28, 0.6); }        .newsletter-form__wrap input:focus::-moz-placeholder {          /* Firefox 19+ */          color: rgba(29, 29, 28, 0.6); }        .newsletter-form__wrap input:focus:-ms-input-placeholder {          /* IE 10+ */          color: rgba(29, 29, 28, 0.6); }        .newsletter-form__wrap input:focus:-moz-placeholder {          /* Firefox 18- */          color: rgba(29, 29, 28, 0.6); }      .newsletter-form__wrap input::-webkit-input-placeholder {        /* Chrome/Opera/Safari */        color: rgba(255, 255, 255, 0.75);        font-size: 14px;        font-weight: 400; }      .newsletter-form__wrap input::-moz-placeholder {        /* Firefox 19+ */        color: rgba(255, 255, 255, 0.75);        font-size: 14px;        font-weight: 400; }      .newsletter-form__wrap input:-ms-input-placeholder {        /* IE 10+ */        color: rgba(255, 255, 255, 0.75);        font-size: 14px;        font-weight: 400; }      .newsletter-form__wrap input:-moz-placeholder {        /* Firefox 18- */        color: rgba(255, 255, 255, 0.75);        font-size: 14px;        font-weight: 400; }    .newsletter-form__wrap .form_submit {      padding-top: 1em;      text-align: center; }    .newsletter-form__wrap .fbElementButton {      background-color: #FFFFFF;      color: #d24f08; }      .newsletter-form__wrap .fbElementButton:hover, .newsletter-form__wrap .fbElementButton:focus {        border-color: #FFFFFF;        background-color: #b94607;        color: #FFFFFF; }  .newsletter .form_error_specific {    color: #fff; }.hero.inner-hero {  min-height: 0; }  .hero.inner-hero.no-bg {    background-color: #f2eeec; }    .hero.inner-hero.no-bg .hero__content {      padding: 10em 1em 3em 0em; }      @media (min-width: 21.25em) {        .hero.inner-hero.no-bg .hero__content {          font-size: 13px; } }      @media (min-width: 26.25em) {        .hero.inner-hero.no-bg .hero__content {          font-size: inherit; } }      @media (min-width: 37.5em) {        .hero.inner-hero.no-bg .hero__content {          max-width: 650px;          padding: 15em 0em 3em 0em; } }      @media (min-width: 64.375em) {        .hero.inner-hero.no-bg .hero__content {          padding: 13em 0 4em 0em;          max-width: 700px; } }      @media (min-width: 86.875em) {        .hero.inner-hero.no-bg .hero__content {          padding: 15em 0 5em 0em; } }      .hero.inner-hero.no-bg .hero__content h1 {        color: #1d1d1c;        color: #d24f08; }    .hero.inner-hero.no-bg .eyebrow {      color: #97959c; }  .hero.inner-hero.short .hero__content {    padding: 10em 1em 3em 0em; }    @media (min-width: 21.25em) {      .hero.inner-hero.short .hero__content {        font-size: 13px; } }    @media (min-width: 26.25em) {      .hero.inner-hero.short .hero__content {        font-size: inherit; } }    @media (min-width: 37.5em) {      .hero.inner-hero.short .hero__content {        max-width: 650px;        padding: 10em 0em 3em 0em; } }    @media (min-width: 64.375em) {      .hero.inner-hero.short .hero__content {        padding: 13em 0 4em 0em;        max-width: 700px; } }    @media (min-width: 86.875em) {      .hero.inner-hero.short .hero__content {        padding: 14em 0 5em 0em; } }  #s2197222 .hero.inner-hero {    text-align: center; }    @media (min-width: 0em) and (max-width: 22.5em) {      #s2197222 .hero.inner-hero .hero__content {        padding-right: 0;        width: 100%; } }    @media (min-width: 22.5em) {      #s2197222 .hero.inner-hero {        text-align: left; } }  .hero.inner-hero h1 {    margin-top: 0.05em;    line-height: 1.1;    font-weight: 500;    margin-bottom: 0;    font-size: 2.79936em;    opacity: 0;    -ms-transform: translateY(-20px);        transform: translateY(-20px); }    @media (min-width: 30em) {      .hero.inner-hero h1 {        font-size: 3.35923em; } }    @media (min-width: 64.375em) {      .hero.inner-hero h1 {        font-size: 4.03108em; } }    .pageloaded .hero.inner-hero h1 {      animation: fade-in-down 400ms ease-out 100ms forwards; }  .hero.inner-hero .hero__content {    padding: 10em 1em 3em 0em; }    @media (min-width: 37.5em) {      .hero.inner-hero .hero__content {        max-width: 700px;        padding: 14em 5em 5em 1em; } }    @media (min-width: 64.375em) {      .hero.inner-hero .hero__content {        padding: 15em 0 5em 1em; } }    @media (min-width: 86.875em) {      .hero.inner-hero .hero__content {        padding: 16em 0 10em 5em; } }  .hero.inner-hero .eyebrow {    color: #fff; }.page-intro {  padding: 3em 0 2em; }  @media (min-width: 26.25em) {    .page-intro {      padding: 4em 0 3em; } }  @media (min-width: 53.125em) {    .page-intro {      padding: 7em 0 6em; } }  .page-intro__inner {    padding: 0 3%;    max-width: 1180px;    margin: auto; }    @media (min-width: 26.25em) {      .page-intro__inner {        padding: 0 7%; } }    @media (min-width: 57.5em) {      .page-intro__inner {        padding: 0 9%; } }    .page-intro__inner h2 {      margin-bottom: 0;      color: #d24f08;      line-height: 1.2; }    .page-intro__inner h6 {      margin-top: 0.5em;      line-height: 1.6; }.split-section {  padding: 1em 0; }  @media (min-width: 26.25em) {    .split-section {      padding: 1em 5%; } }  .split-section .container {    display: -ms-flexbox;    display: flex;    -ms-flex-direction: column;        flex-direction: column; }    @media (min-width: 53.125em) {      .split-section .container {        -ms-flex-direction: row;            flex-direction: row;        -ms-flex-align: center;            align-items: center; } }  @media (min-width: 53.125em) {    .split-section.reverse .container {      -ms-flex-direction: row-reverse;          flex-direction: row-reverse; } }  .split-section__content, .split-section__image {    display: inline-block;    vertical-align: middle;    margin: 1em 2%; }    @media (min-width: 53.125em) {      .split-section__content, .split-section__image {        width: calc(46% - 5px);        -ms-flex-preferred-size: 50%;            flex-basis: 50%; } }  .split-section__content {    -ms-flex-pack: center;        justify-content: center;    display: -ms-flexbox;    display: flex;    -ms-flex-align: center;        align-items: center;    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px); }    @media (min-width: 30em) {      .split-section__content {        padding: 0 2em; } }    @media (min-width: 53.125em) {      .split-section__content {        padding: 0 1em; } }    @media (min-width: 64.375em) {      .split-section__content {        padding: 0 2em; } }    .inviewport .split-section__content, .previewFrame .split-section__content {      animation: fade-in-up 600ms ease-out forwards; }    .split-section__content p {      line-height: 1.8;      max-width: 46em;      margin-left: auto;      margin-right: auto; }      @media (min-width: 53.125em) {        .split-section__content p {          max-width: 33em; } }      @media (min-width: 81.25em) {        .split-section__content p {          font-size: 1.125em; } }  .split-section__image {    text-align: center;    position: relative; }    .split-section__image img {      opacity: 0;      transition: opacity 10ms linear 810ms; }    .split-section__image:after {      content: "";      position: absolute;      top: 0;      width: 0;      height: calc(100% + 2px);      background-color: #d24f08;      display: block; }    .inviewport .split-section__image img, .previewFrame .split-section__image img {      opacity: 1; }    .inviewport .split-section__image:after, .previewFrame .split-section__image:after {      animation: element-overlay 850ms ease-out forwards 400ms; }.content-wrap .container {  max-width: 970px; }.inner-social {  padding: 3em 0; }  @media (min-width: 53.125em) {    .inner-social {      padding: 5em 0; } }  #s2197225 .inner-social {    background-color: #f2eeec; }  .inner-social__icons {    max-width: 600px;    margin: auto; }    .inner-social__icons:before, .inner-social__icons:after {      content: "";      display: table; }    .inner-social__icons:after {      clear: both; }    .inner-social__icons .social-icons__item {      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px); }      @media (min-width: 70.625em) {        .inner-social__icons .social-icons__item {          width: 24%;          margin: 0.5%; }          .inner-social__icons .social-icons__item:nth-child(-n + 2) {            margin-bottom: 0.5%; }          .inner-social__icons .social-icons__item:nth-child(odd) {            margin-right: 0.5%; } }      @media (min-width: 48em) {        .inner-social__icons .social-icons__item svg {          margin: 3em; } }    .inviewport .inner-social__icons .social-icons__item, .previewFrame .inner-social__icons .social-icons__item {      animation: fade-in-up 400ms ease-out forwards; }.praise {  background-color: #f2eeec;  margin-top: 3em; }  .praise .slick-track {    display: -ms-flexbox;    display: flex; }  .praise .slick-slide {    height: auto; }  .praise .slick-list {    overflow: visible;    overflow-x: hidden;    overflow-y: visible;    padding: 2em 0em; }  .praise-carousel {    padding: 3em 1.5em;    border: 1px solid #ccc;    position: relative; }    @media (min-width: 26.25em) {      .praise-carousel {        padding: 5em 3em; } }    .praise-carousel__item {      text-align: center;      padding: 4em 1em 2em;      margin: 0.25%;      background-color: rgba(255, 255, 255, 0.8);      position: relative;      box-shadow: 0 3px 5px 0 rgba(29, 29, 28, 0.03), 0 10px 30px 0 rgba(29, 29, 28, 0.05);      opacity: 0.5;      transition: all 300ms ease-out;      outline-color: #d24f08; }      @media (min-width: 48.75em) {        .praise-carousel__item {          padding: 4em 2em 2em; } }      .praise-carousel__item::after {        content: '“';        position: absolute;        top: 1em;        left: 50%;        -ms-transform: translateX(-50%);            transform: translateX(-50%);        font-family: Georgia, Times, "Times New Roman", serif;        font-weight: 600;        font-size: 3em;        line-height: 0;        color: #d24f08; }      .praise-carousel__item.slick-active {        opacity: 1; }    .praise-carousel__content {      font-style: italic;      color: #454545;      margin-bottom: 1em; }    .praise-carousel__name {      font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;      color: #1d1d1c;      font-weight: 600; }  .praise .slick-slider {    position: relative; }  .praise .slick-arrow {    position: absolute;    height: 2em;    width: 2em;    opacity: 0.9;    cursor: pointer;    z-index: 5;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    font-style: italic;    color: #d24f08;    top: 50%;    -ms-transform: translateY(-50%);        transform: translateY(-50%); }    .praise .slick-arrow:hover {      opacity: 1; }  .praise .slick-prev {    left: 0em;    -ms-transform: rotate(-90deg) translateX(100%);        transform: rotate(-90deg) translateX(100%); }    @media (min-width: 30em) {      .praise .slick-prev {        left: 1em; } }  .praise .slick-next {    right: 0em;    -ms-transform: rotate(90deg) translateX(-100%);        transform: rotate(90deg) translateX(-100%); }    @media (min-width: 30em) {      .praise .slick-next {        right: 1em; } }  .praise .slick-dots {    margin-top: 0.5em;    padding: 0 2em;    text-align: center; }    .praise .slick-dots li {      position: relative;      display: inline-block;      width: 12px;      height: 12px;      margin: 0 5px;      padding: 0;      cursor: pointer; }      .praise .slick-dots li button {        font-size: 0;        line-height: 0;        display: block;        width: 12px;        height: 12px;        padding: 5px;        cursor: pointer;        color: transparent;        border: 0;        outline: none;        background: transparent; }        .praise .slick-dots li button:before {          background-color: #97959c;          border-radius: 50%;          font-size: 6px;          line-height: 20px;          position: absolute;          top: 0;          left: 0;          width: 12px;          height: 12px;          content: '';          text-align: center;          color: black;          -webkit-font-smoothing: antialiased; }      .praise .slick-dots li.slick-active button:before {        background-color: #d24f08; }/*Emporium*/.emporium-intro {  padding: 2em 5%; }  .previewFrame .emporium-intro {    display: block !important; }  @media (min-width: 30em) {    .emporium-intro {      padding: 3em 5%; } }  .emporium-intro__inner {    padding-bottom: 1em;    border-bottom: 1px solid #97959c;    max-width: 1534px;    margin: auto; }  .emporium-intro h1 {    margin-bottom: 0;    line-height: 1.2;    font-weight: 400; }.book-emporium .container {  padding: 0em 5%;  max-width: none; }  @media (min-width: 30em) {    .book-emporium .container {      padding: 0em 5%; } }  @media (min-width: 96.875em) {    .book-emporium .container {      padding: 0 7.5%; } }.book-emporium__collection {  margin-bottom: 4em; }  .book-emporium__collection-title {    max-width: 970px;    border-top: 1px solid #ddd;    padding-top: 2em;    margin-bottom: 1em; }    .previewFrame .book-emporium__collection-title {      display: block !important; }    .book-emporium__collection-title h2 {      margin-bottom: 0.5em;      color: #d24f08;      font-size: 1.62em;      font-weight: 600; }      @media (min-width: 81.25em) {        .book-emporium__collection-title h2 {          font-size: 1.944em; } }    .book-emporium__collection-title p {      font-size: 1.125em; }  .book-emporium__collection-books li {    width: calc(50% - 4px);    display: inline-block;    vertical-align: top;    padding: 0.5em 0.5em 1em;    margin: 0.5em 0;    border: 1px solid transparent;    transition: border-color 200ms ease-out, background-color 250ms ease-out; }    @media (min-width: 30em) {      .book-emporium__collection-books li {        width: calc(33.33% - 4px); } }    @media (min-width: 42.5em) {      .book-emporium__collection-books li {        width: calc(25% - 4px); } }    @media (min-width: 64.375em) {      .book-emporium__collection-books li {        width: calc(20% - 4px); } }    .book-emporium__collection-books li:hover {      border: 1px solid #ccc;      background-color: #f6f7f6; }      .book-emporium__collection-books li:hover .h6 {        color: #d24f08; }  .book-emporium__collection-books .novel-cover {    width: 100%;    height: 0;    padding-bottom: 153.5%;    margin-bottom: 1em;    background-size: cover;    background-repeat: no-repeat; }  .book-emporium__collection-books .novel-info {    text-align: center; }    .book-emporium__collection-books .novel-info .h6 {      font-size: 0.9375em;      font-weight: 600;      color: #1d1d1c; }  .book-emporium__collection-books .button span {    padding: 0.25em 1.5em;    font-size: 14px; }.book-detail-page .book-emporium__collection {  margin-bottom: 0; }.novel-detail {  max-width: 1400px;  margin: auto;  padding: 2em 0; }  .novel-detail__cover, .novel-detail__info {    display: inline-block;    padding: 1em;    vertical-align: top; }  .novel-detail__cover {    text-align: center;    width: 100%; }    @media (min-width: 40em) {      .novel-detail__cover {        width: 39%;        width: calc(40% - 4px); } }    @media (min-width: 57.5em) {      .novel-detail__cover {        width: 49%;        width: calc(50% - 4px); } }    .novel-detail__cover-image {      display: inline-block;      max-width: 20em; }  .novel-detail__info {    width: 100%;    padding-top: 1.25em; }    @media (min-width: 40em) {      .novel-detail__info {        width: 59%;        width: calc(60% - 4px); } }    @media (min-width: 57.5em) {      .novel-detail__info {        width: 49%;        width: calc(50% - 4px); } }  @media (min-width: 75em) {    .novel-detail__title {      font-size: 19px; } }  .novel-detail__title h1 {    margin-bottom: 8px;    line-height: 1.1; }  .novel-detail__isbn {    color: #97959c;    margin-bottom: 1em;    padding-bottom: 1em;    border-bottom: 1px solid #f2eeec; }  .novel-detail__desc {    margin-bottom: 2em; }    @media (min-width: 75em) {      .novel-detail__desc {        padding-right: 2em; } }  .novel-detail__link {    margin-bottom: 2em; }    .novel-detail__link.button a {      padding: 0.65em 2.5em;      font-size: 18px; }  .novel-detail .back-link {    font-style: italic; }    .novel-detail .back-link:hover {      text-decoration: underline; }.contact-details {  padding-top: 0; }  .contact-details__item {    padding: 1.5em 1em; }    @media (min-width: 48em) {      .contact-details__item {        display: inline-block;        vertical-align: top;        padding: 2em 1em;        width: 50%;        width: calc(50% - 4px);        border-bottom: 1px solid #ccc; }        .contact-details__item:nth-child(n+3) {          border-bottom: none; }        .contact-details__item:nth-child(odd) {          border-right: 1px solid #ccc; }        .contact-details__item:nth-child(2), .contact-details__item:nth-child(4) {          -ms-transform: translateX(-4px);              transform: translateX(-4px); } }    @media (min-width: 86.875em) {      .contact-details__item {        padding: 1em;        width: 24%;        width: calc(25% - 4px);        border-bottom: none;        -ms-transform: none;            transform: none; }        .contact-details__item:not(:last-child) {          border-right: 1px solid #ccc; } }    @media (min-width: 103.75em) {      .contact-details__item {        padding: 1em 1em 1em 2em; } }  .contact-details .eyebrow {    margin-bottom: 1em;    font-size: 0.9375em; }  .contact-details h5 {    margin-bottom: 0; }  .contact-details a {    word-wrap: break-word; }/*Guest Spot*/.guest-spot {  display: -ms-flexbox;  display: flex;  -ms-flex-pack: justify;      justify-content: space-between;  -ms-flex-wrap: wrap;      flex-wrap: wrap; }  .guest-spot__page {    background-color: #f2eeec;    padding: 0; }    .guest-spot__page .listing {      padding: 3em 0;      background-color: #fff;      overflow: hidden; }      @media (min-width: 53.125em) {        .guest-spot__page .listing {          padding: 5em 0; } }  .guest-spot__title {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-size: 1.2em;    font-size: 1.62em;    margin-top: 0;    color: #1d1d1c;    font-weight: 600;    line-height: 1.3;    margin-bottom: 0.7em;    padding-bottom: 0.6em;    border-bottom: 1px solid #ddd; }    @media (min-width: 43.75em) {      .guest-spot__title {        font-size: 1.44em;        font-size: 1.62em; } }    @media (min-width: 75em) {      .guest-spot__title {        font-size: 1.44em;        font-size: 1.944em; } }  .guest-spot__name {    line-height: 1.2;    margin-bottom: 1em; }    .guest-spot__name span {      display: block; }    .guest-spot__name .small-title {      color: #97959c;      font-size: 0.78125em;      margin-bottom: 3px; }    .guest-spot__name .name {      font-size: 1.35em;      font-weight: 600;      font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }  .guest-spot__content {    margin-bottom: 1em;    color: #777; }  .guest-spot__link a {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    display: inline-block;    border-bottom: 2px solid #d24f08;    padding-right: 0;    transition: padding 300ms ease-out; }    .guest-spot__link a:hover {      padding-right: 1em; }  .guest-spot__item {    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    width: 100%;    padding: 2.5em;    padding: 8%;    display: inline-block;    vertical-align: top;    transition: all 300ms ease-out;    position: relative;    z-index: 1;    border: 1px solid #ccc;    margin-bottom: 20px;    transition: border-color 400ms ease-out; }    @media (min-width: 34.375em) {      .guest-spot__item {        width: calc(50% - 10px);        padding: 3% 3%;        margin-bottom: 20px; } }    @media (min-width: 53.125em) {      .guest-spot__item {        width: calc(33% - 12px);        padding: 3%;        margin-bottom: 24px; } }    @media (min-width: 78.125em) {      .guest-spot__item {        width: calc(33% - 16px);        padding: 3.5%;        margin-bottom: 32px; } }    .guest-spot__item:before {      position: absolute;      display: block;      content: "";      top: 0;      left: 0;      width: 0;      bottom: 0;      background-color: transparent;      transition: all 350ms ease-out; }    .inviewport .guest-spot__item, .previewFrame .guest-spot__item {      animation: fade-in-up 300ms ease-out forwards; }    .guest-spot__item:hover {      border-color: #d24f08; }  .guest-spot__inner {    width: 100%;    background-color: #fff;    padding: 5em 10% 5em 8%; }    @media (min-width: 37.5em) {      .guest-spot__inner {        width: 90%; } }    .guest-spot__inner-wrap {      max-width: 62em; }      @media (min-width: 30em) {        .guest-spot__inner-wrap {          padding-left: 2rem; } }      @media (min-width: 53.125em) {        .guest-spot__inner-wrap {          padding-left: 5rem; } }  .guest-spot__intro {    font-size: 1.35em;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    margin: 1em  0  3.5em;    font-weight: 500;    color: #646269;    position: relative; }    .guest-spot__intro p {      font-size: 16px;      line-height: 1.9; }    .guest-spot__intro:before {      content: "";      display: inline-block;      position: absolute;      left: -3rem;      top: 12px;      width: 2em;      height: 3px;      background-color: #d24f08; }      @media (min-width: 30em) {        .guest-spot__intro:before {          left: -4rem; } }      @media (min-width: 53.125em) {        .guest-spot__intro:before {          left: -5rem; } }  .guest-spot__heading {    font-size: 2.3328em;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    line-height: 1.2; }    @media (min-width: 40em) {      .guest-spot__heading {        font-size: 3.35923em;        margin-right: -2rem; } }  .guest-spot__author {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    line-height: 1.2;    margin-top: 1em;    margin-bottom: 2.5em;    padding-bottom: 2.5em;    border-bottom: 1px solid #ccc; }    .guest-spot__author span {      display: block; }    .guest-spot__author .small-text {      font-size: 0.9375em;      font-weight: 400;      color: #97959c;      margin-bottom: 5px; }    .guest-spot__author .author-name {      font-size: 1.35em;      font-weight: 600;      color: #1d1d1c; }  .guest-spot__reviewer {    margin-bottom: 2.5em;    padding-bottom: 2.5em;    border-bottom: 1px solid #ccc; }    .guest-spot__reviewer-thumb {      margin-bottom: 1.5em;      width: 100%;      display: block;      background-size: contain;      background-repeat: no-repeat; }      .guest-spot__reviewer-thumb:after {        content: "";        display: block;        padding-bottom: 100%; }    @media (min-width: 40em) {      .guest-spot__reviewer {        display: -ms-flexbox;        display: flex;        -ms-flex-pack: justify;            justify-content: space-between; }        .guest-spot__reviewer-thumb {          width: calc(35% - 1em); }        .guest-spot__reviewer-info {          width: 65%; } }  .guest-spot__article {    margin: 0 0 2em; }    .guest-spot__article h2 {      font-size: 1.944em;      color: #d24f08; }      @media (min-width: 40em) {        .guest-spot__article h2 {          font-size: 2.79936em; } }    .guest-spot__article h1, .guest-spot__article h2, .guest-spot__article h3, .guest-spot__article h4, .guest-spot__article h5, .guest-spot__article h6 {      margin-top: 1.5em; }    .guest-spot__article p {      line-height: 1.8;      color: #444; }      @media (min-width: 64.375em) {        .guest-spot__article p {          line-height: 2; } }      .guest-spot__article p:first-child {        font-size: 1.35em;        font-weight: 500;        color: #1d1d1c;        line-height: 1.5;        font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }  .guest-spot__button a {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    display: inline-block;    border-bottom: 2px solid #d24f08;    padding-right: 0;    transition: padding 300ms ease-out;    font-size: 1.125em; }    .guest-spot__button a:hover {      padding-right: 1em; }.reviews-page {  background-color: #f2eeec;  padding: 0; }  .reviews-page__inner {    width: 100%;    background-color: #fff;    padding: 5em 10% 5em 8%; }    @media (min-width: 37.5em) {      .reviews-page__inner {        width: 90%; } }    .reviews-page__inner-wrap {      max-width: 65em; }.review {  padding: 0 0.5em; }  @media (min-width: 22.5em) {    .review {      padding: 0 1.5em; } }  .review:not(:last-child) {    padding: 0 0.5em 1.75em;    margin-bottom: 1.75em;    border-bottom: 1px solid #ddd; }    @media (min-width: 22.5em) {      .review:not(:last-child) {        padding: 0 1.5em 1.75em; } }  .review__name h6 {    font-weight: 700;    margin-bottom: 0; }  .review__book {    font-size: 1.62em;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    color: #d24f08;    font-weight: 600; }.publishers__inner {  padding: 0 3.5%; }  @media (min-width: 37.5em) {    .publishers__inner {      display: -ms-flexbox;      display: flex; } }.publishers__intro {  padding-top: 1em;  -ms-flex-preferred-size: 50%;      flex-basis: 50%; }  @media (min-width: 57.5em) {    .publishers__intro {      -ms-flex-preferred-size: 45%;          flex-basis: 45%; } }.publishers__intro-inner {  max-width: 620px;  margin-bottom: 3em; }  .publishers__intro-inner .h4 {    font-weight: 500; }.publishers__wrap {  -ms-flex-preferred-size: 50%;      flex-basis: 50%; }  @media (min-width: 57.5em) {    .publishers__wrap {      -ms-flex-preferred-size: 55%;          flex-basis: 55%; } }.publishers__list {  display: -ms-flexbox;  display: flex;  -ms-flex-wrap: wrap;      flex-wrap: wrap;  -ms-flex-pack: justify;      justify-content: space-between; }.publishers__item {  -ms-flex-preferred-size: 100%;      flex-basis: 100%;  border-bottom: 1px solid #ddd;  background-color: white;  transition: background 200ms ease-out; }  @media (min-width: 57.5em) {    .publishers__item {      -ms-flex-preferred-size: 50%;          flex-basis: 50%; }      .publishers__item:nth-child(odd) {        background-color: transparent;        border-right: 1px solid #ddd; } }  .publishers__item:hover {    background-color: #E97503; }    .publishers__item:hover a {      color: #fff; }  .publishers__item a {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-size: 1.125em;    font-weight: 400;    padding: 0.55em 1em;    display: -ms-flexbox;    display: flex;    -ms-flex-align: center;        align-items: center;    color: #1d1d1c;    transition: color 200ms ease-out; }    @media (min-width: 57.5em) {      .publishers__item a {        padding: 1em; } }  .publishers__item img {    max-width: 70px;    max-height: 35px;    margin-right: 0.5em;    display: none; }    .publishers__item img[src$=".jpg"], .publishers__item img[src$=".png"] {      display: block; }.publishers__country {  line-height: 1; }.publisher-detail {  padding: 0 3.5% 3em;  width: 100%; }  .publisher-detail__logo {    width: 220px;    height: 120px;    display: inline-block; }    .publisher-detail__logo img {      max-height: 100%;      vertical-align: bottom; }  .publisher-detail__title {    margin-top: 1rem;    font-size: 2.79936em;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 500;    margin-bottom: 2rem;    line-height: 1.2; }  .publisher-detail__info {    max-width: 70em;    margin-bottom: 3em; }  .publisher-detail__books li {    display: none; }.amazon {  background-color: #f2eeec; }  .publisher-inner-page .amazon {    display: none; }  .amazon table {    width: 100%;    border-collapse: collapse; }  .amazon tr:nth-child(1) {    font-size: 1.125em; }    .amazon tr:nth-child(1) td {      font-weight: 700; }  .amazon td {    padding: 0.5em;    border: 1px solid #bbb; }/*Blog*/.hero.blog-hero {  background-color: #d52e03;  padding-top: 2em; }  @media (min-width: 51.875em) {    .hero.blog-hero {      padding-top: 3em; } }  @media (min-width: 67.1875em) {    .hero.blog-hero {      padding-top: 4em; } }  @media (min-width: 90.625em) {    .hero.blog-hero {      padding-top: 5em; } }.blog-page {  padding: 0; }  .blog-page #listNews {    display: -ms-flexbox;    display: flex;    -ms-flex-wrap: wrap;        flex-wrap: wrap;    -ms-flex-pack: start;        justify-content: flex-start;    width: 100%;    width: 100%;    margin: auto;    padding: 4em 2em 3em;    max-width: 1650px; }  .blog-page .newsItem {    padding-bottom: 2rem; }    @media (min-width: 30em) {      .blog-page .newsItem {        padding-right: 1em; } }    @media (min-width: 81.25em) {      .blog-page .newsItem {        padding-bottom: 2.5rem; } }  .blog-page .listNewsItem {    width: 97%;    -ms-flex-preferred-size: 100%;        flex-basis: 100%;    margin: 1.5%;    text-align: left;    -ms-transform: scale(1);        transform: scale(1);    transition: transform 250ms ease-out; }    .no-flexbox .blog-page .listNewsItem {      display: inline-block;      vertical-align: top; }    @media (min-width: 30em) {      .blog-page .listNewsItem {        width: calc(47% - 5px);        -ms-flex-preferred-size: 47%;            flex-basis: 47%; } }    @media (min-width: 60em) {      .blog-page .listNewsItem {        width: calc(31.333% - 5px);        -ms-flex-preferred-size: 31.333%;            flex-basis: 31.333%;        margin: 1%; } }    @media (min-width: 81.25em) {      .blog-page .listNewsItem {        margin: 0.5%;        width: calc(24% - 5px);        -ms-flex-preferred-size: 24%;            flex-basis: 24%; } }    .blog-page .listNewsItem:hover {      -ms-transform: scale(1.025);          transform: scale(1.025); }      .blog-page .listNewsItem:hover .newsImageTop {        box-shadow: 0 8px 25px 0 rgba(29, 29, 28, 0.1), 0 2px 6px rgba(29, 29, 28, 0.1); }    .blog-page .listNewsItem .newsImageTop {      line-height: 0;      display: inline-block;      max-height: 21em;      overflow: hidden;      transition: box-shadow 250ms ease-out; }      .blog-page .listNewsItem .newsImageTop a {        display: block;        line-height: 0; }    .blog-page .listNewsItem .newsTitle {      font-size: 1.125em;      line-height: 1.3;      color: #1d1d1c;      margin: 0.5rem 0; }      @media (min-width: 48em) {        .blog-page .listNewsItem .newsTitle {          font-size: 1.35em;          margin: 1rem 0; } }      .blog-page .listNewsItem .newsTitle a {        color: #1d1d1c; }    .blog-page .listNewsItem .newsInfoWrap, .blog-page .listNewsItem .newsImageBottom, .blog-page .listNewsItem .newsSummary {      display: none; }    .blog-page .listNewsItem .newsSummaryLink a {      font-size: 16px;      min-width: 0;      color: #d52e03;      border-color: #d52e03; }    .blog-page .listNewsItem .newsSummaryLink:hover a {      background-color: #d52e03;      color: #FFFFFF;      padding: 0.6rem 1rem 0.6rem 1rem;      padding-bottom: calc(0.6rem - 3px); }.hero.blogstory .hero__content {  padding: 8em 1em 3em 0em !important; }  @media (min-width: 21.25em) {    .hero.blogstory .hero__content {      font-size: 13px; } }  @media (min-width: 26.25em) {    .hero.blogstory .hero__content {      font-size: 14px; } }  @media (min-width: 37.5em) {    .hero.blogstory .hero__content {      max-width: 700px;      padding: 10em 0em 3em 0em !important; } }  @media (min-width: 86.875em) {    .hero.blogstory .hero__content {      padding: 8em 0 3em 0em !important; } }  .hero.blogstory .hero__content h1 {    color: #1d1d1c; }#displayBlogStory {  width: 100%;  padding: 3em 2em;  margin: auto;  max-width: 970px;  max-width: 850px; }  @media (min-width: 30em) {    #displayBlogStory {      padding: 4em 2.5em; } }  @media (min-width: 48em) {    #displayBlogStory {      padding: 6em 4em; } }  @media (min-width: 86.875em) {    #displayBlogStory {      padding: 6em 3em; } }  #displayBlogStory h1 {    color: #d52e03;    font-size: 1.944em;    line-height: 1.2;    margin-bottom: 1.5rem; }    @media (min-width: 30em) {      #displayBlogStory h1 {        font-size: 2.3328em;        margin-bottom: 2rem; } }    @media (min-width: 40em) {      #displayBlogStory h1 {        font-size: 2.79936em; } }    @media (min-width: 57.5em) {      #displayBlogStory h1 {        font-size: 3.35923em;        margin-bottom: 2.5rem; } }  #displayBlogStory .newsInfoWrap {    display: none; }  #displayBlogStory h2, #displayBlogStory h3, #displayBlogStory h4, #displayBlogStory h5, #displayBlogStory h6 {    margin: 1.5em 0; }  #displayBlogStory #st-1.st-animated {    margin-top: 3em;    text-align: left; }  #displayBlogStory p {    line-height: 1.9; }.blogSummaryImageStory {  margin: 0rem -1.5em 1.5rem;  position: relative;  line-height: 0; }  @media (min-width: 30em) {    .blogSummaryImageStory {      margin: 0rem -1.5em 2rem; } }  @media (min-width: 48em) {    .blogSummaryImageStory {      margin: 0rem -2em 2rem; } }  @media (min-width: 57.5em) {    .blogSummaryImageStory {      margin: 0rem -2em 3rem; } }  @media (min-width: 67.1875em) {    .blogSummaryImageStory {      margin: 0rem -5em 3rem; } }  .blogSummaryImageStory img {    position: relative;    z-index: 5;    width: 100%;    line-height: 0;    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);    box-shadow: 0 8px 25px 0 rgba(29, 29, 28, 0.1), 0 2px 6px rgba(29, 29, 28, 0.1); }/*Gallery*/.gallery-section .galleries-wrap {  max-width: 1534px;  width: 100%;  margin: auto;  padding: 0 2em; }  .gallery-section .galleries-wrap .image-gallery-summary {    margin: auto; }    .gallery-section .galleries-wrap .image-gallery-summary:before, .gallery-section .galleries-wrap .image-gallery-summary:after {      content: "";      display: table; }    .gallery-section .galleries-wrap .image-gallery-summary:after {      clear: both; }  .gallery-section .galleries-wrap .image-gallery-item {    display: block;    position: relative;    float: left;    width: 92%;    margin: 4%;    text-align: center;    background-color: #fff;    transition: box-shadow 200ms ease-out; }    @media (min-width: 32.5em) {      .gallery-section .galleries-wrap .image-gallery-item {        width: 42%;        margin: 1%; } }    @media (min-width: 48em) {      .gallery-section .galleries-wrap .image-gallery-item {        width: 31%; } }    @media (min-width: 61.25em) {      .gallery-section .galleries-wrap .image-gallery-item {        width: 23%; } }    .gallery-section .galleries-wrap .image-gallery-item a {      display: block; }    .gallery-section .galleries-wrap .image-gallery-item:hover {      box-shadow: 0 0 0 5px #d24f08; }  .gallery-section .galleries-wrap .image-gallery-summary-item-image-side, .gallery-section .galleries-wrap .image-gallery-summary-item-category, .gallery-section .galleries-wrap .image-gallery-summary-item-created, .gallery-section .galleries-wrap .image-gallery-summary-item-updated, .gallery-section .galleries-wrap .image-gallery-summary-item-description, .gallery-section .galleries-wrap .image-gallery-item-title, .gallery-section .galleries-wrap .image-gallery-item-created, .gallery-section .galleries-wrap .image-gallery-item-updated, .gallery-section .galleries-wrap .image-gallery-item-description, .gallery-section .galleries-wrap .video-gallery-item-created, .gallery-section .galleries-wrap .video-gallery-item-updated, .gallery-section .galleries-wrap .video-gallery-item-description {    display: none; }  .gallery-section .galleries-wrap .image-gallery-summary-item-image-top {    padding-bottom: 100%;    background-size: cover;    background-position: 50% 50%;    background-repeat: no-repeat; }  .gallery-section .galleries-wrap .image-gallery-summary-item-title {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    font-size: 1.35em;    color: #d24f08;    line-height: 1.1;    padding: 1.5em;    text-align: center;    display: inline-block;    position: relative; }  .gallery-section .galleries-wrap .image-gallery-summary-item-link a {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    z-index: 3;    font-size: 0; }  .gallery-section .galleries-wrap .image-gallery-item-image {    line-height: 0; }.galleries-wrap .image-gallery, .galleries-wrap .video-gallery {  width: 100%; }  .galleries-wrap .image-gallery:before, .galleries-wrap .image-gallery:after, .galleries-wrap .video-gallery:before, .galleries-wrap .video-gallery:after {    content: "";    display: table; }  .galleries-wrap .image-gallery:after, .galleries-wrap .video-gallery:after {    clear: both; }  .galleries-wrap .image-gallery .image-gallery-item, .galleries-wrap .video-gallery .image-gallery-item {    display: block;    position: relative;    float: left;    width: 80%;    margin: 3% 10%;    background-color: #fff;    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1);    transition: box-shadow 200ms ease-out; }    @media (min-width: 22.5em) {      .galleries-wrap .image-gallery .image-gallery-item, .galleries-wrap .video-gallery .image-gallery-item {        width: 48%;        margin: 1%; } }    @media (min-width: 42.5em) {      .galleries-wrap .image-gallery .image-gallery-item, .galleries-wrap .video-gallery .image-gallery-item {        width: 31%; } }    @media (min-width: 64.375em) {      .galleries-wrap .image-gallery .image-gallery-item, .galleries-wrap .video-gallery .image-gallery-item {        width: 23%; } }    .galleries-wrap .image-gallery .image-gallery-item:hover, .galleries-wrap .video-gallery .image-gallery-item:hover {      box-shadow: 0 0 0 5x #d24f08; }.galleries-wrap .image-gallery-title, .galleries-wrap .video-gallery-title {  font-size: 2.3328em;  margin-bottom: 1rem;  color: #d24f08;  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  margin-left: 1%;  font-weight: 500;  line-height: 1.1;  text-align: center; }  @media (min-width: 22.5em) {    .galleries-wrap .image-gallery-title, .galleries-wrap .video-gallery-title {      text-align: left; } }.video-gallery-item {  display: block;  position: relative;  float: left;  width: 90%;  margin: 3% 5%;  transition: box-shadow 200ms ease-out; }  @media (min-width: 42.5em) {    .video-gallery-item {      width: 48%;      margin: 1%; } }  @media (min-width: 64.375em) {    .video-gallery-item {      width: 31%; } }.video-gallery-item-image {  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1);  position: relative;  padding-bottom: 56.25%;  /* 16:9 */  padding-top: 25px;  height: 0; }  .video-gallery-item-image:hover {    box-shadow: 0 0 0 5px #d24f08; }.video-gallery-item-image iframe {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%; }.video-gallery-item-title {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600;  font-size: 1.35em;  color: #d24f08;  line-height: 1.1;  padding: 1em 0.25em; }.faq-wrap {  background-color: #f2eeec;  padding-top: 0; }.faqs {  max-width: 1080px;  margin: auto;  padding: 0 1%; }.faq-question {  width: 100%;  margin-top: 0.5em; }  .faq-question a {    padding: 1em 2em 1em 1em;    line-height: 1.1;    background: rgba(255, 255, 255, 0.95);    color: #666;    border: 1px solid #ddd;    border-bottom: 2px solid #d24f08;    display: block;    transition: all 300ms ease-out;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.1);    position: relative;    font-weight: 400; }    @media (min-width: 30em) {      .faq-question a {        padding: 1em 2em;        font-size: 1.125em;        font-weight: 500; } }    @media (min-width: 60em) {      .faq-question a {        padding: 1.5em 2em; } }    .faq-question a.active {      background-color: #d24f08;      border-color: #d24f08;      color: #fff;      box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.25); }      .faq-question a.active:after {        -ms-transform: rotate(45deg);            transform: rotate(45deg); }    .faq-question a:after {      content: "+";      display: inline-block;      font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;      font-size: 20px;      position: absolute;      right: 10px;      top: 50%;      -ms-transform: translateY(-50%);          transform: translateY(-50%);      line-height: 0; }.faq-content {  padding: 2em;  background-color: #fff;  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25); }  @media (min-width: 42.5em) {    .faq-content {      padding: 3em; } }  .faq-content p {    line-height: 1.7; }.shop-wrap {  padding: 2% 7.5%;  overflow: visible; }.shop-side {  margin-top: 1em;  width: 100%;  position: relative;  z-index: 10; }  @media (min-width: 57.5em) {    .shop-side {      display: inline-block;      vertical-align: top;      width: 270px;      padding-right: 1em; } }@media (min-width: 57.5em) {  .product-wrap {    display: inline-block;    vertical-align: top;    width: calc(100% - 275px);    padding-left: 1em; } }.shop-categories {  padding-top: 2em; }  .shop-categories h1 {    margin-top: 0; }#navCategory {  padding: 1em; }  #navCategory a:hover {    color: #d24f08; }  #navCategory > ul {    display: -ms-flexbox;    display: flex;    -ms-flex-pack: distribute;        justify-content: space-around;    -ms-flex-wrap: wrap;        flex-wrap: wrap; }    #navCategory > ul > li {      width: 100%;      margin-bottom: 2em; }      @media (min-width: 30em) {        #navCategory > ul > li {          width: 45%; } }      @media (min-width: 53.125em) {        #navCategory > ul > li {          width: 20%;          margin-bottom: 0; } }      #navCategory > ul > li > a {        font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;        color: #1d1d1c;        font-size: 1.944em;        margin-bottom: 1.5rem;        display: block;        padding-bottom: 0.25em;        border-bottom: 2px solid #d24f08;        line-height: 1; }        @media (min-width: 81.25em) {          #navCategory > ul > li > a {            font-size: 2.3328em; } }      #navCategory > ul > li > ul li {        margin-bottom: 10px; }      #navCategory > ul > li > ul a {        font-size: 0.9375em;        color: #97959c; }.categories {  margin-bottom: 1em; }  @media (min-width: 37.5em) {    .categories {      width: 48%;      display: inline-block;      vertical-align: top;      width: calc(49% - 2px);      margin-right: 2%;      position: absolute;      top: 0;      left: 0; } }  @media (min-width: 57.5em) {    .categories {      display: block;      width: 100%;      margin-right: 0;      position: relative; } }  .categories__toggle h2, .categories__label h2 {    margin-bottom: 0.5em;    color: #d24f08;    font-size: 1.35em;    font-weight: 600; }    @media (min-width: 81.25em) {      .categories__toggle h2, .categories__label h2 {        font-size: 1.62em; } }  .categories__label {    display: none; }    @media (min-width: 57.5em) {      .categories__label {        display: block; } }  .categories__toggle {    border-bottom: 2px solid #d6d5db;    cursor: pointer; }    .categories__toggle h2 {      display: inline-block;      vertical-align: middle; }      .categories__toggle h2:after {        content: "";        background-image: url(/amandaprowse-com/_img/images/svg/cross-orange.svg);        background-position: 50% 50%;        background-size: contain;        background-repeat: no-repeat;        color: #222;        display: inline-block;        height: 0.75em;        width: 0.75em;        position: relative;        left: 1rem;        line-height: 1;        font-size: 16px;        -ms-transform: rotate(0deg);        transform: rotate(0deg);        transition: transform 300ms ease-out; }    .categories__toggle.open h2:after {      -ms-transform: rotate(225deg);          transform: rotate(225deg); }    @media (min-width: 57.5em) {      .categories__toggle {        display: none; } }  .categories__wrap {    display: none;    border: 1px solid #d6d5db;    border-top: none;    background-color: #fff;    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);    padding: 1em; }    @media (min-width: 57.5em) {      .categories__wrap {        display: block;        border: 1px solid #d6d5db;        padding: 1em;        width: 100%;        margin-bottom: 1em;        box-shadow: none; } }.categoryItem:last-child a {  border-bottom: 0; }.categoryItem a {  color: #97959c;  padding: 0.5em 1em;  border-bottom: 1px solid #f2eeec;  display: block; }  .categoryItem a:hover {    color: #d24f08;    background-color: #f2eeec; }.account {  margin-bottom: 1em; }  @media (min-width: 37.5em) {    .account {      width: 48%;      display: inline-block;      vertical-align: top;      width: calc(49% - 2px);      margin-left: 50%; } }  @media (min-width: 57.5em) {    .account {      display: block;      width: 100%;      margin-left: 0; } }#ecommerceCategoryAccordion {  padding: 1em; }  #ecommerceCategoryAccordion h3 {    font-size: 1.35em;    margin: 1.25em 0 0.5em; }    #ecommerceCategoryAccordion h3:first-child {      margin-top: 0; }  #ecommerceCategoryAccordion .cat_item a {    padding: 2px 0;    color: #888;    display: block; }.cart-wrap {  border: 1px solid #d6d5db;  padding: 1em;  width: 100%;  margin-bottom: 1em; }.cart svg, .cart #editirMiniBasket {  display: inline-block;  vertical-align: middle; }.cart svg {  margin-right: 0.5em;  width: 2em;  fill: #d24f08; }.cart #editirMiniBasket {  position: relative;  top: 4px; }  .cart #editirMiniBasket span {    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600; }.login-buttons .loginSpacer {  display: none; }.login-buttons a {  display: inline-block;  width: 48%;  width: calc(49% - 2px);  padding: 0.5em 1em;  text-align: center;  color: #fff;  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600; }  .login-buttons a:first-child {    background-color: #d52e03;    margin-right: 2%; }    .login-buttons a:first-child:hover {      background-color: #a32302; }  .login-buttons a:last-child {    background-color: #d24f08; }    .login-buttons a:last-child:hover {      background-color: #a13d06; }.shop-wrap .product_item {  width: calc(50% - 1px);  display: inline-block;  vertical-align: top;  padding: 0.5em 0.5em 1em;  margin: 0.5em 0;  border: 1px solid transparent;  transition: border-color 200ms ease-out, background-color 250ms ease-out; }  @media (min-width: 40em) {    .shop-wrap .product_item {      width: calc(33.33% - 1px); } }  @media (min-width: 57.5em) {    .shop-wrap .product_item {      width: calc(50% - 1px); } }  @media (min-width: 67.1875em) {    .shop-wrap .product_item {      width: calc(33.33% - 1px); } }  @media (min-width: 78.75em) {    .shop-wrap .product_item {      width: calc(25% - 1px); } }  @media (min-width: 103.75em) {    .shop-wrap .product_item {      width: calc(20% - 1px); } }  .shop-wrap .product_item:hover {    border: 1px solid #ccc;    background-color: #f6f7f6; }    .shop-wrap .product_item:hover .h6 {      color: #d24f08; }.shop-wrap .product_info {  text-align: center; }.shop-wrap .productName a {  font-size: 0.9375em;  font-weight: 600;  color: #1d1d1c; }.shop-wrap .productCat, .shop-wrap .productId, .shop-wrap .productDesc, .shop-wrap .product_view_btn {  display: none; }.shop-wrap .productPrice {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600;  font-size: 1.125em;  color: #d24f08; }.shop-detail-wrap {  padding: 0; }.shop-detail {  padding-left: 5em;  padding: 2% 7.5%;  display: -ms-flexbox;  display: flex;  -ms-flex-direction: column-reverse;      flex-direction: column-reverse; }  @media (min-width: 78.125em) {    .shop-detail {      -ms-flex-direction: row;          flex-direction: row; } }  .shop-detail .shop-side {    padding-bottom: 1em;    border-bottom: 1px solid #97959c; }    @media (min-width: 78.125em) {      .shop-detail .shop-side {        display: inline-block;        vertical-align: top;        width: 270px;        padding-right: 1em;        margin-top: 1em;        margin-bottom: 0;        border: none; } }  .shop-detail .account {    margin-left: 0;    width: 100%; }  .shop-detail .categories {    display: none; }    .shop-detail .categories__toggle h2, .shop-detail .categories__label h2 {      margin-bottom: 0.5em;      color: #d24f08;      font-size: 1.35em;      font-weight: 600; }      @media (min-width: 81.25em) {        .shop-detail .categories__toggle h2, .shop-detail .categories__label h2 {          font-size: 1.62em; } }    .shop-detail .categories__label {      display: none; }      @media (min-width: 78.125em) {        .shop-detail .categories__label {          display: block; } }    .shop-detail .categories__toggle {      border-bottom: 2px solid #d6d5db;      cursor: pointer; }      .shop-detail .categories__toggle h2 {        display: inline-block;        vertical-align: middle; }        .shop-detail .categories__toggle h2:after {          content: "";          background-image: url(/amandaprowse-com/_img/images/svg/cross-orange.svg);          background-position: 50% 50%;          background-size: contain;          background-repeat: no-repeat;          color: #222;          display: inline-block;          height: 0.75em;          width: 0.75em;          position: relative;          left: 1rem;          line-height: 1;          font-size: 16px;          -ms-transform: rotate(0deg);          transform: rotate(0deg);          transition: transform 300ms ease-out; }      .shop-detail .categories__toggle.open h2:after {        -ms-transform: rotate(225deg);            transform: rotate(225deg); }      @media (min-width: 78.125em) {        .shop-detail .categories__toggle {          display: none; } }    .shop-detail .categories .categoryItem:last-child a {      border-bottom: 0; }    .shop-detail .categories .categoryItem a {      color: #97959c;      padding: 0.5em 1em;      border-bottom: 1px solid #f2eeec;      display: block; }      .shop-detail .categories .categoryItem a:hover {        color: #d24f08;        background-color: #f2eeec; }    .shop-detail .categories__wrap {      display: none;      border: 1px solid #d6d5db;      border-top: none; }      @media (min-width: 78.125em) {        .shop-detail .categories__wrap {          display: block;          border: 1px solid #d6d5db;          padding: 1em;          width: 100%;          margin-bottom: 1em; } }  @media (min-width: 78.125em) {    .shop-detail .shop-item-wrap {      display: inline-block;      vertical-align: top;      width: calc(100% - 275px);      padding-left: 1em; } }  .shop-detail__image, .shop-detail__info {    display: inline-block;    padding: 1em;    vertical-align: top; }  .shop-detail__image {    width: 100%; }    @media (min-width: 43.75em) {      .shop-detail__image {        width: 39%;        width: calc(40% - 4px); } }    @media (min-width: 57.5em) {      .shop-detail__image {        width: 49%;        width: calc(50% - 4px); } }    .shop-detail__image .cycle-slide {      max-height: 500px;      max-height: 80vh; }      .shop-detail__image .cycle-slide img {        max-height: 500px;        max-height: 80vh; }    .shop-detail__image #carousel {      width: 100%;      position: relative;      padding-bottom: 2rem;      margin-top: 1em; }      .shop-detail__image #carousel #cycle-2 {        width: 100%;        overflow: hidden; }      .shop-detail__image #carousel .cycle-slide {        background-color: #fff;        border: 1px solid #ddd;        width: 75px;        height: 75px;        display: block;        overflow: hidden;        position: relative;        margin-right: 5px;        cursor: pointer; }        .shop-detail__image #carousel .cycle-slide:hover {          border-color: #999; }    .shop-detail__image #custom-pager {      display: none; }    .shop-detail__image .cycle-prev {      position: absolute;      bottom: 0;      left: 0;      width: 1.25rem;      height: 1.25rem;      display: inline-block;      overflow: hidden;      text-indent: -1000%;      white-space: nowrap;      opacity: 0.75; }      .shop-detail__image .cycle-prev:hover {        opacity: 1; }      .shop-detail__image .cycle-prev:before {        content: "";        display: block;        height: 100%;        width: 100%;        background-position: 50% 50%;        background-size: contain;        background-repeat: no-repeat;        background-image: url("/amandaprowse-com/_img/images/svg/circle-arrow-left.svg"); }    .shop-detail__image .cycle-next {      position: absolute;      bottom: 0;      left: 2rem;      width: 1.25rem;      height: 1.25rem;      display: inline-block;      overflow: hidden;      text-indent: -1000%;      white-space: nowrap;      opacity: 0.75; }      .shop-detail__image .cycle-next:hover {        opacity: 1; }      .shop-detail__image .cycle-next:before {        content: "";        display: block;        height: 100%;        width: 100%;        background-position: 50% 50%;        background-size: contain;        background-repeat: no-repeat;        background-image: url("/amandaprowse-com/_img/images/svg/circle-arrow-right.svg"); }  .shop-detail__info {    width: 100%;    padding-top: 1.25em; }    @media (min-width: 43.75em) {      .shop-detail__info {        width: 59%;        width: calc(60% - 4px); } }    @media (min-width: 57.5em) {      .shop-detail__info {        width: 49%;        width: calc(50% - 4px); } }    @media (min-width: 75em) {      .shop-detail__info {        padding-left: 2em; } }    .shop-detail__info h1 {      margin-bottom: 8px;      line-height: 1.1;      font-weight: 600; }    .shop-detail__info .detailProductCat {      color: #97959c; }  .shop-detail__price {    margin-bottom: 0.5em;    padding-bottom: 0.5em;    border-bottom: 1px solid #97959c;    font-size: 1.944em;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }    @media (min-width: 60em) {      .shop-detail__price {        margin-bottom: 0.75em;        padding-bottom: 0.75em; } }  .shop-detail__desc {    margin-bottom: 0.75em; }  .shop-detail .detailProductQuantityLabel {    color: #97959c;    font-weight: 600; }  .shop-detail .detailProductBtn a {    padding: 0.65em 2.5em;    font-size: 18px;    transition: all 300ms ease-out;    display: inline-block;    text-align: center;    white-space: nowrap;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    border: 2px solid #d24f08;    background-color: transparent;    color: #d24f08;    width: 100%; }    @media (min-width: 57.5em) {      .shop-detail .detailProductBtn a {        width: auto; } }    .shop-detail .detailProductBtn a:hover {      background-color: #d24f08;      color: white; }  .shop-detail .detailProductQuantityInput input {    width: 100%;    padding: 0.65em 1em; }    @media (min-width: 57.5em) {      .shop-detail .detailProductQuantityInput input {        width: auto; } }.flexbox .shop-detail-wrap {  padding: 0; }  @media (min-width: 78.125em) {    .flexbox .shop-detail-wrap {      padding-left: 5em; } }.flexbox .shop-detail {  padding: 0;  max-width: none; }  @media (min-width: 78.125em) {    .flexbox .shop-detail {      display: -ms-flexbox;      display: flex; } }  .flexbox .shop-detail .shop-side {    margin-top: 0;    padding-top: 1em;    width: 100%;    padding: 2em 3em;    border-top: 1px solid #f2eeec; }    @media (min-width: 60em) {      .flexbox .shop-detail .shop-side {        padding: 2em 4em; } }    @media (min-width: 78.125em) {      .flexbox .shop-detail .shop-side {        margin-top: 0;        padding: 4em 0 1em;        -ms-flex-preferred-size: 270px;            flex-basis: 270px;        border-bottom: none; } }  .flexbox .shop-detail .shop-item-wrap {    padding-left: 0em; }    @media (min-width: 43.75em) {      .flexbox .shop-detail .shop-item-wrap {        display: -ms-flexbox;        display: flex; } }    @media (min-width: 78.125em) {      .flexbox .shop-detail .shop-item-wrap {        width: calc(100% - 270px); } }  .flexbox .shop-detail__image, .flexbox .shop-detail__info {    padding: 3em;    width: 100%;    -ms-flex-preferred-size: 50%;        flex-basis: 50%;    display: -ms-flexbox;    display: flex;    -ms-flex-direction: column;        flex-direction: column; }    @media (min-width: 60em) {      .flexbox .shop-detail__image, .flexbox .shop-detail__info {        padding: 3.5em; } }    @media (min-width: 78.75em) {      .flexbox .shop-detail__image, .flexbox .shop-detail__info {        padding: 4em; } }  .flexbox .shop-detail__info {    background-color: #f2eeec; }    @media (min-width: 60em) {      .flexbox .shop-detail__info h1 {        margin-top: 1em; } }.fancybox-outer {  color: #fff; }  .fancybox-outer a {    padding: 0.65em;    font-size: 16px;    transition: all 300ms ease-out;    display: inline-block;    text-align: center;    white-space: nowrap;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-weight: 600;    margin-top: 0.25em;    margin-bottom: 0.25em;    width: 100%; }    @media (min-width: 37.5em) {      .fancybox-outer a {        width: auto;        font-size: 18px;        padding: 0.65em 2.5em; } }  .fancybox-outer #checkoutAddMore {    margin-right: 0.5em;    border: 2px solid #FFFFFF;    background-color: transparent;    color: #FFFFFF; }    .fancybox-outer #checkoutAddMore:hover {      background-color: #FFFFFF;      color: #d24f08;      border-color: #E97503; }  .fancybox-outer #checkoutGo {    border: 2px solid #FFFFFF;    background-color: #FFFFFF;    color: #d24f08; }    .fancybox-outer #checkoutGo:hover {      background-color: #E97503;      border-color: #E97503;      color: #FFFFFF; }.fancybox-skin {  background-color: #d24f08; }#checkoutMessage {  padding: 1em; }/*Basket*/.product-checkout__page {  background-color: #f2eeec;  padding: 2em; }  @media (min-width: 26.25em) {    .product-checkout__page {      padding: 3em; } }  @media (min-width: 37.5em) {    .product-checkout__page {      padding: 4em; } }  @media (min-width: 51.875em) {    .product-checkout__page {      padding: 5em; } }  .product-checkout__page h1 {    color: #d24f08;    margin-bottom: 0.25em; }#editirFullBasket {  padding: 0.75rem;  border: 1px solid #ccc;  background-color: #fff; }  @media (min-width: 0em) and (max-width: 48em) {    #editirFullBasket {      overflow-x: scroll; } }  @media (min-width: 40em) {    #editirFullBasket {      padding: 1.5rem; } }  #editirFullBasket .col1 {    text-align: left;    width: 40%; }    @media (min-width: 40em) {      #editirFullBasket .col1 {        width: auto; } }  #editirFullBasket td,  #editirFullBasket th {    text-align: center; }  #editirFullBasket .col8 {    text-align: right; }table.basketOutput {  width: 100%;  min-width: 400px; }  table.basketOutput .basketHead,  table.basketOutput tr {    border-bottom: 1px solid #e5e5e5; }    table.basketOutput .basketHead.basketSummarySub,    table.basketOutput tr.basketSummarySub {      border: none; }  table.basketOutput td,  table.basketOutput th {    padding: 0.5rem;    font-size: 0.75rem;    line-height: 1.2; }    @media (min-width: 34.375em) {      table.basketOutput td,      table.basketOutput th {        font-size: 0.8125rem;        padding: 0.75rem; } }    @media (min-width: 51.25em) {      table.basketOutput td,      table.basketOutput th {        font-size: 0.9375rem;        padding: 1rem; } }  table.basketOutput th {    font-weight: 700;    color: #97959c;    font-size: 0.75rem; }    @media (min-width: 43.75em) {      table.basketOutput th {        font-size: 0.8125rem; } }    table.basketOutput th.col8 {      font-size: 0; }      @media (min-width: 40em) {        table.basketOutput th.col8 {          font-size: 0.75rem; } }      @media (min-width: 43.75em) {        table.basketOutput th.col8 {          font-size: 0.8125rem; } }  table.basketOutput td {    color: #1d1d1c; }    table.basketOutput td a {      color: #1d1d1c; }      table.basketOutput td a:hover {        text-decoration: underline; }  table.basketOutput .basketSummarySub td {    font-weight: 700;    font-size: 0.875rem; }    @media (min-width: 43.75em) {      table.basketOutput .basketSummarySub td {        font-size: 0.9375rem; } }    table.basketOutput .basketSummarySub td:nth-child(1) {      text-align: left !important; }    table.basketOutput .basketSummarySub td:nth-child(6) {      display: none; }  table.basketOutput .col2 {    width: 40px;    font-weight: 600; }    @media (min-width: 40em) {      table.basketOutput .col2 {        width: 50px; } }  table.basketOutput .col2pre, table.basketOutput .col2post {    width: 30px;    font-weight: 600; }    @media (min-width: 40em) {      table.basketOutput .col2pre, table.basketOutput .col2post {        width: 30px; } }    table.basketOutput .col2pre a, table.basketOutput .col2post a {      color: #97959c; }  table.basketOutput .col7 {    display: none; }  table.basketOutput .col8 {    text-align: right; }  table.basketOutput .icon-close {    width: 0.75rem;    height: 0.75rem;    display: inline-block;    opacity: 0.5;    transition: opacity 200ms linear;    background-image: url("/amandaprowse-com/_img/images/svg/delete.svg");    background-repeat: no-repeat;    background-position: 50% 50%;    background-size: contain; }    table.basketOutput .icon-close:hover {      opacity: 1; }.checkoutSummary {  padding: 1rem;  border: 2px solid rgba(210, 79, 8, 0.75);  color: #FFFFFF;  background-color: #d24f08;  text-align: center;  font-size: 1.125em;  font-weight: 600;  margin: 1.5em 0 3em !important;  line-height: 1.4; }@media (min-width: 61.25em) {  .existingCustomer, .newCustomer {    display: inline-block;    vertical-align: top; } }.existingCustomer h2, .newCustomer h2 {  font-size: 1.62em;  margin: 1em 0 0.5em;  padding-bottom: 0.5em;  border-bottom: 1px solid rgba(29, 29, 28, 0.5); }.existingCustomer table, .existingCustomer tbody, .newCustomer table, .newCustomer tbody {  width: 100%;  font-size: 14px; }.existingCustomer input[type="text"], .existingCustomer textarea, .existingCustomer select, .newCustomer input[type="text"], .newCustomer textarea, .newCustomer select {  padding: 0.5em;  margin: 0.5em 0; }  @media (min-width: 40em) {    .existingCustomer input[type="text"], .existingCustomer textarea, .existingCustomer select, .newCustomer input[type="text"], .newCustomer textarea, .newCustomer select {      padding: 1em; } }.existingCustomer input[type="submit"], .newCustomer input[type="submit"] {  width: 100%;  margin-top: 1em; }.existingCustomer input[type="checkbox"], .newCustomer input[type="checkbox"] {  position: relative;  top: 2px; }.existingCustomer .col1, .newCustomer .col1 {  width: 40%;  font-size: 13px; }  @media (min-width: 40em) {    .existingCustomer .col1, .newCustomer .col1 {      font-size: inherit; } }.existingCustomer .col2, .newCustomer .col2 {  width: 60%; }.existingCustomer {  margin-bottom: 2em; }  @media (min-width: 61.25em) {    .existingCustomer {      width: calc(40% - 5px); } }@media (min-width: 61.25em) {  .newCustomer {    width: calc(60% - 5px);    padding-left: 3em; } }.newCustomer select {  display: block;  box-sizing: border-box;  width: 100%;  border: 1px solid #cacaca;  font-family: inherit;  font-size: 0.915em;  color: #97959c;  outline: #d24f08;  background-color: #fefefe;  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);  border-radius: 0;  transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }  .newCustomer select option {    font-size: 0.875em; }  .newCustomer select:focus, .newCustomer select:hover {    border-color: #d24f08; }#pnlStepSuccess {  text-align: center;  padding: 3em 2em;  background-color: #fff;  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05); }  @media (min-width: 30em) {    #pnlStepSuccess {      padding: 5em 3em; } }  #pnlStepSuccess p {    font-size: 1.125em; }  #pnlStepSuccess form {    display: inline-block; }  #pnlStepSuccess .btnSubmit, #pnlStepSuccess input[type="submit"] {    display: inline-block;    vertical-align: top;    margin: 5px;    padding: 0.8em 3em;    text-align: center;    border: 1px solid #ddd;    overflow: hidden;    box-shadow: none;    text-transform: uppercase;    border: none;    background-color: #d24f08;    color: #FFFFFF;    font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;    font-size: 18px;    font-weight: 700;    line-height: 1; }    #pnlStepSuccess .btnSubmit:hover, #pnlStepSuccess input[type="submit"]:hover {      background-color: #a13d06;      text-decoration: none; }  #pnlStepSuccess .btnPayPal {    background-color: #003087; }    #pnlStepSuccess .btnPayPal:hover {      background-color: #001e54; }#pnlStockError > p {  margin-top: 2em; }.login-wrap, .account-page {  background-color: #f2eeec;  overflow: visible;  position: relative; }.login-box {  padding: 2em 1.5em;  background-color: #fff;  margin: -4em auto 2em;  text-align: center;  max-width: 40em;  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1), 0 30px 60px 0 rgba(0, 0, 0, 0.2);  font-size: 14px; }  @media (min-width: 30em) {    .login-box {      padding: 3em;      font-size: 16px;      margin: -4.25em auto 3em; } }  @media (min-width: 53.125em) {    .login-box {      margin: -6.5em auto 3em; } }  @media (min-width: 64.375em) {    .login-box {      margin: -10em auto 3em; } }  .login-box input {    margin: 0.5em 0;    padding: 0.75em;    font-size: 1em; }    @media (min-width: 30em) {      .login-box input {        padding: 1em; } }  .login-box .error {    margin-bottom: 1em; }  .login-box tr > td:first-child {    font-weight: 600;    font-size: 0.9375em; }.ecommerceLoginIntro {  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600;  line-height: 1.1;  margin-bottom: 0.75em !important;  font-size: 1.944em; }  @media (min-width: 30em) {    .ecommerceLoginIntro {      font-size: 1.944em; } }  @media (min-width: 57.5em) {    .ecommerceLoginIntro {      font-size: 2.3328em; } }.ecommerceLogin table, .ecommercePassword table {  width: 100%; }.ecommerceLogin tr td:nth-child(1), .ecommercePassword tr td:nth-child(1) {  width: 100px; }.ecommerceLogin tr td:nth-child(2), .ecommercePassword tr td:nth-child(2) {  width: calc(100% - 100px); }.ecommerceLogin a.ecommercePasswordFormBtn, .ecommercePassword a.ecommercePasswordFormBtn {  margin: 1.5em auto;  display: block;  width: 90%;  max-width: 300px;  padding: 0.65em 2.5em;  font-size: 18px;  transition: all 300ms ease-out;  text-align: center;  white-space: nowrap;  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600;  border: 2px solid #d24f08;  background-color: transparent;  color: #d24f08;  width: 90%;  max-width: 300px; }  .ecommerceLogin a.ecommercePasswordFormBtn:hover, .ecommercePassword a.ecommercePasswordFormBtn:hover {    background-color: #d24f08;    color: white; }.ecommerceLogin .ecommercePasswordLink a, .ecommercePassword .ecommercePasswordLink a {  font-weight: 600; }p.ecommercePasswordIntro {  font-weight: 600;  line-height: 1.2; }.create-account {  text-align: center;  margin-bottom: 2em; }.reminder .h2 {  font-weight: 600;  margin-bottom: 0.5em; }.reminder p {  margin: 0 0 1.5em; }.register-page h1 {  color: #d24f08;  line-height: 1.1; }.register-page .login-wrapper {  max-width: 50em; }.register-page h2 {  font-size: 1.62em;  padding-bottom: 0.25em;  margin-bottom: 0.75em;  border-bottom: 1px solid #97959c;  text-align: left; }.register-page table {  width: 100%; }.register-page tr td:nth-child(1) {  width: 40%;  font-size: 0.875em; }  @media (min-width: 34.375em) {    .register-page tr td:nth-child(1) {      width: 180px;      font-size: 1em; } }.register-page tr td:nth-child(2) {  width: 60%;  padding-left: 2%; }  @media (min-width: 34.375em) {    .register-page tr td:nth-child(2) {      padding-left: 0;      width: calc(100% - 180px); } }.register-page tr input, .register-page tr select {  margin: 0.5em 0;  padding: 0.75em; }  @media (min-width: 40em) {    .register-page tr input, .register-page tr select {      padding: 1em; } }.register-page input[type="submit"] {  margin-top: 1.5em;  background-color: #008581;  border-radius: 26px;  text-transform: none;  width: 90%;  max-width: 300px; }  .register-page input[type="submit"]:hover {    background-color: #d24f08; }.account-page .login-wrapper {  max-width: 55em;  padding: 1.5em;  background-color: #fff;  margin: -5em auto 2em;  text-align: center;  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1), 0 30px 60px 0 rgba(0, 0, 0, 0.2);  font-size: 14px; }  @media (min-width: 30em) {    .account-page .login-wrapper {      padding: 3em;      font-size: 16px;      margin: -4em auto 3em; } }  @media (min-width: 53.125em) {    .account-page .login-wrapper {      margin: -6.5em auto 3em; } }  @media (min-width: 64.375em) {    .account-page .login-wrapper {      margin: -10em auto 3em; } }.account-page .order-history-wrap, .account-page .details-wrap {  text-align: left; }.account-page .order-history-wrap {  margin-bottom: 2em; }.account-page h1 {  color: #d24f08;  line-height: 1.1; }.account-page h2 {  padding-bottom: 0.25em;  border-bottom: 1px solid #97959c;  font-weight: 600; }.account-page .ecommerceOrders {  overflow-x: auto; }.account-page .ecommerceOrderTable {  width: 100%;  font-size: 14px; }  @media (min-width: 40em) {    .account-page .ecommerceOrderTable {      font-size: inherit; } }  .account-page .ecommerceOrderTable td {    border: 1px solid #ddd;    padding: 0.5em;    text-align: center; }    .account-page .ecommerceOrderTable td:first-child {      text-align: left;      color: #1d1d1c;      font-weight: 600 !important; }    .account-page .ecommerceOrderTable td.tableheading {      color: #9e9194;      font-size: 0.875em;      font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;      font-weight: 700;      line-height: 1.1; }    .account-page .ecommerceOrderTable td.tablerow {      font-size: 0.875em;      font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;      font-weight: 300;      line-height: 1.4;      white-space: nowrap; }.account-page .details-wrap h3 {  margin-top: 2em !important; }.account-page .details-wrap table {  width: 100%; }  .account-page .details-wrap table td:nth-child(1) {    width: 40%;    font-size: 0.875em;    font-weight: 600; }    @media (min-width: 34.375em) {      .account-page .details-wrap table td:nth-child(1) {        width: 200px;        font-size: 0.9375em; } }  .account-page .details-wrap table td:nth-child(2) {    width: 60%;    padding-left: 2%; }    @media (min-width: 34.375em) {      .account-page .details-wrap table td:nth-child(2) {        padding-left: 0;        width: calc(100% - 200px); } }  .account-page .details-wrap table input[type="text"] {    margin: 0.5em 0;    padding: 0.75em; }    @media (min-width: 40em) {      .account-page .details-wrap table input[type="text"] {        padding: 1em; } }.account-page .details-wrap a.formBtn {  margin: 1.5em auto;  display: block;  width: 90%;  max-width: 300px;  padding: 0.65em 2.5em;  font-size: 18px;  transition: all 300ms ease-out;  text-align: center;  white-space: nowrap;  font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight: 600;  background-color: #d24f08;  color: #FFFFFF;  width: 90%;  max-width: 300px; }  .account-page .details-wrap a.formBtn:hover {    background-color: #d52e03;    color: white; }/* -----------------------------------------  13.0. Footer----------------------------------------- */.footer {  padding: 3em 2em; }  .footer-logo, .footer .advert-space {    width: 100%;    display: inline-block;    vertical-align: middle; }    @media (min-width: 37.5em) {      .footer-logo, .footer .advert-space {        width: calc(35% - 5px); } }  .footer-social {    text-align: center;    width: 100%;    display: inline-block;    vertical-align: middle;    padding-left: 5px;    margin: 2em 0; }    @media (min-width: 37.5em) {      .footer-social {        width: calc(30% - 5px); } }  .footer-social__icon {    display: inline-block;    width: 3.5em;    height: 3.5em; }    .footer-social__icon svg {      fill: #97959c; }  .footer-logo {    text-align: center; }    @media (min-width: 37.5em) {      .footer-logo {        text-align: left;        padding-right: 2em; } }  .footer .advert-space {    text-align: center; }    @media (min-width: 37.5em) {      .footer .advert-space {        text-align: right; } }    .footer .advert-space__block {      width: 80%;      height: 4em;      background-color: #97959c;      display: inline-block; }  .footer-content {    padding-top: 2em;    width: 100%;    text-align: center; }    .footer-content p, .footer-content a {      color: #97959c;      font-size: 14px; }.guest-bucket {height: 100%;}.buckets .guest-bucket__wrap {width: 100%;}.health-section:nth-of-type(even) .container {flex-direction: row-reverse;}.novel-detail__title {margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #97959c;}.novel-detail__isbn {padding: 5px 10px; background: #f2eeec; display: inline-block;}.book-publish-date {background: #97959c; padding: 5px 10px; color: #fff; display: inline-block; margin-bottom: 10px;}.book-number-title {margin-bottom: 10px; display: inline-block; padding: 5px 10px; background: #d24f08; color: #fff; font-family: "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-weight: 700;}.novel-detail__desc {padding: 20px; background: #97959c; color: #fff;}.novel-detail__desc h4 {color: #fff; border-bottom: 1px solid #fff; padding-bottom: 10px; margin-bottom: 10px;}.author-summary {padding: 20px; background: #d24f08; color: #fff; margin-bottom: 20px;}.author-summary h4 {color: #fff; border-bottom: 1px solid #fff; padding-bottom: 10px; margin-bottom: 10px;}.standalone-series {background: #f2eeec; padding: 20px; margin-bottom: 20px;}.standalone-series h4 {color: #1d1d1d; border-bottom: 1px solid #1d1d1d; padding-bottom: 10px; margin-bottom: 10px;}.additional-images {margin-top: 20px;}.additional-images div {width: 24%; float: left; margin-right: 1%; margin-bottom: 10px;}.additional-images h4 {text-align: left; color: #1d1d1d; border-bottom: 1px solid #1d1d1d; padding-bottom: 10px; margin-bottom: 10px; font-size: 18px;}.book-review {padding: 20px; background: #f2eeec;}.book-review h4 {text-align: left; color: #1d1d1d; border-bottom: 1px solid #1d1d1d; padding-bottom: 10px; margin-bottom: 10px; }.books-in-order li {border: 1px solid #ccc; background-color: #f6f7f6; width: 32.33% ; margin-right: 1%; float: left;}.books-in-order .novel-cover {width:39%; margin: 0 auto; padding-bottom: 60%; margin-bottom: 20px;}.books-in-order .book-number-title {font-size: 14px;}.books-in-order h2.h6 {margin-top: 0; font-size: 18px !important;}.books-in-order .button.border-button.base {margin-bottom: 5px; width: 100%; display: block;}.books-in-order .button.border-button.base a {padding: 10px 20px; width: 100%; text-align: center; display: block !important; font-size: 16px;}.books-in-order .notes {margin-bottom: 10px;} @media all and (max-width: 1000px) and (min-width: 0px) {.buckets-col1, .buckets-col2 {width: 49%; margin-bottom: 0px;}.buckets-col1 {margin-right: 2%;}.buckets .events-bucket, .buckets .guest-bucket {    width: 100%;    float: left;}} @media all and (max-width: 1000px) and (min-width: 0px) {.buckets-col1, .buckets-col2 {width: 100%; margin-bottom: 0px;}.buckets-col1 {margin-right: 0%; margin-bottom: 15px;}} @media all and (max-width: 920px) and (min-width: 0px) {.books-in-order li {width: 48% ; margin-right: 1%; float: left;}} @media all and (max-width: 570px) and (min-width: 0px) {.books-in-order li {width: 100% ; margin-right: 0%; float: left;}}
/* not required */
