/* Media query variables */
/* Colours */
/* shadows */
/** Shopping Bag */
.bag {
  /** all this needs moving into the scss structure above **/
}
.bag .container {
  max-width: 1000px;
}
.bag h1 {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .bag .bagLines,
  .bag .bagSearchLines {
    margin-top: -5px;
    margin-bottom: 15px;
  }
}
.bag .bagLines h2,
.bag .bagSearchLines h2 {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .bag .bagLines h2,
  .bag .bagSearchLines h2 {
    margin-bottom: 0;
  }
}
.bag .bagLines > div,
.bag .bagSearchLines > div {
  display: grid;
}
.bag .bagLines > div select,
.bag .bagSearchLines > div select {
  width: 72px;
}
.bag .bagLines > div .product-image,
.bag .bagSearchLines > div .product-image {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .bag .bagLines > div,
  .bag .bagSearchLines > div {
    grid-template-columns: 5fr 3fr 3fr;
    grid-column-gap: 20px;
  }
  .bag .bagLines > div.basketline,
  .bag .bagSearchLines > div.basketline {
    border-bottom: 1px solid #1f1f1f;
    padding: 20px 0;
  }
  .bag .bagLines > div.basketline:first-of-type,
  .bag .bagSearchLines > div.basketline:first-of-type {
    margin-top: -20px;
    background: red;
  }
  .bag .bagLines > div.basketline:last-of-type,
  .bag .bagSearchLines > div.basketline:last-of-type {
    margin-bottom: 20px;
  }
  .bag .bagLines > div.header,
  .bag .bagSearchLines > div.header {
    display: none;
  }
  .bag .bagLines > div .product-details,
  .bag .bagSearchLines > div .product-details {
    grid-column: 2/4;
  }
  .bag .bagLines > div .product-quantity,
  .bag .bagSearchLines > div .product-quantity {
    grid-column: 1;
    grid-row: 4;
  }
  .bag .bagLines > div .product-quantity a.remove-btn,
  .bag .bagSearchLines > div .product-quantity a.remove-btn {
    display: none;
  }
  .bag .bagLines > div .item-price,
  .bag .bagSearchLines > div .item-price {
    grid-column: 2;
    grid-row: 4;
  }
  .bag .bagLines > div .line-total,
  .bag .bagSearchLines > div .line-total {
    grid-column: 3;
    grid-row: 4;
  }
  .bag .bagLines > div .mobile-header-divider,
  .bag .bagSearchLines > div .mobile-header-divider {
    grid-column: 1/4;
    grid-row: 2;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
  }
  .bag .bagLines > div .mobile-header-quantity,
  .bag .bagSearchLines > div .mobile-header-quantity {
    grid-column: 1;
    grid-row: 3;
  }
  .bag .bagLines > div .mobile-header-price,
  .bag .bagSearchLines > div .mobile-header-price {
    grid-column: 2;
    grid-row: 3;
  }
  .bag .bagLines > div .mobile-header-item-total,
  .bag .bagSearchLines > div .mobile-header-item-total {
    grid-column: 3;
    grid-row: 3;
  }
}
@media only screen and (min-width: 768px) {
  .bag .bagLines > div,
  .bag .bagSearchLines > div {
    grid-template-columns: 5fr 7fr 3fr 5fr 3fr;
    grid-column-gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 992px) {
  .bag .bagLines > div,
  .bag .bagSearchLines > div {
    grid-template-columns: 4fr 7fr 3fr 4fr 3fr;
  }
}
@media only screen and (min-width: 768px) {
  .bag .bagLines > div.header,
  .bag .bagSearchLines > div.header {
    border-bottom: 1px solid #1f1f1f;
  }
  .bag .bagLines > div.header .desktop-header-product,
  .bag .bagSearchLines > div.header .desktop-header-product {
    grid-column: 1/3;
  }
  .bag .bagLines > div.header .desktop-header-price,
  .bag .bagSearchLines > div.header .desktop-header-price {
    grid-column: 3;
    text-align: right;
  }
  .bag .bagLines > div.header .desktop-header-quantity,
  .bag .bagSearchLines > div.header .desktop-header-quantity {
    grid-column: 4;
  }
  .bag .bagLines > div.header .desktop-header-item-total,
  .bag .bagSearchLines > div.header .desktop-header-item-total {
    grid-column: 5;
    text-align: right;
  }
  .bag .bagLines > div.basketline,
  .bag .bagSearchLines > div.basketline {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .bag .bagLines > div.basketline .item-price,
  .bag .bagSearchLines > div.basketline .item-price {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    align-self: center;
    font-weight: 600;
  }
  .bag .bagLines > div.basketline .product-quantity,
  .bag .bagSearchLines > div.basketline .product-quantity {
    grid-column: 4;
    grid-row: 1;
    align-self: center;
  }
  .bag .bagLines > div.basketline .product-quantity button.remove-btn,
  .bag .bagSearchLines > div.basketline .product-quantity button.remove-btn {
    display: none;
  }
  .bag .bagLines > div.basketline .line-total,
  .bag .bagSearchLines > div.basketline .line-total {
    text-align: right;
    font-weight: 600;
    align-self: center;
  }
  .bag .bagLines > div.basketline .mobile-header,
  .bag .bagSearchLines > div.basketline .mobile-header {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .bag .bagFooter {
    margin: 15px -20px;
    padding: 0 20px;
    background: #f1f1f1;
  }
}
@media only screen and (min-width: 768px) {
  .bag .bagFooter,
  .bag .product-actions {
    display: grid;
    grid-template-columns: 5fr 7fr 3fr 5fr 3fr;
    grid-column-gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 992px) {
  .bag .bagFooter,
  .bag .product-actions {
    grid-template-columns: 4fr 7fr 3fr 4fr 3fr;
  }
}
@media only screen and (min-width: 768px) {
  .bag .bagFooter .total-box,
  .bag .bagFooter .payment-option-container,
  .bag .product-actions .total-box,
  .bag .product-actions .payment-option-container {
    grid-column: 4/6;
  }
  .bag .bagFooter .continue-link,
  .bag .product-actions .continue-link {
    grid-column: 1;
    grid-row: 1;
  }
}
.bag .title {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  width: 100%;
  display: block;
  margin: 10px 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .bag .title {
    font-size: 30px;
    margin: 0 0 25px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .bag .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .bag hr {
    border-top: 1px solid #1f1f1f;
  }
  .bag div.mobile-header {
    margin-bottom: 15px;
  }
  .bag div.mobile-header hr {
    border-top: 1px solid #eeeeee;
    margin-bottom: 0;
  }
  .bag .product-image,
  .bag .product-quantity {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .bag .basketline .price {
    margin-top: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .bag .header div {
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .bag .header div {
    padding-bottom: 14px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .bag .header hr {
    border-top: 1px solid #1f1f1f;
    margin: 0;
  }
  .bag hr {
    margin: 10px 0;
  }
  .bag .basketline .link {
    text-decoration: underline;
    padding-left: 10px;
    font-size: 12px;
  }
}
.bag .product-title {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .bag .product-title {
    font-size: 14px;
  }
}
.bag .product-description {
  font-size: 12px;
  line-height: 20px;
}
.bag .product-info {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #1f1f1f;
}
.bag .product-info-item span {
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
.bag .product-info-item input {
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  font-size: 12px;
  border-radius: 3px;
  text-align: center;
}
.bag button.remove-btn {
  float: right;
}
.bag div.product-promo-code {
  padding: 20px 0 40px 0;
}
.bag div.product-promo-code input {
  width: 60%;
  height: 44px;
  color: #666;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  padding-left: 10px;
}
.bag div.product-promo-code button {
  float: right;
}
.bag div.product-promo-code #promoCodeForm {
  margin-bottom: 10px;
}
.bag div.product-promo-code ul.active-codes:empty {
  display: none;
}
.bag div.product-promo-code ul.active-codes {
  margin-left: 10px;
  text-transform: capitalize;
}
.bag div.product-promo-code ul.active-codes li {
  margin-top: 5px;
}
.bag div.product-promo-code ul.active-codes li span {
  margin-right: 10px;
  font-size: 80%;
}
.bag div.product-promo-code ul.active-codes li span, .bag div.product-promo-code ul.active-codes li small {
  color: #666;
}
.bag .total-box {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .bag .total-box {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.bag .total-box .line {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.bag .total-box .line select {
  width: 70%;
  background-color: #fff;
}
.bag .total-box .content {
  text-align: right;
  /*width: 30%;*/
  float: right;
  font-size: 12px;
  font-weight: 600;
  color: #1f1f1f;
}
.bag .total-box .line.subtotal .column,
.bag .total-box .line.ioss-vat .column {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: #666;
}
@media only screen and (min-width: 1200px) {
  .bag .total-box .line.subtotal .column,
  .bag .total-box .line.ioss-vat .column {
    font-size: 14px;
  }
}
.bag .total-box .line.price .content {
  padding-top: 10px;
}
.bag .total-box .line.total {
  border-top: 1px solid #1f1f1f;
  padding: 24px 0 0 0;
  line-height: 20px;
  clear: both;
}
.bag .total-box .line.total .column,
.bag .total-box .line.total .content {
  font-weight: 600;
  font-size: 18px;
}
.bag .total-box .line.total .currency-name {
  font-weight: 600;
  font-size: 14px;
}
.bag .total-box .line.total .change-currency {
  font-size: 12px;
  text-align: right;
}
.bag .product-actions {
  margin-top: 30px;
  margin-bottom: 30px;
}
.bag .product-actions button, .bag .product-actions #paypal-button {
  margin-bottom: 20px;
}
.bag .btn-paypal {
  background: #f1f1f1;
  border-bottom: 3px solid #c1c1c1;
  color: #263b80;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.bag .btn-paypal:hover {
  background: #e7e7e7;
  border-bottom: 3px solid #b7b7b7;
}

.sell #sell_details_form_description,
.sell #sell_details_form_freeform {
  height: 100px;
}
.sell .bag .container {
  max-width: 700px;
}
.sell .bag .container div {
  text-align: left;
}

main.flashes .container {
  max-width: 1000px;
}

/*# sourceMappingURL=basket.output.css.map */
