.buttons {
    display: flex;
    margin: -6px;
}

.buttons .button {
    margin: 6px;
}

.button {
    display: block;
    padding: 9px;
    background-color: transparent;
    font-size: 17px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #02172c;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.15px;
    transition: all 0.3s ease-in-out;
    background-color: #80c801;
    border-color: #59a401;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 18px;
    padding-right: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #80c801, #59a401);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.button .icon {
    height: 24px;
    width: 24px;
    margin-left: 12px;
    margin-top: -6px;
    margin-bottom: -6px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}



.button span {
    position: relative;
    z-index: 2;
}

.button::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #216d00;
    background-image: linear-gradient(to bottom, #2a8c01, #216d00);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #2a8c01;
    border-color: #2a8c01;
}

.button:hover::after {
    opacity: 1;
}

.button.orange {
    border-color: #4b9501;
    background-color: #216d00;
    background-image: linear-gradient(to bottom, #82ca02, #216d00);
}

.button.orange::after {
    background-color: #216d00;
    background-image: linear-gradient(to bottom, #2a8c01, #216d00);
}

.button.white {
    color: #59a401;
    border-color: white;
    background-color: white;
    background-image: linear-gradient(to bottom, #e2e2e2 , #ffffff );
}

.button.white::after {
    background-color: white;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
}

.button.white2 {
    color: #02172c;
    border-color: rgba(255,255,255, 0.7);
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(255,255,255, 0.65), rgba(255,255,255, 0.65) );
    backdrop-filter: blur(7px);
}

.button.white2::after {
    background-color: white;
    background-image: linear-gradient(to bottom, rgba(255,255,255, 0.75), rgba(255,255,255, 0.75) );
}

.button.white3 {
    color: #02172c;
    border-color: rgba(255,255,255, 0.7);
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(255,255,255, 1), rgba(255,255,255, 1) );
    color: #216d00;
    text-shadow: none;
}

.button.white3:hover {
    color: white !important;
    border-color: #216d00;
}

.button.white3::after {
    background-color: white;
    background-image: linear-gradient(to bottom, #216d00, #216d00);
}

.button.transparent {
    background-image: none;
    background-color: transparent;
    color: #02172c;
    border-color: transparent;
}

@media screen and (max-width: 890px) {
    .button {
        font-size: 15px;
        padding: 6px;
        padding-left: 18px;
        padding-right: 18px;
        min-height: 46px;
    }

    .button .icon {
        width: 20px;
        height: 20px;
        margin-left: 6px;
    }
}