@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf");
}
@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins-Bold.ttf");
}

* {
    font-family: Poppins;
}
body {
    background-color: #FFF; 
    margin: 0; 
    position: relative;
}

input {
    font-size: 22px;
}

.button_color {
    background-color: #000;
    color: #fff;
}

.description__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.description__button-general {
    width: 243px;
    height: 35px;
    font-size: 23px;
}

.description__button-modal-discount {
    width: 243px;
    height: 35px;
    font-size: 23px;
}

.button_color:hover {
    /* color: #000; */
    background-color: rgba(0, 0, 0, 0.50);
}

/* Chrome */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="date"] {
    -moz-appearance: textfield;
}

/* Other */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;

}

@media only screen and (max-width: 600px) { 

    input {
        font-size: 16px;
    }

    .description__button-modal-discount {
        width: 220px;
        height: auto;
        font-size: 18px;
    }
}

@media only screen and (max-width: 1366px) and (min-width: 601px) {
    
    input {
        font-size: 15px;
    }

    .description__button-modal-discount {
        width: 220px;
        height: 30px;
        font-size: 20px;
    }
}