
.header {
  position: relative;
  z-index: 5;
}
h1 {text-align: center;
	font-size: 1.5em;
	padding:0em 0em 1em 0em;
	font-family: helvetica;
	font-weight: 500;
	 -moz-user-select: -moz-none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -o-user-select: none;
            user-select: none;
}

h2 {text-align: center;
	font-size: 1em;
	padding:1em 0em 1em 0em;
	font-family: helvetica;
	font-weight: bold;
	 -moz-user-select: -moz-none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -o-user-select: none;
            user-select: none;
            font-style: italic;
            
}
p.title {text-align: center;
	font-size: 1.9em;
	font-family: helvetica;
}
p {text-align: justify;
	font-size: 1em;
	font-family: helvetica;
	user-select:none;
	 -moz-user-select: -moz-none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -o-user-select: none;
            user-select: none;
            
	
}
p.review {text-align: justify;
	font-size: 1em;
	font-family: helvetica;
	user-select:none;
	font-style: italic;
	 -moz-user-select: -moz-none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -o-user-select: none;
            user-select: none;
	
}

a {text-align: justify;
	font-size: 1em;
	color: #000000;
	font-weight: 400;
	font-style: italic;
	font-family: helvetica;
	user-select:none;
	 -moz-user-select: -moz-none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -o-user-select: none;
            user-select: none;
	
}

a.buy {font-size:1em;}
a:link{ color: black;
	text-decoration: none;}
	a:hover{ color: black;
	text-decoration: underline;}
	a:visited{ color: black;
	text-decoration: none;}
	a:active{ color: black;
	text-decoration: none;}

p.footer {text-align: center;
	font-size: .75em;
	font-family: helvetica;
	padding:1em 0em 1em 0em;
}
p.footer-home {text-align: center;
	font-size: .75em;
	font-family: helvetica;
	padding:1em 0em 1em 0em;
	color:white;
}
p.reg {text-align: center;
	font-size: .75em;
	font-family: helvetica;
	padding:0em;
}


div.summary {padding-top:4em;}


hr {height:2px;margin:1em 0em;}



html, body {
  height: 100%;
  margin: 0;
    justify-content: center;
  text-align:center;
display: flex;}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  
  z-index:1;
  max-width:80%;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position:relative;
}

.header {
  flex: 0 0 auto;
  margin-top:2em;
}

.content {
  flex: 1;              /* THIS makes it fill space */
  display: flex;
  justify-content: center;
  align-items: center;
  position:  inherit;
  z-index: 1;
  flex-direction:row;
  
}

.wheel
{
	flex:50%;

padding:3em;}

.text{
	flex:50%;
	padding:3em 0em;
}


.footer {
  flex: 0 0 auto;
}


@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
   .contentmain {
    flex-direction: column;
  }
  .page-container {
 max-width:95%;
 
}
}



/* Style the summary button */
/*HOMEPAGE MENU*/
.dropbtnhome {
  font-weight: 500;
  font-size: 1.5em;
  color: white;
  margin: 0.7em;
  padding:0px;
  cursor: pointer;
  list-style: none;
  text-align:center;
  
}
.dropbtnhome:focus,
.dropbtnhome:active {
  outline: none;
  border: none;
}


.dropbtnhome::-webkit-details-marker,
.dropbtnhome::marker {
  display: none;
}

.dropdown-content-home {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-content-home a {
  display: block;
  padding: 8px 0;
  color: white;
  	text-align: center;
font-size: 1em;
}
.dropdown-content-home a:hover {
  text-decoration: underline;
}

.dropdownhome[open] .dropdown-content-home {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

/* MENU - PAGES*/
.dropbtn {
  font-weight: 500;
  font-size: 1.5em;
  color: black;
  margin: 0.7em;
  cursor: pointer;
  list-style: none;
  text-align:center;
}

.dropbtn::-webkit-details-marker,
.dropbtn::marker {
  display: none;
}

.dropdown-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-content a {
  display: block;
  padding: 8px 0;
  color: black;
}

.dropdownhome[open] .dropdown-content-home {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

/* Links inside dropdown */
.dropdown-content a {
	text-align: center;
	font-family: helvetica;
	font-size: 1em;
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: black;
}
.dropdown-content a:hover {
  text-decoration: underline;
}

/* When open, expand smoothly */
.dropdown[open] .dropdown-content {
  max-height: 250px; /* enough for all items */
  opacity: 1;
  transform: translateY(0);
}



  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    font-family: Arial, sans-serif;
   /* background: url('/video/fallback.jpg') no-repeat center center/cover;*/
  }

  .bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
    pointer-events:none;
  }



 /* @media (max-width: 768px) {
    .bg-video {
      display: none;
    }
  }*/







/*WHEELS*/
/* ===== WHEELS ===== */

.wheel {
 
 
    /* adjust as needed */
  margin: 0 auto;
}

.rotator {
  position: relative;
  
}

/* Outer wheel (static) */
.outer-wheel {
  width: 100%;
  display: block;
}

/* Inner rotating wheel */
#spin, #spin2, #spin3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: center center;
  will-change: transform;
  touch-action: none;
  user-select: none;
  cursor: grab;
  transition: transform 0.2s ease;
}

#spin.dragging,
#spin2.dragging,
#spin3.dragging {
  cursor: grabbing;
  transition: none;
}


/* Slideshow container */
.slideshow {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* snap horizontally */
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
  scrollbar-width: none; /* hide scrollbar in Firefox */
}
.slideshow::-webkit-scrollbar { display: none; } /* hide scrollbar in Chrome/Safari */

/* Each slide */
.slide {
  flex: none;
  width: 100%;
  max-width: 600px; /* slideshow size */
  height: 400px;
  scroll-snap-align: center;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


img {user-select:none;
	 -moz-user-select: -moz-none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -o-user-select: none;
            user-select: none;
}






