﻿@charset "UTF-8";
/*#region Vars */
/*#endregion*/
@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@700&display=swap");
/*#region Common */
main *::selection {
  background: #176b39;
  color: #ffecd9;
}

header *::selection {
  background: transparent;
}

footer *::selection {
  background: transparent;
}

.container, .row {
  transition: all ease-in-out 0.3s;
}

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body:not(.blank) {
  min-height: 100%;
  height: 100%;
  background-image: url(https://s3.us-east-2.amazonaws.com/alligator.prod.public/images/paper-light.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding-bottom: 250px;
  transition: all ease-in-out 0.3s;
}

@supports (-webkit-touch-callout: none) {
  body:not(.blank):before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: url(https://s3.us-east-2.amazonaws.com/alligator.prod.public/images/paper-light.jpg) no-repeat center center;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}
body.blur > *:not(header), body.fancybox-active > *:not(.fancybox-container) {
  filter: blur(4px);
}

.modal {
  transition: all ease-in-out 0.3s;
}

.modal.fade {
  backdrop-filter: blur(4px);
}

.modal-backdrop {
  opacity: 0.75 !important;
}

button {
  outline: none !important;
  outline-color: transparent;
}

iframe {
  max-width: 100%;
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  body:not(.blank) {
    padding-bottom: 350px;
  }
}
@media (max-width: 492px) {
  body:not(.blank) {
    padding-bottom: 425px;
  }
}
a {
  color: #38240c;
  cursor: pointer;
  text-decoration: none;
}

a:hover:not(.btn) {
  color: #b25140 !important;
}

s {
  text-decoration-color: #176b39;
  text-decoration-thickness: 2px;
  text-decoration-style: solid;
}

hr {
  height: 1px !important;
  color: #b25140;
  background-color: #b25140;
  border-color: #b25140;
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 1 !important;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 500;
}

input[type=radio].large {
  width: 24px;
  height: 24px;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.cur-pointer {
  cursor: pointer;
}

.badge-allig {
  color: #b25140 !important;
  background-color: white;
  padding: 0.2rem 0.4rem;
}

.btn-primary:not(:disabled):not(.disabled) {
  color: #ffecd9;
  background-color: #38240c !important;
  border-color: #38240c;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):focus {
  background-color: #176b39 !important;
  color: white;
  box-shadow: 0 0 0 0.25rem rgba(7, 111, 57, 0.25) !important;
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #38240c !important;
  color: #ffecd9;
}

.btn-secondary:not(:disabled):not(.disabled), .btn-secondary:not(:disabled):not(.disabled):active {
  color: #666;
  background-color: #dadada !important;
  border-color: #666;
}

.btn-secondary:not(:disabled):not(.disabled):hover {
  color: #666;
}

.btn-secondary.disabled, .btn.btn-secondary:disabled {
  background-color: #dadada !important;
  color: #666;
  border-color: #666;
}

.btn-green:not(:disabled):not(.disabled), .btn-green:not(:disabled):not(.disabled):hover {
  background-color: #176b39 !important;
  color: #fff;
}

.btn-green.disabled, .btn-green:disabled {
  background-color: #176b39;
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled), .btn-secondary:not(:disabled):not(.disabled) {
  opacity: 0.9;
}

.btn-primary:not(:disabled):not(.disabled):hover, .btn-secondary:not(:disabled):not(.disabled):hover {
  opacity: 1;
}

.btn-cart {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #176b39;
  color: white;
  padding: 3px;
  width: 30px;
  overflow: hidden;
  transition: all ease-in-out 1s;
  white-space: nowrap;
}

.btn-cart .fa {
  margin-right: 10px;
}

.btn-cart:after {
  content: "Add to Cart";
}

.btn-cart:hover {
  width: 140px;
  color: white;
}

.news-quick-view {
  display: inline-block;
  margin-left: 10px;
  color: #38240c;
  width: 24px;
  height: 20px;
  overflow: hidden;
  transition: all ease-in-out 1s;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
}

.news-quick-view .fa {
  margin-right: 10px;
}

.news-quick-view:after {
  content: "Quick View";
}

.news-quick-view:hover {
  width: 110px;
}

.fancybox-slide--html .fancybox-content {
  max-width: 90vw;
  max-height: 90vh;
  background-color: rgba(255, 236, 217, 0.85);
}

.pos-rel {
  position: relative;
}

.bg-gradient {
  background-image: linear-gradient(#b25140, #a1b5c7);
}

@media (min-width: 768px) {
  .bg-gradient .bg-gradient {
    background-image: none;
  }
}
.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center center;
}

.bg-north {
  background-position: center top;
}

.bg-northeast {
  background-position: right top;
}

.bg-east {
  background-position: right center;
}

.bg-southeast {
  background-position: right bottom;
}

.bg-south {
  background-position: center bottom;
}

.bg-southwest {
  background-position: left bottom;
}

.bg-west {
  background-position: left center;
}

.bg-northwest {
  background-position: left top;
}

.bg-allig-darker {
  background-color: rgba(0, 0, 0, 0.25);
  color: black;
}

.bg-allig-green {
  background-color: #176b39;
  color: white;
}

.bg-allig-orange {
  background-color: #b25140;
  color: white;
}

.bg-allig-brown {
  background-color: #38240c;
  color: white;
}

.bg-allig-green *, .bg-allig-orange *, .bg-allig-brown * {
  color: white !important;
}

.bg-allig-tan {
  background-color: #ffecd9;
  color: #38240c;
}

.text-allig-green {
  color: #176b39;
}

.text-allig-orange {
  color: #b25140;
}

.text-allig-tan {
  color: #ffecd9;
}

.text-shadow {
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

.text-glow {
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);
}

.text-stroke {
  text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
}

.p-5px div[class*=col-] {
  padding: 5px 0;
}

.p-5px > div[class*=col-]:first-child {
  padding: 5px 5px 5px 0;
}

.p-5px > div[class*=col-]:last-child {
  padding: 5px 0 5px 5px;
}

@media (max-width: 767px) {
  .p-5px > div[class*=col-] {
    padding: 5px 0 5px 0 !important;
  }
}
.alt-row .row:nth-child(even) {
  background-color: #eaeaea;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.alt-row .row:nth-child(odd) {
  background-color: white;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.nav-tabs {
  border-color: gray;
}

.nav-tabs .nav-link {
  text-transform: uppercase;
  padding: 0.5rem;
}

.nav-tabs .nav-link:hover {
  border-color: gray gray darkgray;
}

.nav-tabs .nav-link.active {
  font-weight: bold;
  border-color: gray gray white;
}

.nav-tabs .nav-link.active:before {
  content: "Plans ";
}

.highlight {
  background-color: yellow;
  display: inline-block;
  padding: 1px 2px;
  border-radius: 3px;
}

.tooltip-link {
  color: #b25140;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none !important;
}

label[required=required]:after {
  content: "*";
  color: #176b39;
  font-weight: bold;
  margin-left: 2px;
}

label[required=false]:after {
  content: "(optional)";
  color: silver;
  margin-left: 2px;
  font-size: 12px;
}

select.form-control {
  -webkit-appearance: listbox;
  appearance: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*#endregion*/
/*#region Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: "PT Sans Narrow";
}

h1.bb, h2.bb, h3.bb, h4.bb, h5.bb, h6.bb {
  border-bottom: 1px solid #38240c;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

h2, h3, h4, h5, h6 {
  color: #38240c;
}

h1, .home h2, .home h3, .home h4, .home h5, .home h6 {
  color: #38240c;
}

h1, .h1 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

h3, .h3 {
  font-size: 22px;
  font-weight: bold;
}

h4, .h4 {
  font-size: 18px;
  font-weight: bold;
}

h5, .h5 {
  font-size: 16px;
  font-weight: bold;
}

h6, .h6 {
  font-size: 14px;
  font-weight: bold;
}

.accordion h4 {
  color: #b25140;
  cursor: pointer;
}

.accordion h4:before {
  font-size: 26px;
  font-weight: 900;
  color: #b25140;
  display: inline-block;
  width: 32px;
  text-align: center;
}

.accordion h4[aria-expanded=true]:before {
  content: "-";
}

.accordion h4[aria-expanded=false]:before {
  content: "+";
}

body.lp .hero .h1, body.home .hero .h1 {
  font-size: 250%;
  line-height: inherit !important;
}

body.lp .hero h2 .h1, body.home .hero h2 .h1 {
  font-size: 150%;
  line-height: inherit !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  body.lp .hero .h1, body.home .hero .h1 {
    font-size: 170% !important;
    line-height: inherit !important;
  }

  body.lp .hero h2, body.lp .hero h3 {
    font-size: 110% !important;
    line-height: inherit !important;
  }

  body.home .hero h2, body.home .hero h3 {
    font-size: 110% !important;
    line-height: inherit !important;
  }
}
@media (max-width: 480px) {
  body.lp .hero .h1, body.home .hero .h1 {
    font-size: 250% !important;
    line-height: inherit !important;
  }

  body.lp .hero h2, body.lp .hero h3 {
    font-size: 145% !important;
    line-height: inherit !important;
  }

  body.home .hero h2, body.home .hero h3 {
    font-size: 145% !important;
    line-height: inherit !important;
  }
}
/*#endregion*/
/*#region Header/Nav */
.dot:before {
  content: "•";
  font-size: 18px;
  font-weight: bold;
  color: #b25140;
}

.hero-banner {
  height: auto;
  max-width: 100%;
}

header {
  margin-bottom: 4px;
}

header .util {
  height: 100px;
  text-align: right;
  transition: all ease-in-out 0.3s;
  position: relative;
}

header .util > div {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-bottom: 15px;
}

header .util a {
  color: #38240c;
  text-decoration: none;
}

header .util a:hover {
  color: #b25140;
}

header .util a:not(.small) {
  font-weight: 500;
  text-transform: uppercase;
}

header .util input {
  width: 75px;
  border: 1px solid #38240c;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
}

@media (min-width: 1200px) {
  header .util input:focus {
    width: 150px;
  }
}
nav.navbar {
  height: 90px;
  position: relative;
  background-color: #38240c;
  background-image: url(https://s3.us-east-2.amazonaws.com/alligator.prod.public/images/paper-dark.jpg);
  background-size: cover;
  background-position: center center;
  transition: all ease-in-out 0.3s;
}

a.navbar-brand {
  position: absolute;
  top: -65px;
  left: calc(50vw - 108px);
  width: 208px;
  height: 208px;
  transition: all ease-in-out 0.3s, left 0s linear;
}

a.navbar-brand:after {
  position: absolute;
  border-radius: 50%;
  height: 208px;
  width: 208px;
  top: 1px;
  left: -4px;
  z-index: 1;
  background-color: #ffecd9;
  content: "";
  transition: all ease-in-out 0.3s;
}

a.navbar-brand img {
  position: absolute;
  transition: all ease-in-out 0.3s;
  width: 200px;
  height: 200px;
  top: 5px;
  left: 0;
  z-index: 4;
  transition: transform 8s ease-in-out;
}

a.navbar-brand img.spin:hover {
  transform: rotate(1080deg);
  transition: transform 8s ease-in-out;
}

header + div {
  z-index: 2;
  position: relative;
}

.navbar-nav {
  width: calc(50% - 104px);
}

.navbar-nav li.nav-item {
  width: auto;
  text-align: left;
  white-space: nowrap;
}

.navbar-nav:last-child {
  flex-direction: row-reverse;
}

.navbar-nav:last-child li.nav-item {
  text-align: right;
}

.mobilenav {
  position: relative;
  z-index: 3;
  background-color: #ffecd9;
  width: auto;
  border: 2px solid #38240c;
  border-top: none;
  margin-top: 1px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.mobilenav hr {
  background-color: #38240c;
  border-color: #38240c;
  opacity: 0.25 !important;
  margin-top: 5px;
  margin-bottom: 5px;
}

/*.navbar-nav li.nav-item:not(:first-child):not(:last-child) a.nav-link {
		margin-left: 15px;
		margin-right: 15px;
	}*/
@media (max-width: 991px) {
  header {
    margin-bottom: 2px;
  }

  header .util {
    height: 35px;
  }

  nav.navbar {
    height: 55px;
  }

  a.navbar-brand {
    top: -35px;
    width: 104px;
    height: 104px;
    left: calc(50vw - 52px);
  }

  a.navbar-brand:after {
    height: 104px;
    width: 104px;
    left: -2px;
  }

  a.navbar-brand img {
    width: 100px;
    height: 100px;
    top: 3px;
  }
}
.nav-link {
  font-family: "PT Sans Narrow";
  font-size: 26pt;
  text-transform: uppercase;
  color: #ffecd9;
  opacity: 0.9;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: #b25140;
}

body.admin .nav-link {
  font-size: 16pt;
}

button.navbar-toggler {
  height: 55px;
  outline: none;
  box-shadow: none;
  position: relative;
  margin-top: -8px;
}

button.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none;
}

nav {
  /*height:90px;*/
  transition: all ease-in-out 0.3s;
}

.nav-item {
  margin-left: 5px;
  margin-right: 5px;
}

.dropdown-menu {
  padding: 0;
}

.navbar .dropdown-menu .dropdown-item {
  transition: all ease-in-out 0.3s;
}

.navbar .dropdown-menu li,
.navbar .dropdown-menu .dropdown-item {
  background-color: #ffecd9;
  color: #38240c !important;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #38240c;
  color: #ffecd9 !important;
}

@media (min-width: 1400px) {
  /*.navbar-nav li.nav-item:not(:first-child):not(:last-child) a.nav-link {
  		margin-left: 50px;
  		margin-right: 50px;
  	}*/
}
@media (min-width: 768px) and (max-width: 1199px) {
  .nav-link {
    font-size: 20pt !important;
  }

  body.admin .nav-link {
    font-size: 12pt !important;
  }

  .dropdown-menu {
    position: relative;
    top: 65px;
    left: -205px;
    border-radius: 0 0 0.25rem 0.25rem;
  }
}
@media (max-width: 767px) {
  .nav-link {
    font-size: 14pt !important;
  }
}
.mobilenav .nav-link, .mobilenav .nav-link:hover {
  color: #38240c;
}

.mt-n3 {
  margin-top: -1rem !important;
}

@media (min-width: 992px) {
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
}
nav.navbar.navbar-sub {
  height: 45px;
  position: relative;
  background-color: transparent;
  background-image: none;
  transition: all ease-in-out 0.3s;
  box-shadow: none;
  margin-bottom: 1.5rem;
}

nav.navbar.navbar-sub .nav-link {
  color: #38240c;
}

nav.navbar.navbar-sub .mobilenav {
  border-top: 2px solid #38240c;
}

nav.navbar.navbar-sub button.navbar-toggler {
  color: #38240c;
}

/*#endregion*/
/*#region Hero*/
.heroImg {
  width: 100%;
  object-fit: cover;
}

/*#endregion*/
/*#region Body */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.bodyContainer {
  height: 100%;
  width: 100%;
}

.bodyContainer > tr > td {
  vertical-align: top;
}

main.with-sidebar {
  margin-right: 15px;
}

.sidebar {
  width: 250px;
  vertical-align: top;
  position: relative;
}

.sidebar .sidebarContainer {
  position: static;
  top: 95px;
  margin-top: -5px;
  background-color: #f2db71;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.sidebarbox {
  border: 4px solid #b25140;
  border-radius: 8px;
  background-color: white;
  color: #176b39;
  text-align: center;
}

@media (max-width: 767px) {
  .sidebar {
    display: none;
  }

  main.with-sidebar {
    margin-right: inherit;
  }
}
/*#endregion*/
/*#region Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* line-height: 60px; Vertically center the text there */
  background-color: #38240c;
  background-image: url(https://s3.us-east-2.amazonaws.com/alligator.prod.public/images/paper-dark.jpg);
  background-size: cover;
  background-position: center top;
  color: #ffecd9 !important;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 30px;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
  color: #ffecd9 !important;
}

.footer blockquote {
  font-weight: normal;
  font-size: 12px;
  margin-left: 15px;
  margin-top: 5px;
}

.aaa-footer {
  font-size: 8pt;
  line-height: 9pt;
  font-weight: normal;
}

.footer a {
  text-decoration: none;
  color: #ffecd9;
  display: inline-block;
}

.footer a:hover {
  opacity: 0.75;
}

.footer a:hover .fab {
  color: #b25140;
}

.footer .fab {
  font-size: 24px;
  margin-left: 5px;
}

/*#endregion*/
/*#region Animated hamburger */
.animated-icon1, .animated-icon2, .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: white;
}

.animated-icon2 span {
  background: white;
}

.animated-icon3 span {
  background: white;
}

.animated-icon1 span:nth-child(1) {
  top: 0;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

button.navbar-toggler[aria-expanded=true] .animated-icon1 span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

button.navbar-toggler[aria-expanded=true] .animated-icon1 span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

button.navbar-toggler[aria-expanded=true] .animated-icon1 span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.animated-icon2 span:nth-child(1) {
  top: 0;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

button.navbar-toggler[aria-expanded=true] .animated-icon2 span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

button.navbar-toggler[aria-expanded=true] .animated-icon2 span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

button.navbar-toggler[aria-expanded=true] .animated-icon2 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

button.navbar-toggler[aria-expanded=true] .animated-icon2 span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon3 span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

button.navbar-toggler[aria-expanded=true] .animated-icon3 span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  left: 8px;
}

button.navbar-toggler[aria-expanded=true] .animated-icon3 span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

button.navbar-toggler[aria-expanded=true] .animated-icon3 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}

/*#endregion*/
/*#region Card */
.card {
  position: relative;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 225px;
}

.card.cart {
  min-height: 175px;
  height: auto;
  margin-bottom: 15px;
  background-color: #f3f3f3;
}

.card.cart.missing {
  border: 1px solid #f5c6cb;
  box-shadow: none;
  text-align: center;
  color: #b88d91;
  font-weight: bold;
  background-color: #f8d7da;
}

.card.cart.missing:hover {
  border: 1px solid #b88d91;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  color: #721c24;
  cursor: pointer;
  text-decoration: none;
}

.card.cart.error {
  border-color: red;
}

.card.h-0 {
  height: unset;
  min-height: 70px;
}

.card div.plus {
  position: absolute;
  top: calc(50% - 50px);
  width: 100%;
  text-align: center;
  color: red;
  font-size: 50px;
  font-weight: 900;
}

.card footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  min-height: 75px;
  backface-visibility: hidden;
}

.accordion .card {
  min-height: unset;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #e0e0e0;
  padding: 0.25rem 0.75rem;
}

/*#endregion*/
/*#region Material Overrides */
.card-body {
  padding-bottom: 0;
}

.card-footer {
  background-color: white;
  border-top: 0px solid transparent;
}

.card.cart .card-footer, .card.cart .cart-body {
  background-color: #f3f3f3;
}

.btn {
  margin: unset;
}

table td {
  font-size: inherit !important;
  font-weight: inherit !important;
}

/*#endregion*/
/*#region Custom Radio Button */
.radio {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #176b39;
}

.radio:hover input ~ .checkmark {
  background-color: #176b39;
}

.radio input:checked ~ .checkmark {
  background-color: #b25140;
  border: 1px solid #b25140;
}

.radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio input:checked ~ .checkmark:after {
  display: block;
}

.radio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #176b39;
}

/*#endregion*/
/*#region Custom Checkbox */
.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #176b39;
}

.checkbox:hover input ~ .checkmark {
  background-color: #176b39;
}

.checkbox input:checked ~ .checkmark {
  background-color: #b25140;
  border: 1px solid #b25140;
}

.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox.disabled input:checked ~ .checkmark {
  background-color: silver;
  border-color: gray;
}

/*#endregion*/
/*#region Pulse*/
.allig-pulse:not(:hover) {
  box-shadow: 0 0 0 0 #0a5095;
  /*transform: scale(1);*/
  animation: pulse-green 2s infinite;
}

.btn-orange.allig-pulse:not(:hover) {
  box-shadow: 0 0 0 0 #ed1c24;
  /*transform: scale(1);*/
  animation: pulse-orange 2s infinite;
}

.btn-primary.allig-pulse:not(:hover) {
  box-shadow: 0 0 0 0 #ed1c24;
  /*transform: scale(1);*/
  animation: pulse-brown 2s infinite;
}

input[name=q]:focus + button.btn-primary {
  animation: pulse-brown 2s infinite;
}

input#couponcode:focus + button.btn-primary {
  animation: pulse-brown 2s infinite;
}

@keyframes pulse-green {
  0% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(23, 107, 57, 0.7);
  }
  70% {
    /*transform: scale(1);*/
    box-shadow: 0 0 0 10px rgba(23, 107, 57, 0);
  }
  100% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(23, 107, 57, 0);
  }
}
@keyframes pulse-orange {
  0% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(178, 81, 64, 0.7);
  }
  70% {
    /*transform: scale(1);*/
    box-shadow: 0 0 0 10px rgba(178, 81, 64, 0);
  }
  100% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(178, 81, 64, 0);
  }
}
@keyframes pulse-brown {
  0% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(56, 36, 12, 0.7);
  }
  70% {
    /*transform: scale(1);*/
    box-shadow: 0 0 0 10px rgba(56, 36, 12, 0);
  }
  100% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(56, 36, 12, 0);
  }
}
/*#endregion*/
/*#region Checkout*/
.cart-trash {
  color: silver;
  transition: all ease-in-out 0.3s;
}

.cart-trash:hover {
  color: red;
}

.cart-port-button {
  opacity: 0.75 !important;
}

.cart-port-button:hover {
  opacity: 1 !important;
}

.cc-sel {
  font-size: 28px;
}

.unselected {
  opacity: 0.4;
}

.cc-sel:not(.unselected) {
  color: #176b39;
}

/*#endregion*/
/*#region Modals/Alerts*/
.cc-window {
  border: 1px solid silver !important;
}

.modal-dialog-scrollable .modal-body {
  max-height: calc(100vh - 225px);
}

.modal-content {
  background-color: #ffecd9;
}

button.close {
  background-color: transparent;
  border: none;
}

button.close span:after {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  color: #38240c;
  font-size: 18px;
  font-weight: 600;
}

#busy-message {
  position: absolute;
  top: 50vh;
  margin-top: 48px;
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  font-variant: small-caps;
}

#busy-message:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;
  animation: ellipsis steps(4, end) 900ms infinite;
  content: "…";
  /* ascii code for the ellipsis character */
  width: 0px;
  margin-right: 33px;
}

@keyframes ellipsis {
  to {
    width: 33px;
    margin-right: 0px;
  }
}
@-webkit-keyframes ellipsis {
  to {
    width: 33px;
    margin-right: 0px;
  }
}
/*#endregion*/
/*#region Steps/Progress*/
.step-indicator {
  color: #b25140;
  font-weight: bold;
}
.step-indicator .fa-stack:before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: -4em;
  width: 4em;
  height: 0.2em;
  border-top: 1px dotted #b25140;
  background: #b25140;
  z-index: -1;
}
.step-indicator .fa-stack:first-child:before {
  display: none;
}
.step-indicator .selected .far.fa-circle {
  font-weight: 900;
}
.step-indicator .selected .fa-stack-1x {
  color: white;
}

.progressbar-wrapper {
  background: #fff;
  width: 100%;
  height: 115px;
  display: block;
  margin-bottom: 30px;
}
.progressbar-wrapper .progressbar {
  margin: 0;
  padding: 0;
  list-style: none;
}
.progressbar-wrapper .progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #b25140;
  z-index: 1;
}
.progressbar-wrapper .progressbar li .d-none {
  font-weight: bold;
}
.progressbar-wrapper .progressbar li .d-md-none {
  font-weight: bold;
  font-size: 12px;
}
.progressbar-wrapper .progressbar li:before {
  width: calc(100% - 4em);
  height: 1px;
  content: "";
  position: absolute;
  border-top: 2px dotted #b25140;
  top: 30px;
  right: calc(50% + 2em);
  z-index: -1;
}
.progressbar-wrapper .progressbar li:first-child:before {
  content: none;
}
.progressbar-wrapper .selected .far.fa-circle {
  font-weight: 900;
}
.progressbar-wrapper .selected .fa-stack-1x {
  color: white;
}
.progressbar-wrapper .inactive {
  opacity: 0.5;
  pointer-events: none;
}

/*#endregion*/
/*#region Slick Carousel*/
.slick-hero {
  margin-bottom: 25px;
}

.slick-hero > a:not(:first-child) {
  display: none;
}

.slick-list {
  max-height: 480px;
  overflow-y: hidden;
}

.slick-dots li button:before {
  font-size: 16px;
  opacity: 1 !important;
  color: #38240c !important;
}

.slick-dots li.slick-active button:before {
  color: #176b39 !important;
}

.slickNav {
  float: right;
  position: relative;
  width: 100px;
  text-align: right;
}

.slickNav button.slick-prev {
  position: relative;
  display: inline-block;
  left: 0;
  top: 15px;
  margin-right: 15px;
}

.slickNav button.slick-next {
  position: relative;
  display: inline-block;
  right: 0;
  top: 15px;
  margin-right: 10px;
}

.slickNav button.slick-prev:before {
  color: #38240c;
  font-size: 32px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f104";
}

.slickNav button.slick-next:before {
  color: #38240c;
  font-size: 32px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f105";
}

.slick-slide img {
  width: 100%;
}

/*#endregion*/
/*#region Pagination*/
.pagination .page-item:not(.active) .page-link {
  background-color: white;
  border: 1px solid #38240c;
}

.pagination .page-item:not(.active) .page-link:hover {
  background-color: #ffecd9;
  color: #38240c;
}

.pagination .page-item.active .page-link,
.pagination .page-item.active .page-link:hover {
  background-color: #38240c;
  border: 1px solid #38240c;
}

/*#endregion*/
/*#region Misc*/
label.error[for] {
  border: 1px solid #f5c6cb;
  box-shadow: none;
  color: #b88d91;
  font-weight: bold;
  background-color: #f8d7da;
  display: block;
  font-size: 12px;
}

/*#endregion*/
/*#region Map*/
.usmap {
  display: block;
  max-width: 100%;
  height: auto;
  /*.il{fill:$yellow !important;}*/
}
.usmap .state path {
  fill: #38240c;
  cursor: pointer;
}
.usmap .state path:hover {
  opacity: 0.75;
}
.usmap .state a.disabled path {
  opacity: 0.5;
  pointer-events: none;
}
.usmap .borders {
  stroke: #ffecd9;
  stroke-width: 1;
}
.usmap .dccircle {
  display: inherit;
  fill: #38240c;
}
.usmap .separator1 {
  stroke: #ffecd9;
  stroke-width: 1;
}

/*#endregion*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  background: #ffecd9;
  border: 1px solid #38240c;
  color: #38240c;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #38240c;
}

.ui-widget-content {
  background-color: #ffecd9;
  color: #38240c;
}

.ui-widget-header {
  background-color: rgba(0, 0, 0, 0.1);
  border: #38240c;
  color: #38240c;
}

.cart-img {
  max-width: 75px;
  max-height: 75px;
  border: 1px solid #38240c;
}

.fa-trash-alt {
  transition: all ease-in-out 0.3s;
  text-align: center;
}

.fa-trash-alt:hover {
  transform: scale(1.25);
}

.fa-globe-anim {
  font-family: "Font Awesome 5 Free";
  content: "\f7a2";
}

.fa-globe-anim:before {
  content: "\f7a2";
  animation: globe-anim 2s infinite;
}

@keyframes globe-anim {
  0% {
    content: "\f7a2";
  }
  25% {
    content: "\f57e";
  }
  50% {
    content: "\f57d";
  }
  75% {
    content: "\f57c";
  }
}
.orderbox {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #38240c;
  border-radius: 4px;
  padding: 15px;
}

.accordion-button {
  background-color: #38240c !important;
  color: white !important;
  outline: none !important;
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-item {
  background-color: rgba(255, 255, 255, 0.25);
}

.accordion-header .accordion-button {
  font-size: 20px;
}

.accordion-body {
  max-height: 450px;
  overflow-y: auto;
}

.prod-list-img {
  width: 100%;
  height: 250px;
  max-height: 250px;
  object-fit: contain;
}

.tofdebug {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: inline-block;
  padding: 10px;
  background-color: black;
  opacity: 0.25;
  color: white;
  transition: all ease-in-out 0.3s;
  z-index: 1000;
  border-radius: 5px;
  cursor: pointer;
}

.tofdebug:hover {
  opacity: 1;
}

/*#region Admin*/
body.admin {
  background-image: none;
  background-color: #ffecd9;
}

body.admin nav.navbar {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.75);
}

body.admin footer.footer {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.75);
}

body.admin .navbar-brand img {
  filter: grayscale(0.7);
}

body.admin .navbar-brand:hover:after {
  animation: pulse-green 2s infinite;
}

body.admin tr.ship-us-priority, body.admin tr.ship-ups-second-day {
  background-color: rgba(0, 255, 0, 0.1);
}

body.admin tr.ship-international {
  background-color: rgba(0, 0, 255, 0.1);
}

/*#endregion*/
audio[controls] {
  background-color: transparent;
  width: 100%;
}

section#miniplayerContainer, section#miniplayerPopped {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 19px;
  border: 1px solid rgba(0, 0, 0, 0);
}
section#miniplayerContainer span.fa, section#miniplayerPopped span.fa {
  font-weight: normal;
  cursor: pointer;
}
section#miniplayerContainer a, section#miniplayerPopped a {
  font-weight: bold;
}
section#miniplayerContainer audio, section#miniplayerPopped audio {
  position: absolute;
  top: -55px;
  left: -20px;
  z-index: 100;
  min-width: 250px;
}
@media (max-width: 991px) {
  section#miniplayerContainer, section#miniplayerPopped {
    bottom: 3px;
  }
}

strong.fst-italic a, small a.fst-italic {
  line-height: 1.2;
  display: block;
  margin-top: 5px;
  text-align: left;
}

.v-none {
  width: 1px;
  overflow: hidden;
  color: transparent;
  font-size: 1pt;
}

#mastable .table-sm td {
  font-size: 9pt;
}
