/* From Uiverse.io by satyamchaudharydev */
.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(140, 168, 180);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    float:left;
    margin-right:5px;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.button.selected {
    background-color: #0e7325;
    border-color: #fff9;
}

.button:hover .icon {
    transform: translate(4px);
}

.button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

#btnGroupAddon2 {
    color: rgb(34, 34, 34);
    background: linear-gradient(142.99deg, rgba(217, 217, 217, 0.63) 15.53%, rgba(243, 243, 243, 0.63) 88.19%);
    box-shadow: 0px 12px 24px -1px rgba(0, 0, 0,0.18);
    border-color: rgba(0, 0, 0, 0);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    block-size: 20px;
    margin: 7px auto;
    padding: 18px 15px;
    text-align: center;
}

.form-control-void {
    display: block;
    color: rgb(34, 34, 34);
    background: linear-gradient(142.99deg, rgba(245, 245, 245, 0.63) 15.53%, rgba(236, 236, 236, 0.63) 88.19%);
    box-shadow: 0px 12px 24px -1px rgba(0, 0, 0,0.18);
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-radius: 50px;
    block-size: 20px;
    margin: 7px auto;
    padding: 18px 15px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
}

.form-control-void:hover {
    width: 50%;
}

.form-control-void:focus {
    width: 70%;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.nav-border-bottom{
    .border-bottom {
        border-bottom: 1px solid #dee2e6 !important;
    }
}
.navbar{
    --bs-navbar-padding-y: 0.2rem !important;
}

.nav-link:hover:not(.active){
    color: white !important;
    background-color: rgba(80, 156, 255, 0.72) !important;
}
