/* Credit Card */
.cards {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
}

    .cards li {
        -webkit-transition: all .2s;
        -moz-transition: all .2s;
        -ms-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
        background-image: url(../../bookings/images/card_logos.png);
        background-position: 0 0;
        float: left;
        height: 32px;
        margin-right: 8px;
        text-indent: -9999px;
        width: 51px;
    }

        .cards li:last-child {
            margin-right: 0;
        }

    .cards .visa_electron {
        background-position: 255px 0;
    }

    .cards .mastercard {
        background-position: 204px 0;
    }

    .cards .amex {
        background-position: 153px 0;
    }

    .cards .discover {
        background-position: 102px 0;
    }

    .cards .jcb {
        background-position: 51px 0;
    }

    .cards .visa.off {
        background-position: 0 32px;
    }

    .cards .visa_electron.off {
        background-position: 255px 32px;
    }

    .cards .mastercard.off {
        background-position: 204px 32px;
    }

    .cards .amex.off {
        background-position: 153px 32px;
    }

    .cards .discover.off {
        background-position: 102px 32px;
    }

    .cards .jcb.off {
        background-position: 51px 32px;
    }
/* ---------- */

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    padding: 15px;
    font-size: 13px;
}

label em {
    color: red;
}

label.error {
    color: red;
    font-size: 13px;
}

.thank-content {
    width: 90%;
    padding: 20px;
    height: auto;
    background-color: aliceblue;
    margin: 3% 5%;
    border-radius: 5px;
    text-align: center;
}

.thank-table {
    padding-top: 20px;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 20px;
}

.thank-remark {
    text-align: right;
    margin-right: 5%;
    width: 95%;
    font-size: 12px;
    margin-bottom: 50px;
}

.payment-important {
    padding: 5px 5px 10px 5px;
    margin-top: 15px;
    border-radius: 5px;
    background-color: #f2dede;
}

@media screen and (max-width: 600px) {
    .table thead tr th {
        display: block;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    }

    #table_Price {
        display: none !important;
    }

  /*  tbody tr td {
        display: block !important;
        width: 100%;
    }*/

    .table_display {
        display: none !important;
    }
}

@media screen and (max-width: 321px) {
    tbody tr td {
        width: 100%;
    }
}

@media screen and (max-width: 377px) and (min-width: 325px) {
    tbody tr td {
        width: 100%;
    }
}

@media screen and (max-width: 408px) and (min-width: 377px) {
    tbody tr td {
        width: 100%;
    }
	
	#ui-datepicker-div tbody tr td {
        width: unset;
    }
}
