.row{
    display: flex;
    justify-content: space-around;
    margin: 0px 5px;
}
.rf{
    width: 80%;
    text-align: center;
}
.info{
    width: 10%;
}
.row_inner{
    width: 33.33%;
    text-align: center;
    background-color: black;
    margin: 2px;
}
/* add cash */
.addcash{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgb(0 0 0 / 50%);
    color: white;
    position: absolute;
    z-index: 1;
}
.addcash .a1{
    width: 100%;
    height: 60%;
    background-color: #e8cdda;
    position: absolute;
    bottom: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: black;
}


.addcash .btn{
    font-size: large;
    background-color: #e8cdda;
    position: absolute;
    bottom: 60%;
    border: 0px;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 50px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}

.addcash .a1 .rembalance{
    width: 40%;
    padding: 15px;
    margin: 40px 30px;
    border-radius: 10px;
    font-size: large;
    background-color: rebeccapurple;
    color: wheat;
}
.addcash .a1 .addbalance{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rebeccapurple;
    padding: 5px;
    margin: 5px 100px;
    color: wheat;
    border-radius: 10px;
}

.addcash .a1 .a1text{
    font-style: italic;
    color: #b07f23;
}



/* rotating border */
@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.rainbow {
	position: relative;
	z-index: 0;
	
	border-radius: 10px;
	overflow: hidden;
	padding: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	font-weight: bold;
	
	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -50%;
		width: 200%;
		height: 200%;
		background-color: #399953;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
		animation: rotate 1s linear infinite;
	}
	
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background: rgb(8, 123, 69);
		border-radius: 5px;
	}
}