/* PRODUCT LIST */
section.product-list {
  padding: 90px 5%;
  margin: 0;
}
section.product-list.related-products {
  padding: 0 5%;
  background-color: #fefefe;
}
section.product-list .title-wrapper {
  margin-bottom: 30px;
}
section.product-list .max-width {
  max-width: 1150px;
  margin: 0 auto;
}
div.store-product-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2%;
}
div.store-product-list-item {
  width: 29.333%;
  margin: 2%;
  position: relative;
  padding-bottom: 20px;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  background-size: 4px;
  image-rendering: -moz-crisp-edges;
  padding: 15px;
}
div.store-product-list-item .image {
  position: relative;
  width: 100%;
}
div.store-product-list-item .image a {
  display: block;
  position: relative;
  overflow: hidden;
}
div.store-product-list-item .image a:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #fefefe;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
div.store-product-list-item .image img {
  display: block;
  width: 100%;
  height: auto;
}
div.store-product-list-item .info h2 {
  font-weight: 700;
  font-size: 1.375em;
  line-height: 1em;
}
div.store-product-list-item .info h2 a {
  color: #fafafa;
  transition: all 0.3s;
}
div.store-product-list-item .info p.store-product-price {
  font-size: 1.175em;
}
div.store-product-list-item .image a:after {
  content: '\f0c1';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fafafa;
  z-index: 10;
  font-size: 28px;
  transform: translate(-50%, -100px);
  opacity: 0;
  transition: all 0.3s;
}
div.store-product-list-item:hover .image a:before {
  opacity: 0.5;
}
div.store-product-list-item:hover .image a:after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
div.store-product-list-item:hover .info h2 a {
  color: #f0f0f0;
}
div.store-product-list-item div.list-sharing {
  right: 15px;
  width: calc(70%);
  padding-bottom: 3px;
}
@media screen and (max-width: 900px) {
  div.store-product-list-item {
    width: 46%;
  }
}
@media screen and (max-width: 540px) {
  div.store-product-list-item {
    width: 96%;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0 none;
    background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
    background-size: 4px;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
  }
  div.store-product-list-item .image {
    width: 100px;
    image-rendering: auto;
  }
  div.store-product-list-item .info {
    width: calc(100% - 100px);
    padding-left: 10px;
  }
  div.store-product-list-item .info h2 {
    font-size: 1.175em;
    margin: 0 0 10px 0;
  }
  div.store-product-list-item .info p.store-product-price {
    margin: 0;
  }
  div.store-product-list-item div.list-sharing {
    right: 10px;
  }
  div.store-product-list-item div.list-sharing-icon {
    background: transparent;
  }
  section.product-list {
    padding: 45px 5%;
  }
}
/* PRODUCT PAGE */
section.product {
  margin: 45x 0;
  padding: 45px 5%;
}
section.product .max-width {
  margin: 0 auto;
  max-width: 1150px;
}
section.product .wrapper {
  display: flex;
  flex-direction: row-reverse;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  background-size: 4px;
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
  padding: 20px;
}
.store-product-details {
  padding: 10px 0 10px 5%;
}
section.product .wrapper .col {
  flex: 0 0 50%;
}
.col7 {
  flex: 0 0 70%;
}
.col6 {
  flex: 0 0 60%;
}
.col4 {
  flex: 0 0 40%;
}
.col3 {
  flex: 0 0 30%;
}
div.store-product-primary-image a {
  display: block;
}
div.store-product-primary-image a img {
  display: block;
  width: 100%;
  height: auto;
}
ul.store-product-bullets {
  list-style: none;
  display: flex;
  margin: 20px 0;
  justify-content: center;
}
ul.store-product-bullets .bullet {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #f0f0f0;
  margin: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
ul.store-product-bullets .bullet:hover,
ul.store-product-bullets .bullet.selected {
  background: #fafafa;
}
ul.store-product-bullets .bullet.selected {
  transform: scale(1.3);
}
.image-viewer {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
}
.image-viewer .image-wrapper {
  display: flex;
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.view-image a {
  display: block;
  position: relative;
  cursor: zoom-in;
  transition: all 0.3s;
}
.view-image a:after {
  content: '\f00e';
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: 'Font Awesome 5 Pro';
  color: #fafafa;
  background: rgba(254, 254, 254, 0.4);
  opacity: 0;
  transition: all 0.3s;
  font-size: 24px;
}
.view-image a:hover:after {
  opacity: 1;
}
.image-viewer img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
}
section.product .store-product-description {
  padding: 10px 0 20px 0;
}
section.product .store-product-button {
  margin: 30px 0 0 0;
}
h1.store-product-name {
  font-size: 2em;
  margin-top: 0;
}
h1.store-product-name:after {
  left: 0;
  transform: none;
}
section.product p.store-product-price {
  color: #fafafa;
  font-size: 2em;
  font-weight: 700;
}
div.store-product-options {
  display: flex;
  padding: 10px 10px 20px 10px;
  background-color: #ffffff;
  width: min-content;
}
div.store-product-quantity,
div.store-product-option-group {
  margin: 0 10px;
  width: 150px;
}
.store-product-block input[type="number"] {
  padding: 14px;
  height: 47px;
}
@media screen and (max-width: 900px) {
  section.product .wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  section.product .store-product-image {
    width: 100%;
    max-width: 400px;
  }
  section.product .store-product-details {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  div.store-product-options {
    padding: 0;
    background-color: transparent;
    flex-direction: column;
  }
  div.store-product-quantity,
  div.store-product-option-group {
    margin: 10px 0;
  }
}
/* UTILITY LINKS */
div.utility-links {
  position: absolute;
  right: 0;
  top: 0;
}
div.store-utility-links {
  display: flex;
}
a.store-utility-links-bag {
  position: relative;
  height: 48px;
  display: flex;
  align-items: flex-end;
}
a.store-utility-links-bag i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  font-size: 36px;
  color: #ffffff;
}
a.store-utility-links-bag span.total {
  position: absolute;
  top: 21px;
  right: 16px;
  font-weight: 700;
  text-align: center;
  transform: translateX(50%);
  color: #fafafa;
  font-size: 1em;
}
a.store-utility-links-bag span.label {
  font-weight: 700;
  margin-right: 40px;
  padding-bottom: 6px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
}
/* CART MODAL */
.store-whiteout {
  z-index: 1200;
}
.store-modal-exit {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fafafa;
  transition: all 0.3s;
  top: 5px;
  font-size: 32px;
}
.store-modal-exit:hover {
  color: #f0f0f0;
}
.store-whiteout {
  background: rgba(254, 254, 254, 0.4);
}
.store-product-modal,
.store-cart-modal {
  background: #ffffff;
  padding-right: 40px;
}
h3.cart-title {
  text-transform: uppercase;
}
.cart-headings,
.store-cart-page-cart-list-item {
  display: grid;
  grid-template-columns: [first] 60px [line2] auto [line3] 80px [line4] 60px [line5] 48px [end];
  margin: 10px 0px;
  position: relative;
}
/* Slightly different for checkout page cart */
.store-checkout-cart-contents .store-cart-page-cart-list-item,
.store-checkout-cart-contents .cart-headings {
  grid-template-columns: [first] 60px [line2] auto [line3] 80px [line4] 40px[end];
}
.store-cart-page-cart-list-item:nth-of-type(even) {
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  background-size: 4px;
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
}
.cart-headings .heading {
  color: #fafafa;
  font-weight: 700;
  height: 20px;
}
.cart-list-thumb a {
  display: block;
}
.cart-list-thumb a img {
  display: block;
  image-rendering: auto;
  width: 100%;
  height: auto;
}
.store-cart-page-cart-list-item .product-name {
  padding: 10px;
  line-height: 1.2em;
}
div.store-cart-list-item-attribute {
  font-size: 13px;
}
span.store-cart-list-item-attribute-label {
  color: #52585e;
}
span.store-cart-list-item-attribute-value {
  color: #fafafa;
}
.store-cart-page-cart-list-item .price,
.store-cart-page-cart-list-item .qty,
.store-cart-page-cart-list-item .product {
  display: flex;
  align-items: center;
}
.store-cart-page-cart-list-item .price span {
  color: #52585e;
}
.store-cart-page-cart-list-item input {
  border: none;
  border-radius: 3px;
  transition: all 0.3s;
  font-size: 16px;
  color: #52585e;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background: #3c4751;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  font-family: 'Rajdhani', sans-serif;
  padding: 5px;
}
.store-cart-page-cart-list-item .qty input {
  width: 60px;
}
.store-cart-page-cart-list-item .store-cart-list-remove-button {
  position: relative;
}
.store-cart-page-cart-list-item .store-cart-list-remove-button a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
  transition: all 0.3s;
}
.store-cart-page-cart-list-item .store-cart-list-remove-button a:hover {
  color: #fafafa;
}
.form-button {
  background-color: #f0f0f0;
  border: 0px;
  color: #fafafa !important;
  padding: 10px 20px 10px 20px;
  display: inline-block;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px 4px;
  outline: 0 !important;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  -webkit-appearance: none;
}
.form-link {
  margin-right: 20px;
  transition: all 0.3s;
}
.form-link:hover {
  color: #fafafa;
}
button.update {
  border: 0px;
  background: transparent;
  color: #f0f0f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1em;
  transition: all 0.3s;
}
button.update:hover {
  color: #fafafa;
  cursor: pointer;
}
button.update i {
  font-size: 1.25em;
  margin-right: 5px;
  transition: all 0.3s;
}
p.alert {
  padding: 10px;
  border-radius: 5px;
  color: #fafafa;
  line-height: 1.2em;
}
p.alert-success {
  background-color: #a7ce1b;
}
p.alert-warning {
  background-color: #af0000;
}
p.alert-info {
  background-color: #f4b829;
}
.store-cart-grand-total-value {
  font-size: 1.375em;
  color: #fafafa;
  font-weight: 700;
}
.flex-center {
  display: flex;
  justify-content: center;
}
.flex-right {
  display: flex;
  justify-content: flex-end;
}
.flex-left {
  display: flex;
}
@media screen and (max-width: 640px) {
  .store-cart-page-cart .store-cart-page-cart-list-item {
    grid-template-columns: [first] 60px [line2] auto [line3] 80px [line4] 60px [line5] 48px [end];
    grid-template-rows: [row1-start] auto [row1-end] auto [row2-start] auto [row2-end] auto;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.thumbnail {
    grid-column-start: 1;
    transform: translateY(10px);
    margin-left: 10px;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.product {
    grid-column-start: 2;
    grid-column-end: span line5;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.price {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-column-end: span 3;
    padding-left: 10px;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.price span {
    color: #fafafa;
    font-size: 14px;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.price span:before {
    content: 'Price: ';
    color: #52585e;
    margin-right: 5px;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.qty {
    grid-row-start: 2;
    grid-column-start: 4;
    padding: 10px;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item div.qty:before {
    content: 'Qty:';
    color: #52585e;
    margin-right: 5px;
    font-size: 14px;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item .store-cart-list-remove-button {
    grid-row-start: 1;
    grid-column-start: line5;
  }
  .store-cart-page-cart .store-cart-page-cart-list-item .store-cart-list-remove-button a {
    width: 36px;
    height: 36px;
    left: auto;
    right: 0;
  }
  .store-cart-page-cart div.cart-headings {
    display: none;
  }
  div.store-cart-list-item-attribute {
    font-size: 14px;
  }
  .store-product-modal,
  .store-cart-modal {
    padding-right: 20px;
  }
}
/* CHECKOUT FORM */
.store-checkout-page h1 {
  margin-bottom: 40px;
}
.store-checkout-page h1:after {
  left: 0;
  transform: none;
}
.store-checkout-form-row {
  display: flex;
}
.store-checkout-form-shell {
  padding-right: 5%;
}
.store-checkout-page h2 {
  font-size: 1.625em;
}
default-content .row {
  display: flex;
  flex-wrap: wrap;
}
.col-md-12 {
  width: 100%;
}
.col-md-8 {
  width: 66.666%;
}
.col-md-7 {
  width: 58.333%;
}
.col-md-6 {
  width: 50%;
}
.col-md-5 {
  width: 41.666%;
}
.col-md-4,
.col-sm-4 {
  width: 33.333%;
}
.store-checkout-page .form-group {
  width: calc(100% - 20px);
  margin-bottom: 15px;
}
.store-checkout-page .form-group.search {
  /*background: #303a42;
	padding: 10px;
	border-radius: 5px;*/
}
.store-checkout-page .form-group.search label {
  color: #f0f0f0;
}
.store-checkout-form-group-buttons {
  margin-right: 20px;
}
.form-summary {
  margin-right: 30px;
}
.form-summary h4 {
  text-transform: none;
  font-weight: 400;
  font-size: 1em;
  margin: 10px 0 0 0;
  line-height: 1.25em;
}
.form-summary p {
  margin: 5px 0;
  line-height: 1.25em;
}
.panel-heading {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 5px;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  background-size: 4px;
  image-rendering: -moz-crisp-edges;
  width: calc(100% - 20px);
}
.panel-body {
  padding: 15px 10px;
}
div.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
div.checkbox-group input {
  display: none;
}
div.checkbox-group label {
  margin: 0 0 0 10px;
  color: #fafafa;
  font-size: 1em;
}
div.checkbox-group div.checkbox {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
div.checkbox-group div.checkbox:hover {
  background-color: #ffffff;
}
div.checkbox-group div.checkbox.checked:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  color: #f0f0f0;
}
/* CHECKOUT AMENDED CART */
.store-checkout-cart-contents {
  padding: 20px;
  background: #ffffff;
  border-radius: 3px;
  user-select: none;
}
.store-checkout-cart-contents .qty span {
  color: #52585e;
}
.store-checkout-cart-contents h2 {
  margin-top: 0;
}
.store-checkout-cart-contents ul.list-group {
  list-style: none;
  color: #52585e;
}
.store-checkout-cart-contents ul.list-group {
  margin: 15px 0;
}
.store-checkout-cart-contents ul.list-group li {
  margin: 5px 0;
}
.store-grand-total {
  color: #fafafa;
  font-size: 1.175em;
}
.hidden-fields {
  transition: all 0.3s;
  overflow: hidden;
  margin: 20px 0;
}
.hidden-fields .wrapper {
  padding: 10px;
  background-color: #ffffff;
  width: calc(100% - 20px);
  border-radius: 5px;
}
.hidden-fields .row {
  margin: 0 -10px;
}
.hidden-fields .form-group {
  width: calc(100% - 20px);
  margin: 0 10px 15px 10px;
}
a.show-hidden-fields {
  cursor: pointer;
  padding: 10px 0;
  display: inline-block;
  user-select: none;
  font-size: 14px;
}
/* SHIPPING METHOD & PAYMENT METHOD*/
#store-checkout-shipping-method-options {
  margin-bottom: 30px;
}
.radio-wrapper {
  background-color: #ffffff;
  border-radius: 5px;
  margin-bottom: 20px;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  background-size: 4px;
  image-rendering: -moz-crisp-edges;
  transition: all 0.3s;
  width: calc(100% - 20px);
}
.radio-wrapper .checked,
.radio-wrapper.checked {
  box-shadow: 0 0 12px #f0f0f0, 0 0 2px #f0f0f0;
}
p.store-shipping-details-label {
  margin: 0;
  line-height: 1.2em;
  color: #fafafa;
}
.radio-wrapper label {
  display: flex;
  margin: 0;
  align-items: center;
  cursor: pointer;
  padding: 20px;
}
.radio-wrapper input {
  width: 0;
  visibility: hidden;
}
.radio-wrapper .description p {
  margin: 0;
  font-size: 14px;
}
.radio-wrapper div.radio {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #f0f0f0;
  position: relative;
  margin-right: 10px;
  flex: 0 0 32px;
}
.radio-wrapper div.radio:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f0f0f0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
.radio-wrapper div.radio.checked:after,
.radio-wrapper label:hover div.radio:after {
  opacity: 1;
}
img.payment-method-logo {
  display: block;
  width: 120px;
  height: auto;
  margin-left: 10px;
}
/* ORDER COMPLETE */
.store-order-complete-page {
  max-width: 800px;
  margin: 0 auto;
}
.store-order-complete-page h1:after {
  left: 0;
  transform: translate(0, 0);
}
.store-order-complete-page fieldset {
  border: none;
  color: #fafafa;
  padding: 2.5%;
  background-color: #ffffff;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  background-size: 4px;
  image-rendering: -moz-crisp-edges;
}
.ccm-address-text {
  color: #52585e;
}
.order-summary-panel {
  margin-right: 5%;
}
.order-summary-panel p {
  margin: 10px 0 0 0;
  line-height: 1.2em;
}
.order-summary-panel p span {
  color: #fafafa;
}
.order-summary-panel p span.icon {
  display: inline-block;
  margin-right: 20px;
}
.complete-cart-items-summary {
  margin-bottom: 30px;
}
.complete-page-cart-list-item {
  display: grid;
  grid-template-columns: [first] auto [line2] 70px [line3] 40px [line4] 80px[end];
  border-bottom: 1px solid #ffffff;
}
.complete-page-cart-list-item div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
}
.complete-page-cart-list-item h4 {
  font-size: 1em;
  text-transform: none;
  color: #f0f0f0;
  font-weight: normal;
}
.complete-page-cart-list-item p {
  margin: 0;
  color: #fafafa;
  line-height: 1.2em;
}
.complete-page-cart-list-item .product-name p {
  padding-right: 10px;
}
.complete-page-cart-list-item ul {
  list-style: none;
}
.complete-price-summary p {
  margin: 10px 0;
}
.complete-price-summary p span {
  color: #fafafa;
}
.complete-price-summary p.grand-total {
  font-weight: 700;
  font-size: 1.175em;
}
@media screen and (max-width: 1023px) {
  .store-checkout-form-row {
    flex-direction: column-reverse;
  }
  .store-checkout-form-shell {
    width: 100%;
    padding: 0;
  }
  .store-checkout-page {
    max-width: 640px;
    margin: 0 auto;
  }
  .col-md-12,
  .col-md-8,
  .col-md-7,
  .col-md-6,
  .col-md-5,
  .col-md-4 {
    width: 100%;
  }
  .panel-heading,
  .store-checkout-page .form-group,
  .hidden-fields .wrapper,
  .radio-wrapper {
    width: 100%;
  }
  .hidden-fields .form-group {
    width: calc(100% - 20px);
  }
  .store-checkout-cart-view {
    margin-bottom: 20px;
  }
  .store-checkout-form-group-buttons {
    margin: 0;
  }
}
@media screen and (max-width: 720px) {
  .order-summary-panel {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
  }
  .order-summary-panel:last-of-type {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .complete-page-cart-list-item {
    grid-template-columns: [first] auto [line2] 65px [line3] 35px [line4] 65px[end];
  }
  .complete-page-cart-list-item p,
  .complete-page-cart-list-item ul {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .store-checkout-cart-contents {
    padding: 10px;
  }
  .store-checkout-cart-contents h2 {
    display: none;
  }
  .store-checkout-cart-contents .store-cart-page-cart-list-item,
  .store-checkout-cart-contents .cart-headings {
    grid-template-columns: [first] auto [line2] auto [line3] 70px [line4] 30px[end];
  }
}
