.label-0001{
    cursor: pointer;
}

.radio-0001{    
    width: 100%;
    display: flex;
    align-items: center;
}

.radio-0001 input[type="radio"] {
    appearance: none;
    display: block;
    margin: 5px;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    background-repeat: no-repeat;
    filter: blur(1px);
}

/* ************************************************************ */
.label-0002{
    cursor: pointer;
}

.radio-0002{    
    width: 100%;
    display: flex;
    align-items: center;
}

.radio-0002 input[type="radio"] {
    appearance: none;
    display: block;
    margin: 5px;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    background-repeat: no-repeat;
}

.radio-0002 input[type="radio"]:checked {
    animation: anim-radio-0002 1s ease-out;
}

@keyframes anim-radio-0002 {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(3.2);
    }
    100% {
        filter: brightness(1);
    }
}
/* ************************************************************ */
.label-0003{
    cursor: pointer;
}

.radio-0003 input[type="radio"] {
    appearance: none;
    padding: 1px;
    cursor: pointer;
    background-repeat: no-repeat;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
}

.radio-0003 input[type="radio"]:checked {
    animation: anim-radio-0003 1s ease-out;
    filter: blur(1px);
}

@keyframes anim-radio-0003 {
    0% {
        filter: brightness(1) blur(1px);
    }
    50% {
        filter: brightness(1.5) blur(1px);
    }
    100% {
        filter: brightness(1) blur(1px);
    }
}
/* ************************************************************ */
.label-0004{
    cursor: pointer;
}

.radio-0004{    
    width: 100%;
    display: flex;
    align-items: center;
}

.radio-0004 input[type="radio"] {
    position: relative;
    appearance: none;
    margin: 5px;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    overflow: hidden;
}

.radio-0004 input[type="radio"]:checked::after {
    content: attr(data-emoji);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

/* ************************************************************ */
.radio-img-0005{
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    cursor: pointer;
}

.radio-0005{
    position: relative;
    padding: 0px;
    margin: 5px;
}

.radio-0005 .radio-input-0005 {
    overflow: hidden;
    position: absolute;
}

.radio-0005 input[type="radio"]{
    appearance: none;
}

.radio-0005 input[type="radio"]:checked ~ .radio-tick-box-0005 {
    transform: scale(1);
    opacity: 1;
}

.radio-0005 .radio-tick-box-0005 {
    position: absolute;
    display: block;
    background-image: url("../images/btn-image/green-tick.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0;
    transform: scale(0);
    z-index: 2;
}
/* ************************************************************ */
.radio-label-0006{
    padding-left: 5px;
    cursor: pointer;
}
.radio-0006{
    display: flex;
    align-items: center;
    width: 100%;
}
.radio-0006 input[type="radio"] {
    position: relative;
    appearance: none;
    display: block;
    cursor: pointer;
    margin: 5px;
}

.radio-0006 input[type="radio"]:checked::after{
    content: attr(data-emoji);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ************************************************************ */
.radio-0007-label{
    cursor: pointer;
}

.radio-0007-top-box{
    position: relative;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-0007{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}
.radio-0007 input[type="radio"] {
    appearance: none;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 25px;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    background-image: radial-gradient(76% 151% at 52% -52%, rgba(255, 255, 255, 0.23) 0%, transparent 100%);
    transform: scale(0);
    cursor: pointer;
}

.radio-0007 input[type="radio"]:checked {
    transform: scale(1);
}

.radio-0007-dot {
    position: absolute;
    transform: scale(0);
    filter: blur(1px);
}

.radio-0007 input[type="radio"]:checked ~ .radio-0007-dot {
    transform: scale(1);
}

/* ************************************************************ */
.radio-0008-label{
    cursor: pointer;
    font-size: 16px;
    color: antiquewhite;
}

.radio-0008{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.radio-0008 input[type="radio"] {
    appearance: none;
    margin-right: 10px;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    background-image: url("../images/btn-image/green-tick.png");
    background-repeat: no-repeat;
}

.radio-0008 input[type="radio"]:checked {
    background-position: 0 0;
}

/* ************************************************************ */
.radio-0009-label{
    cursor: pointer;
}

.radio-0009{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.radio-0009 input[type="radio"] {    
    appearance: none;
    margin-right: 10px;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    cursor: pointer;
}
/* ************************************************************ */
.radio-0010-label{
    cursor: pointer;
}

.radio-0010-top-box{
    position: relative;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-0010{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.radio-0010 input[type="radio"] {
    appearance: none;
    position: relative;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: radial-gradient(76% 151% at 52% -52%, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: 0.2s ease-in-out;
    filter: brightness(1.1);
    transform: scale(0);
}

.radio-0010 input[type="radio"]:checked {
    transform: scale(1);
}
          
.radio-0010 input[type="radio"] ~ .radio-0010-dot {
    content: '';
    position: absolute;
    transform: scale(0);
    filter: blur(1px);
    transition: 0.2s ease-in-out;
}

.radio-0010 input[type="radio"]:checked ~ .radio-0010-dot {
    transform: scale(1);
    transition: 0.2s ease-in-out;
}   
/* ************************************************************ */
.span-box-0011{
    width: 100%;
    margin-top: 10px;
}

.label-box-0011{
    display: flex;
    justify-content: center;
    width: 100%;
}

.radio-top-box-0011{    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.radio-box-0011{
    position: relative;
    flex-direction: column;
    padding: 5px;
    margin: 5px;
}

.radio-img-0011{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.radio-label-0011{
    position: relative;
    display: flex;
    justify-content: center;
}

.radio-label-0011 input[type="radio"]{
    appearance: none;
}

.radio-label-0011 input[type="radio"]:checked ~ .radio-tick-box-0011 {
    transform: scale(1);
    opacity: 1;
}

.radio-label-0011 .radio-tick-box-0011 {
    position: absolute;
    display: block;
    background-image: url("../images/btn-image/green-tick.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0;
    transform: scale(0);
    z-index: 2;
} 
/* ************************************************************ */
.radio-0012-label{
    cursor: pointer;
}

.radio-0012-top-box{
    position: relative;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-0012{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.radio-0012 input[type="radio"] {
    appearance: none;
    position: relative;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 1px, inset rgba(0, 0, 0, 0.5) 0 0 0 1px;
    background-image: radial-gradient(76% 151% at 52% -52%, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transform: scale(0);
    cursor: pointer;
}

.radio-0012 input[type="radio"]:checked {
    transform: scale(1);
}

.radio-0012-dot {
    position: absolute;
    transform: scale(0);
    filter: blur(1px);
}

.radio-0012 input[type="radio"]:checked ~ .radio-0012-dot {
    transform: scale(1);
}
/* ************************************************************ */
