/* button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    cursor: pointer;
} */

.button1,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 50px !important;
    background-color: var(--blue);
    text-align: center;
    color: var(--white) !important;
    font-family: "BPreplay-Bold";
    font-weight: 400;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: 0.1s all ease-in-out;
    box-shadow: 0px 5px 5px #0000001A;
}

.nav_button {
    margin-top: 0;
}

.button1 p,
input[type="submit"] p,
input[type="reset"] p,
input[type="button"] p {
    margin: 0;
}

.button1:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: #11abbf;
    transition: 0.15s all ease-in-out;
}

.button1:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    transform: scale(0.96);
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

.button1 i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 10px;
}

.left-button {
    margin-left: 0;
    margin-right: 3%;
}

.right-button {
    margin-left: 3%;
    margin-right: 0;
}

.snug-button {
    /* display: block; */
    margin-top: 0;
}

.green_button {
    background-color: var(--green);
}

.green_button:hover {
    background-color: #6bc064;
}

@media (max-width: 380px) {
    .left-button {
        margin-left: 0;
        margin-right: 1%;
    }

    .right-button {
        margin-left: 1%;
        margin-right: 0;
    }
}