﻿/* Headings and other text */

h1 {
    margin: 1em 0 .5em 0em;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    font-size: 1.5em;
    color: black;
}

h2 {
    margin: .25em 0 .5em 0;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: rgb(0, 153, 204);
}

h3 {
    margin: .5em 0 0;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    font-size: 1.1em;
    color: black;
}

h4 {
    margin: .5em 0 0;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    font-size: 1.05em;
    color: black;
}

h5 {
    margin: .5em 0 0;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    color: black;
}

@media only screen and (min-width: 600px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.2em;
    }

    h4 {
        font-size: 1.1em;
    }
}

p,
a,
span,
label,
li,
address,
table,
legend,
small {
    margin: .2em 0;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    font-size: 1em;
    color: black;
    line-height: 1.4em;
    font-style: normal;
}

label {
    margin: 1em 0 0;
    display: inline-block;
}

small {
    font-size: .9em;
    margin: .5em 0;
}

/* Common */
.commonBox {
    padding: 1em 1em 2em 1em;
    margin: 1em 0;
    box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
    border-radius: 8px;
    border: 0px solid gray;
    background-color: #FFF;
}

.commonBoxHeading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 153, 204);
    border-bottom: 1px solid lightgray;
}

.commonBox h3:first-child {
    padding-top: 0px;
}

.commonBoxHeading-icon {
    font-size: 1.5em;
    color: rgb(0, 153, 204);
}

.commonOverflow {
    max-height: 60vh;
    overflow: auto;
}

.commonValidation {
    color: rgb(220, 53, 69);
    margin-bottom: .5em;
    display: flex;
    align-items: center;
}

    .commonValidation span {
        color: rgb(220, 53, 69);
        margin-right: .5em;
    }

.field-validation-error,
.error {
    color: darkred;
    margin-top: .3em;
    padding-left: .5em;
    font-weight: normal !important;
}

@media only screen and (min-width: 600px) {
    .commonBox {
        padding: 1em 2em 1.25em;
        margin: 2em 0;
    }
}

.commonLabelAndText {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .5em 0;
    flex-wrap: wrap;
    gap: .5em;
    border-top: 1px solid lightgray;
}

    .commonLabelAndText.left {
        justify-content: inherit;
    }

    .commonLabelAndText:first-child {
        border-top: 0px solid lightgray;
    }

    .commonLabelAndText > p:first-child {
        font-weight: bold;
    }

.commonLink:link,
.commonLink:visited {
    color: blue;
    border-bottom: blue;
    transition: .3s;
    text-decoration: underline;
}

.commonLink:active,
.commonLink:hover {
    opacity: .6;
    text-decoration: none;
}

/* Buttons */
.primaryButton,
.secondaryButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    cursor: pointer;
    text-decoration: none;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition: 0.3s;
    border-radius: 8px;
    border: none;
    font-size: 1em;
    box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
    text-align: center;
    width: 100%;
}

.primaryButton {
    background-color: #72bf44;
    color: #FFF;
}

.secondaryButton {
    background-color: rgb(1, 138, 148);
    color: #FFF;
}

.primaryButton:hover,
.primaryButton:active {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.24),0 13px 40px 0 rgba(0,0,0,0.19);
    background-color: rgb(114, 191, 68);
}

.secondaryButton:hover,
.secondaryButton:active {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.24),0 13px 40px 0 rgba(0,0,0,0.19);
    background-color: rgb(114, 205, 68);
}

.primaryButton:disabled:hover,
.primaryButton:disabled {
    opacity: .6;
    box-shadow: none;
    background-color: rgb(114, 191, 68);
    cursor: default;
}

.secondaryButton:disabled:hover,
.secondaryButton:disabled {
    opacity: .6;
    box-shadow: none;
    background-color: rgb(1, 138, 148);
    cursor: default;
}

.buttonContainer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
    align-items: center;
}

.buttonContainer1Button {
    display: flex;
    justify-content: center;
}

    .buttonContainer1Button button,
    .buttonContainer1Button a {
        width: 100%;
    }

.buttonContainer2Buttons {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

    .buttonContainer2Buttons input,
    .buttonContainer2Buttons a,
    .buttonContainer2Buttons button {
        margin-bottom: 1em;
        width: 100%;
    }

.buttonContainer2ButtonsNoWrap {
    display: flex;
    gap: 1em;
}

    .buttonContainer2ButtonsNoWrap a,
    .buttonContainer2ButtonsNoWrap button {
        width: 100%;
    }

.buttonResponsive {
    width: 100%;
    margin: .3em 0;
}

.moreOrLessButton,
.textButton {
    color: rgb(1, 138, 148);
    font-weight: bold;
    cursor: pointer;
    margin-left: 2em !important;
}

    .moreOrLsssButton:hover,
    .textButton:hover {
        opacity: .6;
    }

@media only screen and (min-width: 600px) {
    .buttonContainer {
        grid-template-columns: repeat(2, 1fr);
    }

    .buttonContainer2Buttons {
        flex-direction: row;
    }

        .buttonContainer2Buttons input,
        .buttonContainer1Button button,
        .buttonContainer1Button a {
            width: 49%;
        }

    .buttonContainer2Buttons {
        flex-direction: row;
    }

        .buttonContainer2Buttons a,
        .buttonContainer2Buttons button {
            max-width: 49%;
        }

    .buttonResponsive {
        width: 49%;
    }
}

@media only screen and (min-width: 768px) {
    .buttonContainer {
        grid-template-columns: repeat(3, 1fr);
    }

    .buttonResponsive {
        width: 250px;
        margin: .3em 0;
    }
}

/* Common Flex boxes */
.commonRowFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.commonRowFlexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonCenter1InputFlex {
    display: flex;
    justify-content: center;
}

.commonRowFlexStart {
    display: flex;
    justify-content: start;
    align-items: center;
}

.commonRowFlexEnd {
    display: flex;
    justify-content: end;
}

    .commonRowFlexEnd span {
        margin-left: .5em;
    }

.commonCenter1InputFlex div {
    width: 100%;
}

.common2ColFlexNoWrap {
    display: flex;
    justify-content: space-between;
}

    .common2ColFlexNoWrap div {
        width: 49%;
    }

.common3ColFlexNoWrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5em;
    margin-top: .5em;
}

@media only screen and (min-width: 600px) {
    .commonCenter1InputFlex div {
        width: 32%;
    }

    .common2ColFlex7030Wrap {
        display: flex;
        gap: 1em;
        width: 100%;
        align-items: center;
    }

        .common2ColFlex7030Wrap div {
            align-self: start;
        }

            .common2ColFlex7030Wrap div:first-child,
            .common2ColFlex7030Wrap input:first-child {
                flex: 7;
                margin-bottom: 0;
            }

            .common2ColFlex7030Wrap div:last-child,
            .common2ColFlex7030Wrap input:last-child,
            .common2ColFlex7030Wrap button:last-child {
                flex: 3;
            }

    .common3ColFlexNoWrap {
        gap: 1em;
        margin-top: 1.5em;
    }
}

@media only screen and (min-width: 750px) {
    .common3ColFlexWrap, .common2ColFlexWrap {
        display: flex;
        justify-content: space-between;
    }

        .common2ColFlexWrap > div {
            width: 49%;
        }

        .common3ColFlexWrap div {
            width: 32%;
        }
}

/* Forms and inputs */
fieldset {
    min-width: 0;
    width: 100%;
    border: none;
}

legend {
    padding-top: .75em;
    font-size: 1.2em;
    font-weight: bold;
}

.commonRadioButtons {
    display: flex;
    padding: 1em;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .commonRadioButtons div {
        display: flex;
        align-items: center;
        margin-bottom: .5em;
        width: 200px;
    }

        .commonRadioButtons div label {
            margin-left: .5em;
            cursor: pointer;
        }

.common2RadioButtons {
    display: flex;
    flex-direction: column;
}

    .common2RadioButtons div {
        display: flex;
        min-width: 200px;
        align-items: center;
        margin-bottom: .5em;
    }

        .common2RadioButtons div label {
            margin-left: .5em;
            cursor: pointer;
        }

/* make radio button look like a normal button */
.radioAsButton label {
    text-align: center;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 12px 15px;
}

.radioAsButton input[type=radio] {
    display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;
}

input[type=number],
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
select {
    padding: 11px 10px 11px 10px;
    min-width: 100%;
    max-width: 100%;
    color: #000;
    -webkit-appearance: none;
    border-radius: 8px;
    border: 1px solid #ccc;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    outline: none;
    background-color: white;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
}

    input[type=number]:focus,
    input[type=text]:focus,
    input[type=date]:focus,
    input[type=tel]:focus,
    input[type=email]:focus,
    select:focus {
        border: 1px solid rgb(114, 191, 68);
    }

input[type=date] {
    padding: 10px;
}

textarea {
    border-radius: 8px;
    font-family: 'Quicksand', 'Titillium Web', 'Open Sans', sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

@media only screen and (min-width: 600px) {
    input[type=number],
    input[type=text],
    input[type=tel],
    input[type=email],
    select {
        padding: 11px 20px 11px 20px;
    }
}

input[type=checkbox] {
    min-width: 1em;
    min-height: 1em;
    margin: 2em 1em 1em;
    cursor: pointer;
}

input[type=radio] {
    cursor: pointer;
    margin-top: 1em;
}

/* overriding properties for telerik autocomplete */
.k-input-inner {
    min-width: 0% !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    border-radius: 0px !important;
    border: none !important;
    padding: .78em .75em .78em !important;
}

.k-autocomplete {
    border-radius: 8px !important;
}

.commonReadonlyInput input[type=number],
.commonReadonlyInput input[type=date] {
    cursor: not-allowed;
    border: 1px solid rgb(230 230 230);
}

    .commonReadonlyInput input[type=number]:focus,
    .commonReadonlyInput input[type=date]:focus {
        border: 1px solid rgb(230 230 230);
    }

textarea {
    width: 100%;
    border-radius: 8px;
    border-color: lightgray;
    padding: .75em;
    font-size: 1.1em;
}

.commonDollarIconInput input[type=number],
.commonIconInInput input[type=number] {
    background-image: url("../images/dollar-icon.png");
    background-position: 8px 8px;
    background-repeat: no-repeat;
    padding-left: 35px;
    width: 100%;
    text-align: right;
}

.commonAcknowledge {
    display: flex;
    align-items: center;
    margin: 1em 0;
}

.commonCheckBox {
    display: flex;
    align-items: center;
    margin: .5em 0;
}

@media only screen and (min-width: 600px) {
    .commonSuburbStatePostcode {
        display: flex;
        justify-content: space-between;
    }

        .commonSuburbStatePostcode > div {
            width: 24%;
        }

            .commonSuburbStatePostcode > div:first-child {
                width: 49%;
            }
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}

th:not(:first-child),
td:not(:first-child) {
    border-left: 1px solid lightgray;
}

th {
    padding: .75em 1em;
    text-align: left;
    margin-bottom: .75em;
}

tr:nth-child(even) {
    background-color: rgb(240, 240, 240);
}

td {
    padding: .75em 1em;
}

/* Margins */
.mt0 {
    margin-top: 0em;
}

.mt1 {
    margin-top: 1em;
}

.mt2 {
    margin-top: 2em;
}

.mt3 {
    margin-top: 3em;
}

.mb1 {
    margin-bottom: 1em;
}

.mb2 {
    margin-bottom: 2em;
}

.mb3 {
    margin-bottom: 3em;
}

.ml1 {
    margin-left: 1em;
}

.commonTopBottomMargin {
    margin-top: 1em;
    margin-bottom: .5em;
}

/* Widths and heights */
.w100,
.commonW100 {
    width: 100%;
}

@media only screen and (min-width: 750px) {
    .commonW50OnLarge {
        width: 49%;
    }
}

/* Miscellaneous */
.alignTextCenter,
.textAlignCenter {
    text-align: center;
}

.textAlignRight {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.displayNone {
    display: none;
}

.commonImageResponsive {
    width: auto;
    max-height: 100%;
}

.commonSuccessIcon,
.commonFailIcon {
    display: flex;
    justify-content: center;
    margin-top: .5em;
}

.commonSuccessIcon {
    color: darkgreen;
    font-size: 2.75em;
}

.commonFailIcon {
    color: darkred;
    font-size: 2.75em;
}

.commonSuccessMessage > span,
.commonFailMessage > span {
    margin-left: .5em;
    font-size: 1.2em;
}

.commonSuccessMessage,
.commonSuccessMessage span {
    color: #28a745;
}

.commonFailMessage,
.commonFailMessage > span {
    color: #dc3545;
}

ol {
    padding-left: 3em;
}

ul {
    padding-left: 3em;
}

.breakWord {
    word-wrap: break-word;
}

.required {
    color: darkred;
    font-weight: normal;
    font-size: .9em;
}

.largeBalanceText {
    color: black;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-top: .5em;
}

/* Home Page */
.recaptchaWrap {
    margin-top: 1.25em;
}

/* My Account page */
.myAccount-creditCardSummary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .1em;
    padding-bottom: .6em;
}

    .myAccount-creditCardSummary div:first-child,
    .myAccount-creditCardSummary div:last-child {
        min-height: 1.2em;
        width: 60px;
        display: flex;
        align-items: center;
    }

    .myAccount-creditCardSummary div:first-child {
        padding-top: 1em;
    }

    .myAccount-creditCardSummary div:last-child {
        justify-content: flex-end;
    }

.myAccount-CreditCardExpiryWarning {
    display: flex;
    min-height: 1.2em;
    align-items: center;
    padding: 1.3em 1.5em 1.6em;
}

    .myAccount-CreditCardExpiryWarning img {
        max-height: 35px;
        width: auto;
        margin-right: 1.2em;
    }

.myAccount-creditCardSummary-numberAndExpiry p {
    font-size: .8em;
}

@media only screen and (min-width: 550px) {
    .myAccount-creditCardSummary-numberAndExpiry p {
        font-size: 1em;
    }
}

@media only screen and (min-width: 600px) {
    .myAccount-creditCardSummary {
        padding-top: .25em;
        padding-bottom: .25em;
    }

    .creditCardSummaryChevron {
        margin-top: 0;
    }

    .myAccount-creditCardSummary div:first-child,
    .creditCardSummary div:last-child {
        min-height: 2.5em;
        width: 110px;
    }

    .myAccount-creditCardSummary div:first-child {
        padding-bottom: 1.2em;
    }
}

/* Special Offer */
.specialOfferPayment {
    border-top: 1px solid lightgray;
}

    .specialOfferPayment:first-child {
        border-top: 0px solid lightgray;
    }

.specialOfferPayment-label {
    padding-top: 0;
    font-weight: bold;
    font-size: 1.1em;
}

/* Verify/POI */
.netCodeSent {
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid #155724;
    color: #155724;
    padding: .3em 1em;
    display: flex;
    justify-content: space-between;
}

/* Incident Notice */
.violatedRule h4 {
    margin-bottom: .2em;
}

@media only screen and (min-width: 768px) {
    .violatedRule div:last-child {
        padding-left: 1.5em;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

.comment, .documentSummary {
    padding: 1em 0;
}

    .comment:last-child, .documentSummary:last-child {
        border-bottom: none;
    }

.documentSummary {
    display: flex;
}

    .documentSummary span:first-child {
        width: 15%;
        margin-right: .5em;
    }

    .documentSummary span:last-child {
        min-width: 69%;
    }

    .documentSummary span a,
    .documentSummaryDownloadIcon {
        color: blue;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

        .documentSummary span a:hover,
        .documentSummaryDownloadIcon {
            opacity: .6;
        }

.documentSummaryDownloadIcon {
    margin-left: .25em;
}

.alignCenter {
    display: flex;
    justify-content: center;
    padding-top: 1.5em;
}

/* Payment History */
.paymentHistory-th-amount {
    text-align: right;
}

.paymentHistory-td-amount,
.paymentHistory-td {
    width: 50%;
}

.paymentHistory-td-amount {
    text-align: right;
}

/* Upload Documents */
.allowedExtentions {
    padding: .5em .25em;
    margin: 1.5em 0 1em;
    background-color: #ffc107;
    text-align: center;
    border-radius: 8px;
}

.k-upload {
    border-radius: 8px;
}

.k-upload-button {
    background-color: rgb(1, 138, 148);
    color: #FFF;
    border-radius: 8px;
}

.k-file-name,
.k-file-size,
.k-file-group-wrapper {
    color: forestgreen;
}

.k-file-invalid-group-wrapper,
.k-file-name-invalid,
.k-text-error {
    color: darkred;
}

/* Hardship Form / SOFP */
.modalContainer,
.SOFPModelContainer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    background-color: rgba(0,0,0,0.4);
}

    .modalContainer > div,
    .SOFPModelContainer > div {
        width: 95%;
        height: 96%;
        max-width: 800px;
        padding: 2em;
        padding-top: 1em;
        overflow: auto;
        border-radius: 8px;
        background-color: white;
    }

@media only screen and (min-width: 768px) {
    .modalContainer div,
    .SOFPModelContainer > div {
        height: auto;
    }
}

.sofp-modal-button {
    width: 100%;
    padding: .5em;
    margin-top: 2em;
    font-size: 1.1em;
}

#postalAddress,
#centrelink,
#employmentDetails,
#yearsUnemployed,
#employmentOther,
#ownedProperty,
#otherReason,
#longTerm,
#shortTerm {
    display: none;
}

.sofp-declarationCheckbox {
    display: flex;
    align-items: center;
}

    .sofp-declarationCheckbox p {
        margin-left: 1em;
    }

.sofp-lastSavedTime p:first-child {
    text-align: right;
    font-size: .8em;
}

.sofp-lastSavedTime p:last-child {
    margin-top: .5em;
    font-size: 1.1em;
}

.sofpFromPage7RadioButtons div {
    min-width: 330px;
}

/* Pay In Instalment */
#fortnightlyRepaymentAmounts,
#monthlyRepaymentAmounts {
    display: none;
}

.radioAsButton input[type=radio]:checked + label {
    background-color: #72bf44;
    color: #FFF;
}

/* Setup Account page */
.setUpAccountBox h3 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: normal;
}

.setUpAccountBox .buttonContainer1Button {
    margin-top: .5em;
}

.setUpAccountBox p {
    text-align: center;
    margin-top: .5em;
}

.paymentImageGroup {
    display: flex;
    width: 100%;
    align-self: center;
    justify-content: space-between;
}

    .paymentImageGroup img,
    .paymentImageGroup-item {
        max-width: 15%;
        height: auto;
        align-self: center;
    }

.backToSpecialOfferButton {
    padding: 0 2em;
}

/* Payment Page */
.paymentPageImageGroup img {
    cursor: pointer;
}

.paymentYear {
    justify-content: flex-end;
}

.paymentAmount {
    align-items: baseline;
    margin-top: 1em;
    margin-bottom: 0em;
}

    .paymentAmount label {
        font-weight: bold;
        font-size: 1.1em;
    }

.visaAndMastercardLogo,
.bPayLogo,
.directDebitLogo {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 20%;
}

.cvvWrap {
    margin-top: 1em;
}

@media only screen and (min-width: 600px) {
    .billerCodeAndReference {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: .5em;
    }

        .billerCodeAndReference.left {
            display: flex;
            flex-direction: column;
            align-items: inherit;
            margin-bottom: .5em;
        }

    .cvvWrap {
        margin-top: 0em;
    }
}

/* Alert */
.alert {
    display: flex;
    justify-content: space-between;
    padding: .5em 2em .3em 2em;
    width: 100%;
    border-radius: 8px;
    margin-top: 1em;
    box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
    align-items: center;
}

    .alert button {
        order: 2;
        padding-left: 4px;
        padding-right: 4px;
        border-radius: 50%;
        cursor: pointer;
    }

.alert-success button {
    background-color: transparent;
    border: 1px solid #155724;
    color: #155724;
}

.-w-server-error {
    margin-top: 2px;
}

.placeholderError::placeholder {
    color: darkred;
}

.alert {
    border-radius: 8px;
    box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
}

    .alert-error button {
        background-color: transparent;
        border: 1px solid #721c24;
        color: #721c24;
    }

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
}

    .alert-success button {
        background-color: transparent;
        border: 1px solid #155724;
        color: #155724;
    }

.errorBox {
    font-size: 1.1em;
}

/* Trip notices */
.tripNoticeCard {
    border: 1px solid lightgray;
    margin-bottom: .5em;
    border-radius: 8px;
    padding: 1em;
}

    .tripNoticeCard span {
        margin: 0px;
        line-height: 1em;
    }

.tripNoticeCard-item1 p {
    display: flex;
    justify-content: space-between;
}

    .tripNoticeCard-item1 p span:first-child {
        width: 30%;
    }

    .tripNoticeCard-item1 p span:last-child {
        width: 60%;
    }

.tripNoticeCard-item2 {
    margin-top: .75em;
}

    .tripNoticeCard-item2 p {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .tripNoticeCard-item2 p span:first-child {
            text-align: right;
            width: 55%;
        }

        .tripNoticeCard-item2 p span:last-child {
            padding-left: .5em;
            width: 40%;
        }

@media only screen and (min-width: 600px) {
    .tripNoticeCard {
        display: flex;
        width: 98%;
        justify-content: space-around;
    }

    .tripNoticeCard-item1,
    .tripNoticeCard-item2 {
        width: 49%;
    }

    .tripNoticeCard-item2 {
        margin-top: 0;
    }
}

/* Progress bar */
.progressbarouter {
    height: 120px;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    position: relative;
    padding: 2em 2em 2em 2em;
    -webkit-box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
    box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
}

.progressbarprogress {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #72bf44;
}

.progressbarwords {
    display: inline-flex;
    justify-content: space-between;
    margin: 0;
    padding: 0 .75em 0 .75em;
    align-items: center;
    font-weight: bold;
    font-size: 2.4em;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .progressbarwords div {
        display: flex;
        flex-direction: column;
    }

    .progressbarwords label {
        font-size: .7em;
        margin-top: 0;
        margin-left: .25em;
        margin-right: .25em;
    }

@media only screen and (max-width: 600px) {
    .progressbarwords {
        font-size: 1.75em;
    }

    .progressbarouter {
        height: 90px;
    }
}

/* Payment types (Credit card section on my account page) */
.mastercardsmall {
    height: 2.5em;
    width: 100%;
    background: url("../images/MastercardLogo.png") no-repeat top left;
    background-size: contain;
}


.visasmall {
    height: 2.5em;
    width: 100%;
    background: url("../images/VisaLogo.jpg") no-repeat top left;
    background-size: contain;
}

.americanexpresssmall {
    height: 2.5em;
    width: 100%;
    background: url("../images/American-Express-Logotype-Stacked.png") no-repeat top left;
    background-size: contain;
}

.unknownsmall {
    height: 2em;
    width: 100%;
}

.selectPaymentMethod {
    display: flex;
    flex-wrap: wrap;
    margin: 2em 0 .5em;
}

    .selectPaymentMethod > div {
        border: 1px solid lightgray;
        border-radius: 8px;
        width: 23%;
        min-width: 60px;
        height: 45px;
        box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
        transition: .3s;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-filter: grayscale(20%);
        filter: grayscale(20%);
        opacity: 20%;
        margin-bottom: .5em;
        margin-right: .5em;
        padding: .3em .3em;
    }

        .selectPaymentMethod > div:last-child {
            margin-right: 0;
        }

        .selectPaymentMethod > div:hover,
        .selectPaymentMethod > div:active {
            box-shadow: 0 8px 12px 0 rgba(0,0,0,0.24), 0 13px 40px 0 rgba(0,0,0,0.19);
            border: 1px solid;
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
            opacity: 100%;
        }

    .selectPaymentMethod .activeLogo {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
        opacity: 100%;
        border: 1px solid #72bf44;
    }

    .selectPaymentMethod > div > img {
        width: auto;
        height: 100%;
    }

@media only screen and (min-width: 315px) {
    .selectPaymentMethod {
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 600px) {
    .selectPaymentMethod > div {
        padding: .5em .15em;
        height: 65px;
        width: 24%;
    }

        .selectPaymentMethod > div > img {
            height: 100%;
            width: auto;
        }
}

/* Notice bar */
.noticeBar {
    background-color: rgb(1, 138, 148);
    padding: .5em 0;
    display: flex;
    justify-content: center;
}

    .noticeBar p {
        color: #FFF;
    }

        .noticeBar p a:link,
        .noticeBar p a:visited {
            text-decoration: underline;
            color: #FFF;
        }

        .noticeBar p a:hover,
        .noticeBar p a:active {
            opacity: .6;
        }

.cursorPointer {
    cursor: pointer;
}

.removeTopBorder {
    border-top: 0px solid lightgray;
}

.removeBottomBorder {
    border-bottom: 0px solid lightgray;
}

.addBottomBorder {
    border-bottom: 1px solid lightgray !important;
}

.addTopBorder {
    border-top: 1px solid lightgray !important;
}

.authorizedRepresentative {
    margin: .5em .5em .5em 0 !important;
}

/* OpenPay */

.openPayColumnMinWidth {
    min-width: 20%;
}

.condensed {
    padding: 0px;
    border: none;
}

.condensed-top {
    padding-top: 0px;
    border: none;
}

.condensed-bottom {
    padding-bottom: 0px;
}
