body {
    /*padding: 1rem;*/
    /*color: #797e86;*/
}

.coinSelector {
    /*font-size: 17px;*/
    /*font-weight: normal;*/
    /*font-family: "Raleway","Helvetica Neue",Helvetica,Arial,sans-serif;*/
}

section.flexradio {
    display: flex;
    flex-flow: row wrap;
}

section.flexradio > div {
    flex: 1;
    padding: 0.5rem;
}

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

input[type="radio"]:not(:disabled) ~ label {
    cursor: pointer;
}

input[type="radio"]:disabled ~ label {
    color: #bcc2bf;
    border-color: #bcc2bf;
    box-shadow: none;
    cursor: not-allowed;
}

.coinSelector label {
    height: 100%;
    display: block;
    background: white;
    border: 2px solid #3C86E7;
    /*border: 2px solid #20df80;*/
    text-shadow: none;
    color: black;
    border-radius: 10px;
    /*padding: 1rem;*/
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
    position: relative;
}

.coinSelector input[type="radio"]:checked + label {
    background: #3C86E7;
    border: 2px solid #3C86E7;
    color: white;
    box-shadow: 0px 0px 20px rgba(0, 123, 255, 0.75);
}

.coinSelector input[type="radio"]:checked + label::after {
    color: #3d3f43;
    font-family: "Font Awesome 5 Free";
    border: 2px solid #3C86E7;
    content: "\f00c";
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    top: -32px;
    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);
}

input[type="radio"]:checked + label {
    background: #1dc973;
    border: 2px solid #1dc973;
    color: white;
    box-shadow: 0px 0px 20px rgba(29, 201, 115, 0.75);
}

input[type="radio"]:checked + label::after {
    color: #3d3f43;
    font-family: "Font Awesome 5 Free";
    border: 2px solid #1dc973;
    content: "\f00c";
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    top: -32px;
    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);
}


@media only screen and (max-width: 700px) {
    section.flexradio {
        flex-direction: column;
    }
}

/*@media only screen and (max-width: 768px) {*/
/*section {*/
/*flex-direction: column;*/
/*}*/

/*}*/

@media only screen
and (min-device-width: 768px)
and (max-device-width: 768px)
and (orientation: portrait) {
    .moreImportant {
        min-width: 50%;
    }

    .lessImportant {
    }

    .coinSelector p {
        font-size: 15px;
    }

}
