@import url(https://fonts.googleapis.com/css?family=Roboto);

@keyframes rotator {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(270deg)
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 188
    }

    50% {
        stroke-dashoffset: 65;
        transform: rotate(135deg)
    }

    to {
        stroke-dashoffset: 188;
        transform: rotate(450deg)
    }
}

body, html {
    height: 100%
}

html {
    background-color: #11353a
}

body {
    font: 100% "Roboto",sans-serif;
    color: #fff;
    margin: 0
}

.page-container {
    min-height: 100%
}

.content-wrap {
    -webkit-padding-before: 210px;
    padding-block-start: 210px;
    -webkit-padding-after: 40px;
    padding-block-end: 40px
}

.footer {
    bottom: 0;
    height: 40px;
    display: grid;
    grid-template-columns: 33% auto 33%;
    margin: 40px 25px 0
}

    .footer a {
        display: block;
        background-color: #476164;
        padding: 14px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        opacity: .68;
        font-size: 12px;
        overflow: hidden
    }

.header {
    display: flex;
    position: absolute;
    width: calc(100% - 0px);
    height: 305px;
    top: 0;
    z-index: -1;
    background-image: url("../images/panar.jpeg");
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    padding: 20px 32px 0
}

.header-centered-logo {
    justify-content: center
}

/**, ::after, ::before {
    box-sizing: content-box !important;
}*/

.box-2 {
    background-color: #fff;
    color: #000;
    padding: 10px;
    border: #fff solid;
    border-radius: 10px;
   
}


#load {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: url("../images/loading1.gif") no-repeat center center rgb(0 0 0)
}

.header-logo {
    background-image: url("../images/Qlogo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: center;
    width: 33%;
    height: 170px
}

.locale-dropdown {
    top: 0;
    right: 0;
    margin-top: 20px;
    margin-right: 32px;
    position: absolute;
    display: inline-block
}

.locale-dropdown-icon {
    fill: var(--accent-color);
    cursor: pointer
}

.locale-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175)
}

    .locale-dropdown-content:before {
        content: "";
        display: inline-block;
        position: absolute;
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        border-bottom: 11px solid #ccc;
        border-bottom-color: #fff;
        top: -11px;
        right: 4px
    }

    .locale-dropdown-content a {
        color: #000;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        white-space: nowrap
    }

        .locale-dropdown-content a:hover {
            background-color: #ddd
        }

.locale-dropdown-show {
    display: block
}

.opaqueBox {
    background-color: rgba(11,32,35,.8);
    min-height: 194px;
    margin: 0 25px;
    padding: 28px 29px 20px;
    -webkit-border-before: 6px solid var(--accent-color);
    border-block-start: 6px solid var(--accent-color)
}

    #licensePlatePage #licensePlateWelcome a, .info-text a, .opaqueBox a, .recaptchaDisclaimer a {
        color: var(--accent-color);
        text-decoration: none
    }

.info-text {
    color: #fff;
    opacity: .68;
    font-size: 13px;
    margin-bottom: 2px
}

.btn {
    font-weight: 700;
    background-origin: content-box;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 17px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
    min-height: 40px;
    padding: 10px 25px;
    width: 100%;
    min-width: 150px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box
}

    .btn:disabled {
        cursor: default
    }

    .btn.btn-outline {
        border: 1px solid #97cfef;
        color: #97cfef;
        background: 0 0
    }

.disclaimer {
    margin: 5px 55px
}

#ticketInfo div label, #ticketNotFoundInfo div label, .show-element {
    display: block
}

.hide-element {
    display: none
}

.inverted {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff
}

.grecaptcha-badge {
    visibility: hidden
}

.recaptchaDisclaimer {
    margin: 5px 55px;
    font-size: 13px
}

.loadingSpinner {
    height: 66px;
    width: 66px;
    animation: rotator 1.4s linear infinite
}

    .loadingSpinner .indexPath {
        stroke-dashoffset: 0;
        animation: dash 1.4s ease-in-out infinite;
        stroke-dasharray: 188;
        stroke: #ffd631;
        transform-origin: center;
        transition: stroke-dashoffset .3s linear
    }

    .loadingSpinner .indexRound {
        fill: #c6c9cb
    }

#ticketInfo, #ticketNotFoundInfo {
    display: grid;
    grid-row-gap: 20px
}

    #ticketInfo #priceContainer, #ticketNotFoundInfo #priceContainer {
        grid-column: 1;
        grid-row: 2;
        padding: 0
    }

    #ticketInfo #price, #ticketNotFoundInfo #price {
        color: var(--accent-color);
        font-size: 38px;
        margin-bottom: 2px;
        white-space: nowrap
    }

    #ticketInfo #pricePaymentDisabled, #ticketNotFoundInfo #pricePaymentDisabled {
        font-size: 30px;
        margin-bottom: 2px;
        white-space: nowrap
    }

    #ticketInfo #paymenthint, #ticketNotFoundInfo #paymenthint {
        grid-column: 1;
        grid-row: 3
    }

    #ticketInfo #duration, #ticketNotFoundInfo #duration {
        grid-column: 1;
        grid-row: 1
    }

        #ticketInfo #duration span, #ticketNotFoundInfo #duration span {
            font-size: 22px
        }

    #ticketInfo #entrytime, #ticketNotFoundInfo #entrytime {
        grid-column: 1;
        grid-row: 4
    }

    #ticketInfo #ticketnumber, #ticketNotFoundInfo #ticketnumber {
        grid-column: 1;
        grid-row: 5
    }

#paymentDisabledWarning {
    margin-bottom: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #c31e1e
}

    #paymentDisabledWarning label {
        font-size: 16px;
        margin-bottom: 8px
    }

    #paymentDisabledWarning img {
        width: 40px
    }

#buttoncontainer h5, .paymentDisabledInfo {
    font-size: 20px;
    color: var(--accent-color)
}

#buttoncontainer {
    text-align: center;
    margin: 0 55px
}

    #buttoncontainer .button {
        -webkit-margin-after: 13px;
        margin-block-end: 13px
    }

    #buttoncontainer h5 {
        font-size: 14px;
        font-weight: 400;
        -webkit-margin-after: 7px;
        margin-block-end: 7px
    }

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 1000;
    cursor: pointer
}

.freeParkingEndingContainer {
    -webkit-margin-before: 28px;
    margin-block-start: 28px
}

.error-container, .success-page #thankyou {
    background-color: #00a04e;
    padding: 20px 2px 2px;
    margin: 0 25px;
    text-align: center
}

    .success-page #thankyou h1 {
        font-size: 28px;
        font-weight: 400;
        margin-top: 0
    }

    .success-page #thankyou label {
        display: block;
        -webkit-margin-before: 25px;
        margin-block-start: 25px
    }

    .success-page #thankyou .info-text, .success-page #thankyou .ok-icon {
        margin-bottom: 18px
    }

    .success-page #thankyou .promotion-banner-container .promotion-banner-image {
        width: 100%;
        max-width: 500px;
        vertical-align: middle
    }

.success-page #invoiceinfo {
    margin: 10px 50px
}

    .success-page #invoiceinfo span {
        text-align: center;
        display: block;
        margin: 10px 20px
    }

    .success-page #invoiceinfo #result {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-row-gap: 4px
    }

        .success-page #invoiceinfo #result .amountpaid-label, .success-page #invoiceinfo #result .paymentmethod-label {
            text-align: start;
            grid-column: 1;
            align-self: center
        }

        .success-page #invoiceinfo #result .amountpaid, .success-page #invoiceinfo #result .paymentmethod, .success-page #invoiceinfo #result .surcharge-info {
            text-align: end;
            grid-column: 2
        }

            .success-page #invoiceinfo #result .paymentmethod img {
                height: 50px;
                float: right
            }

.success-page .receipt {
    grid-column: 1/span 2
}

    .success-page .receipt a.receiptButton, .success-page .receipt button {
        background-color: #fff;
        color: #11353a;
        font-family: "Roboto",sans-serif;
        padding: 11px 24px;
        -webkit-margin-before: 24px;
        margin-block-start: 24px;
        text-transform: uppercase;
        display: block;
        text-decoration: none;
        text-align: center;
        background-origin: content-box;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: auto 17px;
        border: 0;
        border-radius: 4px;
        box-shadow: rgba(60,64,67,.3) 0 1px 1px 0,rgba(60,64,67,.15) 0 1px 3px 1px;
        cursor: pointer
    }

.success-page #receiptDownload {
    background-color: #fff;
    color: #11353a;
    font-weight: 600
}

.success-page #receiptError {
    background: #bb1a16;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%
}

.success-page .custom-web-links-container {
    margin: 20px 50px 40px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 10px
}

    .success-page .custom-web-links-container > a {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        padding: 2px 4px;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        height: 40px;
        min-width: auto
    }

        .success-page .custom-web-links-container > a.feedback {
            background: #97cfef;
            color: #11353a;
            line-height: 17px
        }

            .success-page .custom-web-links-container > a.feedback > img {
                margin-right: 5px
            }

    .success-page .custom-web-links-container.two-column > a {
        width: 45%
    }

.error-container {
    background-color: #c31e1e;
    min-height: 195px;
    padding: 20px;
    font-size: 18px
}

@media (max-width:400px) {
    .error-container {
        padding: 10px;
        font-size: 12px
    }
}

.error-container h1 {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 35px
}

@media (max-width:400px) {
    .error-container h1 {
        font-size: 20px;
        margin-bottom: 15px
    }
}

.error-container #payment-error-page-retry-button, .error-container .support-link {
    max-width: 200px;
    margin-top: 30px
}

.error-container .support-link {
    background: #fff;
    text-decoration: none;
    display: inline-block;
    line-height: 40px
}

    .error-container .support-link:visited {
        color: #000
    }

.error-info {
    margin: 29px 76px;
    text-align: center
}

table.payment-info-table {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 700px
}

    table.payment-info-table tr td {
        text-align: left;
        padding: 2px 8px
    }

@media (max-width:400px) {
    table.payment-info-table tr td {
        padding: 2px 0
    }
}

.recaptcha-v2-container {
    margin-bottom: 13px;
    display: flex;
    justify-content: center
}

.modal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.9;
    position: absolute;
    display: none;
    box-shadow: 0 3px 7px rgba(0,0,0,.25);
    box-sizing: border-box;
    transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out
}

.modal__showModal {
    opacity: 1;
    display: block
}

.modal .modal-content {
    position: fixed;
    padding: 20px;
    box-sizing: border-box;
    width: 90%;
    max-width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    border-radius: 10px;
    z-index: 1020;
    color: #000;
    overflow-y: auto
}

    .modal .modal-content .modal-description, .modal .modal-content .modal-headline {
        text-align: center
    }

    .modal .modal-content .modal-headline {
        font-size: 18px;
        padding-bottom: 10px
    }

    .modal .modal-content .modal-description {
        font-size: 14px;
        padding: 10px
    }

    .modal .modal-content form label {
        color: #000;
        cursor: pointer;
        text-align: left;
        width: 100%;
        display: inline-block;
        font-size: 14px;
        margin-bottom: 5px
    }

    .modal .modal-content form input {
        opacity: 1;
        transition: opacity .3s
    }

        .modal .modal-content form input:disabled {
            opacity: .5;
            transition: opacity .3s
        }

    .modal .modal-content .modal-logo {
        width: 120px;
        margin-bottom: 20px
    }

    .modal .modal-content a {
        font-size: 14px;
        color: #1d8dcd;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer
    }

        .modal .modal-content a:hover {
            text-decoration: underline
        }

    .modal .modal-content input {
        display: block;
        border: 1px solid #000;
        border-radius: 4px;
        width: 100%;
        text-align: center;
        padding: 5px;
        box-sizing: border-box;
        height: 40px;
        margin-bottom: 20px
    }

    .modal .modal-content .modal-error-container, .modal .modal-content .modal-validation-error-container {
        display: none;
        color: #c31e1e;
        text-align: left;
        border: 2px solid #c31e1e;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px
    }

    .modal .modal-content .button-container {
        display: flex;
        margin-top: 20px
    }

        .modal .modal-content .button-container .btn {
            flex-basis: 0;
            flex-grow: 1;
            transition: background-color .3s,color .3s,border-color .3s
        }

            .modal .modal-content .button-container .btn.cancel {
                margin-right: 20px
            }

            .modal .modal-content .button-container .btn:disabled {
                transition: background-color .3s,color .3s,border-color .3s
            }

.modal.has-error .modal-content .modal-error-container, .modal.has-validation-error .modal-content .modal-validation-error-container {
    display: block
}

.modal:after {
    content: "";
    background: rgba(0,0,0,.8);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

.modal .close {
    cursor: pointer;
    height: 20px;
    width: 20px;
    position: absolute;
    inset-block-start: 10px;
    inset-inline-end: 18px;
    display: block;
    color: var(--accent-color);
    opacity: .6;
    z-index: 1021;
    line-height: 20px;
    font-size: 40px
}

.docinfoBlock {
    margin: 5px 55px
}

#licensePlatePage #licensePlateWelcome {
    background-color: rgba(11,32,35,.8);
    margin: 0 25px;
    padding: 25px;
    -webkit-border-before: 5px solid var(--accent-color);
    border-block-start: 5px solid var(--accent-color)
}

    #licensePlatePage #licensePlateWelcome h1 {
        color: var(--accent-color);
        font-weight: 400;
        margin-top: 0
    }

    #licensePlatePage #licensePlateWelcome input#licensePlateText {
        display: block;
        font-size: 21px;
        border: 1px solid #000;
        border-radius: 5px;
        width: 100%;
        text-align: center;
        height: 45px;
        background-color: #fff;
        margin-top: 25px;
        text-transform: uppercase;
        box-sizing: border-box;
        padding: 5px
    }

#licensePlatePage #lpContainer {
    margin: 20px 50px 0
}

#licensePlatePage #lpSubmit {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
    -webkit-margin-after: 20px;
    margin-block-end: 20px;
    background-color: #ffd631;
    color: #0b0c0c;
    text-transform: uppercase
}

.nets-payment-button {
    background-color: #fff;
    background-image: url(/mobilepay/img/modules/nets/dibs-logo-384fef482717d8d06b0c2cd59196422b.png)
}

.nets-modal-content {
    width: 100%;
    height: 100%
}

.eppg-payment-button {
    background-color: #fff;
    cursor: pointer
}

.eppg-button-image {
    height: 75px;
    transform: translateY(3%)
}

#loading {
    background-color: #476164;
    height: 200px;
    margin: 0 25px;
    padding: 50px 29px 4px;
    text-align: center
}

@media (min-width:800px) and (max-width:1919px) {
    #loading {
        font-size: 90%
    }
}

@media (max-width:799px) {
    #loading {
        font-size: 70%
    }
}

.teleCashButton {
    background-color: #fff;
    font-size: 18px;
    color: #e5e5e5;
    padding: 1px;
    height: 40px
}

.teleCashButtonImage {
    height: 30px;
    vertical-align: text-bottom
}

#payment-timeout-reload-dialog .loading {
    padding: 0;
    background: 0 0;
    margin: 0;
    height: auto;
    font-size: 8px
}

#onboarding-page .content {
    max-width: 800px;
    margin: auto;
    width: 90%;
    box-sizing: border-box
}

.mpesa-payment-button {
    background-color: #fff;
    cursor: pointer
}

.mpesa-button-image {
    width: 60px;
    transform: translateY(3%)
}

.dpoButton {
    background-color: #fff;
    font-size: 18px;
    color: #e5e5e5;
    padding: 1px;
    height: 40px
}

.dpoButtonImage {
    height: 30px;
    vertical-align: text-bottom
}
