.number {
    width: 50px;
    height: 50px;
    display: flex;
    border:5px solid rgba(13,34,66,1);
    color: #fff;
    font-size: 24px;
    justify-content: center;
    border-radius: 2rem;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .number {
        align-items: center;
    }
}
@media screen and (min-width: 992px) {
    .sub-number {
        margin-left: 1px;
    }
}
.card{
    background-color: rgba(13,34,66,1);
    border-radius: 1rem;
}  
/*.list-nominal{*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    width: 100%;*/
/*}*/
/*.nominal{*/
/*    position: relative;*/
/*    flex:none;*/
/*}*/
/*.label-nominal{*/
/*    width:100%;*/
/*    display: flex;*/
/*    text-align: center;*/
/*    line-height: 1rem;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 54px;*/
/*    padding:.85rem;*/
/*    cursor: pointer;*/
/*    font-weight: 600;*/
/*    border-radius: 1rem;*/
/*    border:1px solid #2a528a;*/
/*    background-color: #0b274e;*/
/*    color:#fff;*/
/*}*/
/*.label-nominal:hover{*/
/*    background-color: #2a528a;*/
/*    color: #fff;*/
/*    border: 1px solid #2a528a;*/
/*}*/
/*.nominal input[type="radio"]{*/
/*    display: none;*/
/*    -webkit-appearance: none;*/
/*    -moz-appearance: none;*/
/*    appearance: none;*/
/*}*/
/*.nominal input[type="radio"]:checked + .label-nominal{*/
/*    background-color: #3abaf4;*/
/*    box-shadow: 0 0 2.22222vw #3abaf4, inset 0 2.40741vw 8.05556vw #3abaf4, inset 0 -8.24074vw 11.48148vw #3abaf4;*/
/*    color:#fff;*/
/*    border:1px solid #3abaf4;*/
/*}*/
.list-payment{
    display: flex;
    flex-direction: column;
}
.payment{
    position: relative;
    margin-top: .8rem;
}
.payment:first-child{
    margin-top: 0;
}
.label-payment{
    position: relative;
    padding:.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    border-radius: 1rem;
    border:1px solid #2a528a;
    background-color: #0b274e;
    color:#fff;
}
.img-payment{
    width: 100px;
    height: auto;
    object-fit: cover;
}
.title-payment{
    font-size: 14px;
    color:rgba(255, 255, 255, 0.678);
    font-weight: bold;
}
.payment input[type="radio"]{
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.payment input[type="radio"]:checked + .label-payment .title-payment{
    color:rgba(255, 255, 255, 0.89);
}
.payment input[type="radio"]:checked + .label-payment{
    background-color: #2a528a;
    color:#fff;
    border:1px solid #2a528a;
}
.label-payment .check-payment{
    display: none;
}
.label-payment:hover{
    background-color: #2a528a;
    color:#fff;
    border:1px solid #2a528a;
}
.payment input[type="radio"]:checked + .label-payment .check-payment{
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 15px 0px 15px;
    padding:3px 8px;
    font-size: 12px;
    background:#0B274E;
}
.label-payment .info-payment{
    display: none;
}
.payment input[type="radio"]:checked + .label-payment .info-payment{
    position: absolute;
    display: block;
    bottom: -1px;
    left: -1px;
    color:#fff;
    display: flex;
    align-items: center;
    width: calc(100% + 2px);;
    border-radius: 0px 0px 15px 15px;
    padding:5px 10px;
    font-size: 12px;
    background:rgb(11,39,78, .5);
}
.label-nominal .check-nominal {
    display: none;
}
.nominal input[type="radio"]:checked + .label-nominal .check-nominal {
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 15px 0px 15px;
    padding:5px 10px;
    font-size: 12px;
    background:#0B274E;
}