.ammo-alert-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 10px;
  font-weight: bold;
  font-size: 19px;
}
.ammo-alert-container {
  border: 7px solid #e61d2f;
}
.ammo-alert-text {
  display: grid;
  grid-gap: 2px;
}
.ammo-alert-text span {
  text-align: justify;
}
@media (max-width: 768px) {
  .ammo-alert-banner {
    font-size: 12px;
  }
  .ammo-alert-container {
    border: 4px solid #e61d2f;
  }
  .ammo-alert-text {
    grid-gap: 5px;
  }
  .available-pickup {
    width: 100%;
  }
}
.available-pickup {
  color: #4f8a10;
  background: #dff2bf
    url('https://store-lpuqsi1cy6.mybigcommerce.com/content/images/icon-tick.png')
    no-repeat 10px center;
  border: 1px solid;
  margin: 15px 0px;
  padding: 12px 20px 12px 55px;
  width: 360px;
  font: bold 14px Arial;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.my-spinner-big {
  position: relative;
  top: 30px;
  margin: auto;
  z-index: 1;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #e61d2f;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.my-spinner-small {
  position: relative;
  top: 20px;
  margin: 0px 10px 0px;
  z-index: 1;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #e61d2f;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.match-container {
  max-height: 42vh;
  overflow-y: auto;
  padding: 5px;
}
.match-row {
  display: grid;
  grid-gap: 5px;
  align-items: center;
  justify-items: center;
  grid-template-columns: 150px 400px 0.5fr auto 0.5fr 0.5fr;
  margin-bottom: 10px;
  margin-right: 5px;
  border-bottom: 1px solid #eeeeee;
}
.my-span {
  margin-top: 15px !important;
}
.match-column-image img {
  max-height: 100px !important;
}
.match-row-total {
  display: flex;
  height: 45px;
  background: #f5f3f7;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
}
@media (min-width: 350px) and (max-width: 767px) {
  #launcher {
    margin-bottom: 25px !important;
  }
  .match-row {
    grid-gap: 10px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 50px;
  }
  .match-column-size {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .match-column-counter {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .match-column-price {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .match-column-checkbox {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .match-column-title {
    font-size: 12px;
  }
  .match-column-image img {
    max-height: 80px !important;
  }
  .match-row-total {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 40px 40px;
    margin-top: 0px;
  }
  .match-row-total .button {
    grid-column: 2/4;
    margin-top: 10px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .match-row {
    grid-template-columns: 110px 250px 0.5fr auto 0.5fr 0.5fr;
  }
}
.match-column-price {
  flex-shrink: 2;
}
.match-row-total .button {
  margin-bottom: 0px !important;
}
#matchErrors {
  margin: 1rem 0 0 0;
  font-size: 1.5rem;
  float: right;
}
@media screen and (max-width: 667px) {
  .match-row.match-row-total span {
    margin: 0 1rem 0.75rem 0;
  }
  .match-row-total {
    margin: 2rem 0 0 0;
    background: #ffffff;
    justify-content: center;
  }
  .match-column a {
    font-size: 0.75rem;
    font-weight: 500;
  }
  #match-addToCart {
    width: 90%;
  }
  #matchErrors {
    margin: 5rem 0 0 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (orientation: landscape) {
  .match-row {
    margin: 1.5rem 0 0 0;
  }
}
.match-column-price span {
  font-weight: 500;
  font-size: 1.5rem;
  color: #4e4d5e;
}
.match-row-total span {
  font-weight: 500;
  font-size: 1.5rem;
  color: #4e4d5e;
  margin: 0 2rem 1rem 0;
}
.match-checkbox {
  position: absolute;
  opacity: 0;
  display: none;
}
.match-checkbox:checked + label svg path {
  stroke-dashoffset: 0;
}
.match-checkbox:focus + label {
  transform: scale(1.03);
}
.match-checkbox + label {
  display: block;
  border: 3px solid #333;
  width: var(--d);
  height: var(--d);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.match-checkbox + label:active {
  transform: scale(1.05);
  border-radius: 4px;
}
.match-checkbox + label svg {
  pointer-events: none;
}
.match-checkbox + label svg path {
  fill: none;
  stroke: #e61d2f;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 101;
  transition: all 350ms cubic-bezier(1, 0, 0.37, 0.91);
}
.quantity {
  display: inline-block;
}
.quantity .input-text-qty {
  width: 2.5rem;
  height: 3rem;
  padding: 0 5px;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: 0;
}
.quantity.buttons_added {
  text-align: left;
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  border: 1px solid #dcdcdc;
}
.quantity.buttons_added input {
  display: inline-block;
  margin: 0;
  vertical-align: top;
  box-shadow: none;
}
.quantity.buttons_added .match-minus,
.quantity.buttons_added .match-plus {
  padding: 7px 10px 8px;
  width: 2rem;
  height: 3rem;
  background-color: #ffffff;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid #dcdcdc;
  border-bottom: 0;
  border-top: 0;
}
.quantity.buttons_added .match-minus {
  border-left: 0;
}
.quantity.buttons_added .match-plus {
  border-right: 0;
}
.quantity.buttons_added .match-minus:hover,
.quantity.buttons_added .match-plus:hover {
  background: #eeeeee;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}
.quantity.buttons_added .match-minus:focus,
.quantity.buttons_added .match-plus:focus {
  outline: none;
}
.modal-window {
  display: none;
  position: fixed;
  z-index: 60;
  padding-top: 100px;
  padding-bottom: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-container {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
.modal-header {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
.modal-image {
  max-width: 100%;
  height: auto;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.custom-close {
  color: #000;
  opacity: 0.3;
  float: right;
  font-size: 34px;
  font-weight: bold;
  margin: 10px;
}
.custom-close:hover,
.custom-close:focus {
  opacity: 1;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .modal-container {
    width: 800px;
  }
}
.brand-image-container img {
  float: none !important;
}
.product-bullet-info {
  font-size: 18px !important;
  margin-bottom: 10px !important;
  font-weight: 800;
  color: #e61d2f;
}
.alertBox {
  width: 280px;
  margin: 5px;
}
.alert-box-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.video-preview-custom::after {
  content: none;
}
.ammo-policy-block {
  width: fit-content;
  padding: 10px 15px;
  border: 2px solid #e61d2f;
  margin-bottom: 20px;
}
.ammo-policy-header {
  position: relative;
  display: flex;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 19px;
}
.ammo-route-box {
  position: relative;
}
.ammo-policy-info {
  border-radius: 50%;
  background-color: #dcdcdc;
  text-align: center;
  margin-left: 7px;
  margin-right: 7px;
  padding: 0px 5px;
  font-size: 11px;
  height: min-content;
  color: white;
  cursor: pointer;
}
.ammo-policy-info-route {
  padding: 1px 5px !important;
}
.ammo-route-p {
  margin-bottom: 5px;
}
.ammo-route-list {
  font-weight: normal !important;
  list-style-type: disc !important;
}
.ammo-policy-info:hover + .ammo-policy-info-text {
  animation: fadeIn 1s;
  opacity: 1;
  z-index: 2;
}
.ammo-policy-info-text {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 30px;
  width: 200px;
  padding: 5px 10px;
  background-color: #f5f3f7;
  border-radius: 5px;
  font-size: 14px;
}
.ammo-info-text-wide {
  top: 20px !important;
  width: 300px !important;
}
.rw-text-top {
  display: flex !important;
}
.rw-info {
  padding: 4px 4px 0 3px !important;
}
.ammo-required {
  color: #e61d2f;
  margin-left: 5px;
}
.ammo-policy-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 17px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ammo-policy-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ammo-policy-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 24px;
  background-color: #eee;
}
.ammo-policy-container:hover input ~ .ammo-policy-checkmark {
  background-color: #ccc;
}
.ammo-policy-container input:checked ~ .ammo-policy-checkmark {
  background-color: #99c800;
}
.ammo-policy-checkmark:after {
  content: '';
  position: absolute;
  display: none;
}
.ammo-policy-container input:checked ~ .ammo-policy-checkmark:after {
  display: block;
}
.ammo-policy-container .ammo-policy-checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ammo-rewards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ammo-rewards-box {
  margin: 20px auto;
}
.ammo-rewards-image {
  width: 250px;
  height: auto;
}
.ammo-rewards-image-sm {
  width: 200px;
  height: auto;
}
.stateModal {
  position: fixed;
  z-index: 99;
  padding-top: 100px;
  padding-bottom: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.stateModal-content {
  position: relative;
  background-color: #fefefe;
  padding: 0;
  margin: auto;
  border: 1px solid #888;
  width: 340px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.stateModal-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.stateModal-close:hover,
.stateModal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.stateModal-header {
  height: 42px;
  padding-right: 15px;
  background-color: #e61d2f;
  color: white;
  vertical-align: middle;
  text-align: center;
}
.stateModal-body {
  padding: 20px;
  height: fit-content;
  overflow: auto;
}
.stateModal-bold {
  margin-bottom: 10px !important;
  font-weight: 700;
  text-decoration: underline;
}
.stateModal-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.stateModal-accept-btn {
  background-color: #e61d2f !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  margin: 20px !important;
}
.stateModal-accept-btn:hover {
  background-color: #f84e5c !important;
}
.stateModal-accept-btn:disabled {
  background-color: #ccc !important;
}
.stateModal-cancel-btn {
  background-color: #454545 !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  margin: 20px !important;
}
.stateModal-cancel-btn:hover {
  background-color: #575656 !important;
}
.stateModal-url {
  text-decoration: underline !important;
}
.stateModal-policy-container {
  width: 150px;
  padding: 10px;
  border: 2px solid #e61d2f;
  margin-left: auto;
  margin-right: auto;
}
.stateModal-policy-container-accept {
  border: 2px solid #99c800;
}
.stateModal-policy-info {
  width: 33px;
  border-radius: 50%;
  background-color: #e61d2f;
  text-align: center;
  margin-left: 20px;
  padding: 0px 13px;
  font-size: 22px;
  height: min-content;
  color: white;
  cursor: pointer;
  font-weight: 600;
}
.stateModal-policy-info:hover {
  background-color: #f84e5c;
}
.stateModal-form-actions {
  display: flex !important;
  align-items: center !important;
}
@media (min-width: 1024px) {
  .stateModal-content {
    width: 650px;
  }
}
.ammo-good-fortune {
  position: absolute;
  left: 0;
  top: 0;
}
.ammo-good-image {
  height: 100px;
  width: auto;
}
.ammo-good-image-sm {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: auto;
  z-index: 1;
}
.ammo-good-fortune-link {
  background-color: black !important;
  color: #e61d2f !important;
}
.ammo-good-fortune-link:hover {
  color: white !important;
}
.weby-related-products {
  display: flex;
  list-style: none;
  overflow-y: auto;
}
.weby-related-products li {
  width: 190px;
  min-width: 190px;
  margin: 5px;
}
.weby-related-products .card {
  border: 1px solid white;
}
.weby-related-products .card:hover {
  border: 1px solid gray;
}
@media (min-width: 801px) {
  .weby-related-products .card-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.785rem;
  }
  .weby-related-products li {
    width: 230px;
    min-width: 230px;
    margin: 10px;
  }
}
