.btn-posnawr {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 20px;
  background-color: var(--e-global-color-primary);
	border-radius: 10px;	
  color: #ffffff;
  text-transform: uppercase;
	font-size:22px!important;
	font-weight: 700!important;
  font-family: var(--e-global-typography-secondary-font-family)!important;
}

.yellow .btn-posnawr{
	background-color: var(--e-global-color-secondary);
	color: var(--e-global-color-text);
	font-weight: 700;
}

.btn-posnawr .btn-circle {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 50%;
  background-color: #093b66;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  z-index: 1;
}

.yellow .btn-posnawr .btn-circle {
  background-color: #e7dc00;
}


.btn-posnawr .btn-circle.ripple-active {
  width: 225%;
  height: 562.5px;
}
.btn-posnawr .btn-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}


.btn-posnawr:hover .btn-label {
  color: #eeeeee;
}

.yellow .btn-posnawr:hover .btn-label {
  color: var(--e-global-color-text);
}


.btn-posnawr:active {
  background-color: #004499;
}
.yellow .btn-posnawr:active {
  background-color: #c0b800;
}


.svg-inline--fas-fa-mouse-pointer {
  margin-left: 10px;
  transform: translateY(3px);
  width: 18px; 
  height: 18px;
  fill: white; opacity: .6;
  transition: all .2s ease-in-out;
}


/* tema yellow: cambia fill e applichi la stessa logica di hover */
.yellow .btn-posnawr .svg-inline--fas-fa-mouse-pointer {
  fill: var(--e-global-color-text);
}

.btn-posnawr:hover .svg-inline--fas-fa-mouse-pointer {
  opacity: 1;
	transform: translate(-3px);
}


@media (max-width: 767px) {

.btn-posnawr{
	font-size: 18px!important;
	padding: 8px 15px;
}
	.svg-inline--fas-fa-mouse-pointer {
	margin-left: 5px;
    width: 15px;
    height: 15px;
	}
	
}

/*CUSTOM SCROLL WIDGET*/

:root {
  --color: #85D0EE;
}

.container_mouse {
  text-align: center;
  color: var(--color);
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 2rem;
  cursor: pointer;
}

.container_mouse span {
	font-size: 15px;
}

.container_mouse .mouse-btn {
  margin: 10px auto;
  width: 40px;
  height: 80px;
  border: 4px solid var(--color);
  border-radius: 30px;
  display: flex;
}

.container_mouse .mouse-btn .mouse-scroll {
  display: block;
  width: 20px;
  height: 20px;
  background: linear-gradient(170deg, rgba(122, 122, 124, 0.918), rgb(123, 124, 124));
  border-radius: 50%;
  margin: auto;
  animation: scrolling 1.4s ease-in-out infinite;
}

@keyframes scrolling {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}

