.qty-set {
    vertical-align: top;
    width: 50%; /* Adjust this value as necessary */
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.qty-set .kiekio-mygtukas {
    background-color: #fff;
    border: 3px solid #fe6379;
    color: #000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: inline-block; /* Display as inline element */
    box-sizing: border-box;
    min-height:56px;
}

.free-shipping {
    background-color: #ffc8d0;
    color: #000;
	font-weight:800;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
    display: inline-block;
    font-size: 11px;
    text-align:center;
    width:100%;
    margin-bottom: -7px;
    padding-bottom: 10px;
    padding-top: 4px;
}

.custom-qty-buttons {
    display: flex;
    gap: 5px;
    margin-bottom:10px;
}


.kiekio-mygtukas .savings {
    display: block;
    font-size: 0.8em;
    color: #000;
    margin-top: 5px;
    text-transform: capitalize;
}

.kiekio-mygtukas .qty {
    font-size:11px;
    font-weight:600;
}

@keyframes pulsate {
    0% {
         -webkit-box-shadow: 0 0 31px -9px #000;
        box-shadow: 0 0 31px -9px #000;
    }
    50% {
        -webkit-box-shadow: 0 0 60px -9px #000;
        box-shadow: 0 0 60px -9px #000;
    }
    100% {
        -webkit-box-shadow: 0 0 31px -9px #000;
        box-shadow: 0 0 31px -9px #000;
    }
}

.kiekio-mygtukas:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.kiekio-mygtukas:hover {
    background-color: #fe6379; /* Active state background color */
}

.kiekio-mygtukas.active {
    background-color: #fe6379; /* Active state background color */
    color:#fff;
    box-shadow: 0 0 31px -9px #000;
}

.kiekio-mygtukas.active:hover {
    background-color: #fe6379; /* Active state background color */
    color:#fff;
}

.kiekio-mygtukas.active .amount {
   color:#fff;
}

.kiekio-mygtukas.active .savings b{
    font-weight:800;
    color:#fff;
}

.wd-sticky-btn .qty-set {
    display:none;
}

@media (max-width: 768px) {
    .free-shipping {
        font-size:9px;
        padding-top:6px;
    }
    .custom-qty-buttons {
        gap: 3px;
    }
    .kiekio-mygtukas .savings { 
        font-size:10;   
    }
        .qty-set .kiekio-mygtukas:hover {
        background-color: #fe6379; /* Active state background color */
    }
}