/* New Css 15-02-2023*/
	
header#top {
  height: 40px !important;
  padding-top: 5px !important;
}
#sidebar-left, body.sidebar-left-active #sidebar-left {
  top: -50px !important;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index:15000;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  
}

.sidenav a {
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav .closebtn:hover {
  color: #3BB4A1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  padding: 10px;
}
@media only screen and (max-width: 600px)
{
	.inner {
	  width: 100% !important;
	  margin: 0 auto;
	}
	#sidebar-left{
		display:none;
	}
	.inner {
	  width: 100%;
	  margin: 0 auto;
	}
	#content{
	width:100%;
	}
	#sidebar{
		display:none;
	}
	
	header#top {
	  height: 70px !important;
	  padding-top: 5px !important;
	  width:100% !important;
	}
	.alignright {
		float: left;
		padding-left: 10px;
		padding-top: 5px;
	}
	
	#search-bar {
	  width: 100%;
	  padding-left: 10px;
	}
	 
	 #search-bar input[type="text"] {
	 float: left;
	  width: 55%;
	}
	
	#search-bar input[type="submit"] {
	  float: left;
	}
	body.home-page #content, body.archive #content, #content.clumanize, body.search-results #content {
	  margin: 0 auto;
	}
}
@media only screen and (max-width: 600px)
{
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
  
  /* HEADINGS */

 

.page-wrapper {
  width: 100%;
  height: auto;
  
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index:15000;
}

.grad-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  	-webkit-animation: gradbar 15s ease infinite;
	-moz-animation: gradbar 15s ease infinite;
	animation: gradbar 15s ease infinite;
}

/* NAVIGATION */
.navbar img {
	width:50px;
	height:50px;
	justify-self: start;
	margin-left: 40px;
}


.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 50px;
  border-bottom: 2px solid #f2f2f2;
}
.navbar ul {
  list-style: none;
  grid-template-columns: repeat(6,1fr);
  justify-self: end;
  margin-right: 50px; 
}

.navbar ul li {
	float: left;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	margin: 0 38px 0 0;
	position: relative; 
}

.navbar li:last-child{
margin: 0;
}
.navbar li a{
	color: #1d4653;
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.navbar li a:hover, .nav li.current_page_item a{
	color: #009ad1;
}
.navbar li ul{
	position: absolute;
	width: 220px;
	top: 40px;
	left: 0;
	background-color: #FFF;
	border-bottom: 3px solid #009ad1;
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.20);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.20);
	/* display: none;*/
	transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all 0.3s ease 0s;
	visibility: hidden;
}
.navbar li:hover ul{
	transform: scale(1);
	visibility: visible;
}
.navbar li ul li{
	float: none;
	margin: 0;
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	border-top: 1px solid #f0f5f8;
}
.navbar li ul li a{
	padding: 8px 10px;
	color: #009ad1;
}
.navbar li ul li a:hover{
	color: #faa126;
}

/* SECTIONS */

.headline {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1435224668334-0f82ec57b605?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1yZWxhdGVkfDd8fHxlbnwwfHx8fA%3D%3D&w=1000&q=80');

  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features {
  width: 100%;
  height: auto;
  background-color: #f1f1f1;
  display: flex;
  padding: 50px 20px;
  justify-content: space-around;
}

.feature-container {
  flex-basis: 30%;
  margin-top: 10px;
}

.feature-container p {
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
}

.feature-container img {
  width: 100%;
  margin-bottom: 15px;
}

/* SEARCH FUNCTION */

#search-icon {
  font-size: 0.9rem;
  margin-top: 3px;
  margin-left: 15px;
  transition: color 0.3s ease-out;
}

#search-icon:hover {
  color: #3498db;
  cursor: pointer;
}

.search {
  transform: translate(-35%);
  -webkit-transform: translate(-35%);
  transition: transform 0.7s ease-in-out;
  color: #3498db;
}

.no-search {
  transform: translate(0);
  transition: transform 0.7s ease-in-out;
}

.search-input {
  position: absolute;
  top: -4px;
  right: -125px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.search-active {
  opacity: 1;
  z-index: 0;
}

input {
  border: 0;
  border-left: 1px solid #ccc;
  border-radius: 0; /* FOR SAFARI */
  outline: 0;
  padding: 5px;
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar{
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 25px;
  display: none;
}

.menu-toggle:hover{
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2){
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1){
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3){
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/* Media Queries */

  /* Mobile Devices - Phones/Tablets */

@media only screen and (max-width: 600px)
{ 
	.features {
		flex-direction: column;
		padding: 50px;
	}
	.navbar ul {
		display: flex;
		flex-direction: column;
		position: fixed;
		justify-content: start;
		top: 55px;
		background-color: #fff;
		width: 100%;
		height: calc(100vh - 55px);
		transform: translate(-101%);
		text-align: center;
		overflow: hidden;
	}
	.navbar li {
		padding: 15px;
	}
	.navbar li:first-child {
		margin-top: 50px;
	}
	.navbar li a {
		font-size: 1rem;
	}
	.menu-toggle, .bar {
		display: block;
		cursor: pointer;
	}
	
	.mobile-nav {
		transform: translate(0%)!important;
	}
	
	/* SECTIONS */
	.headline {
		height: 20vh;
	}
	.feature-container p {
		margin-bottom: 25px;
	}
	.feature-container {
	margin-top: 20px;
	}
	.feature-container:nth-child(2) {
		order: -1;
	}
	/* SEARCH DISABLED ON MOBILE */
	#search-icon {
		display: none;
	}
	.search-input {
		display: none;
	}
	
	#mobile_sidebar {
		width:90%;
		margin: 0 auto;
        padding-top: 20px;
	}
	#mobile_sidebar .widget {
		border-radius: 0;
		margin-bottom: 0px;
	}
	
	#mobile_sidebar .padder {
		width: auto;
		background: #000;
	}
	#mobile_sidebar a.user-avtar {
		background-color: #e3e3e3;
		position: relative;
		font-size: 27px;
		line-height: 100%;
		width: 50px;
		height: 50px;
		text-align: center;
		border-radius: 50%;
		overflow: hidden;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	#mobile_sidebar a.user-avtar {
		font-size: 27px;
		line-height: 100%;
		text-align: center;
	}
	#mobile_sidebar .user-name {
		margin: 0 auto;
		text-align: center;
		color:#000000;
	}
	#mobile_sidebar .user-name a {
		padding:10px;
	}
	#mobile_sidebar .padder #sidebar-me {
		background: #fff;
		padding:0px;
	}
	#mobile_sidebar .user-nav ul li a {
		font-size: 24px;
		text-align: center;
	}
	#mobile_sidebar .vanity-logo-bottom {
		background: url(../images/vanity-logo-bootom-mob.png) no-repeat bottom center #000;
		padding-bottom: 20px;
	}
	#mobile_sidebar .padder {
		width: auto;
		background: #000;
	}
	
	#mobile_sidebar strong a:hover { 
		color: #3BB4A1;
	}

	#ssidebar {
        background: url(../images/sidebar-right-bottom-mob.png) no-repeat bottom center;
        width: 90%;
        padding-bottom: 104px;
        margin: 0 auto;
	}
	
	#ssidebar div#sidebar-displayed-user {
		margin-bottom: 0px;
		position: relative;
		width: 100%;
		margin: 0 auto;
        padding-top: 20px;
	}
.padder {
  width: 100%;
}
	
	#ssidebar .displayed-user-menu-header a.displayed-user-avatar-thumb {
		display: block;
		float: left;
		margin-top: -20px;
		position: relative;
	}
	
	#ssidebar #object-nav {
		border-radius: 0 0 5px 5px;
		padding-top: 0;
		background: #000;
	}
	
	#ssidebar #object-nav ul li:first-child {
		margin-top: 0;
	}
	#ssidebar #object-nav ul li {
		padding: 0px;
		float: none;
	}
	#ssidebar div.item-list-tabs ul li {
		margin: 0 0;
		margin-top: 0px;
	}
	
	#ssidebar #object-nav ul li a {
		background: url(../images/usernav-item-bg.gif) no-repeat center bottom;
		color: #F8F8F8;
		display: block;
		font-size: 18px;
		padding: 10px 0;
		text-align: center;
	}
	#ssidebar div#ssidebar-displayed-user {
		margin-bottom: 0px;
		position: relative;
		margin-top: 20px;
	}
	#ssidebar #sidebar-login-form .input {
		width: 90%;
	}
    
    .widget {
        background: #fff;
        padding: 0px;
        border-radius: 5px;
        margin-bottom: 10px;
        margin: 0 auto;
        width: 100%;
    }
	
	
	
	
	#mayac_menu  .mayac li a {
	display: block;
	text-decoration: none; /* no underline */
	font-size: 24px;
	text-align: center;
	color: #FFFFFF;
}
#mayac_menu ul li {
  border-bottom: 0px
  list-style-type: disc;
  margin-left: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
#mayac_menu ul li {
  padding: 2px 5px;
background: url(../images/usernav-item-bg.gif) no-repeat center bottom;
}

 

#mayac_menu ul ul.sub-menu {
  border-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
  margin-left: 10px;
}

#mayac_menu ul ul.sub-menu li {
  border-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
 
}

/* define a fixed width for the entire menu */
#mayac_menu .mayac {
  width: 100%;
  background: #000;
}

/* reset our lists to remove bullet points and padding */
#mayac_menu .mayac, .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* make ALL links (main and submenu) have padding and background color */
#mayac_menu .mayac a {
  display: block;

  text-decoration: none;
  padding: 10px;
  color: #000;
}

/* add hover behaviour */
#mayac_menu .mayac a:hover {
	color:#ffba00;
}


/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

#mayac_menu .mayac li:hover .sub-menu {
  display: block;
  max-height: 200px;
  color:#ffba00;
}
/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/
#mayac_menu .sub-menu a {
  background-color: #171616;
}

/* hover behaviour for links inside .submenu */
#mayac_menu .sub-menu a:hover {
  background-color: #171616;
}

/* this is the initial state of all submenus.
  we set it to max-height: 0, and hide the overflowed content.
*/
#mayac_menu .sub-menu {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-out;
}

#mayac_menu ul ul.sub-menu {
 
  padding-top: 0px;
 
}

#mayac_menu  ul li {
  
}

#mayac_menu ul ul.sub-menu {
  margin-top: 0px;
  padding-top: 0px;
  margin-left: 0px;
}

#mayac_menu  ul ul.sub-menu li {
  margin-left:15px;
}
}