﻿
.PaymentWiz h1{ font-weight:400; text-align:center;}

.PaymentWiz label{float:unset!important;}
section {
    display: flex;
    flex-flow: row wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}

    section > div {
        flex: 1;
        padding: 0.5rem;
    }

    section input[type=radio] {
        display: none;
    }

        section input[type=radio]:not(:disabled) ~ label {
            cursor: pointer;
        }

        section input[type=radio]:disabled ~ label {
            color: #bcc2bf;
            border-color: #bcc2bf;
            box-shadow: none;
            cursor: not-allowed;
        }

    section label {
        height: 100%;
        display: block;
        background: white;
        border-radius: 20px;
        padding: 0em;
        padding-top:50px;
        margin-bottom: 0;
        text-align: center;
        box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
        position: relative;
        width: auto;
        display: flex;

        align-items: center;
        transition: .5s all;
        flex-direction:column;
    }


section span.Name {
    font-size:1.5em;
}

    section span.Amount {
        font-size: 3em;
    }


.InclVAT {
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}


section span.Features {
    font-size:1.5em;
    padding-bottom:0px;
 
    margin-top:20px;
}

    section input[type=radio]:checked + label.YellowRadio {
        background: #e5d550;
        color: white;
        box-shadow: 0px 0px 20px rgba(0, 255, 128, 0.75);
    }
    section input[type=radio]:checked + label.BlueRadio {
        background: #6dacc4;
        color: white;
        box-shadow: 0px 0px 20px rgba(0, 255, 128, 0.75);
    }

    section label::after {
        transition: .5s all;
    }



.errorMessage {
    color: red;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    display:none;
}

    .errorMessage:before, .errorMessage:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f071";
        font-size: .8em;
        margin: 5px;
    }

section input[type=radio]:checked + label::after {
    color: #3d3f43;
    font-family: 'Font Awesome 6 Pro';
    border: 2px solid #e5d550;
    content: "\f2f7";
    font-size: 24px;
    color: #6dacc4;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

    section input[type=radio]#control_05:checked + label {
        background: red;
        border-color: red;
    }

p {
 text-align:center;
}

@media only screen and (max-width: 700px) {
    section {
        flex-direction: column;
    }
}
