/* Brand Colors */
/*================================= */
/* Class      | Color  | Hex Value  */
/*================================= */
/* bg-primary | Red    | #AE122A    */


body {
    background-color: #e2dfdf;
    color: #111;
    font-family: 'Nunito', sans-serif;
}

.white-background {
    background-color: #ffffff !important;
}

.hero-btn {
    box-shadow: #111 1px 1px 6px;
}

.bg-primary {
    background-color: #AE122A !important;
    color: #ffffff !important;

}


.btn-success {
    background-color: white !important;
    color: #007D89 !important;
}

.btn-success:hover {
    background-color: #007D89 !important;
    color: #fff !important;
}

.input-danger{
    border-color: #dc3545;
}

.form-inline{
    /* Clone Bootstrap's form-control class */
    width: 100%;
    max-width: 380px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}

.form-inline{
    width: 100%;
    max-width: 380px;
}

.bottom-border {
    border-bottom: 1px solid #AE122A;
}

.with-gap {
    gap: 10px;
}

.position-relative {
    position: relative;
}

.position-inside {
    position: absolute;
}

table tr td{
    vertical-align: middle;
    padding: 2px!important;
}

.bold{
    font-weight: bold!important;
}

.italic{
    font-style: italic!important;
}   

.underline{
    text-decoration: underline!important;
}

.btn-dash {
    background-color: #343a40;
    color: #f8f9fa;
    
    /* border: 3px solid #ffffff; */
    padding-top: 10px;

    /* border-radius: 15px; */

    width: 125px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn-dash:hover {
    background-color: #ae122a;
    color: #ffffff;
    
    box-shadow: 2px 2px 6px #111;
}
.btn-dash span {
    margin-top: 5px;
    font-size: 1.0em;
}

.hero-text {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: #111 1px 1px 6px;
}

#MyCart .item-name{
    font-size: 1.1em!important;
    font-weight: bold;
}
#MyCart .row{
    margin-bottom: 20px;
}

#MyCart .item-price{
    font-size: 1.1em!important;
    font-weight: bold;
}

/* Media Queries (de menor resolución a mayor resolución) */
@media (min-width: 1024px) {
    .hero-text {
        font-size: 2.5em!important;
    }
    #MyCart h3{
        font-size: 1.5em;
        font-weight: bold;
    }
    #MyCart .row{
        margin-bottom: 20px;
    }
    #MyCart .item-price{
        font-size: 1.2em!important;
        font-weight: bold;
    }
}

@media (min-width: 1650px) {
    .hero-text {
        font-size: 3.7em!important;
    }
}





@media print {}