@font-face {
    font-family: poppins;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: poppins-thin;
    src: url('../fonts/poppins/Poppins-Light.ttf');
}

* {
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    align-items: center;
    background-attachment: fixed;
    background-image: linear-gradient(#F5AF19, #F15F11);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    font-family: 'poppins';
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 15px;
    margin-bottom: 10px !important;
    text-align: center;
}

table {
    background-color: white;
}

th, td {
    padding: 5px !important;
}

td > img {
    max-width: 50px;
    max-height: 50px;
}

td > i {
    font-size: 20px;
    margin: auto 5px !important;
}

tr:nth-child(even) {
    background-color: rgb(189, 189, 189);
}

.cards {
    align-items: center;
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px 0px !important;
    padding: 5px 0px !important;
    max-width: 500px;
    min-height: 10px;
    width: 95%;
}

.voucher, .price {
    font-weight: bolder;
    margin: 10px 0px !important;
}

.voucher {
    border-bottom: 1px solid black;
    cursor: pointer;
}

.expiration-date-voucher {
    font-size: 12px;
    text-align: right;
    width: 95%;
}

p {
    text-align: center;
}

.product-img {
    border-radius: 50%;
    margin-bottom: 10px !important;
    max-height: 100px;
    object-fit: contain;
    width: 100px;
}

.hide {
    display: none;
}