@import './custom-font.css';
.radiobtn {
    position: relative;
    display: block;
    font-family: pdfont;
}
.radiobtn label {
    font-family: pdfont;
    display: block;
    /* background: #fee8c3; */
    color:#535353;
    padding: 10px 20px;
    border: 2px solid #9f9f9f;
    margin-bottom: 5px;
    cursor: pointer;
}
.radiobtn label:after,
.radiobtn label:before {
    content: "";
    position: absolute;
    right: 11px;
    top: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:white;
    border: rgb(182, 182, 182) solid .5px;

}
.radiobtn label:before {
    background: transparent;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    width: 0;
    height: 0;
    /* background-color:#58cfed; */
    background-color:white;
    background-image: url("../assets/check-solid.svg");
    border:white solid .5px;
}
.radiobtn input[type="radio"] {
    display: none;
    position: absolute;
    width: 100%;
    appearance: none;
}
.radiobtn input[type="radio"]:checked + label {
    background: #145bdd;
    /* animation-name: blink; */
    animation-duration: 1s;
    border-color: #145bdd;
    color: white;
}
.radiobtn input[type="radio"]:checked + label:after {
    background: #145bdd;
}
.radiobtn input[type="radio"]:checked + label:before {
    width: 20px;
    height: 20px;
}
