.page {
  height: auto;
  display: block;
  position: relative;
}

@media screen and (max-width: 920px) {
  .page {
    height: auto;
  }
}

.social_share:after {
  display: none;
}

.category_title {
  padding-top: 20px;
}

@media screen and (max-width: 920px) {
  .category_title {
    padding-top: 0;
  }
}

.category_title h1 {
  font-size: 2.5rem;
  color: #3b2344;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C3B9B4;
  line-height: 1.1;
}

@media screen and (max-width: 1180px) {
  .category_title h1 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 920px) {
  .category_title h1 {
    font-size: 1.8rem;
  }
}

.category_title h1 span {
  color: #3b2344;
}

@media screen and (min-width: 920px) {
  .category_title h1 span.pointer {
    margin-right: 10px;
    position: relative;
    padding-right: 12px;
  }
  .category_title h1 span.pointer:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #3b2344;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 5px;
    margin: auto;
  }
}

.category_title h1 .active_filters {
  color: #C3B9B4;
}

@media screen and (max-width: 920px) {
  .category_title h1 .active_filters {
    display: none;
  }
}

.mobile_filter_controls {
  width: 100%;
  height: 45px;
  position: relative;
  height: auto;
  overflow: hidden;
  margin: 12px 0 16px;
}

@media screen and (min-width: 920px) {
  .mobile_filter_controls {
    display: none;
  }
}

.mobile_filter_controls button {
  width: 47.5%;
  margin-right: 5%;
  display: inline-block;
  height: 45px;
  border: 1px solid #cdcdcd;
  float: left;
  background: #FFF;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  font-weight: bold;
  color: #3b2344;
}

.mobile_filter_controls button span {
  font-weight: normal;
}

.mobile_filter_controls button:nth-of-type(2) {
  margin-right: 0;
}

.mobile_filter_controls .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45px;
  z-index: 9999;
}

.mobile_filter_controls .overlay button {
  opacity: 0;
  transition: opacity 600ms ease;
}

.mobile_filter_controls .overlay button.shown {
  opacity: 1;
}

.mobile_filter_controls .active_filters {
  padding: 14px 0 0 0;
  height: auto;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  float: left;
  margin-bottom: -6px;
}

.mobile_filter_controls .active_filters a {
  line-height: 1.4;
  background: #C3B9B4;
  color: #FFF;
  padding: 0 40px 0 10px;
  height: 26px;
  display: inline-block;
  float: left;
  line-height: 28px;
  position: relative;
  margin-right: 10px;
  margin-bottom: 6px;
}

.mobile_filter_controls .active_filters a:after {
  content: "x";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0;
  right: 0;
  background: #FFF;
  border: 1px solid #cdcdcd;
  color: #6b6b6b;
  text-align: center;
  font-size: 1.2rem;
  line-height: 24px;
}

.mobile_filter_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8888;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
}

.mobile_filter_overlay.shown {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
}

@media screen and (min-width: 920px) {
  .mobile_filter_overlay {
    display: none !important;
  }
}

@media screen and (max-width: 920px) {
  .filters {
    position: absolute;
    top: 107px;
    left: 0;
    height: auto;
    max-height: 100%;
    min-height: 50vh;
    overflow: scroll;
    width: 70%;
    background: #FFF;
    z-index: 9999;
    border-right: none;
    padding: 16px 20px;
    border: 1px solid #cdcdcd;
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
  }
  .filters.shown {
    opacity: 1;
    visibility: visible;
    transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
  }
}

.filters > div {
  width: 18%;
  height: auto;
  padding-bottom: 30px;
  overflow: hidden;
  display: inline-block;
  float: left;
  border-right: 30px solid #FFF;
}

@media screen and (max-width: 1180px) {
  .filters > div {
    width: 30%;
  }
}

@media screen and (max-width: 920px) {
  .filters > div {
    width: 100%;
    border-right: none;
  }
}

.filters > div h6 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b2344;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-right: 40px;
}

@media screen and (max-width: 920px) {
  .filters > div h6 {
    display: none;
  }
}

.filters > div p {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  color: #3b2344;
  padding: 20px 0 20px 20px;
  border-top: 1px solid #cdcdcd;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 920px) {
  .filters > div p {
    font-size: 1.4rem;
    padding-bottom: 12px;
    padding-left: 0;
  }
  .filters > div p:first-of-type {
    border-top: none;
    padding-top: 14px;
  }
}

.filters > div p:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../images/icons/down-grey@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}

.filters > div p.open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.filters > div div {
  height: auto;
  overflow: hidden;
  width: 100%;
  display: none;
}

.filters > div div a {
  height: 30px;
  line-height: 32px;
  display: inline-block;
  width: 100%;
  color: #383838;
  font-size: 0.8rem;
  padding-left: 20px;
  transition: background 300ms ease;
}

@media screen and (max-width: 1440px) {
  .filters > div div a {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 920px) {
  .filters > div div a {
    font-size: 1rem;
  }
}

.filters > div div a:last-of-type {
  margin-bottom: 15px;
}

.filters > div div a.active, .filters > div div a:hover {
  background: #f1f1f1;
}

.filters > div div a.active {
  position: relative;
}

.filters > div div a.active:after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0);
  background-image: url(../images/icons/remove-filter@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  transition: background 300ms ease;
}

.filters > div div a.active:hover:after {
  background-color: #FFF;
}

.products_wrapper_full {
  width: 82%;
  height: auto;
  display: inline-block;
  float: left;
  position: relative;
}

@media screen and (max-width: 1180px) {
  .products_wrapper_full {
    width: 70%;
  }
}

@media screen and (max-width: 920px) {
  .products_wrapper_full {
    width: 100%;
  }
}

.products_wrapper_full.search {
  float: none;
  display: block;
  margin: auto;
}

.products_wrapper_full.search h2.results:not(.nothing) {
  display: none;
}

.products_wrapper_full.search h2.nothing {
  color: #3b2344;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.products_wrapper_full .loading {
  top: 280px;
  bottom: auto;
  opacity: 0;
  transition: opacity 0ms ease;
}

.products_wrapper_full .loading.activate {
  opacity: 1;
  transition: opacity 400ms ease;
}

.products_wrapper_full .pagination {
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  overflow: hidden;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination {
    position: relative;
    padding-bottom: 40px;
    height: auto;
    overflow: visible;
  }
}

.products_wrapper_full .pagination .links {
  width: auto;
  height: 60px;
  display: inline-block;
  float: left;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination .links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    height: 40px;
  }
}

.products_wrapper_full .pagination .links a, .products_wrapper_full .pagination .links span {
  color: #8e8e8e;
  margin-right: 3px;
  font-size: 0.9rem;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination .links a, .products_wrapper_full .pagination .links span {
    height: 40px;
    width: 40px;
    font-size: 1rem;
    line-height: 35px;
  }
}

.products_wrapper_full .pagination .links a.active, .products_wrapper_full .pagination .links span.active {
  color: #3b2344;
  font-weight: bold;
}

.products_wrapper_full .pagination .links a {
  transition: color 300ms ease;
}

@media screen and (min-width: 920px) {
  .products_wrapper_full .pagination .links a:hover {
    color: #3b2344;
    text-decoration: underline;
  }
}

.products_wrapper_full .pagination .links span {
  opacity: 0.4;
}

.products_wrapper_full .pagination p.showing {
  display: inline-block;
  width: auto;
  float: right;
  height: 60px;
  line-height: 60px;
  font-size: 0.9rem;
  margin-right: 20px;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination p.showing {
    display: none;
  }
}

.products_wrapper_full .pagination p.showing strong {
  color: #3b2344;
}

.products_wrapper_full .pagination form {
  width: auto;
  height: 60px;
  overflow: hidden;
  float: right;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination form.sort_by {
    width: 100%;
    height: auto;
    position: absolute;
    top: 56px;
    right: 0;
    width: 70%;
    height: auto;
    z-index: 9999;
    background: #FFF;
    padding: 16px 20px 20px 20px;
    border: 1px solid #cdcdcd;
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
  }
  .products_wrapper_full .pagination form.sort_by.shown {
    opacity: 1;
    visibility: visible;
    transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
  }
}

.products_wrapper_full .pagination form fieldset {
  width: auto;
  display: inline-block;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination form ol, .products_wrapper_full .pagination form fieldset {
    width: 100%;
    display: inline-block;
    float: left;
  }
}

.products_wrapper_full .pagination form li {
  display: inline-block;
  width: auto;
  float: none;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination form li {
    width: 100%;
    margin-top: -4px;
  }
}

.products_wrapper_full .pagination form input, .products_wrapper_full .pagination form select, .products_wrapper_full .pagination form label {
  display: inline-block;
  height: 36px;
  float: none;
  line-height: 36px;
  width: auto;
  font-size: 0.9rem;
  width: 200px;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination form input, .products_wrapper_full .pagination form select, .products_wrapper_full .pagination form label {
    width: 100% !important;
  }
}

.products_wrapper_full .pagination form select {
  background-image: url(../images/icons/down-grey@2x.png);
  background-position: right 20px center;
  background-size: 8px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1440px) {
  .products_wrapper_full .pagination form select {
    background-position: right 15px center;
  }
}

.products_wrapper_full .pagination form input {
  width: 70px;
  padding: 0 20px;
}

@media screen and (max-width: 1440px) {
  .products_wrapper_full .pagination form input {
    padding: 0 15px;
  }
}

.products_wrapper_full .pagination form label {
  margin-left: 15px;
  margin-right: 6px;
  width: auto;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination form label {
    margin: 0;
  }
}

.products_wrapper_full .pagination form button {
  height: 36px;
  line-height: 36px;
  width: 60px;
  margin-left: 5px;
  font-size: 0.9rem;
  transition: background 300ms ease, color 300ms ease;
}

.products_wrapper_full .pagination form button:hover {
  background: #3b2344;
  color: #FFF;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination form button {
    width: 100%;
    margin: 0;
    margin-top: 0;
    display: inline-block;
    float: left;
  }
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .pagination.footer form {
    display: none;
  }
}

.products_wrapper_full .products h2.results.nothing {
  font-size: 1.8rem;
  line-height: 1.1;
  color: #3b2344;
  font-weight: bold;
}

@media screen and (max-width: 920px) {
  .products_wrapper_full .products h2.results.nothing {
    text-align: center;
  }
}

.product_full {
  position: relative;
}

.product_full .product_heading {
  width: 100%;
  height: auto;
  display: inline-block;
  padding: 40px 0 0 0;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 920px) {
  .product_full .product_heading {
    padding-top: 20px;
  }
}

.product_full .product_heading h1 {
  font-size: 2.2rem;
  color: #3b2344;
  font-weight: bold;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  max-width: 50%;
  display: block;
  margin: auto;
  line-height: 1.1;
}

@media screen and (max-width: 920px) {
  .product_full .product_heading h1 {
    font-size: 1.6rem;
    max-width: 75%;
  }
}

.product_full .product_heading h1 button.play_wine_name {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-left: 15px;
  border-radius: 50%;
  text-indent: -9999px;
  position: relative;
  top: -8px;
  background: #3b2344 url(../images/icons/wines/audio@2x.png);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  text-indent: -9999px;
}

@media screen and (max-width: 920px) {
  .product_full .product_heading h1 button.play_wine_name {
    position: absolute;
    top: 0;
    left: 102%;
    bottom: 0;
    margin: auto;
  }
}

.product_full .product_heading h2 {
  color: #3b2344;
  font-size: 1.6rem;
  padding-bottom: 30px;
  line-height: 1.2;
  width: 80%;
  display: block;
  margin: auto;
}

@media screen and (max-width: 920px) {
  .product_full .product_heading h2 {
    font-size: 0.9rem;
  }
}

.product_full .product_heading a.back {
  position: absolute;
  top: 50px;
  left: 0;
  font-size: 0.8rem;
  color: #383838;
}

@media screen and (max-width: 1440px) {
  .product_full .product_heading a.back {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 920px) {
  .product_full .product_heading a.back {
    display: none;
  }
}

.product_full .product_heading a.back:hover {
  text-decoration: underline;
}

.product_full .product_image {
  position: absolute;
  left: 0;
  width: 20%;
  max-width: 600px;
  height: auto;
  bottom: 180px;
  z-index: -10;
}

@media screen and (max-width: 1180px) {
  .product_full .product_image {
    width: 24%;
    left: -2%;
  }
}

@media screen and (max-width: 920px) {
  .product_full .product_image {
    position: static;
    width: 40%;
    margin-left: 15%;
    display: inline-block;
    float: left;
  }
  .product_full .product_image.center {
    margin-left: 30%;
  }
}

.product_full .mobile_awards {
  width: 30%;
  display: inline-block;
  float: left;
}

.product_full .mobile_awards img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 920px) {
  .product_full .mobile_awards {
    display: none;
  }
}

.product_full .info_box {
  width: 80%;
  height: auto;
  overflow: hidden;
  margin: 0 0 0 20%;
  display: inline-block;
  position: relative;
  padding-bottom: 80px;
}

@media screen and (max-width: 920px) {
  .product_full .info_box {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    padding-top: 200px;
    padding-top: calc(150px + 5%);
  }
}

.product_full .info_box .info_box_nav {
  display: block;
  width: 100%;
  height: 60px;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_nav {
    display: none;
  }
}

.product_full .info_box .info_box_nav button {
  border: 1px solid #d5d5d5;
  display: inline-block;
  float: left;
  width: 19.2%;
  margin-right: 1%;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  position: relative;
  background: #FFF;
  transition: color 400ms ease;
  font-size: 0.9rem;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_nav button {
    height: 45px;
    line-height: 45px;
    font-size: 0.7rem;
  }
}

.product_full .info_box .info_box_nav button:last-of-type {
  margin-right: 0;
}

.product_full .info_box .info_box_nav button:after {
  width: 100%;
  height: 2px;
  background: #FFF;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 99;
  opacity: 0;
  transition: opacity 400ms ease;
}

.product_full .info_box .info_box_nav button:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #c0c0c0 transparent transparent transparent;
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: opacity 400ms ease, bottom 400ms ease;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_nav button:before {
    bottom: 12px;
  }
}

.product_full .info_box .info_box_nav button.active {
  color: #3b2344;
}

.product_full .info_box .info_box_nav button.active:after {
  opacity: 1;
}

.product_full .info_box .info_box_nav button.active:before {
  opacity: 1;
  bottom: 8px;
}

.product_full .info_box .info_box_nav button:hover {
  color: #3b2344;
}

.product_full .info_box .info_box_body {
  width: 100%;
  height: auto;
  border: 1px solid #d5d5d5;
  position: relative;
  min-height: 600px;
  background: #FFF;
  top: -1px;
}

.product_full .info_box .info_box_body.awards {
  min-height: 570px;
}

.product_full .info_box .info_box_body.add_to_basket {
  min-height: 570px;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body.add_to_basket {
    min-height: 560px;
  }
}

.product_full .info_box .info_box_body.add_to_basket.awards {
  min-height: 640px;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body.add_to_basket.awards {
    min-height: 620px;
  }
}

@media screen and (max-width: 1440px) {
  .product_full .info_box .info_box_body {
    min-height: 560px;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body {
    border: none;
    position: static;
    min-height: 0 !important;
  }
}

.product_full .info_box .info_box_body form.add_to_basket,
.product_full .info_box .info_box_body .low_stock {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 90%;
  padding: 30px 0 0 0;
  margin-left: 0 !important;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body form.add_to_basket,
.product_full .info_box .info_box_body .low_stock {
    padding: 20px 0;
    bottom: 0;
    left: 20px;
    width: 45%;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body form.add_to_basket,
.product_full .info_box .info_box_body .low_stock {
    bottom: auto;
    top: 0;
    width: 100%;
    left: 0;
    padding: 16px 0;
    top: 2.5%;
  }
}

.product_full .info_box .info_box_body form.add_to_basket div.saving,
.product_full .info_box .info_box_body .low_stock div.saving {
  bottom: -20px;
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body form.add_to_basket div.saving,
.product_full .info_box .info_box_body .low_stock div.saving {
    bottom: 70px;
  }
}

.product_full .info_box .info_box_body form.add_to_basket div.saving p,
.product_full .info_box .info_box_body .low_stock div.saving p {
  font-size: 0.9rem;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body form.add_to_basket div.saving p,
.product_full .info_box .info_box_body .low_stock div.saving p {
    font-size: 0.8rem;
  }
}

.product_full .info_box .info_box_body form.add_to_basket div.saving p.promo_price,
.product_full .info_box .info_box_body .low_stock div.saving p.promo_price {
  font-size: 1.2rem;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body form.add_to_basket div.saving p.promo_price,
.product_full .info_box .info_box_body .low_stock div.saving p.promo_price {
    font-size: 1.1rem;
  }
}

.product_full .info_box .info_box_body form.add_to_basket label,
.product_full .info_box .info_box_body .low_stock label {
  font-size: 1.1rem;
}

.product_full .info_box .info_box_body form.add_to_basket label strong,
.product_full .info_box .info_box_body .low_stock label strong {
  font-size: inherit;
}

.product_full .info_box .info_box_body form.add_to_basket label strong.saving,
.product_full .info_box .info_box_body .low_stock label strong.saving {
  padding-left: 126px;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body form.add_to_basket label strong.saving,
.product_full .info_box .info_box_body .low_stock label strong.saving {
    padding-left: 110px !important;
  }
}

.product_full .info_box .info_box_body form.add_to_basket label .base_price,
.product_full .info_box .info_box_body .low_stock label .base_price {
  font-size: 0.9rem;
}

.product_full .info_box .info_box_body form.add_to_basket label .quantity_info,
.product_full .info_box .info_box_body .low_stock label .quantity_info {
  width: 360px;
  right: auto;
}

.product_full .info_box .info_box_body .low_stock {
  width: auto !important;
  margin: 0;
  padding: 0 20px;
  bottom: 10%;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .low_stock {
    width: 100% !important;
    margin-top: 20px;
  }
}

.product_full .info_box .info_box_body.awards form.add_to_basket,
.product_full .info_box .info_box_body.awards .low_stock {
  bottom: 80px;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body.awards form.add_to_basket,
.product_full .info_box .info_box_body.awards .low_stock {
    bottom: 52px;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body.awards form.add_to_basket,
.product_full .info_box .info_box_body.awards .low_stock {
    bottom: auto;
  }
}

@media screen and (min-width: 1180px) {
  .product_full .info_box .info_box_body.awards form.add_to_basket label,
.product_full .info_box .info_box_body.awards .low_stock label {
    padding-left: 0 !important;
  }
}

@media screen and (min-width: 1180px) {
  .product_full .info_box .info_box_body.awards .saving {
    width: 120px !important;
    height: 120px !important;
    bottom: -145px !important;
    left: -10px !important;
    border: 10px solid #FFF;
  }
}

.product_full .info_box .info_box_body.awards label strong.saving {
  padding-left: 0 !important;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body.awards .wine_profile_download {
    bottom: 72px;
  }
}

.product_full .info_box .info_box_body .info_box_slick {
  margin-bottom: 5%;
  position: relative;
  vertical-align: middle;
}

.product_full .info_box .info_box_body .info_box_slick .slick-list {
  margin: 0 -30px;
}

.product_full .info_box .info_box_body .info_box_slick .slick-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 9999;
  background-color: #3b2344;
  background-image: url(../images/icons/left-white@2x.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  transition: background 300ms ease;
}

.product_full .info_box .info_box_body .info_box_slick .slick-arrow.slick-next {
  left: auto;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (min-width: 920px) {
  .product_full .info_box .info_box_body .info_box_slick .slick-arrow:hover {
    background-color: #3b2344;
  }
}

.product_full .info_box .info_box_body .info_box_content {
  width: 72%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5% 0 5% 5%;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content {
    text-align: center;
    position: static;
    width: 100%;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    display: block;
    border: 1px solid #d5d5d5;
    margin: 0 30px;
    display: inline-block;
    height: 670px;
    padding: 0 20px 20px 20px !important;
    vertical-align: top;
  }
}

.product_full .info_box .info_box_body .info_box_content h2.mobile_title {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b2344;
  line-height: 55px;
  height: 49px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d5d5d5;
}

@media screen and (max-width: 380px) {
  .product_full .info_box .info_box_body .info_box_content h2.mobile_title {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content h2.mobile_title {
    display: none;
  }
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .info_box_content {
    width: 100%;
    padding: 20px;
  }
}

.product_full .info_box .info_box_body .info_box_content.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
}

.product_full .info_box .info_box_body .info_box_content img {
  width: 30%;
  display: inline-block;
  float: left;
  margin-right: 5%;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.product_full .info_box .info_box_body .info_box_content .content {
  padding-top: 1%;
  display: inline-block;
  float: left;
  width: 65%;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content .content {
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content .content a {
    display: block;
    padding-top: 6px;
  }
}

.product_full .info_box .info_box_body .info_box_content h3 {
  font-size: 1.6rem;
  color: #3b2344;
  padding-bottom: 20px;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content h3 {
    font-size: 1.4rem;
    padding-bottom: 15px;
  }
}

.product_full .info_box .info_box_body .info_box_content p:not(.list) {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #3b2344;
  padding-bottom: 20px;
}

.product_full .info_box .info_box_body .info_box_content p:not(.list) a {
  font-weight: bold;
}

.product_full .info_box .info_box_body .info_box_content p:not(.list) a:hover {
  text-decoration: underline;
}

.product_full .info_box .info_box_body .info_box_content .view_more {
  font-weight: bold;
  color: #3b2344;
}

.product_full .info_box .info_box_body .info_box_content .view_more:hover {
  text-decoration: underline;
}

.product_full .info_box .info_box_body .info_box_content .column {
  display: inline-block;
  float: left;
  width: 47.5%;
  margin-right: 5%;
  height: auto;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .info_box_content .column {
    margin-right: 2%;
    width: 49%;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content .column {
    width: 90% !important;
    margin: 0 5% !important;
    text-align: left;
  }
}

@media screen and (max-width: 380px) {
  .product_full .info_box .info_box_body .info_box_content .column {
    width: 100% !important;
    margin: 0 !important;
  }
}

.product_full .info_box .info_box_body .info_box_content .column:first-of-type {
  position: relative;
}

.product_full .info_box .info_box_body .info_box_content .column:first-of-type:after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #dadada;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .info_box_content .column:first-of-type:after {
    display: none;
  }
}

.product_full .info_box .info_box_body .info_box_content .column:last-of-type {
  margin-right: 0;
}

.product_full .info_box .info_box_body .wine_profile_download, .product_full .info_box .info_box_body .wine_profile_join {
  width: 19.4%;
  height: auto;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  top: 5%;
  right: 2%;
  background: #C3B9B4;
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .product_full .info_box .info_box_body .wine_profile_download, .product_full .info_box .info_box_body .wine_profile_join {
    width: 20%;
  }
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .wine_profile_download, .product_full .info_box .info_box_body .wine_profile_join {
    top: auto !important;
    left: 2%;
    bottom: 20px !important;
    width: 30.66%;
    right: auto !important;
    padding: 20px 0;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .wine_profile_download, .product_full .info_box .info_box_body .wine_profile_join {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }
}

.product_full .info_box .info_box_body .wine_profile_download h3, .product_full .info_box .info_box_body .wine_profile_join h3 {
  font-weight: bold;
  text-transform: uppercase;
  color: #FFF;
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding-bottom: 15px;
}

@media screen and (max-width: 1440px) {
  .product_full .info_box .info_box_body .wine_profile_download h3, .product_full .info_box .info_box_body .wine_profile_join h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .wine_profile_download h3, .product_full .info_box .info_box_body .wine_profile_join h3 {
    font-size: 1.2rem;
  }
  .product_full .info_box .info_box_body .wine_profile_download h3 br, .product_full .info_box .info_box_body .wine_profile_join h3 br {
    display: none;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .wine_profile_download h3, .product_full .info_box .info_box_body .wine_profile_join h3 {
    display: block;
    margin: auto;
  }
}

.product_full .info_box .info_box_body .wine_profile_download a, .product_full .info_box .info_box_body .wine_profile_join a {
  border: 2px solid #FFF;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
  color: #FFF;
  font-size: 0.9rem;
  transition: background 300ms ease, color 300ms ease;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .wine_profile_download a, .product_full .info_box .info_box_body .wine_profile_join a {
    width: 160px;
    height: 40px;
    line-height: 40px;
  }
}

.product_full .info_box .info_box_body .wine_profile_download a:hover, .product_full .info_box .info_box_body .wine_profile_join a:hover {
  background: #FFF;
  color: #C3B9B4;
}

.product_full .info_box .info_box_body .wine_profile_download.wine_profile_join, .product_full .info_box .info_box_body .wine_profile_join.wine_profile_join {
  background: #3b2344;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .wine_profile_download.wine_profile_join, .product_full .info_box .info_box_body .wine_profile_join.wine_profile_join {
    left: 34.66%;
    -webkit-transform: none !important;
            transform: none !important;
  }
}

.product_full .info_box .info_box_body .wine_profile_download.wine_profile_join:last-of-type, .product_full .info_box .info_box_body .wine_profile_join.wine_profile_join:last-of-type {
  top: auto;
  bottom: 5%;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .wine_profile_download.wine_profile_join:last-of-type, .product_full .info_box .info_box_body .wine_profile_join.wine_profile_join:last-of-type {
    bottom: 20px;
    left: 67.32%;
  }
}

.product_full .info_box .info_box_body .wine_profile_download.wine_profile_join a:hover, .product_full .info_box .info_box_body .wine_profile_join.wine_profile_join a:hover {
  color: #3b2344;
}

.product_full .info_box .info_box_body .awards {
  width: 60%;
  height: 120px;
  position: absolute;
  bottom: -60px;
  left: 15%;
  left: calc(5% + 120px);
}

@media screen and (max-width: 1180px) {
  .product_full .info_box .info_box_body .awards {
    left: 1%;
  }
}

@media screen and (max-width: 920px) {
  .product_full .info_box .info_box_body .awards {
    display: none;
  }
}

.product_full .info_box .info_box_body .awards img {
  height: 120px;
  width: auto;
  display: inline-block;
  float: left;
}

.product_full .info_box .social_share {
  width: auto;
  float: right;
  border: none;
  padding: 15px 0;
}

@media screen and (max-width: 920px) {
  .product_full .info_box .social_share {
    float: none;
    text-align: center;
    width: 100%;
  }
}

.product_full .basket_cta {
  width: 130px;
  height: 130px;
  left: 5%;
  bottom: -59px;
  padding-top: 10px;
  border: 10px solid #FFF;
}

.product_full .basket_cta p {
  font-size: 1rem;
}

.wine_profile p,
#wine_profile_content .column p {
  font-size: 0.9rem;
  padding: 18px 0 16px 0;
  line-height: 1.4;
  padding-left: 40px;
  background-size: 26px;
  background-position: left center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 920px) {
  .wine_profile p,
#wine_profile_content .column p {
    padding: 14px 0 12px 40px !important;
    position: relative;
    padding-left: 140px !important;
  }
}

@media screen and (max-width: 380px) {
  .wine_profile p,
#wine_profile_content .column p {
    background-size: 20px !important;
    padding-left: 130px !important;
  }
}

.wine_profile p strong,
#wine_profile_content .column p strong {
  display: inline-block;
  width: 120px;
}

@media screen and (max-width: 920px) {
  .wine_profile p strong,
#wine_profile_content .column p strong {
    width: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    position: absolute;
    left: 40px;
    top: 2px;
    bottom: 0;
    margin: auto;
  }
}

@media screen and (max-width: 380px) {
  .wine_profile p strong,
#wine_profile_content .column p strong {
    left: 32px;
  }
}

.wine_profile p button,
#wine_profile_content .column p button {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  background: #3b2344 url(../images/icons/wines/audio@2x.png);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  text-indent: -9999px;
}

.wine_profile p.red-wine,
#wine_profile_content .column p.red-wine {
  background-image: url(../images/icons/wines/red.png);
}

.wine_profile p.mulled,
#wine_profile_content .column p.mulled {
  background-image: url(../images/icons/wines/mulled.png);
}

.wine_profile p.white-wine,
#wine_profile_content .column p.white-wine {
  background-image: url(../images/icons/wines/white.png);
}

.wine_profile p.rose-wine,
#wine_profile_content .column p.rose-wine {
  background-image: url(../images/icons/wines/rose.png);
}

.wine_profile p.champagne,
#wine_profile_content .column p.champagne {
  background-image: url(../images/icons/wines/sparkling.png);
}

.wine_profile p.sparkling-wine,
#wine_profile_content .column p.sparkling-wine {
  background-image: url(../images/icons/wines/sparkling.png);
}

.wine_profile p.port,
#wine_profile_content .column p.port {
  background-image: url(../images/icons/wines/port.png);
}

.wine_profile p.pudding-wine,
#wine_profile_content .column p.pudding-wine {
  background-image: url(../images/icons/wines/pudding.png);
}

.wine_profile p.orange-wine,
#wine_profile_content .column p.orange-wine {
  background-image: url(../images/icons/wines/orange.png);
}

.wine_profile p.france,
#wine_profile_content .column p.france {
  background-image: url(../images/icons/flags/france.png);
}

.wine_profile p.canada,
#wine_profile_content .column p.canada {
  background-image: url(../images/icons/flags/canada.png);
}

.wine_profile p.spain,
#wine_profile_content .column p.spain {
  background-image: url(../images/icons/flags/spain.png);
}

.wine_profile p.italy,
#wine_profile_content .column p.italy {
  background-image: url(../images/icons/flags/italy.png);
}

.wine_profile p.australia,
#wine_profile_content .column p.australia {
  background-image: url(../images/icons/flags/australia.png);
}

.wine_profile p.new-zealand,
#wine_profile_content .column p.new-zealand {
  background-image: url(../images/icons/flags/new-zealand.png);
}

.wine_profile p.argentina,
#wine_profile_content .column p.argentina {
  background-image: url(../images/icons/flags/argentina.png);
}

.wine_profile p.south-africa,
#wine_profile_content .column p.south-africa {
  background-image: url(../images/icons/flags/south-africa.png);
}

.wine_profile p.chile,
#wine_profile_content .column p.chile {
  background-image: url(../images/icons/flags/chile.png);
}

.wine_profile p.germany,
#wine_profile_content .column p.germany {
  background-image: url(../images/icons/flags/germany.png);
}

.wine_profile p.england,
#wine_profile_content .column p.england {
  background-image: url(../images/icons/flags/england.png);
}

.wine_profile p.portugal,
#wine_profile_content .column p.portugal {
  background-image: url(../images/icons/flags/portugal.png);
}

.wine_profile p.usa,
#wine_profile_content .column p.usa {
  background-image: url(../images/icons/flags/usa.png);
}

.wine_profile p.austria,
#wine_profile_content .column p.austria {
  background-image: url(../images/icons/flags/austria.png);
}

.wine_profile p.lebanon,
#wine_profile_content .column p.lebanon {
  background-image: url(../images/icons/flags/lebanon.png);
}

.wine_profile p.hungary,
#wine_profile_content .column p.hungary {
  background-image: url(../images/icons/flags/hungary.png);
}

.wine_profile p.croatia,
#wine_profile_content .column p.croatia {
  background-image: url(../images/icons/flags/croatia.png);
}

.wine_profile p.uruguay,
#wine_profile_content .column p.uruguay {
  background-image: url(../images/icons/flags/uruguay.png);
}

.wine_profile p.india,
#wine_profile_content .column p.india {
  background-image: url(../images/icons/flags/india.png);
}

.wine_profile p.thailand,
#wine_profile_content .column p.thailand {
  background-image: url(../images/icons/flags/thailand.png);
}

.wine_profile p.romania,
#wine_profile_content .column p.romania {
  background-image: url(../images/icons/flags/romania.png);
}

.wine_profile p.greece,
#wine_profile_content .column p.greece {
  background-image: url(../images/icons/flags/greece.png);
}

.wine_profile p.vintage,
#wine_profile_content .column p.vintage {
  background-image: url(../images/icons/wines/vintage@2x.png);
}

.wine_profile p.region,
#wine_profile_content .column p.region {
  background-image: url(../images/icons/wines/region@2x.png);
}

.wine_profile p.style,
#wine_profile_content .column p.style {
  background-image: url(../images/icons/wines/style@2x.png);
}

.wine_profile p.grower_name,
#wine_profile_content .column p.grower_name {
  background-image: url(../images/icons/wines/grower@2x.png);
}

.wine_profile p.grape_variety_1,
#wine_profile_content .column p.grape_variety_1 {
  background-image: url(../images/icons/wines/grape@2x.png);
}

.wine_profile p.abv,
#wine_profile_content .column p.abv {
  background-image: url(../images/icons/wines/abv@2x.png);
}

.wine_profile p.bottle_size,
#wine_profile_content .column p.bottle_size {
  background-image: url(../images/icons/wines/bottle-size@2x.png);
}

.wine_profile p.closure,
#wine_profile_content .column p.closure {
  background-image: url(../images/icons/wines/closure@2x.png);
  background-size: 22px;
  background-position: left 2px center;
}

.wine_profile p.allergens,
#wine_profile_content .column p.allergens {
  background-image: url(../images/icons/wines/allergens@2x.png);
  background-size: 22px;
  background-position: left 2px center;
}

.wine_profile p.organic_biodynamic,
#wine_profile_content .column p.organic_biodynamic {
  background-image: url(../images/icons/wines/method@2x.png);
  background-size: 22px;
  background-position: left 2px center;
}

.wine_profile p.sku,
#wine_profile_content .column p.sku {
  background-image: url(../images/icons/wines/sku@2x.png);
  background-size: 22px;
  background-position: left 3px center;
}

.advanced_search.splash_form {
  width: 90%;
  max-width: 1366px;
  display: block;
  clear: both;
  margin: 2% auto;
}

@media screen and (max-width: 920px) {
  .advanced_search.splash_form {
    width: 100%;
    margin: 5% auto;
    padding: 10% 5% !important;
  }
}

.advanced_search.splash_form:after {
  content: "";
  display: table;
  clear: both;
}

.advanced_search.splash_form img.background {
  max-height: 100%;
  max-width: 50%;
  z-index: 0;
}

@media screen and (max-width: 920px) {
  .advanced_search.splash_form img.background {
    display: none;
  }
}

.advanced_search.splash_form a#advanced_search {
  font-weight: bold;
  color: #FFF;
  padding-top: 25px;
  display: inline-block;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

.advanced_search.splash_form a#advanced_search:first-letter {
  text-transform: capitalize;
}

.advanced_search.splash_form a#advanced_search:hover {
  text-decoration: underline;
}

.advanced_search.splash_form form {
  position: relative;
  z-index: 10;
  width: 100% !important;
}

@media screen and (max-width: 920px) {
  .advanced_search.splash_form form {
    width: 100%;
  }
}

.advanced_search.splash_form form li {
  overflow: hidden;
  border: none;
}

.advanced_search.splash_form form li label {
  width: 160px !important;
}

@media screen and (max-width: 920px) {
  .advanced_search.splash_form form li label {
    width: 140px !important;
  }
}

.advanced_search.splash_form form h4 {
  color: #FFF;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 20px;
}

@media screen and (max-width: 1440px) {
  .advanced_search.splash_form form h4 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 1180px) {
  .advanced_search.splash_form form h4 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 920px) {
  .advanced_search.splash_form form h4 {
    font-size: 1.8rem;
    padding-bottom: 15px;
  }
}

.advanced_search.splash_form form button {
  background: none;
  color: #FFF;
  border: 2px solid #FFF;
}

.advanced_search.splash_form form button:hover {
  background: #FFF;
  color: #3b2344;
}

.advanced_search.splash_form form.advanced_search li:not(:first-of-type) {
  width: 23.5%;
  margin-right: 2%;
  display: inline-block;
  float: left;
}

@media screen and (max-width: 920px) {
  .advanced_search.splash_form form.advanced_search li:not(:first-of-type) {
    width: 100%;
    margin-right: 0;
  }
}

.advanced_search.splash_form form.advanced_search li:not(:first-of-type):nth-of-type(4n + 1) {
  margin-right: 0;
}

.advanced_search.splash_form form.advanced_search li:not(:first-of-type) input, .advanced_search.splash_form form.advanced_search li:not(:first-of-type) select {
  padding: 0 20px !important;
}

.advanced_search.splash_form form.advanced_search li:not(:first-of-type) label {
  display: none !important;
}

audio {
  display: none;
}

body#tickets div.filters {
  display: none;
}

body#tickets .products_wrapper_full {
  width: 100%;
}

body#tickets .mobile_filter_controls .toggle_filters {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 920px) {
  .product_full.mixed_case .product_heading {
    padding-top: 40px;
  }
}

@media screen and (max-width: 920px) {
  .product_full.mixed_case .product_heading h2 {
    padding-bottom: 20px;
  }
}

.case_contents > h2 {
  color: #aaaaaa;
  font-size: 1.6rem;
  padding-bottom: 0;
  padding-top: 20px;
  line-height: 1.2;
  width: 80%;
  display: block;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 920px) {
  .case_contents > h2 {
    font-size: 1.2rem;
  }
}

.case_contents .case_contents_navigation {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  overflow: hidden;
  top: 1px;
}

.case_contents .case_contents_navigation .slick-track:hover .case_product_image img {
  opacity: 0.6;
}

.case_contents .case_contents_navigation:not(.slick-initialized) {
  text-align: center;
}

.case_contents .case_contents_navigation:not(.slick-initialized):hover .case_product_image img {
  opacity: 0.6;
}

.case_contents .case_contents_navigation .case_product_image {
  display: inline-block;
  height: auto;
  position: relative;
  padding-bottom: 46px;
  padding-top: 46px;
  position: relative;
  cursor: pointer;
}

.case_contents .case_contents_navigation .case_product_image:not(.slick-item) {
  width: 14.28%;
  margin-right: -4px;
  display: inline-block;
}

@media screen and (max-width: 1180px) {
  .case_contents .case_contents_navigation .case_product_image:not(.slick-item) {
    width: 20%;
  }
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_navigation .case_product_image:not(.slick-item) {
    width: 33.33%;
  }
}

.case_contents .case_contents_navigation .case_product_image.slick-slide {
  opacity: 0;
  transition: opacity 800ms ease;
}

.case_contents .case_contents_navigation .case_product_image.slick-slide.slick-active {
  opacity: 1;
}

.case_contents .case_contents_navigation .case_product_image:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.case_contents .case_contents_navigation .case_product_image:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 36px 30px;
  border-color: transparent transparent #d5d5d5 transparent;
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%) translateY(60px);
          transform: translateX(-50%) translateY(60px);
  z-index: 5;
  opacity: 0;
  transition: opacity 400ms ease, -webkit-transform 600ms ease;
  transition: opacity 400ms ease, transform 600ms ease;
  transition: opacity 400ms ease, transform 600ms ease, -webkit-transform 600ms ease;
}

.case_contents .case_contents_navigation .case_product_image:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 36px 30px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  left: 50%;
  bottom: -3px;
  -webkit-transform: translateX(-50%) translateY(60px);
          transform: translateX(-50%) translateY(60px);
  z-index: 10;
  opacity: 0;
  transition: opacity 0ms ease 600ms, -webkit-transform 600ms ease;
  transition: opacity 0ms ease 600ms, transform 600ms ease;
  transition: opacity 0ms ease 600ms, transform 600ms ease, -webkit-transform 600ms ease;
}

.case_contents .case_contents_navigation .case_product_image.active:before, .case_contents .case_contents_navigation .case_product_image.active:after {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0px);
          transform: translateX(-50%) translateY(0px);
}

.case_contents .case_contents_navigation .case_product_image.active:after {
  transition: opacity 0ms ease 0ms, -webkit-transform 600ms ease;
  transition: opacity 0ms ease 0ms, transform 600ms ease;
  transition: opacity 0ms ease 0ms, transform 600ms ease, -webkit-transform 600ms ease;
}

.case_contents .case_contents_navigation .case_product_image img {
  width: 100%;
  height: auto;
  display: inline-block;
  will-change: transform;
  transition: opacity 600ms ease, -webkit-transform 600ms ease;
  transition: opacity 600ms ease, transform 600ms ease;
  transition: opacity 600ms ease, transform 600ms ease, -webkit-transform 600ms ease;
}

.case_contents .case_contents_navigation .case_product_image .quantity {
  width: 56px;
  height: 56px;
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 30px;
  border-radius: 50%;
  background: #59A5A0;
  line-height: 58px;
  text-align: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
}

.case_contents .case_contents_navigation .slick-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #3b2344 url(../images/icons/right-white@2x.png);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.3;
  transition: opacity 300ms ease;
  z-index: 3333;
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_navigation .slick-arrow {
    left: auto;
    right: 0;
    margin: 0;
    opacity: 1;
  }
}

.case_contents .case_contents_navigation .slick-arrow:hover {
  opacity: 1;
}

.case_contents .case_contents_navigation .slick-arrow.slick-prev {
  left: 0;
  right: auto;
  margin-right: 30px;
  margin-left: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_navigation .slick-arrow.slick-prev {
    right: auto;
    left: 0;
    margin: 0;
  }
}

.case_contents .case_contents_details {
  width: 90%;
  height: 550px;
  padding: 30px 0;
  display: inline-block;
  border: 1px solid #d5d5d5;
  margin-top: -1px;
  margin: 0 5%;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  z-index: 5;
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_details {
    margin-bottom: 20px;
    padding: 20px 0;
    height: 1040px;
  }
}

.case_contents .case_contents_details .case_product_info {
  width: 100%;
  display: inline-block;
  height: auto;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms, -webkit-transform 600ms ease 0ms;
  transition: opacity 600ms ease 0ms, transform 600ms ease 0ms, visibility 0ms ease 600ms;
  transition: opacity 600ms ease 0ms, transform 600ms ease 0ms, visibility 0ms ease 600ms, -webkit-transform 600ms ease 0ms;
}

.case_contents .case_contents_details .case_product_info.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease 600ms, visibility 0ms ease 600ms, -webkit-transform 600ms ease 600ms;
  transition: opacity 600ms ease 600ms, transform 600ms ease 600ms, visibility 0ms ease 600ms;
  transition: opacity 600ms ease 600ms, transform 600ms ease 600ms, visibility 0ms ease 600ms, -webkit-transform 600ms ease 600ms;
}

.case_contents .case_contents_details .product_info {
  width: 50%;
  display: inline-block;
  float: left;
  text-align: center;
  margin-right: 7.5%;
  margin-left: 7.5%;
  padding: 20px 0;
}

@media screen and (max-width: 1180px) {
  .case_contents .case_contents_details .product_info {
    margin-right: 5%;
    margin-left: 5%;
  }
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_details .product_info {
    width: 90%;
  }
}

.case_contents .case_contents_details .product_info h2 {
  display: block;
  font-size: 1.8rem;
  color: #3b2344;
  font-weight: bold;
  padding-bottom: 22px;
  text-transform: uppercase;
  position: relative;
  display: block;
  margin: auto;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_details .product_info h2 {
    font-size: 1.6rem;
    max-width: 90%;
  }
}

.case_contents .case_contents_details .product_info h3 {
  font-size: 1.6rem;
  color: #3b2344;
  padding-bottom: 12px;
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_details .product_info h3 {
    font-size: 1.4rem;
    padding-bottom: 15px;
  }
}

.case_contents .case_contents_details .product_info p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #3b2344;
  padding-bottom: 20px;
}

.case_contents .case_contents_details .product_info p a {
  font-weight: bold;
}

.case_contents .case_contents_details .product_info p a:hover {
  text-decoration: underline;
}

.case_contents .case_contents_details .product_info p + h3 {
  padding-top: 14px;
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_details .product_info p + h3 {
    padding-top: 0;
  }
}

.case_contents .case_contents_details .wine_profile {
  width: 35%;
  display: inline-block;
  float: left;
}

@media screen and (max-width: 1180px) {
  .case_contents .case_contents_details .wine_profile {
    width: 40%;
  }
}

@media screen and (max-width: 920px) {
  .case_contents .case_contents_details .wine_profile {
    width: 90%;
    margin-left: 10%;
  }
}

.case_contents .case_contents_details .wine_profile p {
  padding: 10px 0 8px 40px;
  font-size: 0.8rem;
}

@media screen and (max-width: 1440px) {
  .case_contents .case_contents_details .wine_profile p {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 920px) {
  .case_contents .case_contents_details .wine_profile p {
    background-size: 22px !important;
  }
  .case_contents .case_contents_details .wine_profile p.closure, .case_contents .case_contents_details .wine_profile p.allergens, .case_contents .case_contents_details .wine_profile p.organic_biodynamic, .case_contents .case_contents_details .wine_profile p.sku {
    background-size: 18px !important;
  }
}

.stock_note {
  color: #aaaaaa;
  font-size: 1.6rem;
  padding-bottom: 30px;
  padding-top: 20px;
  line-height: 1.2;
  width: 80%;
  display: block;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 1180px) {
  .stock_note {
    width: 90%;
  }
}

@media screen and (max-width: 920px) {
  .stock_note {
    font-size: 1rem;
    width: 100%;
  }
}
/*# sourceMappingURL=product.css.map */