
.funkyradio div {
    clear: both;
    overflow: hidden;
    contain: content;
    position: relative;
}

.funkyradio label {
    width: 100%;
    font-weight: normal;
    float: left;
}

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

.funkyradio input[type="radio"]:empty ~ label {
    position: relative;
    line-height: 2.5em;
    text-indent: 3.25em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.funkyradio input[type="radio"]:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    border-radius: 3px;
    border: 1px solid #ffaa77;
    margin: auto 0px;
}
/*
.funkyradio .funkyradio-success:after {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 3px;
    border: 1px solid black;
    margin: auto 0px;
}*/

/* kolor napisu na hoover */
/*.funkyradio input[type="radio"]:hover:not(:checked) ~ label {
    color: black;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: red;
} */

.funkyradio input[type="radio"]:checked ~ label {
    color: #777;
}

.funkyradio input[type="radio"]:checked ~ label:before {
    content: '\2713';
    text-indent: 0px;
    line-height: 2;

    color: black;
    background-color: #ccc;
}

.selectGender .funkyradio input[type="radio"]:checked ~ label:before {
    text-indent: 8px;
}

.funkyradio input[type="radio"]:focus ~ label:before {
    box-shadow: 0 0 0 3px #999;
}
.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="radio"]:checked ~ label textarea {
    background-color: #ffe6cc;
}

.funkyradio-success .answerDelete {
    width: 30px;
    height: 28px;
    color: black;
    cursor: pointer;
    background: 0 0;
    margin: auto 0px;
    font-size: 22px;
    border: 0;
    line-height: 1;
    font-weight: bold;
    padding: 2px 2px;
}
.funkyradio-success .answerDeleteDiv {
    width: 28px;
    height: 100%;
    position: absolute;
    float: right;
    right: 0px;
    display: flex;
}