.eh-booking.gift-card .gift-card-table {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-top: 5px solid #FF4600;
    color: #000;
    background-color: #FFFFFF;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 {
    display: flex;
    flex-direction: row;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 {
    display: flex;
    flex-direction: row;
    gap: 0 20px;
    margin: 20px 0;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 10px 20px 20px;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell:first-child {
    padding-left: 0;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell:last-child {
    border-right: none;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell {
    font-size: 16px;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell.num-participants select {
    width: 100%;
    margin: 0;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell.total .table-cell-value {
    font-weight: bold;
}

.eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell .table-cell-title {
    font-size: 16px;
    font-weight: bold;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-email {
    width: 70%;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-email input {
    width: 100%;
    margin: 0;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-email input.error {
    border: 1px solid red;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-button {
    display: flex;
    width: 30%;
    justify-content: center;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-button button {
    width: 100%;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #FF4600;
    border: none;
    border-radius: 5px;
}

.eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-button button[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #FF4600;
    border-color: #FF4600 transparent #FF4600 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {

    .eh-booking.gift-card .gift-card-table .table-row.row-1,
    .eh-booking.gift-card .gift-card-table .table-row.row-2 {
        flex-direction: column;
    }

    .eh-booking.gift-card .gift-card-table .table-row.row-1 .table-cell {
        padding: 10px 0;
        border-right: none
    }

    .eh-booking.gift-card .gift-card-table .table-row.row-2 {
        margin: 20px 0 0;
    }

    .eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-email,
    .eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-button {
        width: 100%;
    }

    .eh-booking.gift-card .gift-card-table .table-row.row-2 .gift-card-button button {
        margin-top: 10px;
    }

}