/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 120px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
  
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px 30px;
    border: 1px solid #888;
    width: 400px;
    max-width: 90%;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.modal-content button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #06d6a0;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #04b98a;
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.product {
    overflow-x: hidden;
}

.product .row {
    margin-left: 0;
    margin-right: 0;
}