﻿h1 {
    font-size: x-large;
}

textarea {
    font-size: 10pt;
}

table {
    width: 100%;
}

tbody tr {
    border-bottom: 1px solid #eee;
}

th {
    background-color: #999;
    color: #fff;
    padding: 0.25em;
}

td {
    padding: 1em 1em 1em 0;
}

.variantTitle {
    font-weight: bolder;
}

tfoot {
    border-top: 2px solid #666;
    border-bottom: 3px double #666;
    font-weight: bold;
    font-size: 12pt;
}

    tfoot tr td {
        padding: 0.5em 1em 0.5em 0;
        vertical-align: top;
    }

.valueInput {
    border: none;
    background: none;
    line-height: 1.25em;
    width: 10ch;
}

.valueInputWrapper {
    border: 1px solid #ccc;
    border-radius: 2px;
}

button {
    margin: 0;
}


/*.button {
    border: 1px solid darkred;
    border-radius: 25px;
    background: linear-gradient(to bottom, #c92228 0%,#c92228 45%,#ac2529 57%,#ac2529 100%);
    color: white;
    padding: 0.25em 0.5em;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px 0px #3e0002;
    display: inline-block;
    margin: 0.5em 0;
}

    .button:disabled {
        background-color: lightgray;
        color: dimgray;
        cursor: not-allowed;
        opacity: 0.5;
    }*/

#checkoutApp button.button:disabled {
    background-color: lightgray;
    color: dimgray;
    cursor: not-allowed;
    opacity: 0.5;
}

.alert-warning, .alert-danger {
    padding: 0.25em;
}

.alert-warning, .alert-danger {
    color: #FC7600;
    background-color: rgba(252,118,0,0.2);
}

.btn-link {
    cursor: pointer;
    color: #f97150;
}

    .btn-link:hover {
        color: #f97150;
    }

.validationFailed {
    background-color: lightpink
}

.form-check {
    /*width: 1.5rem;*/
    height: 2rem;
    margin-right: 0.5rem;
}

    .form-check label {
        margin-top: 0.5rem;
    }

.form-check-input {
    width: 2rem;
    height: 2rem;
    max-height: 2rem;
    min-height: 2rem;
    max-width: 2rem;
    min-width: 2rem;
    margin-right: 0.5rem;
}

    .form-check-input[type=checkbox] {
        border-radius: 0.5rem;
    }

    .form-check-input:checked[type=checkbox] {
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2335C075' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
        border-color: #35C075;
    }

.note {
    color: #4F4F4F;
    font-size: small;
    margin-left: 1em;
}

.quotePanel, .waitlistOffer {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1em;
    margin-top: 1em;
}

.waitlistOffer {
    margin: 0.75rem;
}

.summaryPanel {
    margin-top: 1em;
    height: 100%;
}

    .summaryPanel .totals {
        /*font-weight: bold;*/
    }

        .summaryPanel .totals td {
            font-weight: normal;
            padding: 0.25em;
        }

.instructions {
    color: #4F4F4F;
    font-weight: bold;
}

.summaryPanel .summaryPanelsWrapper {
    display: -webkit-flex; /* Safari */
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

    .summaryPanel .summaryPanelsWrapper > div {
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 1em;
        margin-bottom: 1em;
        width: 100%;
    }

    .summaryPanel .summaryPanelsWrapper button {
        margin-bottom: 1rem;
    }

.quotePager {
    padding-top: 1em;
    padding-bottom: 1em;
}

    .quotePager > span {
        margin-right: 1.5em;
    }

        .quotePager > span:last-child {
            margin-right: 0;
        }

    .quotePager span.current {
        font-weight: bold;
        /*background: linear-gradient(to bottom, #c92228 0%,#c92228 45%,#ac2529 57%,#ac2529 100%);*/
        border-top: 1px solid #c92228;
        border-bottom: 1px solid #ac2528;
        padding: 0.25em;
    }

    .quotePager button {
        width: auto;
    }

.ticketTable, .optionsTable {
    width: 100%;
    margin-bottom: 1em;
}

    .ticketTable > div, .optionsTable > div {
        border-bottom: 1px solid #ccc;
        padding: 0.5em 0;
    }

    .ticketTable .row:nth-child(1), .optionsTable .row:nth-child(1) {
        padding-bottom: 0;
    }

        .ticketTable > div:first-child div, .optionsTable > div:first-child div {
            font-weight: bold;
            background-color: #4F4F4F;
            color: #fff;
            padding: 0.25em;
        }

    .ticketTable .row > *, .optionsTable .row > * {
        padding: 0.25em;
    }

    .ticketTable select, .optionsTable select {
        width: 3em;
    }

    .ticketTable .row.selected {
        background-color: #35C075;
    }

.warningsTable, .errorsTable {
    font-size: small;
}

.questionsTable textarea {
    width: 100%;
    max-width: none;
}

.questionText p {
    font-weight: normal;
}

.productSummaryLine {
    font-size: small;
    margin-left: 1em;
}

.quotePanel {
    position: relative;
}

.refreshOverlay {
    background-color: rgba(128, 128, 128, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.refreshNotification {
    color: white;
    font-weight: bold;
}

#creditNoteLookup {
    font-size: small;
}

@media (max-width: 576px) {
    button, button.btn-primary, button.btn-secondary, a.button {
        padding: 0.5em;
    }
}
