@import url("https://fonts.googleapis.com/css?family=Trirong");

/* {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.card1 {
    position: relative;
    /* width: calc(33% - 13px); */
    border-radius: 3px;
    background-color: #fff;
    overflow: hidden;
}

.card1:hover .content {
    bottom: 0;
}

.card1 img {
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.card1:hover img {
    transform: scale(1.1);
}

.card1 .content {
    position: absolute;
    width: 100%;
    background-color: #fff;
    bottom: -50%;
    padding: 10px 20px 22px 20px;
    transition: all 0.3s ease;
    box-shadow: 0px -3px 10px 0px rgba(0, 0, 0.0.15);
}

.card1 .content .row1,
.card1 .content .buttons {
    display: flex;
    justify-content: space-between;
}

.content .row1 .details span {
    font-size: 22px;
    font-weight: 500;
}

.content .row1 .details p {
    color: #333;
    font-size: 20px;
    font-weight: 400;
}

.content .row1 .price {
    font-size: 25px;
    font-weight: 600;
    color: #ff7979;
}

.content .buttons {
    margin-top: 20px;
}

.content .buttons button {
    width: 100%;
    outline: none;
    padding: 4px 0;
    font-size: 10px;
    font-weight: 500;
    border-color: 2px solid #ff7979;
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.buttons button:first-child {
    background-color: #fff;
    color: #ff7979;
    margin-right: 10px;
}

.buttons button:first-child:hover {
    background-color: #ff7979;
    color: #fff;
}

.buttons button:last-child {
    background-color: #ff7979;
    color: #fff;
    margin-left: 10px;
}

.buttons button:last-child:hover {
    background-color: #ff6666;
    border-color: #ff6666;
}

.checkout-review-order-table tbody td {
    width: 150px;
    text-align: justify;
    /* border: 1px solid black; */
    padding-top: 10px;
    /* padding-bottom: 10px; */
    padding-left: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.field_error {
    color: red;
}

.checkout-review-order-table thead th {
    width: 150px;
    text-align: justify;
    border-bottom: 1px solid black;
    padding: 5px;
}

.checkout-review-order-table tfoot th {
    width: 150px;
    text-align: justify;
    border-bottom: 1px solid black;
    padding: 5px
}

.checkout-review-order-table tfoot td {
    width: 150px;
    text-align: justify;
    border-bottom: 1px solid black;
    padding: 5px
}