/* "Don't Mess With CSS Unless You Know What You Are Doing." -Bill */
/* To change store colors go to Ecwid */
:root {
  --color-bg: black;
  --color-text-main: white;
  --color-primary: #ffff00;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "Baskervville SC", serif;
  --font-family-header: "Baskervville SC", serif;
}

.baskervville-sc-regular {
  font-family: "Baskervville SC", serif;
  font-weight: 400;
  font-style: normal;
}
.disclaimer {
  color: red;
  margin: 0 0.25%;
}
.CommentHolder {
  background-color: #4D0A0A;
  width: 100%;
  height: 219px;
  white-space: nowrap;
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.CommentHolder iframe {
  float: none;
  margin: 0 0.25%;
  display: inline-block;
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

.logo{
  cursor: pointer;
}

a {
  color: yellow;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

body {
  font-family: "Baskervville SC", serif;
  background-color: #4D0A0A !important;
  height: "100%";
  margin: 0;
  overscroll-behavior-y: none;
}

h1 {
  color: white;
  font-size: 40px;
}

h2 {
  color: white;
  font-size: 35px;
}

h3 {
  color: white;
  font-size: 30px;
}

p {
  color: white;
  font-size: 25px;
  margin-right: 20px;
  margin-left: 20px;
  text-align: center;
}

span {
  color: white;
  font-size: 20px;
  border-top: 1px solid clear;
  display: inline-block;
  border-left: 2px solid clear;
  border-right: 2px solid clear;
  text-align: center;
}

img {
  display: inline-block;
}

.Divider {
  display: inline-block;
}

.NavBar {
  background-color: #414040;
  line-height: "100p";
  padding: "10%" "0";
}

.NavBar span {
  display: inline-block;
  font-size: 15px;
  padding: 0.5%;
}

.Product {
  display: inline-block;
}

.NavBar a {
  display: inline-block;
  margin-right: "100p";
  color: white;
  width: "10%";
  padding: "10%" "0";
  text-decoration: none;
}
.NavBar a:hover {
  color: yellow;
  text-decoration: none;
}
.NavBar img {
  margin-right: "100p";
  display: inline-block;
  vertical-align: middle;
}
/* Page structure */
.wrapper {
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 1rem;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.credit p {
  font-size: 15px;
  color: grey;
}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}