body{
	margin:0;padding:0;
	font-size: 14pt;
}

/* ------ NAV STUFF ------ */  
.nav-scroll {
	overflow-y:auto; max-height:80vh
   }
   
.nav-text {
	color: gold;
}

.nav: a {
	color: gold;
}

nav a:hover {
  color: gold !important;
  animation: glow 1s ease-in-out infinite alternate;
  text-decoration: none;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
   
.nav-item-pad {
	padding: 8px;
}

.dropdown-item {
	margin-bottom: 6px;
	color: gold;
	background-color: transparent !important;
}



.navdropdownbkg {
	background-color: #1f3b31;
	margin-top: -5px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.dropdown-toggle {
	color: gold;
}



	
/* ------ NAVBAR BKG TRANSITION ------ */
.navbar { 
	background-color: #1f3b31; 
	border-bottom: 5px solid #911d16;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
	min-height: 80px;
	-webkit-transition: background-color 300ms linear; 
	-moz-transition: background-color 300ms linear; 
	-ms-transition: background-color 300ms linear; 
	transition: background-color 300ms linear; 
}

.scrolled { 
	background-color: #1f3b31; 
	-webkit-transition: background-color 300ms linear; 
	-moz-transition: background-color 300ms linear; 
	-ms-transition: background-color 300ms linear; 
	transition: background-color 300ms linear; 
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* ------ SHRINK NAVBAR ------ */
nav a {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  font-size: 18px;
  color: yellow;
  transition: all 0.3s;
}

nav .btn-sm {
	margin: 13px 15px 13px 0;
	transition: all 0.3s;
}

nav .navbar-toggle {
  margin: 13px 15px 13px 0;
  transition: all 0.3s;
}

.navbar-brand {
  width: 250px;
  transition: all 0.3s;
}

nav.navbar.shrink {
  min-height: 60px;
  transition: all 0.3s;
}

nav.shrink a {

  font-size: 14px;
  transition: all 0.3s;
}

nav.shrink .navbar-brand {
  width: 220px;
  transition: all 0.3s;
}

nav.shrink .navbar-toggle {
  padding: 4px 5px;
  margin: 8px 15px 8px 0;
  transition: all 0.3s;
}


/* ------ ANIMATED NAVBAR TOGGLER ------ */
.animated-icon1 {
width: 30px;
height: 20px;
position: relative;
margin: 0px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}

.animated-icon1 span {
display: block;
position: absolute;
height: 3px;
width: 100%;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}

.animated-icon1 span {
background: #fff
}

.animated-icon1 span:nth-child(1) {
top: 0px;
}

.animated-icon1 span:nth-child(2) {
top: 10px;
}

.animated-icon1 span:nth-child(3) {
top: 20px;
}

.animated-icon1.open span:nth-child(1) {
top: 11px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
opacity: 0;
left: -60px;
}

.animated-icon1.open span:nth-child(3) {
top: 11px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
}







/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	H1 {
  	font-family: 'Roboto Condensed', sans-serif;
    font-size: 18pt;
    color: gray;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 300px) {
	H1 {
  	font-family: 'Roboto Condensed', sans-serif;
    font-size: 22pt;
    color: gray;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	H1 {
  	font-family: 'Roboto Condensed', sans-serif;
    font-size: 26pt;
    color: gray;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	H1 {
  	font-family: 'Roboto Condensed', sans-serif;
    font-size: 34pt;
    color: gray;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	H1 {
  	font-family: 'Roboto Condensed', sans-serif;
    font-size: 32pt;
    color: gray;
  }
}


/* white */
.altclr:nth-of-type(even) {
    background-color:#f3eee0;
    color: #1f3b31;
    
}
.altclr:nth-of-type(even) h3 {
    font-size: 30pt;
    color: #1f3b31;
}

.altclr:nth-of-type(even) a {
    color: #1f3b31;
}

.altclr:nth-of-type(even) a:hover {
    color: #911d16;
}


/* green */
.altclr:nth-of-type(4n-1) {
    background-color:#1f3b31;
    color: #fefff7;
}
.altclr:nth-of-type(4n-1) h3 {
    font-size: 30pt;
    color: #fefff7;
}
.altclr:nth-of-type(4n-1) a {
    color: #fefff7;
}
.altclr:nth-of-type(4n-1) a:hover {
    color: gold;
}



/* red */
.altclr:nth-of-type(4n-3) {
    background-color:#911d16;
    color: #fefff7;
}
.altclr:nth-of-type(4n-3) h3 {
    font-size: 30pt;
    color: #fefff7;
}

.altclr:nth-of-type(4n-3) a {
    color: #fefff7;
}
.altclr:nth-of-type(4n-3) a:hover {
    color: gold;
}


/* --- stripe for myAccount-used.cfm --- */
.usedProd:nth-of-type(odd) {
    background-color: #f2f2f2;
}
.row.highlight:hover > * {
    background-color: #f0f0f0;
    cursor: pointer;
}

.hero2
{
    width: 0px;
    height: 0px;
    border-style: solid;
    margin: auto;
    border-width: 24px 60px 0 60px;
    border-color: #ffffff transparent transparent transparent;
    line-height: 0px;
    _border-color: #ffffff #911d16 #911d16 #911d16;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#911d16');
}

.triangle-down {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 100px 0 100px;
	border-color: #000000 transparent transparent transparent;
	line-height: 0px;
	left: 50%;
	transform: translate(-50%);
	_border-color: #000000 #ffffff #ffffff #ffffff;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#ffffff');

}

  .rowBgRed {

  background-color: #911d16;
}

.btn-gradient {
	background: rgb(194,9,17);
	background: linear-gradient(180deg, rgba(194,9,17,1) 0%, rgba(81,2,2,1) 100%);
	border: 1px solid black;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
	color: white;
}

.btn-gradient:a {
	color: white;
}
.btn-gradient:hover {
	color: yellow;
}

.btn-yellow {
    background-color: #f9d94c;
    border-color: #f9d94c;
    color: black;
}


.arrow-right {
 /* width: 0; 
  height: 0; 
  border-top: 5px solid transparent; */
  border: 5px solid transparent;
  
  border-left-color: black;
}






H2 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18pt;
	color: darkblue;
}
H3 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 22pt;
	color: DarkBlue;
	font-weight: 800;
}

H3-cart {
	font-family: 'arial Condensed', sans-serif;
	font-size: 18pt;
}

hr.CandyCane {
    border-top: 2px dashed red;
    width: 90%;
}

/*
a:link {
  color: yellow;
  text-decoration: none;
}
*/





.FreeTrial {
	background-color: yellow; 
	color: red;
	font-family: 'arial Condensed', sans-serif;
	font-weight: bold;
	font-style: italic;
}
.productdescription {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16pt;
	color: 4f4f4f;
}
.cartHdrNew {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 2vw;
	font-weight: 700;
	color: black;
}

.cartHdrNew {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 2vw;
	font-weight: 700;
	color: black;
}
.cartItem {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16pt;
	color: black;
}

.success-animation { 
	margin:20px auto;
}

.verify-h1 {
	font-size: 24pt;
	color: gray;
}

.hide-checkbox {
	display: none !important;
}

.productName {
	font-size: 18pt;
}

input[type=radio] {
    height: 20px;
 	width: 20px;
  	background-color: #bbb;
  	border-radius: 50%;
}
.title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18pt;
	font-weight: 700;
	color: black;
}
.faColor {
	color: LightSeaGreen;
}

/* -- FOOTER STUFF -- */

.fa-facebook:hover, .fa-twitter:hover, .fa-pinterest:hover, .fa-instagram:hover, .fa-youtube:hover {
	color: gold !important;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}


.footertext {
	color: #f3eee0;
}
a.FooterMenu {
  	text-decoration: none;
	color: #f3eee0;
   	font-family: roboto, arial, Helvetica;
   	font-size: 10pt;
}

a.FooterMenu:hover {
  	text-decoration: none;
	color: gold;
   	font-family: roboto, arial, Helvetica;
   	font-size: 10pt;
}

.footer-color {
    background-color: #1f3b31;
    border-top: 20px solid #911d16;
}
.copyright {
    font-size: 10pt;
    font-family: roboto, arial, Helvetica;
    color: #f3eee0;
}
.iconFB {
    font-size: 30pt;
    color: #f3eee0;
}
.iconTW {
    font-size: 30pt;
    color: #f3eee0;
}
.iconPT {
    font-size: 30pt;
    color: #f3eee0;
    margin-left: 20px;
}
.iconYT {
    font-size: 30pt;
    color: #f3eee0;
    margin-left: 20px;
}
.iconIG {
    font-size: 30pt;
    color: #f3eee0;
    margin-left: 20px;
}

.modal-header {
	background-color: #e2ffec;
	border-bottom: 1px solid teal;
}

.field-icon {
  float: right;
  margin-left: -25px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  color: #c1c1c1;
  cursor: pointer;
}
.field-icon2 {
  float: right;
  margin-left: -25px;
  margin-top: -45px;
  position: relative;
  z-index: 2;
  color: #c9c9c9;
  cursor: pointer;
}

.container-pw{
  padding-top:50px;
  margin: auto;
}

/* ---------- Christmas Button ---------- */
.button-Christmas {
	position: relative;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 8px 16px;
	min-width: 10em;
	text-align: center;
	color: #fff;
	background-image:
		linear-gradient(to bottom, #f12828, #a00332, #9f0f31),
		linear-gradient(to bottom, #ae0034, #6f094c);
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	box-shadow:
		inset 0 1px rgb(255 255 255 / .25),
		inset 0 -1px rgb(0 0 0 / .1),
		0 2px 4px rgb(0 0 0 / .25);
	transition: .2s;
	will-change: transform;
}

.button-Christmas:active {
	transform: scale(.92);
	filter: brightness(.8);
}

.button-Christmas-hat {
	position: absolute;
	top: -15px;
	left: -17px;
	height: 44px;
	filter: drop-shadow(0 2px 1px rgb(0 0 0 / .25));
}

