﻿@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    box-sizing: border-box;
}

:root {
    --bone: #d9d8d3;
    --lightgray: #3d3f43;
    --darkgray: #171516;
    --red: #f3422f;
    --purple: #58305c;
    --lightblue: #7e9db9;
}

html {
    overflow-y: scroll;
}

body {
    background-image: url('/images/background_64x64.png');
}

h2 {
    font-family: 'aktiv-grotesk';
    font-size: 36px;
    color: white;
    margin-left: 20px;
    font-style: italic;
    margin-bottom: 15px;
}

h3 {
    font-family: 'aktiv-grotesk';
    font-size: 36px;
    font-style: italic;
}

h4 {
    font-family: 'aktiv-grotesk';
    font-size: 24px;
    font-style: italic;
    color: blue;
    margin-bottom: 0px;
}

.bluedrop {
    text-shadow: 3px 3px 0 blue;
}

.reddrop {
    text-shadow: 3px 3px 0 var(--red);
}

.greendrop {
    text-shadow: 3px 3px 0 green;
}

.orangedrop {
    text-shadow: 3px 3px 0 orange;
}

.purpledrop {
    text-shadow: 3px 3px 0 var(--purple);
}

.container {
    width: 1250px;
    margin: auto;
    padding-bottom: 80px;
    margin-top: 80px;
    background-color: var(--darkgray);
}

.contentcontainer {
    width: 1250px;
    margin: auto;
    animation-name: underglow;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    box-shadow: 0px 0px 70px red;
    border-radius: 20px;
    padding-bottom: 20px;
}

.headercontainer {
    width: 1250px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #000;
}

.headercontainer img {
    width: 100%;
}

.eventTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title {
    font-family: 'aktiv-grotesk';
    font-weight: 900;
    font-size: 48px;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
}

.date {
    color: var(--red);
    font-size: 38px;
}

.benefit {
    font-size: 42px;
}

.menubutton {
    display: none;
}

.mobileheadercontainer, .mobile {
    display: none;
}

.footercontainer {
    text-align: center;
    margin-top: -30px;
}

.footercontainer p {
    font-family: 'aktiv-grotesk';
    color: white;
    font-size: 14px;
    text-align: center;
}

.footercontainer a {
    font-family: 'aktiv-grotesk';
    color: white;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

#imgHappyHappyChowChow {
    width: 100px;
    display: inline-block;
    margin-right: 20px;
    margin-top: 30px;
    margin-bottom: 0px;
}

.headerlogo {
    height: 400px;
    position: relative;
    top: -25px;
    left: -100px;
    z-index:10;
}

.menu {
    width: 1093px;
    background-color: var(--lightgray);
    position: relative;
    left: 137px;
    top: -109px;
    height: 42px;
    padding-top: 10px;
    white-space: nowrap;
    text-align: right;
    padding-right: 20px;
}

.menu, .mobilemenu {
    display: none;
}

a.headerlink {
    font-family: 'aktiv-grotesk';
    font-weight: 900;
    color: white;
    font-size: 24px;
    padding-left: 30px;
    text-shadow: 3px 3px 0 var(--darkgray);
    text-decoration: none;
}

.show {
    display: block !important;
}

.hide {
    display: none;
}

#menuauth {
    width: 370px;
    height: 115px;
    background-color: white;
    border: 3px solid var(--darkgray);
    position: relative;
    left: 666px;
    top: 10px;
    white-space: normal;
    display: none;
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--red);
    z-index: 100;
    padding: 10px;
}

    #menuauth a, #mobileauth a {
        font-family: 'aktiv-grotesk';
        color: var(--red);
        text-align: left;
        margin-left: 10px;
        text-decoration: none;
        font-size: 24px;
        display: block;
        margin-bottom: 10px;
        width: 80%;
    }

#menulogin {
    width: 390px;
    height: 235px;
    background-color: white;
    border: 3px solid var(--darkgray);
    position: relative;
    left: 666px;
    top: 10px;
    white-space: normal;
    display: none;
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--red);
    z-index: 100;
}

#menulogin a, #mobileLogin a {
    font-family: 'aktiv-grotesk';
    color: var(--red);
    text-align: center;
    margin-left: 10px;
    text-decoration: none;
}

    #menulogin .button, #mobileLogin .button {
        background-color: var(--red);
        border-radius: 5px;
        text-indent: 0;
        display: inline-block;
        color: white;
        font-family: 'aktiv-grotesk';
        font-size: 36px;
        font-style: italic;
        height: 50px;
        line-height: 34px;
        width: 140px;
        text-decoration: none;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 5px;
        margin-left: 12px;
        border-style: none;
        box-shadow: 3px 3px 0 var(--lightgray);
    }

#menulogin .button:hover {
    cursor: pointer;
}

.content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 60px;
}

.lineup {
    background-color: var(--darkgray);
    background-repeat: no-repeat;
    height: 197px;
    padding-top: 105px;
}

#teaser {
    margin-bottom: 0px;
    width: 100%;
    height: calc(100vh - 380px);
}

.content p {
    font-family: 'aktiv-grotesk';
    color: var(--darkgray);
    font-size: 24px;
    margin: 0px 0px 24px 0px;
}

.content a {
    color: var(--red);
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
}

.content b {
    font-weight: bold;
    color: blue;
}

p.note {
    font-size: 18px;
    color: var(--red);
    margin-left: 10px;
    margin-top: 20px;
    font-weight: bold;
}

.content video {
    border-radius: 10px;
    margin-bottom: 24px;
    width: 1170px;
}

.content p.location {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 0px;
}

.content p.location>span {
    font-size: 28px;
}

.diffBomp {
    width: 40%;
    background-image: url('images/bomp.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 20px;
    border-radius: 10px 0px 0px 10px;
}

.diffDesc {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}

.howhelp {
    width: 330px;
    border: 3px solid var(--darkgray);
    border-radius: 10px;
    margin-bottom: 20px;
}

.howhelp>div {
    background-color: var(--darkgray);
    padding: 10px 5px 10px 5px;
}

.howhelp>div>h3 {
    color: white;
    margin: 0px;
    font-size: 24px;
}

.howhelp > div + div {
    padding: 10px;
    background-color: unset;
}

.howhelp div p {
    margin: 0px;
}

.combined {
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}

.content .flex-container {
    display: flex;
    justify-content: space-around;
}

#mobileBullets, #mobileBullets2 {
    display: none;
}

.content ul {
    margin-top: 0px;
    margin-bottom: 24px;
}

.content ul li {
    font-family: 'aktiv-grotesk';
    color: var(--darkgray);
    font-size: 24px;
    margin: 0px 0px 24px 0px;
    list-style-type: none;
    text-indent: 40px;
}

.content ol {
    padding-left: 60px;
}

.content ol li {
    font-family: 'aktiv-grotesk';
    color: var(--darkgray);
    font-size: 24px;
    margin: 0px 0px 24px 0px;
    list-style-type: none;
    line-height: 32px;
}

.content ol li:before {
    color: var(--red);
    font-style: italic;
    text-shadow: 2px 2px 0 var(--darkgray);
    font-size: 40px;
    font-weight: 900;
    margin-left: -40px;
    margin-right: 10px;
}

.content ol li:nth-child(1):before {
    content: "1";
}

.content ol li:nth-child(2):before {
    content: "2";
}

.content ol li:nth-child(3):before {
    content: "3";
}

.content ol li:nth-child(4):before {
    content: "4";
}

.content ol li:nth-child(5):before {
    content: "5";
}

.content ol li:nth-child(6):before {
    content: "6";
}

.content ol li:nth-child(7):before {
    content: "7";
}

.content ol li:nth-child(8):before {
    content: "8";
}

.content ol li:nth-child(9):before {
    content: "9";
}

.content ol li:nth-child(10):before {
    content: "10";
    margin-left: -62px;
}

.content ol li:nth-child(11):before {
    content: "11";
    margin-left: -62px;
}

.content ol li:nth-child(12):before {
    content: "12";
    margin-left: -62px;
}

.content ol li:nth-child(13):before {
    content: "13";
    margin-left: -62px;
}

.content ol li:nth-child(14):before {
    content: "14";
    margin-left: -62px;
}

.content ol li:nth-child(15):before {
    content: "15";
    margin-left: -62px;
}

.content ol li:nth-child(16):before {
    content: "16";
    margin-left: -62px;
}

.faqAnswer {
    margin-left: 60px;
}

.faqAnswer p {
    font-size: 20px;
    margin-bottom: 18px;
}

.faqAnswer ol {
    margin-left: -20px;
}

.ma86 {
    background-image: url('images/86-bullet.png');
    background-repeat: no-repeat;
    background-position-y: 3px;
    background-position-x: 7px;
}

.scion {
    background-image: url('images/scion-bullet.png');
    background-repeat: no-repeat;
    background-position-y: 3px;
    background-position-x: 2px;
}

.toyota {
    background-image: url('images/toyota-bullet.png');
    background-repeat: no-repeat;
    background-position-y: 3px;
    background-position-x: 2px;
}

.subaru {
    background-image: url('images/subaru-bullet.png');
    background-repeat: no-repeat;
    background-position-y: 3px;
}

.regcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.entrycontainer {
    width: 48%;
    background-color: #000;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 25px;

}

.entryphoto {
    height: 450px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.entrylabel {
    background-color: white;
    padding: 10px 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.entrycontainer p {
    font-size: 24px;
    margin: 10px 0px 10px 0px;
    text-align: center;
    color: var(--red);
    font-family: 'aktiv-grotesk';
    font-style: italic;
    font-weight: 700;
}

.entrycontainer .entrylabel p {
    color: #000;
    font-style: normal;
}

.entrycontainer p + p {
    font-size: 12px;
}

.carphotocontrols {
    display: flex;
    background-color: white;
    padding: 10px;
    justify-content: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .carphotocontrols .controlcontainer {
        display: flex;
        width: 60px;
        flex-direction: column;
        align-items: center;
    }

        .carphotocontrols .controlcontainer p {
            font-size: 14px;
        }

        .carphotocontrols .controlcontainer .button {
            margin-top: 0px;
            height: 35px;
            width: 35px;
            padding: 2px;
            box-shadow: 3px 3px 0 var(--lightgray);
        }

        .carphotocontrols .controlcontainer input[type="checkbox"] + label {
            margin: 0px;
        }

            .carphotocontrols .controlcontainer input[type="checkbox"] + label span {
                padding: 0px;
                width: 35px;
            }

.deleteDialogContainer {
    width: 1250px;
    margin: auto;
}

.deleteDialogBG {
    display: none;
    width: 0px;
    height: 0px;
    background-color: rgb(0,0,0,0.8);
    position: fixed;
    z-index: 100000000000;
    top: 0;
    left: 0;
}

.imgDeletePhoto {
    display: block;
    margin: auto;
}
#ContentPlaceHolder1_grdFan, #ContentPlaceHolder1_grdDonations, #ContentPlaceHolder1_grdTopFund, #ContentPlaceHolder1_grdTopRun, #ContentPlaceHolder1_grdRunTimes, #ContentPlaceHolder1_grdRacePhotos, #tblStoreItems, #ContentPlaceHolder1_grdDoG {
    border-collapse: collapse;
    width: 100%;
    border: none;
    border-spacing: 0px;
    margin-bottom: 24px;
}

    #ContentPlaceHolder1_grdFan th, #ContentPlaceHolder1_grdDonations th, #ContentPlaceHolder1_grdTopFund th, #ContentPlaceHolder1_grdTopRun th, #ContentPlaceHolder1_grdRunTimes th, #ContentPlaceHolder1_grdRacePhotos th, #tblStoreItems th, #ContentPlaceHolder1_grdDoG th {
        background-color: var(--darkgray);
        height: 50px;
        color: white;
        font-family: 'aktiv-grotesk';
        font-size: 35px;
        font-style: italic;
        padding: 10px;
        border: none;
        text-shadow: 3px 3px 0 var(--red);
    }

    #ContentPlaceHolder1_grdFan td, #ContentPlaceHolder1_grdDonations td, #ContentPlaceHolder1_grdTopFund td, #ContentPlaceHolder1_grdTopRun td, #ContentPlaceHolder1_grdRunTimes td, #ContentPlaceHolder1_grdRacePhotos td, #tblStoreItems td, #ContentPlaceHolder1_grdDoG td {
        height: 36px;
        color: var(--darkgray);
        font-family: 'aktiv-grotesk';
        font-size: 18px;
        padding: 10px;
        border: 0px;
        border-bottom: 2px solid var(--red);
    }

.spacer {
    margin-left: 20px;
    margin-right: 20px;
    color: var(--red);
}

.button {
    background-color: var(--red);
    border-radius: 5px;
    text-indent: 0;
    display: inline-block;
    color: white;
    font-family: 'aktiv-grotesk';
    font-size: 36px;
    font-style: italic;
    font-weight: bold;
    height: 40px;
    line-height: 34px;
    text-decoration: none;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 5px;
    margin-left: 0px;
    border-style: none;
    box-shadow: 3px 3px 0 white;
}

.button:hover {
    cursor: pointer;
}

#ContentPlaceHolder1_txtCity {
    width: 255px;
}

#ContentPlaceHolder1_txtState {
    width: 55px;
}

.waivertext {
    font-size: 18px;
    margin-bottom: 24px;
    font-style: italic;
}

.chkWaiver {
    width: 80px !important;
}

.uploaddiv {
    padding: 0px;
    height: 70px;
    overflow: hidden;
    margin-left: 10px;
}

.uploaddiv .textbox {
    display: inline;
    width: 935px;
    position: relative;
    top: 2px;
    margin-right: 0px;
    margin-left: 15px;
    margin-top: 0px;
    margin-bottom: 5px;
}

.uploaddiv .button:before {
    content: 'Browse';
}

    .uploaddiv #photobutton:before {
        content: 'Select Photo';
    }

.spanRightClick {
    display: inline-block;
}

.spanTapHold {
    display: none;
}

.divBanners {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .divBanners img {
        height: 470px;
        border-radius: 10px;
    }

.uploaddiv .button, #btnAddItem, #btnAddPhoto, #btnRegMobile, #btnReg, #ContentPlaceHolder1_btnDonateDash, #btnWinners {
    position: relative;
    top: 5px;
    margin-top: 0px;
    font-size: 30px;
    padding-top: 3px;
    padding-left: 15px;
    padding-right: 10px;
    height: 37px;
    box-shadow: 3px 3px 0 var(--lightgray);
    margin-left: 0px !important;
}

#ContentPlaceHolder1_btnUpdateContact, #ContentPlaceHolder1_btnUpdateCar, #ContentPlaceHolder1_btnDeleteCarPhoto1, #ContentPlaceHolder1_btnDeleteCarPhoto2, #ContentPlaceHolder1_btnDeleteCarPhoto3, #ContentPlaceHolder1_btnDeleteCarPhoto4, #ContentPlaceHolder1_btnDeleteCarPhoto5, #btnHideDelete, #ContentPlaceHolder1_btnPayReg, #ContentPlaceHolder1_btnUploadPhoto {
    position: relative;
    top: 5px;
    margin-top: 0px;
    font-size: 30px;
    padding-top: 3px;
    padding-left: 15px;
    padding-right: 10px;
    height: 37px;
    box-shadow: 3px 3px 0 var(--lightgray);
}

.extraitem {
    margin-top: 0px !important;
}

.cancel {
    font-size: 24px !important;
    box-shadow: 3px 3px 0 var(--darkgray);
    font-style: normal;
    margin-left: 5px;
    margin-top: 0px;
    width: 29px;
    text-align: center;
    padding: 0px !important;
    top: 0 !important;
}

.button input[type="file"] {
    visibility: hidden;
    width: 1px;
}

.textbox {
    background-color: var(--lightgray);
    height: 30px;
    border-radius: 10px;
    border: 3px solid var(--lightblue);
    font-family: 'aktiv-grotesk';
    font-size: 20px;
    padding: 5px;
    width: 350px;
    margin: 20px 12px;
    color: white;
}

.textbox::placeholder {
    color: var(--bone);
    text-transform: none;
}

.desc {
    width: 680px;
}

.textarea {
    background-color: var(--lightgray);
    border-radius: 10px;
    border: 3px solid var(--lightblue);
    font-family: 'aktiv-grotesk';;
    font-size: 20px;
    padding: 5px;
    width: 1130px;
    margin: 20px 12px 0px 12px;
    color: white;
}

.textarea::placeholder {
    color: var(--bone);
}

.dropdown {
    background-color: var(--lightgray);
    height: 46px;
    border-radius: 10px;
    border: 3px solid var(--lightblue);
    font-family: 'aktiv-grotesk';
    font-size: 20px;
    padding: 5px;
    width: 366px;
    margin: 20px 12px;
    color: var(--bone);
    cursor: pointer;
}

input[type="checkbox"], input[type="radio"] {
    display: none;
}

    input[type="checkbox"] + label, input[type="radio"] + label {
        font-weight: normal;
        font-style: normal;
        margin-right: 15px;
        margin-left: 12px;
        display: flex;
    }

        input[type="checkbox"] + label span, input[type="radio"] + label span {
            display: inline-block;
            width: 30px;
            height: 35px;
            padding: 2px 20px 0px 5px;
            vertical-align: middle;
            background: url(images/checkbox-cleared.png) no-repeat;
            background-size: 35px;
            cursor: pointer;
        }

    input[type="checkbox"]:checked + label span, input[type="radio"]:checked + label span {
        background: url(images/checkbox-checked.png) no-repeat;
        background-size: 35px;
    }

.error {
    border: 2px solid rgb(170,62,73);
    border-radius: 10px;
    font-family: Arial;
    font-size: 15px;
    color: rgb(170,62,73);
    background-color: rgb(242,222,223);
    padding: 10px;
    line-height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 570px;
    display: inline-block;
    position: -webkit-sticky;
    position: fixed;
    top: 0px;
    /*left: 725px;*/
    margin-right: 0px;
    right: calc((100vw - 1230px) / 2);
    z-index: 100;
}

.notpaid {
    position: relative;
    right: 0px;
    top: -35px;
    display: inline;
    left: 540px;
    z-index: 50;
}

.successhdn {
    display: none;
}

.success {
    border: 2px solid rgb(55,118,65);
    border-radius: 10px;
    font-family: Arial;
    font-size: 15px;
    color: rgb(55,118,65);
    background-color: rgb(222,240,216);
    padding: 10px;
    line-height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 570px;
    display: inline-block;
    position: -webkit-sticky;
    position: fixed;
    top: 0px;
    right: calc((100vw - 1230px) / 2);
    display: block;
    margin-right: 0px;
    animation-name: opac;
    animation-delay: 5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    z-index: 100;
}

#btnRegMobile {
    display: none;
}

.rafflecontainer + .rafflecontainer h3 {
    margin-top: 150px;
}

.itemcontainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .itemcontainer .itemimage {
        width: 48%;
        display: flex;
        align-items: center;
    }

    .itemcontainer .itemimage img {
        width: 100%;
    }

    .itemcontainer .itemdesc {
        width: 48%;
        font-family: 'aktiv-grotesk';
        color: var(--darkgray);
        font-size: 24px;
        margin: 0px 0px 0px 0px;
        white-space: pre-wrap;
    }

        .itemcontainer .itemdesc ul {
            margin-top: 0px;
            margin-bottom: 0px;
        }

        .itemcontainer .itemdesc ul li {
            background-image: url('images/86-bullet.png');
            background-repeat: no-repeat;
            background-position-y: 3px;
            background-position-x: 7px;
            margin-bottom: 0px;
        }

    .rafflecontainer .button {
        box-shadow: 3px 3px 0 var(--lightgray);
        margin-top: 24px;
    }


.editButton {
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    background-position: center;
    box-shadow: 3px 3px 0 var(--lightgray);
}

#ContentPlaceHolder1_lnkKatanaStyle img {
    width: 400px;
}

#ContentPlaceHolder1_lnkPetesCarParts img {
    width: 400px;
}

#ContentPlaceHolder1_lnkSCCAWDCR img {
    width: 200px;
}

#ContentPlaceHolder1_lnkPubDog img {
    width: 250px;
}

#ContentPlaceHolder1_lnkDASHLogo img {
    height: 250px;
}

#ContentPlaceHolder1_lnkTruCrane img {
    width: 100%;
}

#ContentPlaceHolder1_lnkPTuning img {
    width: 250px;
}

#ContentPlaceHolder1_lnkSCCAWDCR2 img {
    width: 250px;
}

#ContentPlaceHolder1_lnkEssence img {
    width: 250px;
}

#ContentPlaceHolder1_lnkMachV img {
    width: 560px;
}

#ContentPlaceHolder1_lnkAEC img {
    width: 400px;
}

#ContentPlaceHolder1_lnkGasketNinja img {
    width: 400px;
}

#ContentPlaceHolder1_lnk86Squad img {
    width: 400px;
}

@keyframes opac {
    from {
        opacity: 1;
        z-index: 100;
    }

    to {
        opacity: 0;
        z-index: -1;
    }
}

@keyframes underglow {
    0% {box-shadow: 0px 0px 70px red;}
    33% {
        box-shadow: 0px 0px 70px blue;
    }
    66% {
        box-shadow: 0px 0px 70px green;
    }
}

@media screen and (max-width: 768px) {
    body {
        background-image: unset;
        background-color: black;
        margin: 0px;
    }

    .container {
        width: 100%;
        margin-top: 0px;
        padding-bottom: 0px;
    }

    .contentcontainer {
        width: 100%;
        border-radius: 10px;
        box-shadow: unset;
        animation-name: unset;
        padding-bottom: 0px;
    }

    .headercontainer {
        width: 100%;
    }

    .eventTitle {
        gap: 5px;
    }

    .title {
        font-size: 18px;
    }

    .mobile {
        display: block;
        margin-bottom: 15px !important;
    }

    .mobileLogo {
        width: 100%;
        padding-top: 10px;
    }

    .mobilemenu {
        background-color: var(--lightgray);
        height: 50px;
    }

        .mobilemenu .menubuttons {
            height: 50px;
            display: flex;
            justify-content: space-around;
        }

    .mobilemenu a {
        width: 50%;
        height: 80%;
        text-align: center;
        align-self: center;
        line-height: 40px;
    }

            .mobilemenu a.headerlink {
                padding-left: 0px;
            }

            .mobilemenu a:first-child {
                border-right: 2px solid white;
            }

    #mobileMenu, #mobileLogin, #mobileauth {
        width: 88%;
        background-color: white;
        border: 3px solid var(--darkgray);
        position: relative;
        left: 10px;
        top: 0px;
        white-space: normal;
        display: none;
        border-radius: 10px;
        box-shadow: 3px 3px 0 var(--red);
        z-index: 100;
        padding: 10px;
    }

        #mobileMenu a, #mobileauth a {
            font-family: 'aktiv-grotesk';
            color: var(--red);
            text-align: left;
            margin-left: 0px;
            text-decoration: none;
            font-size: 24px;
            display: block;
            margin-bottom: 10px;
            text-shadow: unset;
            padding-left: 10px;
            line-height: 40px;
            width: 80%;
        }

    #mobileLogin .button {
        padding: 0px 12px;
        margin-top: 12px;
    }

    #mobileLogin .button + div {
        padding-top: 0px !important;
    }

    #ContentPlaceHolder1_btnUpdateContact, #ContentPlaceHolder1_btnUpdateCar {
        margin-left: 0px !important;
    }

    #teaser {
        height: calc(100vh - 152px);
    }

    .entrycontainer {
        width: 100%;
        background-color: #000;
    }

    .entrycontainer p {
        font-size: 24px !important;
        color: var(--red);
        font-style: italic;
        font-weight: 700;
        margin: 10px 0px 10px 0px;
    }

    .entrycontainer .entrylabel p {
        color: #000;
        font-style: normal;
    }

    .entryphoto {
        height: 350px;
    }

    .deleteDialogContainer {
        width: 100%;
    }

    .lineup {
        background-size: contain;
        height: 62px;
        padding-top: 20px;
        background-position: right;
    }

    .lineup h2 {
        margin-top: 0px;
        font-size: 24px;
    }

    h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .content {
        width: unset;
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .content p {
        font-size: 16px;
    }

    .content video {
        width: 100%;
    }

    .content p.location {
        font-size: 24px;
    }

        .content p.location > span {
            font-size: 18px;
        }

    #desktopBullets {
        display: none;
    }

    #mobileBullets, #mobileBullets2 {
        display: flex;
    }

    .content ul {
        padding-left: 0px;
    }

    .content ol {
        padding-left: 40px;
    }

    .content ol li {
        font-size: 16px;
        line-height: 20px;
    }

    .content ol li:before {
        font-size: 30px;
        margin-left: -30px;
        margin-right: 8px;
    }

    .content ol li:nth-child(10):before {
        content: "10";
        margin-left: -47px;
    }

    .content ol li:nth-child(11):before {
        content: "11";
        margin-left: -47px;
    }

    .content ol li:nth-child(12):before {
        content: "12";
        margin-left: -47px;
    }

    .content ol li:nth-child(13):before {
        content: "13";
        margin-left: -47px;
    }

    .content ol li:nth-child(14):before {
        content: "14";
        margin-left: -47px;
    }

    .content ol li:nth-child(15):before {
        content: "15";
        margin-left: -47px;
    }

    .content ol li:nth-child(16):before {
        content: "16";
        margin-left: -47px;
    }

    .ma86 {
        background-position-y: 2px;
        background-size: 12px;
    }

    .scion {
        background-position-y: 3px;
        background-position-x: 8px;
        background-size: 15px;
    }

    .toyota {
        background-position-y: 3px;
        background-position-x: 7px;
        background-size: 15px;
    }

    .subaru {
        background-position-y: 2px;
        background-position-x: 5px;
        background-size: 18px;
    }

    .content ul li {
        font-size: 12px;
        text-indent: 30px;
    }

    .diffBomp {
        display: none;
    }

    .diffDesc {
        width: 100%;
        background-image: url('images/bomp.jpg');
        background-size: cover;
        border-radius: 10px;
        display: flex;
        justify-content: space-evenly;
        padding: 10px;
    }

    .howhelp {
        width: 99%;
        margin-bottom: 20px;
        border-radius: 10px !important;
    }

    .howhelp > div {
        padding: 10px 5px 10px 5px;
        height: 32px;
        background-color: rgb(0,0,0,0.7);
    }

    .howhelp > div + div {
        height: 60px;
        background-color: rgb(255, 255, 255, 0.7);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    /*
    .howhelp:nth-child(4) {
        margin-bottom: 20px !important;
    }
    */

    .howhelp.combined > div + div {
        height: 80px;
    }

    .textbox {
        margin: 20px 0px;
        width: 95%;
    }

    .textarea {
        margin: 20px 0px 0px 0px;
        width: 95%;
    }

        #ContentPlaceHolder1_txtCarAbout + p, #ContentPlaceHolder1_txtCarAbout + p + p {
            font-size: 16px;
        }

        .textarea + p, .textarea + p + p {
            font-size: 24px;
        }

    #ContentPlaceHolder1_txtCity {
        width: 275px;
        margin-right: 24px;
    }

    #ContentPlaceHolder1_txtState {
        width: 55px;
    }

    #ContentPlaceHolder1_btnPayReg, #ContentPlaceHolder1_btnUploadPhoto {
        margin-left: 0px !important;
        margin-bottom: 24px;
    }

    .waivertext {
        font-size: 12px !important;
    }

    .waivertext + p {
        font-size: 14px !important;
    }

    .chkWaiver {
        width: 200px !important;
    }

    .dropdown {
        width: 386px;
        margin: 20px 0px;
    }

    .value {
        width: 25%;
        margin-right: 10px;
    }

    .desc {
        width: 54%;
    }

    table p {
        font-size: 20px !important;
    }

    #divPhotoUploads .uploaddiv .textbox {
        width: 45%;
    }

    .uploaddiv {
        height: 70px;
        margin-left: 0px;
    }

    .uploaddiv .textbox {
        width: 55%;
        margin-right: 0px;
    }

    div + input {
        margin-left: 10px !important;
        margin-right: 15px !important;
    }

    .error {
        width: 94%;
        left: 1px;
    }

    .notpaid {
        display: block;
        top: unset;
    }

    .success {
        width: 94%;
        left: 1px;
    }

    #btnRegMobile {
        display: block !important;
    }

    .rafflecontainer + .rafflecontainer h3 {
        margin-top: 75px;
    }

    .itemcontainer {
        flex-direction: column;
    }

    .itemcontainer .itemimage {
        width: 100%;
    }

    .itemcontainer .itemdesc {
        width: 100%;
        font-size: 16px;
        margin-top: 24px;
    }

        .itemcontainer .itemdesc ul li {
            font-size: 16px;
            background-size: 15px;
        }

    .rafflecontainer .button {
        font-size: 24px;
        margin-top: 24px;
    }

    #ContentPlaceHolder1_lnkKatanaStyle img {
        width: 300px;
    }

    #ContentPlaceHolder1_lnkPetesCarParts img {
        width: 300px;
    }

    #ContentPlaceHolder1_lnkSCCAWDCR img {
        width: 150px;
    }

    #ContentPlaceHolder1_lnkPubDog img {
        width: 175px;
    }

    #ContentPlaceHolder1_lnkDASHLogo img {
        height: 200px;
    }

    #ContentPlaceHolder1_lnkTruCrane img {
        width: 100%;
    }

    #ContentPlaceHolder1_lnkPTuning img {
        width: 175px;
    }

    #ContentPlaceHolder1_lnkSCCAWDCR2 img {
        width: 150px;
    }

    #ContentPlaceHolder1_lnkEssence img {
        width: 175px;
    }

    #ContentPlaceHolder1_lnkMachV img {
        width: 300px;
    }

    #ContentPlaceHolder1_lnkAEC img {
        width: 250px;
    }

    #ContentPlaceHolder1_lnkGasketNinja img {
        width: 300px;
    }

    #ContentPlaceHolder1_lnk86Squad img {
        width: 300px;
    }

    .divBanners img {
        height: 130px;
        border-radius: 10px;
    }

    .spanRightClick {
        display: none;
    }

    .spanTapHold {
        display: inline-block;
    }

    .footercontainer {
        margin-top: unset;
        padding-bottom: 10px;
    }

    #imgHappyHappyChowChow {
        width: 75px;
        margin-right: unset;
        margin-top: 0px;
    }

    .footercontainer p {
        margin-bottom: 0px;
    }
}
