@charset "utf-8";
/* CSS Document */


 /* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 5%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 0px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px !important; /* Override the font-size specified earlier (36px) for all navigation links */
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .closebtn {
        font-size: 40px !important;
        top: 0px;
        right: 35px;
    }
}


/* mobile menu icon */

div1 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
}

.container {
    display: inline-block;
    cursor: pointer;
}

.bar8, .bar9, .bar10 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar8 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar9 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar10 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}


/*dropdown schedule*/

 /* Style the buttons that are used to open and close the accordion panel */
button.accordion {
   	clear: both;
	border: 0px;
	background-color: transparent;
	border-bottom-left-radius: 10px;
	border-bottom-width: thick;
	border-bottom-style: solid;
	border-bottom-color: #333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #5360a7;
	padding-bottom: 5px;
	padding-left: 15px;
	margin-bottom: 5px;
	font-weight: bold;
	width: 100%;
    transition: 0.6s ease-in-out;
	text-align: left;

	
}




/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion:hover {
	background-color: #333;

}

button.accordion.active{
background-color: transparent;

}


/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
  	background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    opacity: 1;
    max-height: 1000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

@media only screen and (min-width: 1000px) {
	button.accordion {
   	clear: both;
	background-color: transparent;
	border-bottom-left-radius: 10px;
	border-bottom-width: thick;
	border-bottom-style: solid;
	border-bottom-color: #333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #5360a7;
	padding-bottom: 5px;
	padding-left: 15px;
	margin-bottom: 5px;
	font-weight: bold;
	width: 900px;
	text-align: left;
	
}
	
div.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
	background-color: transparent;
    transition: 0.6s ease-in-out;
    opacity: 0;
	width: 860px;
}	
	
}