/*! Basado en Pushy - v1.4.0 */
.pushy {
  position: fixed;
  width: 320px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #497d0b;
  color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}

.pushy a {
  display: block;
  color: #fff!important;
  text-decoration: none;
}

.pushy a:hover {
  color: #FFF;
}

.pushy ul {
  margin-top: 10px;
  padding-inline-start: 0;
}

.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
}
@media (min-width:769px) {
  .pushy-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	}
}

.pushy-user {
    max-width: 200px;
    display: inline-block;
}
.pushy-avatar {
    border: 1px solid #fff;
    border-radius: 50%;
}

svg.pushy-logo g {
    animation:spin 20s linear infinite;
    transform-origin: center;
}
svg.pushy-logo:hover g {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
}
@keyframes spin{
    100% {transform:rotate(360deg);}
}

.pushy-content #cbxwpbookmarkgrid-widget-2,
.pushy-content #block-2 {
    padding: 0;
    margin: 2rem 0 0 0;
}
.pushy-content #cbxwpbookmarkgrid-widget-2 h2.widgettitle,
.pushy-content #cta-subs h2 {
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 0;
    background: #00000085;
    text-align: center;
}
.pushy-content #cbxwpbookmarkgrid-widget-2 h3 {
    display: none;
}
.pushy-content .cbxbookmark_card_container,
.pushy-content .cbxwpbookmarkgrid-readmore,
.pushy-content .cbxbookmark_cards_wrapper .cbxbookmark-more-wrap a {
    background: rgba(255,255,255,.3)!important;
}

/* Form fixes */
button.mp-hide-pw {display: none;}
.pushy .mepr-form input[type=submit]{
    color: #497d0b;
    background-color: #fff;
    border-color: #a1ef45;
    border-width: 2px;
    transition: .5s;
}

/* Menu Movement */
.pushy-right {
  -webkit-transform: translate3d(320px, 0, 0);
  -ms-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0);
}

.pushy-open-right #page,
.pushy-open-right .push {
  -webkit-transform: translate3d(-320px, 0, 0);
  -ms-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0);
}

.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#page,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  padding: 2rem;
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Submenu Appearance */
.pushy-submenu {
  list-style-type: none;
  border-bottom: 1px solid #fff;
  padding: 1rem .5rem;
  animation: fadeIn 0.5s linear;
  animation-fill-mode: both;
}
.pushy-submenu.usuario {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.pushy-submenu:not(.usuario):hover {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.4),rgba(255,255,255,0));
    background-size: 600% 600%;
    animation: bgMoving 3s ease 1;
}
@keyframes bgMoving {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:100% 50%}
}

/* Submenu Movement */
.pushy-submenu-closed > ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}

.pushy-submenu-open > ul {
  max-height: 1000px;
  visibility: visible;
}

.pushy-submenu-open .pushy-link {
  opacity: 1;
}