body {
margin:0px;
font-family: 'Noto Sans Bold Italic', arial;
background-color: #DDD;
}
img {
 width:100%;
 height:auto;
}
h1{
font-family: 'Noto Sans Bold Italic', arial;
font-size:22px;
color:#666;
font-weight: 80;
}
a {
font-family: 'Noto Sans Bold Italic', arial;
color:#33A;
text-decoration:none;
}

video{
width:100%;
}
a:hover{
font-family: 'Noto Sans Bold Italic', arial;
color:#33f;
text-decoration:none;
}

#title{
position:relative;
top:0px;
font-size:24px;
color:#FFF;
font-weight: 100;
z-index:100;
width:100%;
height:32px;
pointer-events: none; 
background-color:#000;
}

#header{
background-color: #000;
position:absolute;
color:#FFF;
font-size:18px;
font-weight: 120;
z-index:100;
padding-top:10px;
padding-bottom:10px;
width:100%;
height:30px;
text-align:center;
}


#header a{
color:#FFF;
}
#container{
position:absolute;
margin:auto;
top:0px;
left:0px;
font-size:16px;
color:#444;
font-weight: 80;
z-index:0;
width:100%;
height:100%;
}
#content{
opacity:1.0;
background-color:#fff;
margin:auto;
position:relative;
top:90px;
font-size:18px;
color:#222;
font-weight: 80;
z-index:10;
width:90%;
max-width:1280px;
border: 1px solid #444;
border-radius: 5px;
padding:0px;
}

#but{
opacity:1.0;
background-color:#248;
margin:auto;
position:relative;
font-size:32px;
font-color:#FFF;
font-weight: 80;
z-index:10;
width:20%;
border: 1px solid #F00;
border-radius: 5px;
padding:10px;
}
#but a {
font-family: 'Noto Sans Bold Italic', arial;
color:#FFF;
text-decoration:none;
}

#but a:hover{
font-family: 'Noto Sans Bold Italic', arial;
color:#FA0;
text-decoration:none;
}


#but2{
opacity:1.0;
background-color:#248;
margin:auto;
position:relative;
font-size:32px;
font-color:#FFF;
font-weight: 80;
z-index:10;
width:54%;
border: 1px solid #F00;
border-radius: 5px;
padding:10px;
}
#but2 a {
font-family: 'Noto Sans Bold Italic', arial;
color:#FFF;
text-decoration:none;
}

#but2 a:hover{
font-family: 'Noto Sans Bold Italic', arial;
color:#FA0;
text-decoration:none;
}
#middleContent{
position:relative;
padding:5px;
width:100%;
display: flex;
}
#sec1{
position:relative;
flex:100%;
padding:5px;


}
#sec2{
position:relative;
flex:70%;
}
#sec3{
position:absolute;
right:30px;
bottom:10px;
flex:30%;
width:30%;
align-items: bottom;
}
#sec4{
padding:5px;
position:relative;
}

#listing{
position:static;
font-size:16px;
color:#333;
font-weight: 100;
z-index:200;
width:100%;
}

#orderContent{
position:relative;
padding:0px;
display: flex;
width:100%;
}
#orderSec1{
background-color:#EFC;
position:relative;
left:0px;
bottom:0px;
flex:50%;

}
#orderSec2{
background-color:#CEF;
position:relative;
right:0px;
bottom:0px;
flex:50%;

}

.packImg{
position:relative;	
height:auto;
bottom:10px;
}
.packImg img{
width:75%;

}

.p2{
color:#333;
display: block;
position: relative;
padding-left: 2rem;
margin-bottom: 1rem;
font-size: 1.25rem;
}

.butt{
color:#333;
display: block;
position: relative;
padding-left: 2rem;
margin-bottom: 1rem;
font-size: 2.0rem;
}

.redNote{
color:#F33;
display: block;
position: relative;
padding-left: 2rem;
margin-bottom: 1rem;
font-size: 1.0rem;
}

.listingTbl{
  border: 1px solid #FFF;
  border-radius: 5px;
  width:94%;
}

.redListing{
background-color: #FFF;
padding:6px;
border: 1px solid #444;
border-radius: 5px;
}

.greenListing{
background-color: #FFF;
padding:6px;
border: 1px solid #444;
border-radius: 5px;
}
.blueListing{
background-color: #FFF;
padding:6px;
border: 1px solid #444;
border-radius: 5px;
}
h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 3rem;
}
table{
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 1.0rem;
    user-select: none;
    color: #222;
    letter-spacing: 1px;
  margin:auto;	
	
	
  }
.bulgy-radios {
  width: 90%;
  margin:auto;
  background: #fff;
  padding: 0.5rem 0 0.5rem 0.5rem;
  border-radius: 1rem;
  border: 1px solid #444;
  
  label {
    display: block;
    position: relative;
    height: 1em;
	padding-left: 4rem;
    margin-bottom: 1.75rem;
    cursor: pointer;
    font-size: 1.25rem;
    user-select: none;
    color: #555;
    letter-spacing: 1px;
    &:hover input:not(:checked) ~ .radio {
      opacity: 0.8;
    }
  }
  .label {
    display: flex;
    align-items: center;
    padding-right: 3rem;
    span {
      line-height: 1em;
    }
  }
  input {
    position: absolute;
    cursor: pointer;
    height: 0;
    width: 0;
    left: -2000px;

    &:checked {
      ~ .radio {
        background-color: #0ac07d;
        transition: background .3s;
        &::after {
          opacity: 1;
        }
      }
      ~ .label {
        color: #0bae72;
        span {
          animation: bulge .5s forwards;
        }

        //adjust this if label is going to be more than 20 chars
        @for $i from 1 to 20 {
          span:nth-child(#{$i}) { animation-delay: $i * 0.025s; }
        }
      }
    }
  }
}
.radio {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background: #c9ded6;
  border-radius: 50%;
  &::after {
    content: '';
    position: absolute;
    opacity: 0;
    top: .5rem;
    left: .5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #fff;
  }
}
@keyframes bulge {
  50% {
    transform: rotate(4deg);
    font-size: 1.5em;
    font-weight: bold;
  }
  100% {
    transform: rotate(0);
    font-size: 1em;
    font-weight: bold;
  }
}

.mobile-container {
  max-width: 480px;
  position: fixed;
  margin: auto;
  background-color: #555;
  height: 500px;
  color: white;
  border-radius: 10px;
  z-index:1000;
}

.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
    z-index:1000;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #000;
  color: white;
}

