
/* MOBILE */

/*buttons*/
.accordion {
    background-color:#55788c;
    color: #ffffff;
    cursor: pointer;
    padding: 15px;
    width: 94%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 15px;
    margin: 0 1rem 1rem 0;
    font-size: 18px;
}

.active, .accordion:hover {
    background-color:#7D9DB0;
     color: #fff;
    
}

/*accordion panel - hidden by default*/
.panel {
    background-color: #EBF7E1;
    padding: 15px;
    width: 94%;
    margin: 0 4% 1rem 2%;
    font-size: 18px;
    display: none;
    overflow: hidden;
    text-align: left;
    border-radius: 15px;
}

.menu_accordion {
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: auto;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
}

/*used for java script*/
.menu_panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    position: relative;
}

/*
LARGER MOBILE DEVICES
This is for mobile devices with a bit larger screens.
*/
@media only screen and (min-width: 481px)
{
    
}

/*
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)
{
/*style the buttons*/
.accordion {
    background-color:#ffffff;
    color: #000000;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: 1rem auto;
    font-size: 1rem;
    border-radius: 10px;
}
    
.active, .accordion:hover {
    background-color: #EBF7E1;
    color: #7D9DB0;
    }

.panel {
    border-radius: 10px;
    margin: 0 auto 1rem auto;
    width: 100%;
    }
    
    
    
    
/*.accordion {
    background-color: #EBF7E1;
    width: 100%;
    margin: 1rem auto;
    border-radius: 10px;    
    }
    
.active, .accordion:hover {
    background-color: #EBF7E1;
    color: #7D9DB0;
}

.panel {
    border-radius: 10px;
    margin: 0 auto 1rem auto;
    width: 100%;
    }*/
    
    
    
    
    
/*add a background colour to the button if it is clickedon (add the .active class with JS), and when you move the mouse over it (hover)*/
.active, .accordion:hover {
    /*background-color:#ffffff;
    color: #55788c;*/
    }
    
}

/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {
    
}

/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution.
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-device-pixel-ratio: 1.5) {


} 







