.detailSection::-webkit-scrollbar {
    width: 0px;
    overscroll-behavior:contain;
  }
.product-details{
    padding:30px 40px;
    box-shadow:0px 0px 10px #b4b4b4;
    border-radius: 15px;
    padding-top:70px;
    position: relative;
}



.product-name{
    font-weight: bold;
    color:#343434;
    font-size:20px;
}
.featureIcons{
    padding-left:30px;
}
@media screen and (max-width:768px)
{
    .featureIcons{
        padding-left:0px!important;
        padding-top:20px;
    }
}
.info-group{
    display: flex;
    justify-content:flex-start;
    align-items: center;
}
.info-group + .info-group {
    margin-top:20px;
}
.info-label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size:16px;
    width:40px;
    justify-content: center;
    color:#343434;
    margin-right:20px;
}

.info-label .icon svg{
    fill:var(--accent-color);
    height: 30px;
    width: 30px;
    filter: invert(0.3);
}
.info-label .icon img{
    fill:var(--accent-color);
    height: auto;
    width: 35px;
    filter: invert(0.3);
}
.info-label .label{
    font-weight: 700;
}

.info-value{
    font-size:16px;
    font-weight: 500;
    color:rgb(72, 72, 72);
}

.offer-message{
    position:absolute;
    left:0px;
    top:15px;
    background:linear-gradient(90deg,var(--accent-dark) 70%,transparent);
    color:white;
    font-weight: 500;
    padding:3px 7px;
    border-radius:0px 5px 5px 0px;
    padding-right:40px!important;
}


.input-group{
    display: flex;
}

.hidden-check{
    display: none;
}

.hidden-check + label
{
    display:flex;
    font-size:0.8rem;
    font-weight:500;
    color:var(--danger);
    background: var(--white);
    padding:0.5rem 0.8rem;
    border:2px solid var(--danger);
    border-radius:0.25rem;
    margin-bottom: unset;
}

.hidden-check:checked + label{
    background: var(--danger);
    color:white;
}

.info-column{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.info-column-round{
    border-radius: 50%;
    aspect-ratio: 1;
}

.info-column-dark{
    background-color: var(--accent-dark);
    color: white;
}
.info-column-dark img{
    filter:invert(1);
}
.desc_detailed > *{
    width: 100%!important;
    max-width: 100vw!important;
}