.navbar-brand img {
    width: 135px;
    transform: translateY(-5px);
}
.product-header img {
    object-fit: cover;
}

.wrapper {
    display: inline-flex;
    background: #fff;
    height: 80px;
    width: 250px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    /* padding: 20px 15px; */
    padding: 20px 0px;
    /* box-shadow: 5px 5px 30px rgba(0,0,0,0.2); */
}
.wrapper .option {
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* margin: 0 10px; */
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
}
/* input[type="radio"] {
    display: none;
} */
.selected-variant {
    border-color: #0cc5b7;
    background: #0cc5b7;
    color: #fff;
}
.wrapper .option span {
    font-size: 14px;
    color: #808080;
}
.wrapper input[type="radio"]:checked + label {
    border-color: #0cc5b7;
    background: #0cc5b7;
    color: #fff;
}

