/****************************************************************************/
/* NOTE: This file is duplicated in all translations of Palouse Mindfulness */
/*       IF CHANGES ARE MADE                                                */
/*           (1) COPY TO /actual, /english, /es, /it, etc.)                 */
/*           (1) THEN *** TEST *** (unless want to orphan that version)     */
/****************************************************************************/

/********************************************************************************/
/* contains css defs. for mobile nav (left/right sidenav, horiz.pulldown menu)  */
/********************************************************************************/

/*************************************************************************/
/* definitions for left_menu side navigation.                          */
/*************************************************************************/

.sidenav-left_menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;	/* left:0 comes in from left, right:0 comes in from right */
	border: 2px #008 solid;
	background-image: url(art/clouds4_leftmenu_950x1000.jpg);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
}

.sidenav-left_menu a {
    padding: 5px 10px 5px 10px; /* top, right, bottom, left */
    text-decoration: none;
	text-align:center;
    font-size: 16px;
    color: #066;
    display: block;
    transition: 0.3s
}

.sidenav-left_menu a:hover, .offcanvas a:focus{
    color: #cc7733;
}

.sidenav-left_menu .closebtn {
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 36px;
    margin-left: 50px;
}

/*************************************************************************/
/* definitions for right_quote side navigation.                          */
/*************************************************************************/

.sidenav-right_quote {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;	/* left:0 comes in from left, right:0 comes in from right */
	border: 2px #008 solid;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
}

.sidenav-right_quote a {
    padding: 5px 10px 5px 10px; /* top, right, bottom, left */
    text-decoration: none;
    font-size: 16px;
    color: #066;
    display: block;
    transition: 0.3s
}

.sidenav-right_quote a:hover, .offcanvas a:focus{
	color: #cc7733;
}

.sidenav-right_quote .closebtn {
	position: absolute;
	top: 0;
	left: 0px;
	font-size: 36px;
	margin-left: 0px;
}

/*************************************************************************/
/*  Definitions for drop-down version of horiz_menu for phone viewport   */
/* ANY CHANGES HERE SHOULD ALSO BE MADE TO THE TABLET VERSION BELOW THIS */
/* ONE.  For some reason, none of these definitions can be shared.       */
/*************************************************************************/

.dropbtn {
	border:2px ridge black;
	padding: 0px 0px 0px 0px; /* top, right, bottom, left */
	color: #066;
	font-weight: 700;
	background-color: #c5c9e4;
    height: 24px;
	cursor: pointer;
}

.horiz_menu {
    position: relative;
    display: inline-block;
}

.horiz_menu-content {
    display: none;
    position: absolute;
    z-index: 1;
	background-image: url(art/clouds4_leftmenu_950x1000.jpg);
	background-repeat:no-repeat;
	border: 2px #008 solid;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	text-align:center;
}

.horiz_menu-content a {
    color: #066;
    padding: 12px 12px 0px 0px; /* top, right, bottom, left */
    text-decoration: none;
    display: block;
}

.horiz_menu a:hover {color: #cc7733}

.show {display:block;}

/*************************************************************************/
/*  Definitions for drop-down version of horiz_menu for tablet viewport. */
/* These are identical to the ones above for the phone viewport except   */
/* names have been changed so they don't "bump into" each other.         */
/*************************************************************************/

.dropbtn_tablet {
	border:2px ridge black;
	padding: 0px 0px 0px 0px; /* top, right, bottom, left */
	color: #066;
	font-weight: 700;
	background-color: #c5c9e4;
    height: 24px;
	cursor: pointer;
}

.horiz_menu_tablet {
    position: relative;
    display: inline-block;
}

.horiz_menu_tablet-content {
    display: none;
    position: absolute;
    z-index: 1;
	background-image: url(art/clouds4_leftmenu_950x1000.jpg);
	background-repeat:no-repeat;
	border: 2px #008 solid;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	text-align:center;
}

.horiz_menu_tablet-content a {
    color: #066;
    padding: 12px 12px 0px 0px; /* top, right, bottom, left */
    text-decoration: none;
    display: block;
}

.horiz_menu_tablet a:hover {color: #cc7733}

.show_tablet {display:block;}
