.h1-order {
    color: #000151;
    font-size: 40px;
    font-weight: 700;
}

.sections-form {
    font-size: 25px;
}

label {
    font-weight: 600;
    font-size: 18px;
}

.col-prod {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
}

.img-prods {
    width: 80%;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 0 10px;
    background: transparent;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}

/* Remove setas do input number */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

.qty-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #777;
    transition: 0.2s;
}

.qty-btn:hover {
    color: #000151;
    transform: scale(1.1);
}

.label-qtt {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    left: -6%;
}

.alert-h2 {
    color: red;
    font-size: 20px;
}

.alert-btn-envio {
    font-size: 14px;
}

.boxBannerAbout.order{
    position: relative;
    left: 0;
    margin-top: 50px;
}

.text-dark-blue {
    color: #000151 !important;
}

@media screen and (max-width: 432px) {
    label {
        font-size: 14px;
    }
}