﻿.mpPaymentBox{
    margin:18px 0;
    padding:15px;

    display:grid;
    grid-template-columns:52px 1fr 160px;
    gap:12px;
    align-items:center;

    border:1px solid #cfe1ef;
    border-radius:10px;

    background:#f4faff;
}

.mpPaymentLogo{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#009ee3;
    color:white;

    font-weight:900;
}

.mpPaymentInfo strong{
    display:block;

    color:#123a52;
}

.mpPaymentInfo span{
    display:block;

    margin-top:4px;

    color:#617989;

    font-size:11px;
    line-height:1.4;
}

.mpPaymentBox > a{
    min-height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:7px;

    background:#009ee3;
    color:white;

    text-decoration:none;

    font-size:11px;
    font-weight:900;
}

.mpLocalWarning{
    margin:14px 0;
    padding:12px;

    border-radius:8px;

    background:#fff3d8;
    color:#795b11;

    font-size:11px;
    line-height:1.5;
}

@media(max-width:650px){

    .mpPaymentBox{
        grid-template-columns:52px 1fr;
    }

    .mpPaymentBox > a{
        grid-column:1/-1;
    }
}
