/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 11 2026 | 10:49:40 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* #podcast {
	display: flex!important;
	align-items: center;
	gap: 15px;
} */
/* CSS */
#loadMore {
	margin: 20px 0 0 0;
  all: unset;
  width: 100px;
  height: 30px;
	font-family: "Rubik", sans-serif;
  font-size: 21px;
  background: transparent;
  border: none;
  position: relative;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

#loadMore::after,
#loadMore::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

#loadMore::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  border-radius: 10px;
}

#loadMore::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

#loadMore:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

#loadMore:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

#loadMore:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}
