sectional {
    display: flex;
    flex-flow: row wrap;
}

sectional>div {
    flex: 1;
    padding: 0.5rem;
}

sectional>div>label h2 {
    width: 100%
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:not(:disabled)~label {
    cursor: pointer;
}

input[type="radio"]:disabled~label {
    color: rgba(188, 194, 191, 1);
    border-color: rgba(188, 194, 191, 1);
    box-shadow: none;
    cursor: not-allowed;
}

.fs-100{
    font-size: 100px!important;
}
input[type="radio"]:checked+label .credit-card{
    color: #fff !important;
}

label {
    height: 100%;
    display: flex;
    background: white;
    border: 2px solid #2778ab;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px #2778ab;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

input[type="radio"]:checked+label {
    background: #2778ab;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px #2778ab;
}

input[type="radio"]:checked+label img {
    filter: contrast(0%) brightness(200%);
}

input[type="radio"]:checked+label::after {
    color: #2778ab;
    font-family: FontAwesome;
    border: 2px solid #ff9800;
    content: "\f00c";
    font-size: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    width: 40px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

.checkme {
    color: #2778ab;
    font-family: FontAwesome;
    border: 2px solid #ff9800;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

input[type="radio"]#control_05:checked+label {
    background: red;
    border-color: red;
}

p {
    font-weight: 900;
}

@media only screen and (max-width: 700px) {
    sectional {
        flex-direction: column;
    }
}