/* 

Use Futura PT Condensed
-----------------------
font-family: futura-pt-condensed, sans-serif;
font-weight: 800;
font-style: normal; 
        
Use Kansas New Regular 
----------------------
font-family: kansasnew, serif;
font-weight: 400;
font-style: normal;

Use Kansas New Bold
-------------------
font-family: kansasnew, serif;
font-weight: 700;
font-style: normal; 

*/

/* 
=========================
BASE STYLES
========================= 
*/

/* RESET / STANDARDISE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
  }
  
  button, input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
  }
  
  ul li {
    list-style: none;
  }
  
  /* DEFAULT SELECTORS */
  
  html {
      font-size: 62.5%;
      -webkit-text-size-adjust: 100%;
      -moz-text-size-adjust: 100%;
      text-size-adjust: 100%;
  }
  
  body {
      background-color: #f3f0ea;
      color: #000;
      font-family: kansasnew, serif;
      font-weight: 400;
      font-style: normal;
  }
  
  h1, h2, h3, h4, h5, h6, .button, .category-list__item a, select, label {
      font-family: futura-pt-condensed, sans-serif;
      font-weight: 800;
      font-style: normal; 
      text-align: center;
      text-transform: uppercase;
  }
  
  .indented:before {
      content: "";
      display: inline-block;
      width: 24px;
  }
  
  img {
      display: block;
      max-width: 100%;
      width: 100%;
  }
  
  button {
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  
  li {
    position: relative;
  }
  
  select {
    border: none;
    background-color: transparent;
    color: #000;
    display: block;
    height: 100%;
    position: relative;
    text-align: left;
    width: calc(100% + 50px);
    z-index: 10;
  }
  
  table {
    border-collapse: collapse;
    border-right: 1px solid #000;
  }
  
  th, td {
    border-bottom: 1px solid #000; 
    border-left: 1px solid #000;
    text-align: left; 
  }
  
  th {
    font-weight: 700;
    vertical-align: bottom;
  }
  
  td {
    vertical-align: top;
  }
  
  input[type="text"], textarea {
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 0;
    color: #f3f0ea;
    display: block;
    font-family: kansasnew, serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    z-index: 1;
  }
  
  input[type="text"]:focus, textarea:focus {
    color: #000;
  }
  
  p a {
    color: #000;
    text-decoration: underline;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  
  p a:hover {
    color: #ed8b00;
  }
  
  p a:active {
    color: #cb6900;
  }
  
  /* BESPOKE SELECTORS */
  
  .page-contents {
    min-height: 100vh;
  }
  
  .wrapper--header {
    position: relative;
  }

  .wrapper--header__cta {
    margin-top: 0 !important;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .logo {
    position: relative;
  }
  
  .banner {
    color: #fff;
    text-align: center;
  }
  
  .banner--1 {
    background-color: #005eb8;
  }
  
  .banner--2 {
    background-color: #ed8b00;
  }
  
  .page-title__sub {
    border-top: 1px solid #000;
    display: block;
  }
  
  .icon-fill {
    fill: #000;
  }
  
  .button {
    border: 1px solid #000;
    cursor: pointer;
  }
  
  .button--white {
    border: 1px solid #fff;
  }
  
  .button--icon {
    display: block;
  }
  
  .button--social {
    position: relative;
  }
  
  .button--social__icon {
    height: 20px;
    left: 50%;
    margin: -10px 0 0 -10px;
    position: absolute;
    top: 50%;
    width: 20px;
  }
  
  .button--social__icon path {
    fill: #000;
  }
  
  .button--dropdown {
    color: #000;
    display: block;
    position: relative;
    text-align: left;
    width: 100%;
  }
  
  .button--dropdown__square {
    border-left: 1px solid #000;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .button--dropdown__icon {
    display: block;
    height: 20px;
    position: absolute;
    left: 50%;
    margin: -10px 0 0 -10px;
    top: 50%;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    width: 20px;
  }
  
  .button--dropdown__icon-inverted {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .button--select {
    overflow: hidden;
    position: relative;
  }
  
  .burger-part {
    background-color: #000;
    display: block;
    height: 4px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    top: 50%;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    width: 20px;
  }
  
  .burger-part--top {
    margin-top: -10px;
  }
  
  .burger-part--middle {
    margin-top: -2px;
  }
  
  .burger-part--bottom {
    margin-top: 6px;
  }
  
  .button--close-menu {
    border-color: #fff;
    position: absolute;
    z-index: 2000;
  }
  
  .close-menu-part {
    background-color: #fff;
    display: block;
    height: 4px;
    left: 50%;
    margin-left: -12px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    width: 24px;
  }
  
  .close-menu-part--top {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .close-menu-part--bottom {
    -moz-transform: rotate(-45deg);
    -webkittransform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .button--burger-close .burger-part--middle {
    margin-left: 0;
    width: 0;
  }
  
  .button--basket {
    position: absolute;
    right: 48px;
    top: 0;
  }
  
  .button--basket__icon {
    display: block;
    height: 20px;
    left: 50%;
    margin: -10px 0 0 -10px;
    position: absolute;
    top: 50%;
    width: 20px;
  }
  
  .button--cta {
    color: #000;
    display: table;
    margin: auto;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  
  .button--cta-white {
    border-color: #fff;
    color: #fff;
  }
  
  .button--left {
    margin-left: 0;
  }
  
  .button--cta:hover {
    border-color: #ed8b00;
  }
  
  .button--cta:active {
    background-color: #ed8b00;
    color: #fff;
  }
  
  .button--margin-none, input[type="hidden"] + .add-to-cart-button {
    margin-top: 0 !important;
  }
  
  .nav--top {
    background-color: #005eb8;
    min-height: 100%;
  }
  
  .link--menu-top {
    color: #fff;
  }
  
  .nav-link--active .link--menu-top, .nav-link--active .link--menu-top:hover, .nav-link--active .link--menu-top:active {
    background-color: #fff;
    color: #005eb8;
  }
  
  .dropdown-box {
    display: none;
  }
  
  .category-list {
    border: 1px solid #000;
    border-top: none;
  }
  
  .category-list__item:not(:last-child) {
    border-bottom: 1px solid #000;
  }
  
  .category-list__item a {
    color: #000;
    display: block;
    text-align: left;
  }
  
  .category-list__item.selected-category a {
    background-color: #ed8b00;
    color: #fff;
  }
  
  .link--footer, .cart-item-details-name, .link--standard {
    color: #000;
  }
  
  .link {
    display: table;
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 800;
    font-style: normal;
    padding: 8px 4px;
    position: relative;
    text-transform: uppercase;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  
  .link:active, .product-list-link:active {
    background-color: #ed8b00;
    color: #fff;
  }
  
  .link:before, .product-list-link:before {
    background-color: #000;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  
  .link--menu-top:before {
    background-color: #fff;
  }
  
  .link:after, .product-list-link:after {
    background-color: #ed8b00;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    width: 0;
  }
  
  .link:hover:after, .product-list-link:hover:after {
    width: 100%;
  }
  
  .nav-link--active .link:after {
    background-color: #fff;
  }
  
  .section {
    border-bottom: 1px solid #000;
  }

  .section--no-border {
    border-bottom: none;
  }
  
  .break-flex {
    display: block;
  }
  
  .extra-pad {
    display: block;
  }
  
  .text-centre {
    text-align: center;
  }
  
  .input-holder {
    background-color: #000;
    position: relative;
  }
  
  .input-holder:before {
    background-color: #f3f0ea;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    top: left;
    transition: 0.3s ease-out;
    width: 0;
  }
  
  .input-holder--focused:before {
    width: 100%;
  }
  
  .footer-nav {
    position: relative;
  }
  
  .social-links {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .social-links__item {
    float: left;
    width: 40px;
  }
  
  .bold {
    font-weight: 700;
  }
  
  .visually-hidden {
    -moz-clip: rect(0 0 0 0);
    -webkit-clip: rect(0 0 0 0);
    clip: rect(0 0 0 0);
    -moz-clip-path: inset(50%);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; 
    width: 1px;
  }

  .background-blue {
    background-color: #005eb8;
  }

  .colour-white {
    color: #fff;
  }

  .abc-sessions {
    background-attachment: fixed;
    background-image: url(../images/abc-bg-photo_1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .intro {
    background-attachment: fixed;
    background-image: url(../images/abc-bg-photo_2.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .grid {
    display: grid;
  }

  .padding-top-none {
    padding-top: 0 !important;
  }
  
  /* 
  =========================
  BREAKPOINT - SMALL
  ========================= 
  */
  
  header {
    padding: 24px 0;
  }
  
  main {
    padding: 0 0 32px;
  }
  
  footer {
    padding: 0 16px 32px;
  }
  
  aside {
    padding: 0 16px 32px;
  }

  .hero {
    background-color: #000;
    background-image: url(../images/abc_hero-home_narrow.webp);
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56%;
  }
  
  .banner {
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 4px;
  }

  .wrapper {
    margin: auto;
    width: calc(100% - 32px);
  }
  
  .page-title {
    font-size: 4.8rem;
    letter-spacing: -0.1rem;
    line-height: 4rem;
    padding: 8px 0 0;
  }
  
  .page-title--small, .page-title__sub, .sub-title {
    font-size: 3.6rem;
    line-height: 3.2rem;
  }
  
  .page-title__sub { 
    margin-top: 8px;
    padding-top: 8px;
  }
  
  .extra-pad--left-small {
    padding-left: 8px;
  }
  
  .extra-pad--right-small {
    padding-right: 8px;
  }

  .extra-pad--bottom-small {
    padding-bottom: 8px;
  }
  
  .margin-top-min {
    margin-top: 8px;
  }
  
  h3 {
    font-size: 2.4rem;
    line-height: 2rem;
    margin-top: 24px;
  }
  
  p {
    font-size: 1.6rem;
    line-height: 2rem;
    padding-top: 16px;
  }
  
  .product-price {
    margin-top: 8px;
  }
  
  .product-description ul, .contact-errors {
    font-size: 1.6rem;
    line-height: 2rem;
    padding-top: 8px;
  }
  
  .product-description li, .contact-errors li {
    padding-top: 8px;
  }
  
  .product-description ul li, .contact-errors li {
    padding-left: 16px;
  }
  
  .product-description ul li:before, .contact-errors li:before {
    background-color: #ed8b00;
    border-radius: 50%;
    content: "";
    display: block;
    height: 8px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 8px;
  }
  
  .product-form {
    padding-top: 24px;
  }
  
  th, td {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 8px;
  }
  
  .logo {
    width: 80px;
    height: 40px;
  }
  
  .button--icon {
    height: 40px;
    width: 40px;
  }
  
  .button--burger {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .button--close-menu {
    right: 16px;
    top: 24px;
  }
  
  .button--cta {
    border-radius: 8px;
    font-size: 2rem;
    line-height: 1.6rem;
    padding: 8px 24px;
  }
  
  .button--cta:not(.margin-top-min) {
    margin-top: 32px;
  }
  
  .button--margin-small {
    margin-top: 16px;
  }
  
  .button--dropdown {
    font-size: 1.6rem;
    line-height: 1.2rem;
    margin-top: 24px;
    padding: 14px 8px;
  }
  
  .button--select {
    height: calc(1.2rem + 30px);
    padding: 0;
  }
  
  .dropdown-box--padded {
    padding-top: 16px;
  }
  
  select {
    font-size: 1.6rem;
    line-height: 1.2rem;
    padding-left: 8px;
  }
  
  .button--dropdown__square {
    width: calc(1.2rem + 28px);
  }
  
  .menu {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 100vh;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    width: 100%;
    z-index: 1000;
  }
  
  .menu--open {
    top: 0;
  }
  
  .nav--top {
    padding: 24px 16px;
  }
  
  .nav--top__item {
    margin-bottom: 16px;
  }
  
  .link--menu-top {
    font-size: 2.4rem;
    line-height: 2rem;
  }
  
  .category-list__item a {
    font-size: 1.6rem;
    line-height: 1.2rem;
    padding: 14px 8px;
  }
  
  .link--footer, .cart-item-details-name, .link--standard {
    font-size: 1.6rem;
    line-height: 1.2rem;
  }
  
  .link--standard {
    margin-top: 8px;
  }
  
  .section {
    padding-bottom: 32px;
  }
  
  .section--padded {
    padding-top: 32px;
  }
  
  .columns {
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .column {
    display: flex;
    padding: 8px 8px 0;
  }
  
  .column--2-small {
    width: 50%;
  }
  
  .column--4 {
    width: 25%;
  }
  
  .product-photos__focused {
    margin: 24px 0 8px;
  }
  
  .product-list-thumb {
    padding-top: 24px;
  }
  
  .product-list-link {
    display: block;
    padding: 0 0 32px;
    position: relative;
  }
  
  .product-list-thumb-info {
    padding-top: 8px;
  }
  
  .product-list-thumb-name {
    font-size: 2.4rem;
    line-height: 2rem;
  }
  
  .product-list-thumb-price {
    bottom: 0;
    display: block;
    font-size: 1.6rem;
    left: 0;
    line-height: 2rem;
    padding-bottom: 8px;
    position: absolute;
    width: 100%;
  }
  
  .product-description {
    margin-top: 24px;
  }
  
  .contact-form {
    margin-top: 32px;
  }
  
  .contact-form-block:not(:first-child) {
    margin-top: 24px;
  }
  
  .input-holder {
    margin-top: 8px;
  }
  
  label {
    font-size: 1.6rem;
    line-height: 1.2rem;
    padding: 0 8px;
  }
  
  input[type="text"], textarea {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 8px;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    width: 100%;
  }
  
  .input-holder--quantity {
    width: 4.8rem;
  }
  
  .footer-links__item:not(:first-child) {
    margin-top: 8px;
  }
  
  .social-links {
    width: 136px;
  }
  
  .social-links__item:not(:last-child) {
    margin-right: 8px;
  }

  .margin-top-standard {
    margin-top: 32px;
  }

  .margin-top-half {
    margin-top: 16px;
  }

  .margin-top-extra {
    margin-top: 40px;
  }
  
  .credit {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-top: 1.6rem;
  }
  
  .hide {
    display: none;
  }

  .grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
  }

  .grid--2-col-s {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* 
  =========================
  BREAKPOINT - MEDIUM
  ========================= 
  */
  
  @media (min-width: 752px) {
  
    header {
      padding: 32px 0;
    }
  
    main {
      padding: 0 0 40px;
    }
  
    footer {
      padding: 0 24px 40px;
    }
  
    aside {
      padding: 0 24px 40px;
    }

    .hero {
      background-image: url(../images/abc_hero-home_wide.webp);
      background-size: cover;
      padding-top: 55%;
      position: relative;
    }

    .hero__text {
      left: 24px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: calc(50% - 48px);
    }

    .wrapper {
      width: calc(100% - 48px);
    }
  
    .banner {
      font-size: 1.6rem;
      line-height: 2rem;
      padding: 8px;
    }
  
    .page-title {
      font-size: 5.6rem;
      line-height: 5.2rem;
      padding: 16px 0 0;
    }
  
    .page-title--small, .page-title__sub, .sub-title {
      font-size: 4rem;
      line-height: 3.6rem;
    }
  
    .page-title__sub { 
      margin-top: 16px;
      padding-top: 16px;
    }
  
    h3 {
      font-size: 2.8rem;
      line-height: 2.4rem;
      margin-top: 32px;
    }
  
    p {
      font-size: 2rem;
      line-height: 2.4rem;
      padding-top: 24px;
    }
  
    .extra-pad--left-medium {
      padding-left: 16px;
    }
  
    .extra-pad--right-medium {
      padding-right: 16px;
    }
  
    .extra-pad--none-left-medium {
      padding-left: 0;
    }
  
    .extra-pad--none-right-medium {
      padding-right: 0;
    }

    .extra-pad--bottom-medium {
      padding-bottom: 16px;
    }
    
    .margin-top-min {
      margin-top: 16px;
    }
  
    .product-description ul, .contact-errors {
      font-size: 2rem;
      line-height: 2.4rem;
      padding-top: 16px;
    }
  
    .product-description li, .contact-errors li {
      padding-top: 16px;
    }
  
    .product-description ul li:before, .contact-errors li:before {
      top: 24px;
    }
  
    .product-form {
      padding-top: 32px;
    }
  
    th, td {
      font-size: 2rem;
      line-height: 2.4rem;
    }
  
    .logo {
      height: 56px;
    }
  
    .button--icon {
      height: 48px;
      width: 48px;
    }
  
    .button--close-menu {
      right: 24px;
      top: 32px;
    }
  
    .button--cta {
      border-radius: 16px;
      font-size: 2.4rem;
      line-height: 2rem;
      padding: 16px 32px;
    }
  
    .button--cta:not(.margin-top-min) {
      margin-top: 40px;
    }
  
    .button--margin-small {
      margin-top: 24px;
    }
  
    .button--dropdown {
      font-size: 2rem;
      line-height: 1.6rem;
      margin-top: 32px;
      padding: 16px 16px;
    }
  
    .button--select {
      height: calc(1.6rem + 34px);
      padding: 0;
    }
  
    .dropdown-box--padded {
      padding-top: 24px;
    }
  
    select {
      font-size: 2rem;
      line-height: 1.6rem;
      padding-left: 16px;
    }
  
    .button--dropdown__square {
      width: calc(1.6rem + 32px);
    }
  
    .button--basket {
      right: 56px;
    }
  
    .nav--top {
      padding: 32px 24px;
    }
  
    .nav--top__item {
      margin-bottom: 24px;
    }
  
    .link--menu-top {
      font-size: 2.8rem;
      line-height: 2.4rem;
    }
  
    .category-list__item a {
      font-size: 2rem;
      line-height: 1.6rem;
      padding: 18px 16px;
    }
  
    .link--footer, .cart-item-details-name, .link--standard {
      font-size: 2rem;
      line-height: 1.6rem;
    }
  
    .link--standard {
      margin-top: 16px;
    }
  
    .section {
      padding-bottom: 40px;
    }
  
    .section--padded {
      padding-top: 40px;
    }
  
    .columns {
      margin-left: -12px;
      margin-right: -12px;
    }
  
    .column {
      padding: 12px 12px 0;
    } 
  
    .column--2-medium {
      width: 50%;
    }
  
    .column--3-medium {
      width: 33.33%;
    }
  
    .column--3x2-medium {
      width: 66.67%;
    }
  
    .product-photos__focused {
      margin: 32px 0 8px;
    }
  
    .product-list-thumb {
      padding-top: 32px;
    }
  
    .product-list-link {
      display: block;
      padding: 0 0 48px;
      position: relative;
    }
  
    .product-list-thumb-info {
      padding-top: 16px;
    }
  
    .product-list-thumb-name {
      font-size: 2.8rem;
      line-height: 2.4rem;
    }
  
    .product-list-thumb-price {
      font-size: 2rem;
      line-height: 2.4rem;
      padding-bottom: 16px;
  }
  
    .product-description {
      margin-top: 32px;
    }
  
    .contact-form {
      margin-top: 40px;
    }
  
    .contact-form-block:not(:first-child) {
      margin-top: 32px;
    }
  
    .input-holder {
      margin-top: 16px;
    }
  
    label {
      font-size: 2rem;
      line-height: 1.6rem;
    }
  
    input[type="text"], textarea {
      font-size: 2rem;
      line-height: 2.4rem;
    }
  
    .cart-item {
      margin-top: 32px;
    }
  
    .cart-item {
      padding-top: 32px;
    }
  
    .cart-item-image {
      margin-right: 24px;
      width: 160px;
    }
  
    .cart-item__text {
      width: calc(100% - 184px);
    }
  
    .cart-footer {
      padding-top: 32px;
    }
  
    .cart-totals {
      padding: 16px 0 24px;
    }
  
    .cart-footer-buttons {
      padding: 24px 0 32px;
    }
  
    .input-holder--quantity {
      width: 6.4rem;
    }
  
    .footer-links__item:not(:first-child) {
      margin-top: 16px;
    }
  
    .social-links {
      width: 160px;
    }
    
    .social-links__item {
      width: 48px;
    }
  
    .hide-medium {
      display: none;
    }
    
    .show-medium {
      display: block;
    }

    .margin-top-standard {
      margin-top: 40px;
    }

    .margin-top-half {
      margin-top: 24px;
    }

    .margin-top-extra {
      margin-top: 48px;
    }
  
    .credit {
      margin-top: 2.4rem;
    }

    .grid {
      grid-row-gap: 24px;
      grid-column-gap: 24px;
    }

    .grid--2-col-s {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid--2-col-m {
      grid-template-columns: repeat(2, 1fr);
    }

    .abc-mixtape__text-wrapper {
      position: relative;
    }

    .abc-mixtape__text {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
    }
    
  }
  
  /* 
  =========================
  BREAKPOINT - L
  ========================= 
  */
  
  @media (min-width: 1000px) {

    .grid--5-col-l {
      grid-template-columns: repeat(5, 1fr);
    }

  }
  
  /* 
  =========================
  BREAKPOINT - XL
  ========================= 
  */
  
  @media (min-width: 1280px) {
  
    header {
      padding: 40px 0;
    }
  
    main {
      padding: 0 0 48px;
    }
  
    footer {
      padding: 0 32px 48px;
    }
  
    aside {
      padding: 0 32px 48px;
    }

    .hero__text {
      left: 32px;
      width: calc(50% - 64px);
    }
  
    .wrapper {
      width: 1200px;
    }
  
    /* .banner {
      font-size: 2.4rem;
      line-height: 2.8rem;
      padding: 24px;
    } */
  
    .page-title {
      font-size: 8rem;
      line-height: 7.2rem;
      padding: 24px 0 0;
    }
  
    .page-title--small, .page-title__sub, .sub-title {
      font-size: 4.8rem;
      line-height: 4.4rem;
    }
  
    .page-title__sub { 
      margin-top: 24px;
      padding-top: 24px;
    }
  
    h3 {
      font-size: 3.2rem;
      line-height: 2.8rem;
      margin-top: 40px;
    }
  
    p {
      font-size: 2.4rem;
      line-height: 2.8rem;
      padding-top: 32px;
    }
  
    .extra-pad--left-medium {
      padding-left: 24px;
    }
  
    .extra-pad--right-medium {
      padding-right: 24px;
    }

    .extra-pad--bottom-medium {
      padding-bottom: 24px;
    }
    
    .margin-top-min {
      margin-top: 24px;
    }
  
    .product-description ul, .contact-errors {
      font-size: 2.4rem;
      line-height: 2.8rem;
      padding-top: 24px;
    }
  
    .product-form {
      padding-top: 40px;
    }
  
    th, td {
      font-size: 2.4rem;
      line-height: 2.8rem;
    }
  
    .logo {
      height: 112px;
      width: 160px;
    }
  
    .button--close-menu {
      display: none;
    }
  
    .button--cta {
      font-size: 2.8rem;
      line-height: 2.4rem;
      padding: 16px 40px;
    }
  
    .button--cta:not(.margin-top-min) {
      margin-top: 48px;
    }
  
    .button--margin-small {
      margin-top: 32px;
    }
  
    .button--dropdown {
      font-size: 2.4rem;
      line-height: 2rem;
      margin-top: 40px;
      padding: 18px 16px;
    }
  
    .button--select {
      height: calc(2rem + 36px);
      padding: 0;
    }
  
    .dropdown-box--padded {
      padding-top: 32px;
    }
  
    .menu {
      float: right;
      height: auto;
      left: auto;
      position: absolute;
      right: 0;
      top: 72px;
      width: calc(100% - 152px);
      z-index: initial;
    }
  
    .nav--top {
      background-color: transparent;
      display: table;
      position: absolute;
      right: 0;
      top: 0;
    }
  
    .nav--top ul {
      float: right;
      width: 100%;
    }
  
    .nav--top__item {
      display: table;
      float: left;
      margin-left: 16px;
    }
  
    .link--menu-top {
      color: #005eb8;
    }
    
    .link--menu-top:before {
      background-color: #005eb8;
    }
    
    .nav-link--active .link--menu-top, .nav-link--active .link--menu-top:hover, .nav-link--active .link--menu-top:active, .nav-link--active .link--menu-top:before, .nav-link--active .link--menu-top:after {
      background-color: #005eb8;
      color: #fff;
    }
  
    .button--burger {
      display: none;
    }
  
    select {
      font-size: 2.4rem;
      line-height: 2rem;
    }
  
    .button--dropdown__square {
      width: calc(1.6rem + 36px);
    }
  
    .button--basket {
      right: 0;
    }
  
    .nav--top {
      padding: 0;
    }
  
    .nav--top__item {
      margin-bottom: 0;
    }
  
    .category-list__item a {
      font-size: 2.8rem;
      line-height: 2.4rem;
      padding: 20px 8px;
    }
  
    .link--footer, .cart-item-details-name, .link--standard {
      font-size: 2.4rem;
      line-height: 2rem;
    }
  
    .link--standard {
      margin-top: 24px;
    }
  
    .section {
      padding-bottom: 48px;
    }
  
    .section--padded {
      padding-top: 48px;
    }
  
    .columns {
      margin-left: -16px;
      margin-right: -16px;
    }
  
    .column {
      padding: 16px 16px 0;
    } 
  
    .product-photos__focused {
      margin: 40px 0 8px;
    }
  
    .product-list-thumb {
      padding-top: 40px;
    }
  
    .product-list-link {
      padding: 0 0 64px;
    }
  
    .product-list-thumb-info {
      padding-top: 24px;
    }
  
    .product-list-thumb-name {
      font-size: 3.2rem;
      line-height: 2.8rem;
    }
  
    .product-list-thumb-price {
      font-size: 2.4rem;
      line-height: 2.8rem;
      padding-bottom: 24px;
  }
  
    .product-description {
      margin-top: 40px;
    }
  
    .contact-form {
      margin-top: 48px;
    }
  
    .contact-form-block:not(:first-child) {
      margin-top: 40px;
    }
  
    /* .input-holder {
      margin-top: 16px;
    } */
  
    label {
      font-size: 2.4rem;
      line-height: 2rem;
    }
  
    input[type="text"], textarea {
      font-size: 2.4rem;
      line-height: 2.8rem;
    }
  
    .cart-item {
      margin-top: 40px;
    }
  
    .cart-item {
      padding-top: 40px;
    }
  
    .cart-item-image {
      margin-right: 32px;
      width: 200px;
    }
  
    .cart-item__text {
      width: calc(100% - 232px);
    }
  
    .cart-footer {
      padding-top: 40px;
    }
  
    .cart-totals {
      padding: 16px 0 32px;
    }
  
    .cart-footer-buttons {
      padding: 32px 0 40px;
    }
  
    .input-holder--quantity {
      width: 7.2rem;
    }
  
    .social-links {
      width: 160px;
    }

    .margin-top-standard {
      margin-top: 48px;
    }

    .margin-top-half {
      margin-top: 32px;
    }

    .margin-top-extra {
      margin-top: 64px;
    }
  
    .credit {
      margin-top: 3.2rem;
    }

    .grid {
      grid-row-gap: 32px;
      grid-column-gap: 32px;
    }
    
  }