I tried to implement a piece of CSS code I found on a website, but I'm encountering an error in this particular section
.pricing-table:hover{
box-shadow: 0px 0px 19px -3px rgba(0,0,0,0.36);
/*issue starts from this line*/
.pricing-table__button{
padding-left: 0;
padding-right: 35px;
.pricing-table__button:before{
top: -80%;
transform: rotate(0deg);
width: 100%;
}
.pricing-table__button:after{
opacity: 1;
padding-right: 15px;
}
}
}
Can anyone identify what might be causing the problem in the CSS code?