/* Contenido */
.tm-titlebar-wrapper {
    display: none;
}
main#main {
    padding: 0px;
}

div#primary {
    width: 100% !important;
    padding: 0px;
}


#totop{
    left: 34px;
    bottom: 25px !important;
    right: initial !important;
}

#playPauseBtn {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  border: none;
  outline: none;
  
  background-image: linear-gradient(to right, #b564d9, #ee609c) !important;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}


#playPauseBtn:hover {
  background-color: #d1478e;
}

/*Mobile*/
@media(max-width: 767px) {
body.themetechmount-sidebar-right.tm-empty-sidebar .site-content-wrapper #primary.content-area {
        padding-left: 15px !important;
    }
}

/* CSS DE ITEM DEL RSVP */
.tec-tickets__attendees-list-item:not(:first-child) {
    display: none;
}


/*Animaciones*/
@keyframes load {
    0% {
        opacity: .3
    }

    50% {
        opacity: 1
    }

    to {
        opacity: .3
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mover {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-5px)
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-30px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 10px 6px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.1);
  }
}
.auto-height-important {
    height: auto !important;
}