body {
margin:0;
padding:0;
overflow-x:hidden;
}

@media (max-width: 640px)


.logo1 img {
position:relative;
left:10px;
top:20px;
}

.headerbar {
  position:relative;
  display:flex;
  width: 100%;
  flex: 0 0 100%;
  min-width: 100%;
  height: 250px;
  background: url('head1.jpg') no-repeat;
  background-size: 100%;
  background-position: 0 -300px;
  -webkit-animation: banner 10s infinite forwards;
  -webkit-animation-delay: 2s;
}
@media (max-width: 768px) {
  .headerbar {
    background-position: center top;
  }
}
.headerbar, .main-nav-scrolled {
  top: 0;
  position: absolute;
  width: 100%;
  background-size: cover;
  background-position: center;
}
/*promo slider header top of page*/
@keyframes banner {
  25%  { background: url('head4.jpg');
  background-size: 100%;
  background-position: 0 -200px;
  }
  50%  { background: url('head2.jpg');
  background-size: 100%;
  }
  75%  { background: url('head3.jpg');
  background-size: 100%;
  background-position: 0 -400px;
  }
}

/*nav bar*/
  
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

 @import url('https://fonts.googleapis.com/css?family=Open+Sans');




.nav {
  position: relative;
  display:flex;
  flex-shrink:0;
  z-index:99;
  margin-top:0;
  padding:0;
  min-height:50px;
  height:60px;
  background-color: #222;
  top: 235px;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.nav ul {
  display: flex;
  flex-wrap:wrap;
  z-index:2;
  list-style-type: none;
  align-items: flex-start;
  flex-shrink:0;
  gap:20px;
  flex-direction:row;
  align-items:center;
}

.nav a {
  position:relative;
  display:flex;
  flex-shrink:0;
  left:0px;
  z-index:99;
  color: #fff;
  font-size:20px;
  text-decoration: none;
  padding: 0px 65px;
  transition: all 0.3s ease-in-out;
  
}

.nav.active {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active a {
  color: #000;
}

.nav.active .container1 {
  padding: 5px 0;
}

.nav a.current,
.nav a:hover {
  color: #c0392b;
  font-weight: bold;
}
  

.shopcart {
 position:relative;
  z-index:99;
  padding:0;
  margin:0;
  float:right;
  right:2%; 
  top:20vh;
}

/* slider */
.slider_container {
  position: relative;
  margin-left:0px;
  min-width:450px;
  min-height:200px;
  top:168px;
  max-width: 100%;
  height: 60vh;
  display: flex;
  overflow-x: hidden;

}
.slider {
  display:flex;
  width: 100%;
  height: 100%;
  animation: 30s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
}
.slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
}
.button1 {
  position:relative;
  font-size:20px;
  top:350px;
  left:350px;
  padding:10px;
  margin:5px;
  border-radius:50px;
  color:white;
  background-color:blue;
}
.button2 {
 position:relative;
  font-size:20px;
  top:350px;
  left:350px;
  padding:10px;
  margin:5px;
  border-radius:50px;
  color:black;
  background-color:yellow;
}
.button3 {
position:relative;
  font-size:20px;
  top:350px;
  left:260px;
  padding:5px;
  padding-left:30px;
  padding-right:30px;
  margin:5px;
  border-radius:50px;
  color:black;
  background-color:green;
}
.button4 {
  position:relative;
  font-size:20px;
  top:350px;
  left:300px;
  padding:5px;
  padding-left:30px;
  padding-right:30px;
  margin:5px;
  border-radius:50px;
  color:black;
  background-color:white;
}
.slide.one {
  background-image: url('tonic.jpg');
  background-size:cover; 
}
.slide.two {
  background-image: url('gifts.jpg');
  background-size:cover;
}
.slide.three {
  background-image: url('gummies.jpg');
  background-size:cover;
}
.slide.four {
  background-image: url('pets.jpg');
  background-size:cover;
}
.slide.five {
  background-image: url('gummies.jpg');
  background-size:cover;
}
@keyframes sliding {
  0% {
    transform: translateX(0%);
  }
  20% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  70% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  95% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-400%);
  }
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 15px;
  border: none;
  outline: none;
  background-color:transparent;
  cursor: pointer;
  padding: 5px;
  border-radius: 50px;
}



.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 100; /* Sit on top */
  padding: 1px;
  margin:0; /* Location of the box */
  left: 1200px;
  top: 300px;
  width: 600px; /* Full width */
  height: 50px; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.10); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  display:inline-block;
  overflow:hidden;
  float:left;
  background-color: black 90%;
  height:50px;
  width:500px
  margin: auto;
  padding: 5px;
  border: 2px solid #888;
  width: 100%;
  whitespace:nowrap;

}
.modal-content li {
  display:inline-block;
  text-align:center;
  float:left;
  width:20%;
  padding:7px;
  whitespace:nowrap;
}

.modal-content a {
color:white;
text-decoration:none;
 white-space:nowrap;
 font-size:20px;
}
.nowrap: a {
white-space: nowrap;
}

#myBtn1 {
position:relative;
display:flex;
z-index:100;
justify-content:center;
color:white;
font-size:20px;
cursor:pointer;
}
.login{
position:relative;
  width:30px;
  left:93%;
  top:155px;
  z-index:120;
  padding:0;
  margin:0;
}
/* The Close Button */
.close {
  position:relative;
  color: #aaaaaa;
  bottom:3px;
  float: left;
  z-index:10;
  font-size: 30px;
  font-weight: bold;
  cursor:pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(108,186,225, 0.4);
  -webkit-transition: 500ms;
  transition: 500ms;
  z-index: 90000001;
  
  display:flex;
}

.age-verification-main {
  background-image:url('modal1.jpg');
  font-family: "Source Sans Pro", sans-serif;
  color: white;
  border-radius:10%;
  font-size: 13pt;
  text-align: center;
  padding: 25px;
  position: relative;
  top: 10px;
  width: 500px;
  max-width: 80%;
  margin: 0 auto;
  -webkit-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
}
@media only screen and (min-height: 400px) {
  .age-verification-main {
    top: 40%;
  }
}

.age-title, .age-main-text {
  display: block;
  margin-bottom: 1em;
}
.age-title {
  font-size: 24pt;
  margin-bottom: 0.5em;
}

.age-button {
  -webkit-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
}

.age-button {
  font-family: "Source Sans Pro", sans-serif;
  background-color: white;
  border: none;
  font-size: 16pt;
  cursor:pointer;
  color: #ff4646;
  display: inline-block;
  width: 150px;
  padding: 10px;
  margin: 5px 10px;
}

.age-credits {
  /** credits are not required, but are appreciated **/
  font-family: "Source Sans Pro", sans-serif;
  color: white;
  display: block;
  font-size: 12px;
  text-decoration: normal;
  text-align: right;
  margin-top: 20px;
  margin-bottom: -15px;
}
.age-credits a {
  color: white;
}
.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 100ms ease-in;
    -moz-transition: opacity 100ms ease-in;
    transition: opacity 100ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.close1 {
    font-family: Arial, Helvetica, sans-serif;
    background: #f26d7d;
    z-index:10;
    color: #fff;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 34px;
    height: 34px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    padding-top: 5px;
}
.close1:hover {
    background: #fa3f6f;
}

