body {
    --global-banner-height: 0px !important;
}

body.is-dark {
    background: var(--rac-grey);
    color: #fff;
}


.result, .error {
    font-size: 16px;
}

.make-model {
    font-size: 18px;
}

.js-hidden {
    display: none;
    visibility: hidden;
}

.enter-reg h1 {
    margin-bottom: 30px;
}

.enter-reg-inner {
    max-width: 350px;
    margin: 30px auto 20px;
    padding: 30px;
    border: 2px solid var(--rac-grey-20);
    border-radius: 8px;
}

.enter-reg input[type="text"] {
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
    background-color: #FECD26;
    border: 1px solid var(--rac-grey);
    font-family: "UKNumberPlate";
    font-size: 20px;
    text-transform: uppercase;
}

.enter-reg input[type="text"]:not(:valid) + button {
    opacity: 0.5;
    pointer-events: none;
}

.manufacturer-logo {
    margin-bottom: 20px;
}

.highlight-teal {
    color: var(--teal);
}

.btn-start-over {
    min-width: 200px;
}

.btn-video-play {
    display: inline-block;
    position: relative;
}

.btn-video-play .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.error h3 + img {
    opacity: 0.5;
}

.help {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #fff;
    text-align: left;
}

.help h6 {
    margin-bottom: 1em;
}

details {
    border: 2px solid var(--rac-grey-20);
    border-radius: 8px;
    color: var(--rac-grey);
    margin-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
}

details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--rac-grey);
    font-weight: bold;
}

details summary:after {
    border: none;
    background-color: var(--rac-orange);
    mask: url('data:image/svg+xml,<svg fill="none" height="11" viewBox="0 0 18 11" width="18" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m2.134 0 6.37551 6.83553 6.52259-6.83553 1.9869 2.08224-8.50949 8.91776-8.50954099-8.91776z" fill="black" fill-rule="evenodd"/></svg>');
    height: 11px;
    width: 17px;
    will-change: transform;
    transition: .2s ease-in-out;
}

details[open] summary:after {
    transform: rotate(180deg);
}

.compliance {
    margin-top: 30px;
    padding: 20px 0;
    font-size: 10px;
    border-top: 1px solid #fff;
    text-align: left;
}

.c-videomodal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    opacity: 1;
    padding: 1rem;
    z-index: 9999;
    position: fixed;
    animation: show .5s ease;
    overflow-x: hidden;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.c-videomodal:not(.is-open) {
    display: none;
}

.c-videomodal__content {
    position: relative;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: #fff;

    padding: 0;
    overflow: hidden;
    max-width: 90vw;
    max-height: 100%;
    aspect-ratio: 16 / 9;
}

.c-videomodal__close {
    top: 5px;
    right: 5px;
    width: 44px;
    border: 0;
    cursor: pointer;
    height: 44px;
    outline: 0;
    padding: 0;
    position: absolute;

    background-image: url(../img/close.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.c-videomodal__content > div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    outline: none;
    display: block;
    transform: translate3d(0,0,0);
    text-align: center;
    opacity: 1;
}
