/*
 * Copyright © 2019 by Wood Street, Inc. All Rights reserved.
 */

.btn.disabled, .btn[disabled] {
    pointer-events: none;
}

.btn-invert {
    color: #f6cb00;
    border-color: #000;
    background: #000;
}

.btn-invert:hover {
    color: #000;
    background: #f6cb00;
    border-color: #f6cb00;
}

.menu-dropdown .menu-dropdown-back .icon::before {
    color: #a7a9ac;
    font-size: 20px;
    line-height: 1;
    margin-right: 8px;
}

.menu-dropdown .sub-menu a.leaf {
    color: #494b4d;
}

.alert-success .alert-text,
.alert-info .alert-text,
.alert-danger .alert-text {
    color: inherit;
}

.alert-text > :last-child {
    margin-bottom: 0;
}

.alert-success {
    background-color: hsl(143, 100%, 26%);
    color: #fff;
}

.alert-info {
    background-color: hsl(143, 15%, 84%);
    color: #494b4d;
}

.alert-danger {
    background-color: hsl(10, 100%, 48%);
    color: #333;
}

.text-color-danger {
    color: hsl(10, 100%, 48%);
}

.badge-card {
    color: #333;
    background: #fbea99;
}

.badge-natural {
    font-size: inherit;
    line-height: inherit;
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

a.badge {
    color: initial;
    text-decoration: none;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.align-items-center,
.media-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.media-align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.panel-footer .input {
    background: #fff;
}

.panel--add-to-cart .field {
    margin-bottom: 0;
}

.cart-table .out-of-stock h2 {
    box-shadow: inset 0 -5px #fbea99;
}

.register-steps + .alert {
    margin-top: 24px;
}

.gift-card-table {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 18px;
}

.gift-card-table th,
.gift-card-table td {
    padding: 6px 4px;
    vertical-align: middle;
    text-align: center;
}

.gift-card-table thead th {
    background-color: #65676a;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.gift-card-table tbody th {
    background-color: #f2f3f3;
    border-bottom: 1px solid #d6d7d8;
}

.gift-card-table tbody td {
    background-color: #fff;
    border-bottom: 1px solid #d6d7d8;
}

.gift-card-table tfoot td {
    text-align: right;
}

.field.disabled {
    opacity: .5;
    pointer-events: none;
}

.text-monospace {
    font-family: monospace, monospace;
    font-size: 1em;
    white-space: pre-wrap;
}

.rounded {
  border-radius: 4px;
}

@media (max-width: 1023px) {

    .panel--add-to-cart .field + .field {
        margin-top: 2rem;
    }

}

@media (min-width: 1024px) {

    .panel--add-to-cart .panel-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-left: 0;
    }

    .panel--add-to-cart .panel-body .field {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 15px;
    }

}

.address-item + .address-item {
    padding-top: 1rem;
    border-top: 1px solid #d6d7d8;
}

.wishlist-table {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
}

.wishlist-table td {
    padding: 8px;
    vertical-align: middle;
    border-bottom: 1px solid #bbb;
}

.product-entry .entry-link {
    justify-content: space-between;
}

.product-entry .entry-thumbnail::before {
    display: none;
}

.product-entry .entry-thumbnail {
    text-align: center;
    max-height: 258px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.product-entry .entry-thumbnail img {
    max-height: 100%;
    border: 1px solid rgba(0,0,0,0.10);
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.panel-body.loading {
    position: relative;
    min-height: 20vh;
}

.loading-mask {
    background: rgba(255,255,255,.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.search-area .select2,
.select2-results {
    font-size: 16px;
    line-height: 1.25;
}

.search-area .select2-search__field {
    height: auto;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
}

@media (min-width: 1023px) {

    .checkout-sidebar {
        position: sticky;
        top: 1.5rem;
    }

}

/**! https://github.com/daneden/animate.css */
@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.anim-bounceIn {
    animation: .75s linear .1s bounceIn;
    animation-fill-mode: both;
}

/**! https://github.com/ConnorAtherton/loaders.css */
@-webkit-keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.ball-scale-multiple {
    position: relative;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
.ball-scale-multiple > div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s; }
.ball-scale-multiple > div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s; }
.ball-scale-multiple > div {
    background-color: #007700;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    left: -30px;
    top: 0;
    opacity: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
    animation: ball-scale-multiple 1s 0s linear infinite; }

/** Category Listing */

.category-listing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.category-listing .category-entry {
  width: 50%;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 576px) {
  .category-listing .category-entry {
    width: 33.33334%;
  }
}

@media (min-width: 768px) {
  .category-listing .category-entry {
    width: 25%;
  }
}

@media (min-width: 1024px) {
  .category-listing .category-entry {
    width: 20%;
  }
}

@media (min-width: 1280px) {
  .category-listing .category-entry {
    width: 16.66667%;
  }
}


.category-entry {
  font-size: 11px;
  line-height: 16px;
  margin-bottom: 24px;
}

.category-entry .entry-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  color: #65676a;
  text-decoration: none;
}

.category-entry .entry-thumbnail {
  display: block;
  margin-bottom: 16px;
  position: relative;
}

.category-entry .entry-thumbnail::before {
  content: "";
  border: 1px solid rgba(0,0,0,0.10);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.category-entry .entry-thumbnail img {
  border-radius: 4px;
}

.category-entry .entry-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.category-entry .entry-title {
  color: #65676a;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 4px;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.category-entry .entry-link:hover .entry-title,
.category-entry .entry-link:focus .entry-title {
  color: #000;
}


/** Collectors Archive Callout */

.collectors-archive {
  background: -webkit-linear-gradient(-45deg, transparent 50%, rgba(255,255,255,.25) 50%);
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,.25) 50%);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #f6cb00;
  background-size: 48px 48px;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
}