/* radio */
.app-radio-box {
    display: flex;
    justify-content: center;
    gap: 13px;
    vertical-align: middle;
    padding: 4px 0;
}

.app-radio {
    display: none;
}

.app-radio-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    vertical-align: middle;
    margin: 0;
    color: #A9A8AA;
    text-align: right;
    font-size: 16px;
    font-family: IRANSans;
    cursor: pointer;
}

.app-radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #36459B;
    display: block;
    position: relative;
}

.app-radio-custom:hover {
    box-shadow: 1px 40px 145px 200px rgba(54, 69, 155, 0);
    -webkit-box-shadow: 1px 40px 145px 200px rgba(54, 69, 155, 0);
    -moz-box-shadow: 1px 40px 145px 200px rgba(54, 69, 155, 0);
}

.app-radio-custom::after {
    width: 12px;
    height: 12px;
    content: '';
    background: #36459B;
    display: block;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.app-radio-label .app-radio:checked~.app-radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}