#lean_overlay {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}

#pay {
	display: none;
	width: 50%;
    padding: 10px;
    background-color: var(--clr-light);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    text-align: center;
}

#pay h1 {
	color: var(--clr-dark-gr);
	font-size: 2rem;
	font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 15px;
}

#pay input {
    font-size: 1.5rem;
    width: 100%;
    margin: 5px 0px;
    padding: 10px;
    background: #fff;
    text-align: center;
    border: none;
    border-radius: 20px;
}

#pay button {
	font-size: 1rem;
    line-height: 150%;
    color: #FFFFFF;
    background: var(--clr-dark-gr);
    padding: 0.5rem 1.5rem;
    -webkit-box-shadow: 0px 20px 50px rgb(0 116 112 / 10%);
    box-shadow: 0px 20px 50px rgb(0 116 112 / 10%);
    border-radius: 50px;
    border: none;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
    cursor: pointer;
    text-decoration: unset;
    margin-top: 10px;
}

#pay button:hover,
#pay button:focus {
	opacity: .8;
}