.option {
    padding: 20px 0;
    position: relative;
    margin: 0 auto 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid transparent;
    background: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}
.option:hover {
    border: 2px solid #DA291C;
}
.option img {
    max-height: 140px;
}
.card-text {
    max-width: 200px;
    text-align: center;
    margin: auto;
}
.exclamation {
    position: absolute;
    top: 20px;
    right: 20px;
}
.info-msg {
    display: none;
    position: relative;
    width: 250px;
    height: auto;
    background: white;
    color: rgb(102, 100, 100);
    z-index: 10;
    border: 1px rgb(157, 155, 155) solid;
    border-radius: 3px;
    padding: 5px;
    white-space: pre-line;
    text-align: left;
    font-size: 12px;
    line-height: 13px;
}
.exclamation:hover>.info-msg {
    display: block;
}
@media only screen and (min-width: 1024px) {
    .info-msg {
        left: -200px;
    }
}
@media only screen and (max-width: 700px) {
    .exclamation {
        top: -145px;
        left: 5px;
    }
}
@media only screen and (min-width: 700px) {
    .exclamation {
        top: -145px;
        right: -310px;
    }
}

.option-desktop {
    display: none;
}
.option-mobile {
    display: block;
}
@media only screen and (min-width: 835px) {
    .option-desktop {
        display: block;
    }
    .option-mobile {
        display: none;
    }
}

input[type="radio"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    display: inline-block;
    width: 15px;
    height: 15px;
    padding: 2px;
    /* background-color only for content */
    background-clip: content-box;
    border: 1px solid #bbbbbb;
    background-color: #e7e6e7;
    border-radius: 50%;
}

input[type="radio"]:checked, input[type="radio"]:hover  {
    background-color: red;
}

.sifra>div { display: none; }
.sifra:hover>div {
    display: block;
    position: absolute;
    float: right;
    width: 300px;
    height: 170px;
    z-index: 100;
}