/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30.3.2016, 15:11:10
    Author     : suba
*/

.cart-box
{
        padding: 20px 40px;
	width: 100%;
	height: auto;
	background-color: #d9d9d9;
        margin-right: 10%;
    
}
h3 {
    margin-top: 0;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}
.thepay-methods-radio-method {
	margin: -20px 10%;
	height: 100%;
        width: 30%;
        display: inline-block;

}
@media (max-width: 2900px) {
.thepay-methods-radio-icon 
{
    
    width: 55px;
    height: 55px;
    float: right;
    margin-right: 18%;
}
}
@media (max-width: 1280px) {

.thepay-methods-radio-icon 
{
    
    width: 55px;
    height: 55px;
    float: right;
    margin-right: 18%;
    display: none;
}
}



.nump1{
width: 100%;
 padding-top: 0px;
 text-align: left;
 margin-right: 0%;
 height: 80px;
}
@media (max-width: 2900px) {
.pay-box
{
    width: 33%;
    float: left;
    height: 100%;
    text-align: left;
}
}
@media (max-width: 1000px) {
.pay-box
{
    width: 100%;
    float: left;
    height: 100%;
    padding-left: 33%;
    
}
.thepay-methods-radio-icon 
{
    
    width: 40px;
    height: 40px;
    
    margin-right: 18%;
    display: none;
}
.num2 {
    
    
}

}


.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 20px;
    margin-top: 15px;
}

.bankOption {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem;
    border: 1.9px solid #ccc;
    border-radius: 14px;
    background: rgba(27,27,27);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bankOption span{
    color:white;
    font-size: 1.2em !important;
    margin-left:0.5rem;
}

.bankOption:has(input[type="radio"]:checked) {
    border-color: #f59;
    background: rgba(255, 40, 150, 0.2); 
    transform: translateY(-2px) scale(1.02);
    box-shadow: 4px 4px 25px rgba(255,40,190,0.3);
}

    .bankOption input[type="radio"] {
        display: none;
    }

.bankOption:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bankOption label {
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
}

.bankOption img {
    width: 90px;
    height: 65px;
    border-radius: 8px;
    background: white;
    padding: 5px 7px;
}

.readout-grid {
    display: grid;
    grid-template-columns: minmax(8em, 20em) 1fr;
    gap: 5px 10px;
    align-items: center;
    margin-top: 20px;
}
.flex-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
}

.readout-grid .label {
    font-weight: 600;
    font-size:1.1em;
    text-wrap:nowrap;
    color:white;
}

.readout-grid .value {
    flex:1;
    padding: 10px;
    text-align:center;
    vertical-align:middle;
    font-size: 1.1em;
    background: rgb(23, 23, 23);
    color: white;
    border-radius: 4px;
}

.readout-grid .symbol-btn{
    margin:0 0.2em;
    font-size:0.9rem;
}