/* ******************************************** */
/** CART Discount
/* ******************************************** */

/* Add Discount */

.c-discount{
    margin-top: 40px;
}

.c-discount__hidden{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(var(--color-gray-rgb)/30%);
}

.c-discount__holder{
    margin-top: 16px;
}

.c-discount__label-text{
    display: block;
    font-size: 1.6rem;
    text-decoration: underline;
}

.c-discount__input{
    background-color: var(--color-lightest);
    padding: 0.745em 1em;
    font-size: 1.5rem;
    width: 100%;
    box-shadow: rgb(0 0 0/100%) 0px 0px 0px 1px;
    text-transform: uppercase;
}

.c-discount__btn{
    display: block;
    width: 100%;
    background-color: #ff7200;
    font-size: 1.4rem;
    margin-top: 16px;
    text-decoration: underline;
}

.c-discount__btn-hide-text{
    display: none;
}

.c-discount__input::-webkit-input-placeholder {
    color: var(--color-gray);
    font-weight: 400;
}

.c-discount__input::-moz-placeholder {
    color: var(--color-gray);
    font-weight: 400;
}

.c-discount__input::placeholder{
    color: var(--color-gray);
    font-weight: 400;
}

@media (max-width: 979px){

    .c-discount__label{
        display: block;
    }

}


/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    /* Add Discount */

    .c-discount__hidden{
        display: block !important;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .c-discount__holder{
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        align-items: center;
    }

    .c-discount__label{
        width: 100%;
    }

    .c-discount__input{
        transition: box-shadow 250ms ease-out;
    }

    .c-discount__input:focus{
        box-shadow: var(--color-yellow) 0px 0px 0px 2px;
        transition: box-shadow 250ms ease-out;
    }

    .c-discount__input,
    .c-discount__btn{
        margin-top: 0;
    }

    .c-discount__btn{
        width: auto;
        white-space: nowrap;
    }

}


/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {

    .c-discount__input{
        font-size: 1.5rem;
    }
    
    .c-discount__btn-hide-text{
        display: inline;
    }

}