@charset "UTF-8";

/* CSS Document */
@import url("/static/webfonts/SourceSansPro_Regular/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_Semibold/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_Black/stylesheet.css");

@import url("/static/webfonts/OpenSans_Regular/stylesheet.css");
@import url("/static/webfonts/lora_regular/stylesheet.css");
@import url("/static/webfonts/jenna_sue/stylesheet.css");
@import url("/static/webfonts/OpenSans_Light/stylesheet.css");

/*Site Colors*/
/*
Cork #ffdb96
Red #77160d
Tan #fdf7e7
Brown #5b4e3e
LtBrown #918373
Cream #fff5e5
*/

img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
img {
	border: none;
	outline: none;
}
hr {
	clear:both;
    border-color: rgba(65,52,41,0.50);
}
a:active {
    outline:none;
}
a:link, a:visited {
	color: #77160d;
	text-decoration: none;
}
a:hover, a:active {
	color: #5b4e3e;
}

.logoLink {
	min-height: 80px;
    display: block;
	z-index: 8000;
}

a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
/**/

/* Bounce Stuff */
.bounceit {
	margin-top: 50px;
	width: 100%;
	text-align:center;
	bottom: 0px;
	animation: bounce 1s infinite alternate;
	-webkit-animation: bounce 1s infinite alternate;
	position: absolute;
}
@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from{
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

/*Page Fade In*/
	/* make keyframes that tell the start state and the end state of our object */
	@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	
@media screen {
	.bodyGoods {
	  opacity:0;  /* make things invisible upon start */
	  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	  -moz-animation:fadeIn ease-in 1;
	  animation:fadeIn ease-in 1;
	
	  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	  -moz-animation-fill-mode:forwards;
	  animation-fill-mode:forwards;
	
	  -webkit-animation-duration:1s;
	  -moz-animation-duration:1s;
	  animation-duration:1s;
	  
	  -webkit-animation-delay: 0.1s;
	  -moz-animation-delay: 0.1s;
	  animation-delay: 0.1s;
	}
	.bodyGoods.headerBox {
	  -webkit-animation-delay: 1s;
	  -moz-animation-delay: 1s;
	  animation-delay: 1s;
	}
	.bodyGoods.contetnBox, .bodyGoods.contetnBoxTop {
	  -webkit-animation-delay: 1.8s;
	  -moz-animation-delay: 1.8s;
	  animation-delay: 1.8s;
	}
	.bodyGoods.galleryphoto {
	  -webkit-animation-delay: 2.1s;
	  -moz-animation-delay: 2.1s;
	  animation-delay: 2.1s;
	}
	.bodyGoods.gallerythumbs {
	  -webkit-animation-delay: 2.4s;
	  -moz-animation-delay: 2.4s;
	  animation-delay: 2.4s;
	}
}
/*Page Fade End*/


/* Site Headers */

.lrgHdr, h1, .medHdr, h2, .smHdr, h3, .xsmHdr, h4, .xxsmHdr, h5, .xxxsmHdr, h6 {
	color: #5b4e3e;
    font-family: mrs-eaves-roman-small-caps, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
}
.lrgHdr, h1 {
    font-size: 2.9em;	/*margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;*/
}
.medHdr, h2 {
    font-size: 2.2em;	/*margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;*/
}
.smHdr, h3 {
	font-size: 1.7em;
	/*margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;*/
}
.xsmHdr, h4 {
	font-size: 1.3em;
	/*margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;*/
}
.xxsmHdr, h5 {
	font-size: 1.1em;
	/*margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;*/
}
.xxxsmHdr, h6 {
    font-size: 1.25em;
    /* [disabled]font-family: "Open Sans", "OpenSans Regular", open-sans, Arial, sans-serif; */	/*margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;*/
}
/* Content text */
.bigfirstletter::first-letter {
	float: left;
	font-size: 4em;
	line-height: .8;
	padding-right: 6px;
    font-family: mrs-eaves-roman-small-caps, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.largeText {
    font-size: 1.1em;
}
.bodyText {
	font-size: 1em;
}
.medText {
	font-size: 1.1em;
}
.smText {
	font-size: .9em;
}

/* Colored text */
/* Add these to the tinymce dropdown - /static/mezzanine/js/tinymce_setup.js - Line 122 */
.textRed  {
	color: #77160d;
}
.textBrown  {
	color: #5b4e3e;
}
.textCork  {
	color: #ffdb96;
}
.textCream  {
	color: #fff5e5;
}
.textWhite  {
	color: #FFFFFF;
}

#dateWrapper .datepicker .ui-widget.ui-widget-content {
    width: 90%;
}

/* Image Stuff */

.grayedImage { /* make all photos black and white ish */ 
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
}
.sepiaImage{
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}
.saturateImage {
	-webkit-filter: saturate(300%);
    filter: saturate(300%);
}
.tiltRight {
    -ms-transform: rotate(1.5deg); /* IE 9 */
    -webkit-transform: rotate(1.5deg); /* Safari */
    transform: rotate(1.5deg);
}
.tiltLeft {
  -ms-transform: rotate(-1.5deg); /* IE 9 */
  -webkit-transform: rotate(-1.5deg); /* Safari */
  transform: rotate(-1.5deg);
}
.loadingBox {
	  border: 1px solid #389042;
	  background-color: #12A32F;
	  padding: 7px;
	  font-weight: bold;
	  color: #FFFFFF;
	  font-size: 1.1em;
}

/* Content Stuff */

body {
	font-family: "Open Sans", "OpenSans Regular", open-sans, Arial, sans-serif;
	font-size: 15px;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
    color: #5b4e3e;
}
.animatedParent {
	overflow-x: hidden;
}
p {
	padding-top: 0px;
	margin-top: 0px;
}

.bulletStyle {
}
 ul.bulletStyle {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}
 ul.bulletStyle li {
	background-image: url(/static/mainimages/bulletimg.png);
	background-repeat: no-repeat;
	background-position: left 6px;
	padding-left: 15px;
}

.alert {
    margin-top: 2px;	
    /*background-color: rgba(255,243,243,1.00);
	color: #B6292B;
	margin: 10px;
	padding: 8px 30px 8px 8px;
	text-shadow: 0px 0px 0px rgba(0,0,0,0.00);*/
}

.moreButton {
	float:right; 
	margin-left:10px; 
	color:#C33A3C;
}

.totopbutton {
	position: fixed;
	right: 10px;
	bottom: 20px;
	z-index: 9999;
	opacity: 0;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
    -webkit-transition: opacity 2s; /* Safari */
    transition: opacity 2s;
}
.totopbutton.sticky {
	opacity:1;
}
.totopbutton a {
	padding: 15px 23px;
	display: block;
	border: 1px solid #E1E1E1;
	border-radius: 50%;
}
.totopbutton a:link, .totopbutton a:visited {
	background-color: rgba(255,255,255,0.88);
	color:#CCC;
}
.totopbutton a:hover, .totopbutton a:active {
	background-color: rgba(255,255,255,0.98);
	color: #666 !important;
}


/*Bottom form popup*/
.bottomPopup {
	position: fixed;
	bottom: 0px;
	right: 30px;
	z-index: 1001;
	width: 219px;
}
.bottomPopupBttn {
	text-align: right;
	z-index: 60;
}
.bottomPopupBttn .btn {
	border-radius: 4px 4px 0px 0px;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
}
.bottomPopupWindow {
	padding: 15px;
	background-color: #fff;
	border-left: 1px solid #989898;
	border-right: 1px solid #989898;
	border-bottom: 1px none #989898;
	border-top: 1px solid #989898;
}
.bottomPopupWindow textarea {
	width: 100% !important;
}


/*Right form Slideout*/
.rightPopup {
	position: fixed;
	top: 240px;
	right: 0px;
	z-index: 1001;
}
.rightPopupBttn {
	text-align: right;
	z-index: 60;
	-ms-transform: rotate(-90deg); /* IE 9 */
	-webkit-transform: rotate(-90deg); /* Safari */
	transform: rotate(-90deg);
	float: left;
	top: 0px;
	margin-right: -48px;
	margin-top: 48px;
}
.rightPopupBttn .btn {
	border-radius: 4px 4px 0px 0px;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
}
.rightPopupWindow {
	padding: 15px;
	background-color: #fff;
	border-left: 1px solid #989898;
	border-right: 1px none #989898;
	border-bottom: 1px solid #989898;
	border-top: 1px solid #989898;
	float: left;
}
.rightPopupWindow .closebtn {
    font-size: 36px;
	display: none;
}
.rightPopupWindow textarea {
	width: 100% !important;
}
#rightslide {
	width: 0px;
	display: none;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
#closeon {
	display: none;
}
#openon {
}

.slick-slide {
	background-size:170% !important;
}
.container-fluid {
	padding-left:15px;
	padding-right:15px;
}

.bodyGoods {
	background-color: #5b4e3e;
}
.bodyGoods .viewnope {
	display: none;
}
.copyright {
    font-size: 0.6em;
    padding-top: 20px;
    text-align: center;
}
.headerFloater {
    width: 100%;
    /* [disabled]position: absolute; */
    /* [disabled]z-index: 20; */
    background-color: #fdf7e7;
    /* [disabled]top: 0px; */
    /* [disabled]padding-bottom: 7px; */
}
.announcementBox {
    background-color: #AA9F92;
    padding: 10px;
    border-radius: 0px;
    margin: 0px !important;
    color: #3B3228;
    font-family: mrs-eaves-roman-small-caps, sans-serif;
    font-size: 1.3em;
    line-height: 1em;
}
.announcementBox h1, .announcementBox h2, .announcementBox h3, .announcementBox h4, .announcementBox h5, .announcementBox h6 {
    color: #fdf7e7;
}
.announcementBox p:last-of-type {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.announcementBox p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.announcementBox .close {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px;
    padding-right: 0px;
    right: 15px;
    top: 8px;
}
.announcementBox .abpadding {
    padding-right: 0px;    /*background-image: url(/static/mainimages/bgDots-tan.png), url(/static/mainimages/bgDots-tan.png);
    background-repeat: repeat-x, repeat-x;
    background-position: center bottom, center top;*/
}
.headerBox {
    color: #77160d;
    padding-top: 5px;
    padding-bottom: 18px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    background-image: url(/static/mainimages/bgDots-red-tall.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    border-bottom: 3px solid #fdf7e7;
}
.phoneBox {
    text-align: center;
    margin-top: 38px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    z-index: 902;
    margin-right: 85px;
    font-size: 2em;
    font-family: mrs-eaves-roman-small-caps, sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 0px;
    padding-right: 0px;
}
.phoneBox a {
	margin-left: 8px;
}
.phoneBox a:link, .phoneBox a:visited {
    color: #77160d;
}
.phoneBox a:hover, .phoneBox a:active {
    color: #5b4e3e;
}
.phoneBox .dropdown-menu {
    border-radius: 0px;
    background-color: #fdf7e7;
    border: 1px solid #77160d;
}
.phoneBox .dropdown-item:hover, .phoneBox .dropdown-item:focus {
    background-color: transparent;
}
.phoneBox .dropdown-menu a:link, .phoneBox .dropdown-menu a:visited {
    color: #5b4e3e;
}
.phoneBox .dropdown-menu a:hover, .phoneBox .dropdown-menu a:active {
    color: #77160d;
}
.phoneBox .fa-phone {
}
.cartBox {
}
.cartIcon {
    /*color: #fdf7e7;
    background-color: #77160d;
    display: inline-block;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    margin-left: 7px;
    padding-top: 3px;
    font-size: 16px;*/
}
.cartIcon:hover {
    /*background-color: #77160d;*/
}
.cartBox .badge {
    margin-top: 0px;
    font-size: 10px;
    position: absolute;
    margin-left: -7px;
    background-color: #5b4e3e;
    /* [disabled]border: 1px solid #fff5e5; */
    color: #fdf7e7;
}
.cartdropdown {
}
.cartdropdown .dropdown-menu {
    padding: 8px;
    text-align: center;
    width: 280px;
    line-height: 1em;
    font-family: sans-serif;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
}
.cartdropdown .dropdown-menu li {
    padding-bottom: 0px;
    margin-bottom: 4px;
}
.cartdropdown .dropdown-menu table {
    font-size: 0.8em;
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    background-color: rgba(255,255,255,1.00);
    line-height: 1.2em;
}
.cartdropdown .dropdown-menu table td {
    padding: 5px;
    vertical-align: top;
}
.cartdropdown .dropdown-menu table tr {
    /* [disabled]border-bottom: 1px solid rgba(138,13,3,0.28); */
}
.cartdropdown .dropdown-menu table tr:last-of-type {
    border-bottom: none;
}
.cartdropdown .dropdown-toggle::after {
    content: none;
}
.cartdropdown .dropdown-menu .btn {
    margin-left: auto !important;
    margin-right: auto !important;
}
.navbarBox {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    margin-top: -60px;
    font-family: mrs-eaves-roman-small-caps, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
    font-size: 1.3em;
}
.navhours {
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    padding-top: 8px !important;
    margin-bottom: 13px !important;
    margin-top: 5px !important;
    padding-left: 15px;
    padding-bottom: 15px;
    line-height: normal;
}
.navhours h6 {
    color: #76160D;
}
.navhours p {
	padding: 0px;
	margin: 0px;
}
.navlog {
	border-bottom: 1px solid #DDD;
	/*padding-top: 8px !important;
	margin-bottom: 5px !important;
	margin-top: 5px !important;*/
}
.navsociallinks {
	padding-left: 15px;
}

.logoBox {
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    z-index: 5;
}
.logoBox img {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
.logosizer {
	width: 100px;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
.searchBox {
	padding-bottom: 15px;
	padding-top: 15px;
	display: none;
}
.searchBox form {
	text-align: center;
	float:none;
}
.searchBttn {
	color: #ffffff;
	background-color: #666666;
}
#searchinput {
	width: 100%;
}

/*Header Squish*/
.headerFloater.sticky {
}
.headerFloater.sticky .logoBox {
}
.headerFloater.sticky .logosizer {
}
.headerFloater.sticky .phoneBox {
}
.headerFloater.sticky .navbarBox {
}
.headerFloater.sticky .searchBox {
}
/*End Header Squish*/

.contentBox {
    /* [disabled]background-color: #fff5e5; */
    padding-bottom: 30px;
    padding-top: 30px;
}
.contentBox .col-12, .contentBox .col-sm-12 {
	/*padding: 15px;*/
}
.breadcrumb {
    background-color: transparent;
}
.topWaveBg {
    background-image: url(/static/mainimages/squiggleBg-top.png);
    background-repeat: repeat-x;
    background-position: center top;
    padding-top: 70px;
}
.paperBg {
    background-image: url(/static/mainimages/paperBg.png);
    background-repeat: repeat;
}
.topWaveBg.paperBg {
    background-image: url(/static/mainimages/squiggleBg-top.png), url(/static/mainimages/paperBg.png);
    background-repeat: repeat-x, repeat;
    background-position: center top;
}
.bttmWaveBg.paperBg {
    background-image: url(/static/mainimages/squiggleBg-bttm.png), url(/static/mainimages/paperBg.png);
    background-repeat: repeat-x, repeat;
    background-position: center bottom;
}
.wavestopbttmBg {
    background-image: url(/static/mainimages/squiggleBg-bttm.png), url(/static/mainimages/squiggleBg2-top.png);
    background-repeat: repeat-x, repeat-x;
    background-position: center bottom, center top;
}
.sponsorsBox {
	padding-bottom: 50px;
	border-top: 1px solid #F4F4F4;
}
.contactBox {
	color: #FFFFFF;
	background-color: #696969;
}
.contactInfoBox {
	background-color: transparent;
}
.contactInfoBox h1, .contactInfoBox h2, .contactInfoBox h3, .contactInfoBox h4, .contactInfoBox h5, .contactInfoBox h6 {
	color:#fff;
}
.contactInfoBox a:link, .contactInfoBox a:visited {
	font-weight: normal;
	color: #CDCDCD;
	text-decoration: none;
}
.contactInfoBox a:hover, .contactInfoBox a:active {
	font-weight: normal;
	color: #DEDEDE;
}
.contactInfoBox .form-group {
	margin-bottom:8px;
}
.contactInfoBox .form-group textarea {
	height: 75px;
}
.contactInfoBox .formerrortext {
}
.contactInfoBox .formrequiredtext {
	display: none;
}
.contactInfoBox .formhelptext {
}
.contactInfoBox label {
	display: none;
}
.hideformstuff label, .hideformstuff .formrequiredtext {
	display: none;
}

.contactBox .mapBox {
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}
.contactBox .mapBox iframe {
	margin-bottom: -6px;
	height: 200px;
}
/*For contact page map*/
.contactmapBox {}
.contactmapBox iframe {
	height: 350px;
}

/* --- Fixed background image (stays in place in div as page/content scrolls Note: DW can't handle it) --- */
.imageBox {
	background-image: url(/static/mainimages/rotationimageLrg.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	text-shadow: 0px 0px 8px rgba(0,0,0,0.48);
	text-align: center;
	color: #FFFFFF;
	min-height: 300px;
	position: relative;
	background-color: #000000;
}
.grayBox {
	background-color: #F5F5F5;
}
.redBox {
	background-color: #77160d;
}
.brownBox {
	background-color: #5b4e3e;
}
.darkBox {
	color: #FFFFFF;
}
.offwhiteBox {
    background-color: #fdf7e7;
}
.darkBox a:link, .darkBox a:visited {
	color: #FFFFFF;
}
.darkBox a:hover, .darkBox a:active {
	color: #FFFFFF;
}
.darkBox h1, .darkBox h2, .darkBox h3, .darkBox h4, .darkBox h5, .darkBox h6 {
    color: #FFFFFF;
}
.contentHdrBox {
    color: #ffffff;
    padding-top: 5px;
    background-image: url(/static/mainimages/bgDots-tan.png), url(/static/mainimages/bgDots-tan.png);
    background-repeat: repeat-x, repeat-x;
    background-position: center bottom, center top;
    text-align: center;
    border-top: 8px solid #5b4e3e;
    border-bottom: 8px solid #5b4e3e;
    margin-bottom: 25px;
}
.testimonialsBox {
    text-align: center;
    background-repeat: repeat-x;
    background-position: center 17px;
    background-image: url(/static/mainimages/bgDots-brown.png);
    padding-top: 10px;
    margin-top: 20px;
}
.testlogoBox {
    text-align: center;
    margin-top: 40px;
}
.testlogoBox .testlogos {
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.testimonialsHdr {
    text-align: center;
}
.testimonialsHdr h2 {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    background-image: url(/static/mainimages/paperBg.png);
    padding-left: 17px;
    padding-right: 17px;
    margin-top: -10px;
}
.testimonialsBox .textslider {
    padding-bottom: 5px;
    padding-top: 10px;
}
.testimonialsBox h6 {
	margin-bottom: 0px;
	margin-top: 10px;
}
.testimonialsBox .largeText {
    padding-left: 25px;
    padding-right: 15px;
    display: block;
    font-size: 1em;
}

.emailsignupBox {
    text-align: center;
    background-image: url(/static/mainimages/bgDots-red-tall.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    padding-bottom: 30px;
    padding-top: 20px;
}
.emailsignupBox form {
    margin-left: auto;
    margin-right: auto;
    max-width: 675px;
}

.sidetextBox {
    background-color: rgba(255,255,255,0.35);
    margin: 8px;
    padding: 8px;
    border: 3px solid #77160d;
    -webkit-box-shadow: 3px 2px 8px rgba(0,0,0,0.35);
    box-shadow: 3px 2px 8px rgba(0,0,0,0.35);
}
.sidetextBox p:last-of-type {
    margin-bottom: 0px;
}
.sidetextBox .headertext {
    display: block;
    padding: 8px;
    background-color: #77160d;
    margin-top: -44px;
    text-align: center;
    margin-bottom: 12px;
}
.sidetextBox .sidetextborder {
    border: 1px solid #77160d;
    padding: 20px;
}
.sidetextBox .headertext h3 {
    color: #fff;
    display: block;
    padding: 8px;
    border: 1px solid #fff5e5;
    font-size: 1em;
    line-height: 1em;
    margin: 0px;
    letter-spacing: 1px;
}
.custreviews {
    padding: 25px;
    background-color: #fff;
    border: 1px solid rgba(65,52,41,0.50);
    margin-top: 25px;
    margin-bottom: 25px;
}
.dottedLine {
    background-color: #fdf7e7;
    background-repeat: repeat-x;
    background-position: center center;
    background-image: url(/static/mainimages/bgDots-red-tall.png);
    padding-top: 32px;
}
.hometextBox {
    padding-top: 10px;
    text-align: center;
}

.footerBox {
    color: #ffffff;
    padding-bottom: 30px;
    text-align: center;
}
.footerBox h1, .footerBox h2, .footerBox h3, .footerBox h4, .footerBox h5, .footerBox h6 {
	color: #ffffff;
}
.footerBox a:link, .footerBox a:visited {
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
}
.footerBox a:hover, .footerBox a:active {
	font-weight: normal;
	color: #918373;
}
.footerText {
    margin-top: 20px;
}
.footerText p:last-of-type {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.footerNav {
	display: none;
    text-transform: uppercase;
    font-family: "lora regular", Lora, "Times New Roman", serif;
    font-size: .9em;
}
.footerNav li {
    padding-right: 16px;
    margin-bottom: 8px;
    display: inline-block;
}
.footerNav li:last-of-type {
	border-right: none;
}
.footerNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.footerNav ul li ul {
	display: none;
}


.sociallinksBox {
    margin-bottom: 10px;
    margin-top: 20px;
}
.sociallinksBox img {
	margin-left: 3px;
	margin-right: 3px;
	margin-bottom: 8px;
}
/* For FontAwesome icons */
.sociallinksBox a, .p7AMM.amm-responsive .sociallinksBox a {
	display: inline-block !important;
	border-radius: 50% !important;
	margin-right: 3px !important;
	margin-left: 3px !important;
	text-align: center !important;
	width: 35px !important;
	height: 35px !important;
	padding: 7px 0px 0px 0px !important;
	font-size: 20px !important;
	line-height: 20px !important;
}
.sociallinksBox a {
    border: 2px dotted rgba(65,52,41,0.50);
}
.sociallinksBox a:last-of-type {
	margin-right: 0px;
}
.sociallinksBox a:first-of-type {
	margin-left: 0px;
}
.sociallinksBox a:link, .sociallinksBox a:visited {
	background-color: #fff5e5 !important;
	color: #5b4e3e !important;
}
.sociallinksBox a:hover, .sociallinksBox a:active {
	background-color: #918373 !important;
	color: #5b4e3e !important;
}
.topsociallinks {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	margin-top: 0px;
	text-align: right;
}
.topsociallinks a {
	color: #FFFFFF;
    border: 2px dotted rgba(139,14,4,0.50);
}
.topsociallinks a:link, .topsociallinks a:visited {
	background-color: #fff5e5 !important;
	color: #77160d !important;
}
.topsociallinks a:hover, .topsociallinks a:active {
	background-color: #ffdb96 !important;
	color: #77160d !important;
}

/*To make the top phone number look like a button matching icons buttons */
.phonebutton a {
	display: inline-block;
	border-radius: 20px;
	margin-right: 3px;
	margin-left: 3px;
	text-align: center;
	color: #FFFFFF;
	height: 35px;
	padding-top: 7px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 20px;
	line-height: 20px;
	border: solid 1px #fff;
	vertical-align: top;
}
.phonebutton a:link, .phonebutton a:visited {
	background-color: #000000;
	color: #FFFFFF;
}
.phonebutton a:hover, .phonebutton a:active {
	background-color: #CCCCCC;
	color: #FFFFFF;
}

/* for image icon with font-awesome icons */
.sociallinksBox a.nope {
	display: inline-block;
	border-radius: none;
	width: auto;
	height: auto;
	padding-top: 7px;
	border: none;
}

.mapBox {
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
}
.mapBox iframe {
	min-height: 220px !important;
}
.addressBox {
    padding-top: 16px;
    padding-bottom: 0px;
    color: #FFF;
}
.addressBox p:last-of-type {
	padding-bottom: 0px;
	margin-bottom:0px;
}
#contentLeft {
	padding-bottom: 20px;
}
#sidebarBox {
	border-top: 1px solid #CDCDCD;
	padding-top: 20px;
}
.sidebarNav {
}
.sidebarNav ul {
	list-style-type: none;
	border-bottom: 1px solid #E9E9E9;
	margin-left: 0px;
	padding-left: 0px;
}
.sidebarNav li {
	border-top: 1px solid #E9E9E9;
}
.sidebarNav a {
	padding: 6px 10px;
	display:block;
}
.sidebarNav a:hover, .sidebarNav a:active {
	background-color: rgba(102,152,174,0.25);
	text-decoration:none;
	color:#333333;
}
.sidebarNav .active a {
	background-color: rgba(0,0,0,0.15);
	color: #FFFFFF;
}
.photoLeft {
	padding-bottom:10px;
	display:block;
}
.photoRight {
	padding-bottom:10px;
	display:block;
}
#contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
}
#contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
}
#sidebarLeftBox {
	border-bottom: 1px solid #CDCDCD;
	padding-bottom: 20px;
}
#contentRight {
	padding-top: 20px;
}
#leftsidebar {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #CDCDCD;
}
#contentmiddle {
}
#rightsidebar {
	border-top: 1px solid #CDCDCD;
	padding-top: 20px;
	margin-top: 20px;
}

/*--Static image/text boxes--*/
.photoRowBox {
	text-align: center;
	margin-bottom: 20px;
}
.photoRowBox:last-of-type {
	margin-bottom: 0px;
}
.photoRowCaption {	
	padding-top:10px;
}
.photoRowPhoto {
}
.photoRowPhoto img {
}


/*--Animated image/text boxes--*/
.aniphotoRowBox {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
}
.aniphotoRowBox:last-of-type {
}
.aniphotoRowBox a  {
	color: #FFFFFF;
}
.aniphotoRowCaption {
    transition: all 0.9s ease-in-out 0s;
    -webkit-transition: all 0.9s ease-in-out 0s;
    -moz-transition: all 0.9s ease-in-out 0s;
    position: absolute;
    /* [disabled]top: 50%; */
    /* [disabled]transform: translateY(-50%); */
    width: 100%;
    margin-left: -15px;
    bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
}
.aniphotoRowBg {
    background-color: rgba(145,131,115,1.00);
    /* [disabled]padding-top: 2%; */
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 2%;
    height: auto;
}
.aniphotoRowBdr {
    border-left: 2px solid #fff5e5;
    border-right: 2px solid #fff5e5;
    border-bottom: 2px solid #fff5e5;
    border-top: 2px none #fff5e5;
    padding-top: 1px;
}
.aniphotoRowCaption h5 {
    color: #FFFFFF;
    font-size: 1.5em;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    margin-top: 15px;
    margin-bottom: -11px;
    padding-bottom: 0px;
    line-height: 1em;
}
.aniphotoRowCaption .bttmtext {
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    padding: 0px;
    margin: 0px;
    opacity: 0;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    height: 0px;
    overflow: hidden;
    display: inline-block;
    color: #FFFFFF;
}
.aniphotoRowCaption .bttmtext .btn-sitecolor2 {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    margin-top: 5px;
}
.aniphotoRowCaption .bttmtext p {
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    font-size: 0.8em;    /*margin-bottom: 0px;*/
    text-align: left;
    line-height: normal;
}
.aniphotoRowPhoto {
	background-color:#000000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.roundimages {
	border-radius: 50%;
}
.roundimages img {
	border-radius: 50%;
}
.aniphotoRowPhoto img {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    width: 96%;
    /* [disabled]opacity: 0.5; */
    margin: 2%;
    border: 2px solid rgba(255,255,255,1.00);
}
.aniphotoRowBox a:hover .aniphotoRowPhoto img {
    /* [disabled]opacity: 0.8; */
}
.aniphotoRowBox a:hover .aniphotoRowCaption h5 {
	margin-bottom:5px;
}
.aniphotoRowBox a:hover .aniphotoRowCaption .bttmtext {
	opacity:1;
    padding-bottom: 15px;
    overflow: visible;
    height: auto;
}
.aniphotoRowBox a:hover .aniphotoRowCaption .bttmtext p {
    margin-bottom: 1;
}
.aniphotoRowBox a:hover .aniphotoRowCaption .bttmtext .btn-sitecolor2 {
    margin-top: 5px;
}
.aniphotoRowBox a:hover .aniphotoRowCaption .aniphotoRowBg {
    background-color: rgba(145,131,115,0.88);
}

#photoGalleryBox {
}
#photoGalleryBox .photoRowBox {
}
#photoGalleryBox .photoRowPhoto img {
}

.twoCol1 {
}
.twoCol2 {
}

/* -- Home Slider Stuff -- */
.rotationBox {
    /* [disabled]margin-top: 58px; */
    background-color: #8A0D03;
}
.rotationBox img {
	width: 100%;
}
.rotationBox p:last-of-type {
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.rotationbg {
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 141px;
    background-size: cover;
}

.home-slick .slick-next {
	margin-top:60px;
}

.home-slick .slick-prev {
	margin-top:60px;
}

.home-slick {
	
}
.home-slick img {
    width: 100%;
}
.slidercaption {
    padding: 15px 15px 35px;
    background-color: rgba(138,13,3,1.00);
    text-align: center;
    color: #FFF;
	margin-top: 23px;
	min-height: 130px;
    /* [disabled]text-shadow: 0px 0px 8px rgba(0,0,0,0.40); */
}
.slidercaption img {
	width:auto;
	opacity:1;
}
.slidercaption p {
    display: none;
}
.slidercaption .btn {
	text-shadow:none;
    font-size: .6em !important;
}
.slidercaption h1, .slidercaption h2, .slidercaption h3, .slidercaption h4, .slidercaption h5, .slidercaption h6 {
    color: #FFF;
    font-family: "Hand ScribbleSketchTimesW05Nor", "Times New Roman", Times, "serif";
    font-weight: normal;
    font-style: normal;
    font-size: 2.7em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.captionwidth {
	
}
.mobilecaption  h1 {
	font-size:1.9em;
	text-align:center !important;
	color:#FFF !important;
}
.mobilecaption  h1 span {
	color:#FFF !important;
}
.captionwidth .btn-sitecolor, .captionwidth .btn-sitecolor {
    margin-top: 15px;
}
.rotationStaticBox {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

/* -- Splits content into columns at diferent screen sizes -- */
.columnsSplitter {
}
.columnsSplitter p {
	 /* class to restrict breaking on */
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    overflow: hidden; /* optional */
    display:block; /* optional */
}

/*See more at: http://avexdesigns.com/responsive-youtube-embed/#sthash.az9oS8bv.dpuf */ 
.video-container {
    position: relative;
    /*padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;*/
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}



.galleryheader {
	text-align:center;
}
.gallerynav {
	/* [disabled]padding-bottom: 40px; */
	padding-top: 30px;
	font-size: 0.9em;
}
.galleryphoto {
	text-align: center;
}
.galleryphoto img {
	margin-right:auto;
	margin-left:auto;
	width:100%;
}
.galleryphoto button {
}
.gallerythumbs {
	display:none;
}
.gallerythumbs img {
	/*min-height: 180px;*/
}
.gallerythumbs div {
	/*min-height: 180px;*/
	margin-right:3px;
	margin-left:3px;
}
.gallerythumbs .slick-dots {
}
.gallerythumbs .slick-slide {
	border: 4px solid rgba(30,30,30,0.00);
}
.gallerythumbs .slick-current {
	border: 4px solid rgba(30,30,30,1.00);
}
@media (min-width: 415px) {
	
    .galleryphoto {
    }
    .galleryphoto img {
    }
    .galleryphoto button {
        display:none !important;
    }
    .gallerythumbs {
        display:block;
        padding-top: 20px;
    }
	
}

.form-content-box {
	padding-top: 20px;
}
.form-left-col {
	padding-top: 20px;
}
.form-right-col {
	padding-top: 20px;
	text-align: center;
}
.product-list {
}
.product-thumb {
	padding-bottom: 15px;
}
.productinfo {
}
.productinfo p.help-block {
	display: none !important;
}
.productinfo .rating {
}
.productinfo .rating .radio {
}
.productinfo .rating .radio li {
}
.productinfo .rating .radio label {
}
.productinfo .rating .radio input {
	margin-right: 7px;
	margin-top: -5px;
}
.thumbnail {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    body {
    }
    .animatedParent {
        overflow-x: inherit;
    }
    .hidden-xs {
      display: inline !important;
    }
    .bodyGoods {
    }
    .copyright {
    }
    .headerFloater {
    /* [disabled]position: fixed; */
    }
    .announcementBox {
    }
    .headerBox {
        padding-bottom: 21px;
        padding-top: 8px;
    }
    .cartBox {
    padding-right: 12px;
    }
    .phoneBox {
    text-align: right;
    font-size: 1.4em;
    padding-right: 15px;
    margin-right: 15px;
    padding-bottom: 0px;
    margin-top: 10px;
    margin-bottom: 0px;
    /* [disabled]z-index: 0; */
    height: 40px;
    }
    .phoneBox a {
        margin-left: inherit;
    }
    .navbarBox {
    margin-top: -41px;
    }
    .logoBox {
        text-align: left;
    }
    .logoBox img {
    }
    .logosizer {
    width: 120px;
    }
    .searchBox {
        display: block;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .contentBox {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .topWaveBg {
        padding-top: 70px;
    }
    .sponsorsBox {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .imageBox {
    }
    .grayBox {
    }
    .footerBox {
    padding-bottom: 30px;
    text-align: center;
    padding-top: 20px;
    }
    .footerText {}
    .footerNav {
        display: block;
    }
    .sociallinksBox {
    }
    .sociallinksBox img {
    }
    .topsociallinks {
        margin-top: 23px;
        margin-bottom: 0px;
        text-align: right;
    }
    /*Header Squish
    .headerFloater.sticky {
    }
    .headerFloater.sticky .headerBox {
        padding-top: 5px;
        padding-bottom: 15px;
    }
    .headerFloater.sticky .logoBox {
    }
    .headerFloater.sticky .logosizer {
        width: 120px;
    }
    .headerFloater.sticky .phoneBox {
        margin-top: 5px;
    }
    .headerFloater.sticky .navbarBox {
        margin-top: -57px;
    }
    .headerFloater.sticky .topsociallinks {
        margin-top: 0px;
    }
    .headerFloater.sticky .scrollhide {
    }
    .headerFloater.sticky .scrollshow {
    }*/
        /*End Header Squish*/
    .mapBox {
        text-align: left;
    }
    .contactBox .mapBox {
        text-align: center;
        padding-left: 0px;
        padding-right: 0px;
    }
    .addressBox {
        text-align: left;
        font-size: 1em;
        padding-top: 0px;
    }
    .contactBox .addressBox {
        padding-left: 25px;
    }
    #contentLeft {
        padding-bottom: 0px;
    }
    #sidebarBox {
        padding-top: 20px;
    }
    .sidebarNav {
    }
    .sidebarNav ul {
    }
    .sidebarNav li {
    }
    .photoLeft {
        padding-right: 20px;
        padding-bottom: 10px;
        float: left;
    }
    .photoRight {
        padding-bottom: 10px;
        padding-left: 20px;
        float: right;
    }
    #contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
        padding-right: 0px;
        padding-bottom: 10px;
        float: none;
    }
    #contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
        padding-bottom: 10px;
        padding-left: 0px;
        float: none;
    }
    #leftsidebar {
        margin-bottom: 0px;
    }
    #contentmiddle {
    }
    #rightsidebar {
        margin-top: 0px;
    }
    #sidebarLeftBox {
    }

    #contentRight {
        padding-top: 0px;
    }
    .photoRowBox {
        margin-bottom: 0px;
    }
    .aniphotoRowBox {
    }
    .twoCol1 {
    }
    .twoCol2 {
    }
    .rotationBox {
    /* [disabled]margin-top: 115px; *//* Don't use negative margins here- breaks rotation in firefox/chrome */
    }
    .rotationbg {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .rotationStaticBox {
        margin-top: -20%;
        display: block;
        position: absolute;
    }
    .home-slick {
        position: relative;
    }
    .slidercaption {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);/**/
        font-size: 1.3em;
        text-align: center;
        width: 100%;
        padding: 0px;
        background-color: rgba(0,0,0,0.00);
		
    }
    .slidercaption img {
        visibility:visible;
        width:auto !important;
    }
    .slidercaption p {
        display: block;
    }
    .slidercaption .btn {
    font-size: 1em !important;
    }
    .captionwidth {
        width: 50%;
        text-align: left;
        margin-left: 40px;
    }
    .captionwidth.captright {
        text-align: right;
        margin-right: 40px;
        float: right;
    }

    .columnsSplitter {
        -webkit-column-count: 2; /* Chrome, Safari, Opera */
        -moz-column-count: 2; /* Firefox */
        column-count: 2;
        -webkit-column-gap: 15px; /* Chrome, Safari, Opera */
        -moz-column-gap: 15px; /* Firefox */
        column-gap: 15px;
    }
    .columnsSplitter p {
         /* class to restrict breaking on */
        break-inside: avoid-column;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        overflow: hidden; /* optional */
        display:block; /* optional */
    }
    .galleryheader {
        text-align:left;
    }
    .gallerynav {
    }
    .galleryphoto {
    }
    .galleryphoto img {
    }
    .gallerythumbs {
    }

    .form-content-box {
    }
    .form-left-col {
    }
    .form-right-col {
        text-align: left;
    }

    .product-list {
    }
    .product-thumb {
        padding-bottom: 15px;
    }
    .thumbnail {
        margin-left: 0px;
        margin-right: 0px;
    }
	.linkBox {
			display:none;
	
		}
	}

@media (min-width: 768px) {
	
#dateWrapper .datepicker .ui-widget.ui-widget-content {
    width: 75%;
}
	
	.rotationbg {
    	background-repeat: no-repeat;
    	background-size: 100% auto;
    	background-position: center top;
	}
	
	.mobilecaption h1 {
    font-size: 1.9em;
    text-align: left;
    color: inherit;
}


	.slidercaption {
  		margin-top: 0px;
		min-height:0px;
    }
	
  .slick-slide {
	  background-size:none !important;
  }
	  
		.linkBox {
			display:block;
			position:absolute;
			margin-top: 49px;
			width: 35%;
			height: 9%;
			margin-left: 32%;
		}
    body {
    }
    .hidden-xs {
      display: inline !important;
    }
    .bodyGoods {
    }
    .copyright {
        text-align: left;
        margin-top: 20px;
        padding-top: 0px;
    }
    .headerFloater {
    }
    .announcementBox {
    }
    .headerBox {
    padding-bottom: 0px;
    padding-top: 8px;
    background-image: url(/static/mainimages/bgDots-red-tall.png), url(/static/mainimages/gtpie-onlineshop.svg);
    background-repeat: repeat-x, no-repeat;
    background-position: center bottom, center center;
    background-size: auto auto, 400px auto;
    }
    .cartBox {
    }
    .phoneBox {
        text-align: right;
        font-size: 1.1em;
        margin-top: 12px;
        padding-right: 15px;
    }
    .navbarBox {
    /* [disabled]background-color: #E5E5E5; */
    font-size: 1.2em;
    margin-top: 0px;
    }

    /* -Growing underline-  for nav bar insert <span class="navline"></span> after text of link before the </a>*/
    .navline {
        -webkit-transition: width .5s; /* Safari */
        transition: width .5s;
    }
    .p7PM3-14 a > .navline, #p7AMM_1 a > .navline {
        display: block;
        height: 7px;
        width: 0%;
        margin-top: 14px;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(51,51,51,1.00);
    }
    .p7PM3-14 a:hover > .navline, #p7AMM_1 a:hover > .navline, #p7AMM_1 a.open .navline {
    width: 100%;
    background-color: rgba(118,22,13,1.00);
    }
    /* End -Growing underline- */
    .logoBox {
        text-align: left;
    }
    .logoBox img {
    }
    .logosizer {
    width: 160px;
    }
    .searchBox {
        display: block;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    /*Header Squish
    .headerFloater.sticky {
    }
    .headerFloater.sticky .headerBox {
        padding-top: 5px;
        padding-bottom: 0px;
    }
    .headerFloater.sticky .logoBox {
    }
    .headerFloater.sticky .logosizer {
        width: 126px;
    }
    .headerFloater.sticky .phoneBox {
        margin-top: 8px;
    }
    .headerFloater.sticky .navbarBox {
        margin-top: 23px;
        font-size: .9em;
    }
    .headerFloater.sticky .searchBox {
    }
    .headerFloater.sticky .scrollhide {
        display: none !important;
    }
    .headerFloater.sticky .scrollshow {
        display: inline-block !important;
    }*/	
    /*End Header Squish*/
    .contentBox {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .topWaveBg {
        padding-top: 70px;
    }
    .sponsorsBox {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .imageBox {
    }
    .grayBox {
    }
    .footerBox {
        padding-bottom: 30px;
        text-align: left;
    }
    .footerText {
        padding-bottom: 0px;
        margin-top: 10px;
    }
    .footerNav {
        display: block;
        padding-top: 5px;
    }
    .sociallinksBox {
        text-align: right;
        margin-top: 0px;
    }
    .sociallinksBox img {
    }
    .topsociallinks {
        display: inline-block;
        margin-top: 41px;
        margin-left: 5px;
        text-align: right;
    }
    .mapBox {
        text-align: left;
    }
    .contactBox .mapBox {
        text-align: center;
        padding-left: 0px;
        padding-right: 0px;
    }
    .addressBox {
        text-align: left;
        font-size: 1em;
        padding-top: 0px;
    }
    .contactBox .addressBox {
        padding-left: 25px;
    }
    #contentLeft {
        padding-bottom: 0px;
    }
    #sidebarBox {
        padding-top: 0px;
        border-top-style: none;
        border-left: 1px solid #CDCDCD;
        padding-left: 20px;
    }
    .sidebarNav {
    }
    .sidebarNav ul {
    }
    .sidebarNav li {
    }
    .photoLeft {
        padding-right: 20px;
        padding-bottom: 10px;
        float: left;
    }
    .photoRight {
        padding-bottom: 10px;
        padding-left: 20px;
        float: right;
    }
    #contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
        padding-right: 0px;
        padding-bottom: 10px;
        float: none;
    }
    #contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
        padding-bottom: 10px;
        padding-left: 0px;
        float: none;
    }
    #leftsidebar {
        border-top-style: none;
        border-right: 1px solid #CDCDCD;
        border-bottom-style: none;
        padding-right: 20px;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #contentmiddle {
    }
    #rightsidebar {
        padding-left: 20px;
        border-left: 1px solid #CDCDCD;
        margin-top: 0px;
        border-top-style: none;
        padding-top: 0px;
    }
    #sidebarLeftBox {
        border-right: 1px solid #CDCDCD;
        border-bottom-style: none;
    }

    #contentRight {
        padding-top: 0px;
    }
    .photoRowBox {
        margin-bottom: 0px;
    }
    .aniphotoRowBox {
    }
    .twoCol1 {
    }
    .twoCol2 {
    }
    .rotationBox {
    /* [disabled]margin-top: 131px; */
    }
    .rotationStaticBox {
        margin-top: -20%;
        display: block;
        position: absolute;
    }
    .home-slick {
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    .slidercaption {
        font-size: 1.3em;
    }
    .slidercaption img {
        visibility:visible;
        width:auto !important;
    }
    .captionwidth {
    /* [disabled]width: 40%; */
    }

    .columnsSplitter {
        -webkit-column-count: 2; /* Chrome, Safari, Opera */
        -moz-column-count: 2; /* Firefox */
        column-count: 2;
        -webkit-column-gap: 15px; /* Chrome, Safari, Opera */
        -moz-column-gap: 15px; /* Firefox */
        column-gap: 15px;
    }
    .columnsSplitter p {
         /* class to restrict breaking on */
        break-inside: avoid-column;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        overflow: hidden; /* optional */
        display:block; /* optional */
    }
    .galleryheader {
        text-align:left;
    }
    .gallerynav {
    }
    .galleryphoto {
    }
    .galleryphoto img {
    }
    .gallerythumbs {
    }
    .form-content-box {}
    .form-left-col {}
    .form-right-col {
        text-align: left;
        padding-left: 40px;
    }
    .product-list {
    }
    .product-thumb {
        padding-bottom: 15px;
    }
}


@media (min-width: 992px) {
    body {
    }
    .bodyGoods {
    }
    .copyright {
    }
    .headerFloater {
    }
    .announcementBox {
    }
    .headerBox {
    background-size: auto auto, 450px auto;
    }
    .cartBox {
        padding-right: 0px;
    }
    .phoneBox {
        padding-right: 30px;
    }
    .navbarBox {
    font-size: 1.3em;
    }
    .logoBox {
        padding-left: 30px;
    }
    .logosizer {
    }
    .searchBox {
    }
    /*Header Squish*/
    .headerFloater.sticky {
    }
    .headerFloater.sticky .logoBox {
    }
    .headerFloater.sticky .logosizer {
    }
    .headerFloater.sticky .phoneBox {
    }
    .headerFloater.sticky .navbarBox {
    }
    .headerFloater.sticky .searchBox {
    }
    .headerFloater.sticky .scrollhide {
    }
    .headerFloater.sticky .scrollshow {
        /*display: inline-block !important;*/
    }	
    /*End Header Squish*/
    .contentBox {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .topWaveBg {
        padding-top: 80px;
    }
    .sponsorsBox {
        padding-top: 30px;
    }
    .imageBox {
    }
    .grayBox {
    }
    .footerBox {
        padding-bottom: 30px;
    }
    .footerText {}
    .footerNav {
    }
    .sociallinksBox {
    }
    .sociallinksBox img {
    }
    .topsociallinks {
        padding-top: 0px;
        margin-top: 0px;
    }
    .addressBox {
    }
    .contactBox .addressBox {
        padding-left: 35px;
    }
    #contentLeft {
    }
    #sidebarBox {
    }
    .sidebarNav {
    }
    .sidebarNav ul {
    }
    .sidebarNav li {
    }
    .photoLeft {
        padding-right: 20px;
        padding-bottom: 10px;
        float: left;
    }
    .photoRight {
        padding-bottom: 10px;
        padding-left: 20px;
        float: right;
    }
    #contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
        padding-right: 20px;
        padding-bottom: 10px;
        float: left;
    }
    #contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
        padding-bottom: 10px;
        padding-left: 20px;
        float: right;
    }
    #leftsidebar {
        padding-right: 20px;
        border-right: 1px solid #CDCDCD;
    }
    #contentmiddle {
    }
    #rightsidebar {
        padding-left: 20px;
        border-left: 1px solid #CDCDCD;
        margin-top: 0px;
        border-top-style: none;
        padding-top: 0px;
    }
    #sidebarLeftBox {
        padding-right: 30px;
    }
    #contentRight {
        padding-top: 0px;
    }
    .twoCol1 {
    }
    .twoCol2 {
    }
    .rotationBox {
    }
    .rotationStaticBox {
        /* [disabled]margin-top: -23%; */
    }

    .slidercaption {
        font-size: 1.4em;
    }
    .slidercaption img {
        width:auto !important;
    }
    .captionwidth {
    width: 100%;
    }

    .columnsSplitter {
        -webkit-column-count: 3; /* Chrome, Safari, Opera */
        -moz-column-count: 3; /* Firefox */
        column-count: 3;
        -webkit-column-gap: 15px; /* Chrome, Safari, Opera */
        -moz-column-gap: 15px; /* Firefox */
        column-gap: 15px;
    }
    .columnsSplitter p {
         /* class to restrict breaking on */
        break-inside: avoid-column;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        overflow: hidden; /* optional */
        display:block; /* optional */
    }
    .galleryheader {
    }
    .gallerynav {
    }
    .galleryphoto {
    }
    .galleryphoto img {
    }
    .gallerythumbs {
    }
    .form-content-box {}
    .form-left-col {}
    .form-right-col {}
        .product-list {
    }
    .product-thumb {
    }
}

@media (min-width: 1200px) {
    body {
    }
    .maxwidth {
        max-width: 1140px;
        margin-left: auto;
        margin-right: auto;
    }
    .bodyGoods {
    }
    .copyright {
    }
    .headerFloater {
    }
    .headerBox {
    }
    .phoneBox {
    }
    .navbarBox {
    }
    .logoBox {
    }
    .logosizer {
    }
    .searchBox {
    }
    /*Header Squish*/
    .headerFloater.sticky {
    }
    .headerFloater.sticky .logoBox {
    }
    .headerFloater.sticky .logosizer {
    }
    .headerFloater.sticky .phoneBox {
    }
    .headerFloater.sticky .navbarBox {
    }
    .headerFloater.sticky .searchBox {
    }
    /*End Header Squish*/
    .contentBox {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .topWaveBg {
        padding-top: 90px;
    }
    .sponsorsBox {
        padding-top: 30px;
    }
    .imageBox {
    }
    .grayBox {
    }
    .footerBox {
        padding-bottom: 30px;
    }
    .footerText {}
    .footerNav {
    }
    .sociallinksBox {
    }
    .sociallinksBox img {
    }
    .topsociallinks {
    }
    .addressBox {
    }
    .contactBox .addressBox {
        padding-left: 50px;
    }
    #contentLeft {
    }
    #sidebarBox {
    }
    .sidebarNav {
    }
    .sidebarNav ul {
    }
    .sidebarNav li {
    }
    .photoLeft {
    }
    .photoRight {
    }
    #contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
    }
    #contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
    }
    #leftsidebar {
    }
    #contentmiddle {
    }
    #rightsidebar {
    }
    #sidebarLeftBox {
    }
    #contentRight {
    }
    .twoCol1 {
    }
    .twoCol2 {
    }
    .rotationBox {
    /* Don't use negative margins here- breaks rotation in firefox/chrome */
    }
    .rotationStaticBox {
        /* [disabled]margin-top: -23%; */
    }

    .slidercaption {
    }
    .slidercaption img {
        width:auto !important;
    }
    .captionwidth {
    }

    .columnsSplitter {
        -webkit-column-count: 4; /* Chrome, Safari, Opera */
        -moz-column-count: 4; /* Firefox */
        column-count: 4;
        -webkit-column-gap: 15px; /* Chrome, Safari, Opera */
        -moz-column-gap: 15px; /* Firefox */
        column-gap: 15px;
    }
    .columnsSplitter p {
         /* class to restrict breaking on */
        break-inside: avoid-column;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        overflow: hidden; /* optional */
        display:block; /* optional */
    }
    .galleryheader {
    }
    .gallerynav {
    }
    .galleryphoto {
    }
    .galleryphoto img {
    }
    .gallerythumbs {
    }
    .form-content-box {}
    .form-left-col {}
    .form-right-col {}
    .product-list {
    }
    .product-thumb {
    }
}


/* -- Removes the div height matching -- */
@media only screen and (min-width: 0px) and (max-width: 770px) {
	
#sidebarBox, #rightsidebar, #leftsidebar, #sidebarLeftBox, #contentLeft, #contentRight, .productThumbs, .mapBox, .contactInfoBox, .listingthumbs {
	height: auto !important;
	max-height: 888678px;
}
	
}
@media only screen and (min-width: 581px) and (max-width: 1200px) {
	
.captionwidth {
	height: auto !important;
	max-height: 888678px;
}
	
}
/**/


/*Bootstrap-ish CSS*/

.list-inline li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.table {
	/*background-color:#ffffff;*/
}
.table th, .table td {
    border-color: #918373;
}
/*Stacks table td for mobile sites and makes xs buttons bigger*/
@media (max-width: 768px) {
	.table td {
		display:block;
	}
	.table tr {
		display:block;
	}
	.table th {
		display:none;
	}
	.table .btn-xs {
		width:100%;
		font-size:1.3em;
		padding-top:8px;
		padding-bottom:8px;
	}
}


/*Custom table styles*/
.table-custom {
	border: 1px solid #EAEAEA;
	font-size: 0.8em;
}
.table-custom .active td {
	background-color: #E3E3E3 !important;
	font-family: "Roboto Regular", sans-serif;
	text-transform: uppercase;
}
.table-custom td, .table-custom th {
	border-left: 1px solid #EAEAEA;
}
.table-custom tr td:first-of-type, .table-custom tr th:first-of-type {
	border-left: none;
}
.table-custom tr {
}
.table-custom thead {
	background-color: #D3D3D3;
}
.table-custom th {
	font-family: "Roboto Bold", sans-serif;
	text-align: center;
	text-transform: uppercase;
}
.table-custom a {
	font-family: "Roboto Bold", sans-serif;
}
.table-custom a:link, .table-custom a:visited  {
	color: #222;
}
.table-custom a:hover, .table-custom a:active  {
	color: #4FA14D;
}

.card {
    border-color: #918373 !important;
    border-radius: 0px !important;
}
.card .table:last-of-type {
    margin-bottom: 0px !important;
}
.bg-light {
    background-color: rgba(255,255,255,1.00) !important;
}

/*Form Stuff*/
.mezzanine-form .help-block {
	display: none; /* Hides help text */
	font-size: 0.8em;
}
.control-label {
	display:block;
}
.charfield label, .emailfield label, .floatfield label {
	display:none;   /* Hides the form lable */
}
.form-group > input[type="text"],
.form-group > input[type="password"],
.form-group > input[type="datetime"],
.form-group > input[type="datetime-local"],
.form-group > input[type="date"],
.form-group > input[type="month"],
.form-group > input[type="time"],
.form-group > input[type="week"],
.form-group > input[type="number"],
.form-group > input[type="email"],
.form-group > input[type="url"],
.form-group > input[type="search"],
.form-group > input[type="tel"],
.form-group > input[type="color"],
.form-group > select,
.form-group > textarea {
	width: 100%;
	max-width: 100%;
	background-color: #ffffff;
}
.form-group.row {
/*	padding: 0px 15px;*/
}
.add-to-basket .col-form-label {
	min-width: 56px;
}
.form-actions {
  background-color: transparent;
  border-top: none;
  padding: 0px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.has-error .form-control {
	background-color: #EFD7D6 !important;
}
/* Trageted Form Styles (Use the embed page name for id)  */

#id_quantity {
    max-width: 80px;
}
.form-control {
}
/* Button Stuff */

.btn-sitefont {
	font-family: cmtiempo, "CM Regular", "Times New Roman Bold", serif;
	font-size: 1.2em;
}

.price {
	font-size: 1.3em;
}
.old-price {
}
legend {
  color: #666666;
}

/* Custom Button Colors */
/* Duplicate this set of styles to add a new "bootstrap" button */

.btn {border-radius: 0px;}

/*Fix for link color*/
.btn-default:link, .btn-default:visited {
  color: #333;
}
.btn-info:link, .btn-primary:link, .btn-success:link, .btn-warning:link, .btn-danger:link {
  color: #FFF !important;
}
.btn-info:visited, .btn-primary:visited, .btn-success:visited, .btn-warning:visited, .btn-danger:visited {
  color: #FFF !important;
}

/*Master Button*/

.btn-sitecolor, .btn-sitecolor2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 20px;
    padding-left: 20px;
}
.btn-custsize {
    padding-top: 12px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 12px;
    /*font-size: .8em;*/
}
.btn-sitecolor.btn-sm, .btn-sitecolor2.btn-sm {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.6em !important;
    padding-right: 5px;
    padding-left: 5px;
}

.btn-sitecolor:link, .btn-sitecolor a:link {
  color: #FFF !important;
}
.btn-sitecolor:visited, .btn-sitecolor a:visited {
  color: #FFF !important;
}
.btn-sitecolor {
  color: #FFFFFF;
  background-color: #77160d;
  border-color: #77160d;
}

.btn-sitecolor:hover,
.btn-sitecolor:focus,
.btn-sitecolor:active,
.btn-sitecolor a:hover,
.btn-sitecolor a:focus,
.btn-sitecolor a:active,
.btn-sitecolor.active,
.open .dropdown-toggle.btn-sitecolor {
	color: #FFFFFF;
	background-color: #5b4e3e;
	border-color: #5b4e3e;
}

.btn-sitecolor:active,
.btn-sitecolor.active,
.open .dropdown-toggle.btn-sitecolor {
  background-image: none;
}

.btn-sitecolor.disabled,
.btn-sitecolor[disabled],
fieldset[disabled] .btn-sitecolor,
.btn-sitecolor.disabled:hover,
.btn-sitecolor[disabled]:hover,
fieldset[disabled] .btn-sitecolor:hover,
.btn-sitecolor.disabled:focus,
.btn-sitecolor[disabled]:focus,
fieldset[disabled] .btn-sitecolor:focus,
.btn-sitecolor.disabled:active,
.btn-sitecolor[disabled]:active,
fieldset[disabled] .btn-sitecolor:active,
.btn-sitecolor.disabled.active,
.btn-sitecolor[disabled].active,
fieldset[disabled] .btn-sitecolor.active {
	background-color: #CCCCCC;
	border-color: #CCCCCC;
}

.btn-sitecolor .badge {
  color: #ffffff;
  background-color: #333333;
}

.btn-sitecolor2:link, .btn-sitecolor2 a:link {
  color: #FFF !important;
}
.btn-sitecolor2:visited, .btn-sitecolor2 a:visited {
  color: #FFF !important;
}
.btn-sitecolor2 {
	color: #FFFFFF;
	background-color: #5b4e3e;
	border-color: #9f9386;
}

.btn-sitecolor2:hover,
.btn-sitecolor2:focus,
.btn-sitecolor2:active,
.btn-sitecolor2 a:hover,
.btn-sitecolor2 a:focus,
.btn-sitecolor2 a:active,
.btn-sitecolor2.active,
.open .dropdown-toggle.btn-sitecolor2 {
	color: #FFFFFF;
	background-color: #77160d;
	border-color: #77160d;
}

.btn-sitecolor2:active,
.btn-sitecolor2.active,
.open .dropdown-toggle.btn-sitecolor2 {
  background-image: none;
}

.btn-sitecolor2.disabled,
.btn-sitecolor2[disabled],
fieldset[disabled] .btn-sitecolor2,
.btn-sitecolor2.disabled:hover,
.btn-sitecolor2[disabled]:hover,
fieldset[disabled] .btn-sitecolor2:hover,
.btn-sitecolor2.disabled:focus,
.btn-sitecolor2[disabled]:focus,
fieldset[disabled] .btn-sitecolor2:focus,
.btn-sitecolor2.disabled:active,
.btn-sitecolor2[disabled]:active,
fieldset[disabled] .btn-sitecolor2:active,
.btn-sitecolor2.disabled.active,
.btn-sitecolor2[disabled].active,
fieldset[disabled] .btn-sitecolor2.active {
	background-color: #CCCCCC;
	border-color: #CCCCCC;
}

.btn-sitecolor2 .badge {
  color: #ffffff;
  background-color: #333333;
}



.btn-sitecolor3 {
    border-radius: 0px;
    min-width: 35px;
    padding-left: 5px;
    padding-right: 5px;
}
.btn-sitecolor3:link, .btn-sitecolor3 a:link {
  color: #FFF !important;
}
.btn-sitecolor3:visited, .btn-sitecolor3 a:visited {
  color: #FFF !important;
}
.btn-sitecolor3 {
  color: #FFFFFF;
  background-color: #B1A398;
  border-color: #B1A398;
}

.btn-sitecolor3:hover,
.btn-sitecolor3:focus,
.btn-sitecolor3:active,
.btn-sitecolor3 a:hover,
.btn-sitecolor3 a:focus,
.btn-sitecolor3 a:active,
.btn-sitecolor3.active,
.open .dropdown-toggle.btn-sitecolor3 {
	color: #FFFFFF;
	background-color: #5b4e3e;
	border-color: #B1A398;
}

.btn-sitecolor3:active,
.btn-sitecolor3.active,
.open .dropdown-toggle.btn-sitecolor3 {
  background-image: none;
}

.btn-sitecolor3.disabled,
.btn-sitecolor3[disabled],
fieldset[disabled] .btn-sitecolor3,
.btn-sitecolor3.disabled:hover,
.btn-sitecolor3[disabled]:hover,
fieldset[disabled] .btn-sitecolor3:hover,
.btn-sitecolor3.disabled:focus,
.btn-sitecolor3[disabled]:focus,
fieldset[disabled] .btn-sitecolor3:focus,
.btn-sitecolor3.disabled:active,
.btn-sitecolor3[disabled]:active,
fieldset[disabled] .btn-sitecolor3:active,
.btn-sitecolor3.disabled.active,
.btn-sitecolor3[disabled].active,
fieldset[disabled] .btn-sitecolor3.active {
	background-color: #CCCCCC;
	border-color: #CCCCCC;
}

.btn-sitecolor3 .badge {
  color: #ffffff;
  background-color: #333333;
}

/*Master Button End*/

/* Added btn-default ecause bootstrap 4 doesn't have one */
.btn-default {
  color: #222222;
  background-color: #FFFFFF;
  border-color: #CCCCCC;
}

.btn-default:hover {
  color: #222222;
  background-color: #D4D5D6;
  border-color: #CCCCCC;
}

.btn-default:focus, .btn-default.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-default.disabled, .btn-default:disabled {
  color: #C5C5C5;
  background-color: #FFFFFF;
  border-color: #F0F0F0;
}

.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active,
.show > .btn-default.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-default:not(:disabled):not(.disabled):active:focus, .btn-default:not(:disabled):not(.disabled).active:focus,
.show > .btn-default.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}


.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.428571429;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
	border-color: #C5C5C5;
	background-color: #ECECEC;
	text-decoration: none;
}

.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/*Store Styles*/


.btn-wishlist {
    color: #FFFFFF !important;
    background-color: #BA0003;
    border-color: #BA0003;
}

.btn-wishlist:hover {
  color: #FFFFFF !important;
  background-color: #9B0002;
  border-color: #9B0002;
}

.btn-wishlist:focus, .btn-wishlist.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-wishlist.disabled, .btn-wishlist:disabled {
  color: #C5C5C5 !important;
  background-color: #FFFFFF !important;
  border-color: #E4E4E4 !important;
}

.btn-wishlist:not(:disabled):not(.disabled):active, .btn-wishlist:not(:disabled):not(.disabled).active,
.show > .btn-wishlist.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-wishlist:not(:disabled):not(.disabled):active:focus, .btn-wishlist:not(:disabled):not(.disabled).active:focus,
.show > .btn-wishlist.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.caption {
	padding: 6px;
	color: #333333;
	text-align: center;
}
.price-info {
}
.price_color {
    font-size: 1.3em;
    color: #333333;
    font-weight: bold;
    line-height: 1em;
}
.price-padding {
    padding-top: 15px;
}
.trashicon {
    margin-top: -4px;
}
.availability {
	color: #333333;
}
.checkout-quantity input {
    max-width: 75px;
}
.product_pod {
	padding: 10px;
}
.basket-items {
    padding: 4px;
    border-bottom: 1px solid #918373;
}
.basket-items:last-of-type {
    /* [disabled]border-bottom-style: none; */
    margin-bottom: 25px;
	font-size: 0.9em;
}
.basket-items .rowtext {
	padding-top:4px;
}
.basket-items .thumbnail {
	margin-bottom:0px;
}
.basket-items .rowheader {
	padding-top: 5px;
}
.basket-items .rowheader h5 {
	line-height:normal;
	margin-bottom: 0px;
	color: #333333;
}
.basket-items hr {
	margin-top: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
}
.basket-items .dropdown-menu {
	font-size: .8em;
}
.basket-title {
	border-bottom: 1px solid #918373;
	margin-bottom: 15px;
	font-size: 0.95em !important;
}
.label-sitecolor {
	color: #019ae0;
}



/*// Review styles*/
#reviews.sub-header {
	margin-bottom: 8px;
}
#reviews.sub-header h3 {
	font-size: 28px;
}

.review {
	border-top: 1px solid #918373;
	padding-top: 10px;
	font-size: .9em;
	margin-top: 10px;
}
.review h5 {
	font-size: 1em;
	font-family: "SourceSansPro Regular", "Source Sans Pro Regular", sans-serif;
}
.review h3 {
	margin-bottom: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: .9em;
}
.review form {
	display:inline-block;
	*display:inline;
	zoom:1;
	margin-bottom:0;
}

/*// Star Rating using font icons for 5 stars*/
.star-rating span {
	color: #CBCBCB;
}
.star-rating i {
	letter-spacing: -1px;
	width:auto;
	color: inherit;
}
.star-rating a {
	margin-left:10px;
}
.star-rating .yellowstar {
	color:#E6CE31;
}
.star-rating.One .fa-star:nth-of-type(1) {
	color:#E6CE31;
}
.star-rating.Two .fa-star:nth-of-type(1), .star-rating.Two .fa-star:nth-of-type(2) {
	color:#E6CE31;
}
.star-rating.Three .fa-star:nth-of-type(1), .star-rating.Three .fa-star:nth-of-type(2), .star-rating.Three .fa-star:nth-of-type(3) {
    color:#E6CE31;
}
.star-rating.Four .fa-star:nth-of-type(1), .star-rating.Four .fa-star:nth-of-type(2), .star-rating.Four .fa-star:nth-of-type(3), .star-rating.Four .fa-star:nth-of-type(4) {
	color:#E6CE31;
}
.star-rating.Five .fa-star {
	color:#E6CE31 !important;
}/**/


/*Pagination Tweaks*/
.page-link:hover {
  color: #C7C7C7;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #8D8D8E;
  border-color: #8D8D8E;
}

/*TARR CSS*/
.listPropertyImage {
}
.listPropertyText {
}
a .listPropertyText {
	color: #555;
}

/*Chrome Print Fix*/
@media print {
  @page {
    size: 330mm 427mm;
    margin: 14mm;
  }
  .container {
    width: 1170px;
  }
}
