

/*
LARGER MOBILE DEVICES
This is for mobile devices with a bit larger screens.
*/
@media only screen and (min-width: 481px)
{
.menupanel button {
    font-size: 22px;
    margin: 20px auto;
    padding: 10px 25px;
    border-radius: 5px;
    display: block;
}

.menupanel h3 {
    font-size: 22px;
    font-weight: normal;
}
    
#small_screen {
    display: block;       
    }
    
#large_screen {
    display: none;    
    }
    
.centered_white {
    margin-top: 2rem;
    text-align: center;
    }

.menupanel select {
    background-color: #ffffff;
    padding: 0.3rem;
    font-size: 1rem;
    display: block;
    margin: 1rem auto;
    border-radius: 5px;
}

.menupanel input {
    display: block;
    margin: 1rem auto 0 auto;
    padding: 5px 20px;
    font-size: 1rem;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
}
    
.menupanel label {
    font-size: smaller;
    color: #fff;
    display: block;
    margin: 0 auto;
}

#to {
}

#from {
    margin-top: 1rem;
}

.narrow {
    display: block;
     width: 50%;
    }
    
/*
TABLET & SMALLER LAPTOPS
The average viewing window and preferred media query for those is 768px.
But I think that some more breathing space is good:)
*/
@media only screen and (min-width: 920px)
{


}

/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1030px)
/* DESKTOP 
@media (min-width: 50rem)*/ {

.menupanel {
    /*margin: 0 ;*/
    display: grid;
	grid-column-gap: 0.5rem;
    grid-template-columns: 23% 23% 23% 23%;
	grid-template-rows: repeat(auto-fill, 1rem); /*also auto-fit*/
    justify-content: center;
	grid-row-gap: 0.5rem;
	justify-items: stretch;
	align-items: stretch;
    padding: 1rem;
}

.centered_white {
    margin-top: 0;
    margin-bottom: 2rem;
    }
    
.searchboxes {
    z-index: 100;
    padding: 10px 20px 20px 20px;
    border: none;
    height: 9rem;
}

.menupanel select {
    background-color: #ffffff;
    padding: 0.3rem;
    font-size: 1rem;
    display: inline;
    margin: 0;
    width: 5rem;
    border-radius: 5px;
}
    
#wide_select {
    width: 15rem;
    margin-top: 0;
}
    
.narrow {
    display: block;
     width: 100%;
    }
    
.menupanel input {
    display: inline;
    margin: 0;
    padding: 5px 20px;
    font-size: 1rem;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
}

.menupanel label {
    color: #fff;
    text-align: left;
    margin: 0;
    display: inline;
}

.menupanel button {
    font-size: 22px;
    margin-top: 100px;
    margin-bottom: 10px;
    padding: 10px 25px;
    border-radius: 5px;
    display: block;
}

#small_screen {
    display: none;       
    }
    
#large_screen {
    display: block;    
    }
    
.menupanel h3 {
    font-size: 22px;
    font-weight: normal;
}



#to {
}

#from {
    margin-top: 0;
}

.menupanel form {
    padding: 0 20px 20px 20px;
    border: none;
    margin-bottom: 10px;
}

.menupanel ul {
    list-style-type:none;
    margin-bottom: 2rem;
}

.el2 div {
    /*background:rgba(49, 70, 82,.6);*/
    border-radius: 10px;
}

.menupanel ul li ul {
    list-style-type:none;
}

.dropdown-content a h2 {
    margin: 0;
}

.el3con {
	grid-area: main1;
	padding: 1rem;
}
    
#myDropdown1 .menupanel {
    height: 43rem;
    /*background:rgba(49, 70, 82,.6);*/
    }

#myDropdown2 .menupanel {
    height: 55rem;
    /*background:rgba(49, 70, 82,.6);*/
}

#myDropdown3 .menupanel {
    height: 20rem;
    /*background:rgba(49, 70, 82,.6);*/
    }


    
.searchboxes {
    z-index: 100;
    padding: 5px 10px 10px 10px;
    border: none;
}

.yearSearch {
    grid-row-start: 1;
	grid-row-end: 10;
    grid-column-start: 3;
    margin-left: 50px;
    }

}
/*END DESKTOP*/

.mobile-nav {
	  display: none;
}

.mobile-nav__items {
	display: none;	
}

.toggle-button {
	display: none;
}

.el13 {
    font-size: smaller;
    }


/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {

}
  
@media only screen and (min-width: 1430px) {

.menupanel select {
    width: 6rem;
}

.menupanel button {
    margin-left: 100%;
}
    
#myDropdown1 .menupanel {
    height: 40rem;
    }

#myDropdown2 .menupanel {
    height: 40rem;
}

#myDropdown3 .menupanel {
    height: 20rem;
    }
}
