
.wrapper {
    display: inline-flex;
    /* background: #fff; */
    height: 90px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding:  0;
    /* box-shadow: 5px 5px 30px rgba(0,0,0,0.2); */
}

.wrapper .option {
    background: #fff;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 5px;
    border: 1px solid lightgrey;
    transition: all 0.3s ease;
    text-align: center;
}

.wrapper .option .dot {
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}

.wrapper .option .dot::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #e45415;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
/* Hide radio buttons */
.wrapper input[type="radio"] {
    display: none;
}
input[type="radio"] {
    /* display: none; */
}

/* Style for selected option */
input[type="radio"]:checked + label {
    border-color: #e45415;
    box-shadow: 0 0 0 2px rgba(226, 178, 157, 0);
}
/* Optional: Add hover effect */
.wrapper .option:hover {
    background-color: #f5efed;
}

#option-1:checked:checked ~ .option-1, #option-2:checked:checked ~ .option-2 {
    border-color: #e45415;
}

#option-1:checked:checked ~ .option-1 .dot, #option-2:checked:checked ~ .option-2 .dot {
    background: #fff;
}

#option-1:checked:checked ~ .option-1 .dot::before, #option-2:checked:checked ~ .option-2 .dot::before {
    opacity: 1;
    transform: scale(1);
}

.wrapper .option span {
    font-size: 20px;
    color: #808080;
}

#option-1:checked:checked ~ .option-1 span, #option-2:checked:checked ~ .option-2 span {
    color: #fff;
}

.h-10 {
    height: 2.5rem;
}
.end-0{
right: 0;
}