section {
    display: flex;
    flex-flow: row wrap;
}

/* section.bank {
  display: block;
} */
section>div.selek {
    flex: 1;
    padding: 0.5rem;
}

input[type="radio"] {
    display: none;

    &:not(:disabled)~label {
        cursor: pointer;
    }

    &:disabled~label.selek {
        color: hsla(150, 5%, 75%, 1);
        border-color: hsla(150, 5%, 75%, 1);
        box-shadow: none;
        cursor: not-allowed;
    }
}

label.selek {
    height: 100%;
    display: block;
    background: white;
    border: 2px solid hsla(150, 5%, 65%, 0.5);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
    position: relative;
}

input[type="radio"]:checked+label.selek {
    background: rgb(47, 141, 196);
    color: hsla(215, 0%, 100%, 1);
    box-shadow: 0px 0px 10px rgb(0, 151, 238);
    border: 2px solid rgb(47, 141, 196);
    &::after {
        color: hsla(215, 5%, 25%, 1);
        font-family: FontAwesome;
        border: 2px solid rgb(47, 141, 196);
        content: "\f00c";
        font-size: 24px;
        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 hsla(0, 0%, 0%, 0.25);
    }
}

label.selek2 {
    height: 100%;
    display: block;
    background: white;
    border: 2px solid hsla(150, 5%, 65%, 0.5);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
    position: relative;
}

input[type="radio"]:checked+label.selek2 {
    /* background: rgb(69, 47, 196); */
    color: hsla(215, 0%, 100%, 1);
    box-shadow: 1px 1px 5px rgb(69, 47, 196);
    border: 2px solid rgb(69, 47, 196);
    font-weight: bold;
    /* &::after {
    color: hsla(215, 5%, 25%, 1);
    font-family: FontAwesome;
    border: 2px solid rgb(69, 47, 196);
    content: "\f00c";
    font-size: 24px;
    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 hsla(0, 0%, 0%, 0.25);
  } */
}