.modalComprar{
    width: 500px !important;
    display: flex;
    justify-content: center;
    padding: 25px 30px !important;
    border-radius: 15px 0px !important;
}

.modalComprar ul{
    display: flex;
    flex-direction: column;
    align-content: center;
}

.modalComprar li{
    margin: 10px 0px;
}

.modalComprar input{
    outline: none;
    padding: 15px;
    width: 80%;
    border-radius: 15px 0px;
    border: none;
    -webkit-box-shadow: 1px 0px 16px 4px rgba(230,230,230,1);
    -moz-box-shadow: 1px 0px 16px 4px rgba(230,230,230,1);
    box-shadow: 1px 0px 16px 4px rgba(230,230,230,1);
    border-right: 5px solid #b81d20;
}

.modalComprar button{
    margin-top: 20px;
    padding: 10px 10px;
    border: none;
    width: 250px;
    background-color: #066c20;
    color: #fff;
    opacity: 0.85;
    font-weight: bold;
    border-radius: 10px 0px;
    -webkit-box-shadow: 1px 0px 16px 4px rgb(209, 209, 209);
    -moz-box-shadow: 1px 0px 16px 4px rgb(209, 209, 209);
    box-shadow: 1px 0px 16px 4px rgb(209, 209, 209);
}

.modalComprar button:hover{
    opacity: 1;
}

@media screen and (max-width: 800px){
    .modalComprar {
        width: 305px !important;
        display: flex;
        justify-content: start;
        padding: 25px 30px !important;
        border-radius: 15px 0px !important;
    }
}