.pay-container{
    row-gap: 15px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    margin-bottom: 50px;
}
.pay-button{
    background-color: #e9ebff;
    color: rgb(68, 68, 68);
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    height: 60px;
}
.pay-button:hover{
    background-color: #c9ccff;
}
.pay-button img{
    vertical-align: middle;
    max-height: 40px;
    height: auto;
    width: auto;
}
.pay-button.active{
    border: 2px solid #235ee7;
    background: rgba(39, 94, 231, 0.53) !important;
}
.tether-coin{
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, #7c82f9, #585ff6);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 24px; color: #fff;
    box-shadow: 0 8px 20px -6px rgba(88, 95, 246, 0.55);
    flex: none;
}
.tether-coin:before{
    content: "₮";
}