
body{
  padding:0;
}
.container{
  border-radius:0;
}
.logincontainer{
  width: 100%;
}

.flex{
  flex-wrap: wrap;
}



.flex .half{
  width: 100%;
  margin-right: 0;
}

.flex .third{
  width: 100%;
  margin-right: 0;
}

.mobile-grid-6{
  grid-template-columns: repeat(6, 1fr); 
}

.mobile-grid-5{
  grid-template-columns: repeat(5, 1fr); 
}

.mobile-grid-4{
  grid-template-columns: repeat(4, 1fr); 
}

.mobile-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mobile-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.mobile-grid-swap div:nth-child(1){
  order:2;
}
.mobile-grid-swap div:nth-child(2){
  order:1;
}


.mobile-grid-span-1 {
  grid-column: span 1;
}
.mobile-grid-span-2 {
  grid-column: span 2;
}
.mobile-grid-span-3 {
  grid-column: span 3;
}
.mobile-grid-span-4 {
  grid-column: span 4;
}
.mobile-grid-span-5 {
  grid-column: span 5;
}
.mobile-grid-span-6 {
  grid-column: span 6;
}


.mobile-left{
  text-align:left; 
}

.button{
  display:block;
  width: 100%;
}


.side{
 width: 100%;
 margin-bottom: 50px; 
}
.side .sidebar{
  min-height: 1px; 
}
.main{
  width: 100%; 
  padding: 0;
}
.content{
  padding: 15px; 
}
.copy{
  padding: 15px;
  text-align:center; 
}
.hpadded{
  padding-left: 15px;
  padding-right: 15px;
}

.mobilegone{ display: none !important; }
.mobilehere{ display: block !important; }
.desktopgone{ display:block; }


.mobileheader{
  display:block;
  background-color: var(--blue);
  padding: 15px; 
}
.mobileheader img{
  width: 150px; 
  display:block; 
}



#mobilenav {
  width: 45px;
  height: 35px;
  position: absolute;
  right:10px;
  top:15px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#mobilenav span {
  display: block;
  position: absolute;
  z-index: 9;
  height: 3px;
  width: 50%;
  background: #FFF;
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#mobilenav span:nth-child(even) {
  left: 50%;
}

#mobilenav span:nth-child(odd) {
  left:0px;
}

#mobilenav span:nth-child(1), #mobilenav span:nth-child(2) {
  top: 5px;
}

#mobilenav span:nth-child(3), #mobilenav span:nth-child(4) {
  top: 15px;
}

#mobilenav span:nth-child(5), #mobilenav span:nth-child(6) {
  top: 25px;
}

#mobilenav.open span:nth-child(1),#mobilenav.open span:nth-child(6) {
  transform: rotate(45deg);
}

#mobilenav.open span:nth-child(2),#mobilenav.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#mobilenav.open span:nth-child(1) {
  left: 5px;
  top: 8px;
}

#mobilenav.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 8px;
}

#mobilenav.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#mobilenav.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#mobilenav.open span:nth-child(5) {
  left: 5px;
  top: 21px;
}

#mobilenav.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 21px;
}


h1{
  font-size: 1.5rem;
}
h2{
  font-size: 1rem;
}
h3{
  font-size: 1.5rem;
}

.top{
  padding: 15px; 
}
.top .topbuttons{
  right: 15px;
  top: 15px; 
}
.top .topbuttons .button{
  display: inline-block;
  margin-left: 5px; 
}

.input.search{
  background-image: url('/images/search.svg');
  background-size: auto 25px;
  background-position: left 15px center;
  background-repeat: no-repeat;
  padding-left: 50px; 
  margin-bottom: 15px; 
}

